mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
skip id3v2 junk when looking for mp3
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8117 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
6eebee1070
commit
a6b8c576fd
@ -65,6 +65,13 @@ int demux_audio_open(demuxer_t* demuxer) {
|
|||||||
// We found wav header. Now we can have 'fmt ' or a mp3 header
|
// We found wav header. Now we can have 'fmt ' or a mp3 header
|
||||||
// empty the buffer
|
// empty the buffer
|
||||||
step = 4;
|
step = 4;
|
||||||
|
} else if( hdr[0] == 'I' && hdr[1] == 'D' && hdr[2] == '3' && (hdr[3] >= 2)) {
|
||||||
|
int len;
|
||||||
|
stream_skip(s,2);
|
||||||
|
stream_read(s,hdr,4);
|
||||||
|
len = (hdr[0]<<21) | (hdr[1]<<14) | (hdr[2]<<7) | hdr[3];
|
||||||
|
stream_skip(s,len);
|
||||||
|
step = 4;
|
||||||
} else if( hdr[0] == 'f' && hdr[1] == 'm' && hdr[2] == 't' && hdr[3] == ' ' ) {
|
} else if( hdr[0] == 'f' && hdr[1] == 'm' && hdr[2] == 't' && hdr[3] == ' ' ) {
|
||||||
frmt = WAV;
|
frmt = WAV;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user