You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
aac: fix adts frame size mask, fix demuxer probing for some files.
This commit is contained in:
@@ -44,7 +44,7 @@ static int adts_aac_probe(AVProbeData *p)
|
||||
uint32_t header = AV_RB16(buf2);
|
||||
if((header&0xFFF6) != 0xFFF0)
|
||||
break;
|
||||
fsize = (AV_RB32(buf2+3)>>13) & 0x8FFF;
|
||||
fsize = (AV_RB32(buf2+3)>>13) & 0x1FFF;
|
||||
if(fsize < 7)
|
||||
break;
|
||||
buf2 += fsize;
|
||||
|
Reference in New Issue
Block a user