Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
57da5c08
Commit
57da5c08
authored
Feb 22, 2016
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag/Id3Load: simplify end offset calculation
parent
a224722a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
Id3Load.cxx
src/tag/Id3Load.cxx
+6
-2
No files found.
src/tag/Id3Load.cxx
View file @
57da5c08
...
...
@@ -138,11 +138,15 @@ tag_id3_find_from_beginning(FILE *stream)
static
UniqueId3Tag
tag_id3_find_from_end
(
FILE
*
stream
)
{
off_t
offset
=
-
(
off_t
)
ID3V1_SIZE
;
/* Get an id3v1 tag from the end of file for later use */
auto
v1tag
=
tag_id3_read
(
stream
,
-
(
off_t
)
ID3V1_SIZE
,
SEEK_END
);
auto
v1tag
=
tag_id3_read
(
stream
,
offset
,
SEEK_END
);
if
(
!
v1tag
)
offset
=
0
;
/* Get the id3v2 tag size from the footer (located before v1tag) */
int
tagsize
=
get_id3v2_footer_size
(
stream
,
(
v1tag
?
-
(
off_t
)
ID3V1_SIZE
:
0
)
-
ID3_TAG_QUERYSIZE
,
SEEK_END
);
int
tagsize
=
get_id3v2_footer_size
(
stream
,
offset
-
ID3_TAG_QUERYSIZE
,
SEEK_END
);
if
(
tagsize
>=
0
)
return
v1tag
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment