diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-03-07 23:52:33 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-03-07 23:52:33 +0000 |
commit | 732436920bcf523b36360d72ef069d44ffe19222 (patch) | |
tree | 4d24c7268133e07ef1b956021074660c26e9d66f | |
parent | 54f158bda2c431d78429887b9519f90d3f678d5d (diff) | |
download | ffmpeg-732436920bcf523b36360d72ef069d44ffe19222.tar.gz |
10l: AAC: Set multiplier to 0.
Originally committed as revision 22299 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index ac3e49ccd4..c4755420b4 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -2034,7 +2034,7 @@ static int aac_decode_frame(AVCodecContext *avccontext, void *data, spectral_to_sample(ac); - multiplier = 1; + multiplier = 0; samples <<= multiplier; if (ac->output_configured < OC_LOCKED) { avccontext->sample_rate = ac->m4ac.sample_rate << multiplier; |