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/v308dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/v308dec.c') diff --git a/libavcodec/v308dec.c b/libavcodec/v308dec.c index a81771fc5f..4bc4ea4e21 100644 --- a/libavcodec/v308dec.c +++ b/libavcodec/v308dec.c @@ -48,7 +48,7 @@ static int v308_decode_frame(AVCodecContext *avctx, AVFrame *pic, if ((ret = ff_get_buffer(avctx, pic, 0)) < 0) return ret; - pic->key_frame = 1; + pic->flags |= AV_FRAME_FLAG_KEY; pic->pict_type = AV_PICTURE_TYPE_I; y = pic->data[0]; -- cgit v1.2.3