diff options
author | James Almer <jamrial@gmail.com> | 2023-04-12 13:58:54 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-05-04 18:48:22 -0300 |
commit | dc7bd7c5a5ad5ea800dfb63cc5dd15670d065527 (patch) | |
tree | 91cd3a4ae8b34601f34ff98aa4beb1ac1b5b28c2 /libavcodec/gifdec.c | |
parent | cc11191fda0471017b03c1434d6d8cb79f6914e5 (diff) | |
download | ffmpeg-dc7bd7c5a5ad5ea800dfb63cc5dd15670d065527.tar.gz |
avcodec: use the new AVFrame key_frame flag in all decoders and encoders
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/gifdec.c')
-rw-r--r-- | libavcodec/gifdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/gifdec.c b/libavcodec/gifdec.c index f47390c3bd..0835c5bdd0 100644 --- a/libavcodec/gifdec.c +++ b/libavcodec/gifdec.c @@ -501,7 +501,7 @@ static int gif_decode_frame(AVCodecContext *avctx, AVFrame *rframe, return AVERROR(ENOMEM); s->frame->pict_type = AV_PICTURE_TYPE_I; - s->frame->key_frame = 1; + s->frame->flags |= AV_FRAME_FLAG_KEY; s->keyframe_ok = 1; } else { if (!s->keyframe_ok) { @@ -513,7 +513,7 @@ static int gif_decode_frame(AVCodecContext *avctx, AVFrame *rframe, return ret; s->frame->pict_type = AV_PICTURE_TYPE_P; - s->frame->key_frame = 0; + s->frame->flags &= ~AV_FRAME_FLAG_KEY; } ret = gif_parse_next_image(s, s->frame); |