This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
adts: Adjust frame size mask to follow the specification.
This fixes ADTS detection for at least one sample. Signed-off-by: Diego Biurrun <diego@biurrun.de>
tags/n0.8
Kieran Kunhya
Diego Biurrun
14 years ago
parent
d16cccac98
commit
f74e5b76b1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/aacdec.c
+ 1
- 1
libavformat/aacdec.c
View File
@@ -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) & 0x8
FFF;
fsize = (AV_RB32(buf2
+ 3) >> 13) & 0x1
FFF;
if(fsize < 7)
break;
buf2 += fsize;
Write
Preview
Loading…
Cancel
Save