提交 753c9d32 编写于 作者: B Benjamin Larsson

Check that js_vlc_bits from the extradata is in a valid range.

Originally committed as revision 7756 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 862be28b
......@@ -1245,6 +1245,10 @@ static int cook_decode_init(AVCodecContext *avctx)
av_log(avctx,AV_LOG_ERROR,"unknown amount of samples_per_channel = %d, report sample!\n",q->samples_per_channel);
return -1;
}
if ((q->js_vlc_bits > 6) || (q->js_vlc_bits < 0)) {
av_log(avctx,AV_LOG_ERROR,"q->js_vlc_bits = %d, only >= 0 and <= 6 allowed!\n",q->js_vlc_bits);
return -1;
}
#ifdef COOKDEBUG
dump_cook_context(q);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册