diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-02-28 13:20:41 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-04 23:33:59 +0200 |
commit | d7c91c4ceac07c0274e06f2aa19b2fee8337dd47 (patch) | |
tree | 61b59cd04744509185235cab0bae924992318791 | |
parent | 105a3c7a6be5c381c1d5247692ecc09d23606260 (diff) | |
download | ffmpeg-d7c91c4ceac07c0274e06f2aa19b2fee8337dd47.tar.gz |
sonic: fix sonic decoder to match encoder for sample rates other than 44100.
-rw-r--r-- | libavcodec/sonic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c index 8dfac1a6fa..e7cdb3ba81 100644 --- a/libavcodec/sonic.c +++ b/libavcodec/sonic.c @@ -796,7 +796,7 @@ static av_cold int sonic_decode_init(AVCodecContext *avctx) if (get_bits1(&gb)) // XXX FIXME av_log(avctx, AV_LOG_INFO, "Custom quant table\n"); - s->block_align = (int)(2048.0*(s->samplerate/44100))/s->downsampling; + s->block_align = (int)(2048.0*s->samplerate/44100)/s->downsampling; s->frame_size = s->channels*s->block_align*s->downsampling; // avctx->frame_size = s->block_align; |