You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-06 06:27:36 +02:00
Make sure we only parse max amount of subpackets (5) in the cook decoder.
Originally committed as revision 18689 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -1219,6 +1219,10 @@ static av_cold int cook_decode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
q->num_subpackets++;
|
q->num_subpackets++;
|
||||||
s++;
|
s++;
|
||||||
|
if (s > MAX_SUBPACKETS) {
|
||||||
|
av_log(avctx,AV_LOG_ERROR,"Too many subpackets > 5, report file!\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* Generate tables */
|
/* Generate tables */
|
||||||
init_pow2table();
|
init_pow2table();
|
||||||
|
Reference in New Issue
Block a user