mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
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
This commit is contained in:
parent
862be28b19
commit
753c9d3260
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user