pthread/mpegvideo: detect and block attempts to init frames after setup.
This fixes race conditions that ultimately lead to memory corruption. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -1134,6 +1134,11 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
|
||||
assert(s->last_picture_ptr == NULL || s->out_format != FMT_H264 ||
|
||||
s->codec_id == CODEC_ID_SVQ3);
|
||||
|
||||
if (!ff_thread_can_start_frame(avctx)) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Attempt to start a frame outside SETUP state\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* mark & release old frames */
|
||||
if (s->out_format != FMT_H264 || s->codec_id == CODEC_ID_SVQ3) {
|
||||
if (s->pict_type != AV_PICTURE_TYPE_B && s->last_picture_ptr &&
|
||||
|
||||
Reference in New Issue
Block a user