Commit be20528c authored by Baptiste Coudurier's avatar Baptiste Coudurier

aac: fix adts frame size mask, fix demuxer probing for some files.

parent 47d2ca32
...@@ -44,7 +44,7 @@ static int adts_aac_probe(AVProbeData *p) ...@@ -44,7 +44,7 @@ static int adts_aac_probe(AVProbeData *p)
uint32_t header = AV_RB16(buf2); uint32_t header = AV_RB16(buf2);
if((header&0xFFF6) != 0xFFF0) if((header&0xFFF6) != 0xFFF0)
break; break;
fsize = (AV_RB32(buf2+3)>>13) & 0x8FFF; fsize = (AV_RB32(buf2+3)>>13) & 0x1FFF;
if(fsize < 7) if(fsize < 7)
break; break;
buf2 += fsize; buf2 += fsize;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment