diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-03 22:51:07 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-11-04 10:23:53 -0400 |
commit | add7b1140fdd0651d0fc9352962631807126d3d0 (patch) | |
tree | 994762e186165815f194a6629d9ee6532419eaba | |
parent | c38404ee1aad5f074f03487a0085931e7dcc6327 (diff) | |
download | ffmpeg-add7b1140fdd0651d0fc9352962631807126d3d0.tar.gz |
binkaudio: expand quant_table to accommodate all possible values
-rw-r--r-- | libavcodec/binkaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c index a90467abfb..d917e7a12c 100644 --- a/libavcodec/binkaudio.c +++ b/libavcodec/binkaudio.c @@ -39,7 +39,7 @@ extern const uint16_t ff_wma_critical_freqs[25]; -static float quant_table[95]; +static float quant_table[96]; #define MAX_CHANNELS 2 #define BINK_BLOCK_MAX_SIZE (MAX_CHANNELS << 11) @@ -112,7 +112,7 @@ static av_cold int decode_init(AVCodecContext *avctx) s->block_size = (s->frame_len - s->overlap_len) * s->channels; sample_rate_half = (sample_rate + 1) / 2; s->root = 2.0 / sqrt(s->frame_len); - for (i = 0; i < 95; i++) { + for (i = 0; i < 96; i++) { /* constant is result of 0.066399999/log10(M_E) */ quant_table[i] = expf(i * 0.15289164787221953823f) * s->root; } |