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
e4d69f38
Commit
e4d69f38
authored
Dec 19, 2013
by
Michal Smucr
Committed by
Max Kellermann
Dec 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riff: recognize upper-case "ID3" chunk name
Some tagging libraries (eg. TagLib) produce that variant.
parent
97fc0011
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
NEWS
+2
-0
Riff.cxx
src/tag/Riff.cxx
+2
-1
No files found.
NEWS
View file @
e4d69f38
ver 0.18.6 (not yet released)
* input
- cdio_paranoia: support libcdio-paranoia 0.90
* tags
- riff: recognize upper-case "ID3" chunk name
* output
- openal: fix build failure on Mac OS X
- osx: fix build failure
...
...
src/tag/Riff.cxx
View file @
e4d69f38
...
...
@@ -87,7 +87,8 @@ riff_seek_id3(FILE *file)
/* pad byte */
++
size
;
if
(
memcmp
(
chunk
.
id
,
"id3 "
,
4
)
==
0
)
if
(
memcmp
(
chunk
.
id
,
"id3 "
,
4
)
==
0
||
memcmp
(
chunk
.
id
,
"ID3 "
,
4
)
==
0
)
/* found it! */
return
size
;
...
...
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