summaryrefslogtreecommitdiffstats
path: root/libavcodec/alsdec.c
diff options
context:
space:
mode:
authorAndreas Cadhalpun <andreas.cadhalpun@googlemail.com>2015-04-22 16:03:41 +0200
committerAnton Khirnov <anton@khirnov.net>2015-05-05 16:10:52 +0200
commit60f1cc4a1ffcbf24acbb543988ceeaec76b70818 (patch)
treecb901b280378c41c2f3c89311ef422b015952edd /libavcodec/alsdec.c
parent94bb1ce882a12b6d7a1fa32715a68121b39ee838 (diff)
downloadffmpeg-streaming-60f1cc4a1ffcbf24acbb543988ceeaec76b70818.zip
ffmpeg-streaming-60f1cc4a1ffcbf24acbb543988ceeaec76b70818.tar.gz
alsdec: only adapt order for positive max_order
For max_order = 0 the clipping range is invalid. (amin = 2, amax = 1) CC: libav-stable@libav.org Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r--libavcodec/alsdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index a5452c3..1ade656 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -663,7 +663,7 @@ static int read_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
if (!sconf->rlslms) {
- if (sconf->adapt_order) {
+ if (sconf->adapt_order && sconf->max_order) {
int opt_order_length = av_ceil_log2(av_clip((bd->block_length >> 3) - 1,
2, sconf->max_order + 1));
*bd->opt_order = get_bits(gb, opt_order_length);
OpenPOWER on IntegriCloud