avcodec/mpegvideo: Remove always-false check

An AVCodecContext's private data is always allocated
in avcodec_open2() and calling avcodec_flush_buffers()
on an unopened AVCodecContext (or an already closed one)
is not allowed (and will crash before the decoder's flush
function is even called).

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2021-12-23 22:56:11 +01:00
parent 5de7bce12e
commit ee41c60373
1 changed files with 1 additions and 1 deletions

View File

@ -2318,7 +2318,7 @@ void ff_mpeg_flush(AVCodecContext *avctx){
int i;
MpegEncContext *s = avctx->priv_data;
if (!s || !s->picture)
if (!s->picture)
return;
for (i = 0; i < MAX_PICTURE_COUNT; i++)