OSDN Git Service

wma: check byte_offset_bits
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 30 Jan 2013 21:56:45 +0000 (22:56 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 30 Jan 2013 22:12:57 +0000 (23:12 +0100)
Fixes assertion failure

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/wma.c

index 5af2073..1e6ca61 100644 (file)
@@ -134,6 +134,10 @@ int ff_wma_init(AVCodecContext *avctx, int flags2)
 
     bps = (float)avctx->bit_rate / (float)(avctx->channels * avctx->sample_rate);
     s->byte_offset_bits = av_log2((int)(bps * s->frame_len / 8.0 + 0.5)) + 2;
+    if (s->byte_offset_bits + 3 > MIN_CACHE_BITS) {
+        av_log(avctx, AV_LOG_ERROR, "byte_offset_bits %d is too large\n", s->byte_offset_bits);
+        return AVERROR_PATCHWELCOME;
+    }
 
     /* compute high frequency value and choose if noise coding should
        be activated */