0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

vd_lavc: don't crash if codec could not be opened

Fixes #1307.
This commit is contained in:
wm4 2014-12-01 13:58:30 +01:00
parent 67c4117476
commit b57ab4bb3b

View File

@ -430,7 +430,7 @@ static void uninit_avctx(struct dec_video *vd)
vd_ffmpeg_ctx *ctx = vd->priv;
AVCodecContext *avctx = ctx->avctx;
if (avctx)
if (avctx && avctx->codec)
avcodec_flush_buffers(avctx);
if (ctx->hwdec && ctx->hwdec->uninit)