From dc7bd7c5a5ad5ea800dfb63cc5dd15670d065527 Mon Sep 17 00:00:00 2001 From: James Almer Date: Wed, 12 Apr 2023 13:58:54 -0300 Subject: avcodec: use the new AVFrame key_frame flag in all decoders and encoders Signed-off-by: James Almer --- libavcodec/m101.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/m101.c') diff --git a/libavcodec/m101.c b/libavcodec/m101.c index 809c89c4f3..43a3c7bbe5 100644 --- a/libavcodec/m101.c +++ b/libavcodec/m101.c @@ -67,7 +67,7 @@ static int m101_decode_frame(AVCodecContext *avctx, AVFrame *frame, if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) return ret; frame->pict_type = AV_PICTURE_TYPE_I; - frame->key_frame = 1; + frame->flags |= AV_FRAME_FLAG_KEY; if ((avctx->extradata[3*4] & 3) != 3) { frame->flags |= AV_FRAME_FLAG_INTERLACED; if (avctx->extradata[3*4] & 1) -- cgit v1.2.3