[FFmpeg-cvslog] adts: Adjust frame size mask to follow the specification.
Kieran Kunhya
git at videolan.org
Sat Jun 11 04:16:56 CEST 2011
ffmpeg | branch: master | Kieran Kunhya <kierank at ob-encoder.com> | Wed Jun 8 01:26:20 2011 -0500| [f74e5b76b1033e5224d6a7b5906e05cecd2b3302] | committer: Diego Biurrun
adts: Adjust frame size mask to follow the specification.
This fixes ADTS detection for at least one sample.
Signed-off-by: Diego Biurrun <diego at biurrun.de>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f74e5b76b1033e5224d6a7b5906e05cecd2b3302
---
libavformat/aacdec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/aacdec.c b/libavformat/aacdec.c
index 0dc1c5c..6a184c7 100644
--- a/libavformat/aacdec.c
+++ b/libavformat/aacdec.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list