summaryrefslogtreecommitdiff
path: root/libavcodec/snow.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2023-04-12 13:58:54 -0300
committerJames Almer <jamrial@gmail.com>2023-05-04 18:48:22 -0300
commitdc7bd7c5a5ad5ea800dfb63cc5dd15670d065527 (patch)
tree91cd3a4ae8b34601f34ff98aa4beb1ac1b5b28c2 /libavcodec/snow.c
parentcc11191fda0471017b03c1434d6d8cb79f6914e5 (diff)
downloadffmpeg-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/snow.c')
-rw-r--r--libavcodec/snow.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index b6c8d5e256..5eb3ee1e9e 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -606,7 +606,7 @@ int ff_snow_frame_start(SnowContext *s){
}else{
int i;
for(i=0; i<s->max_ref_frames && s->last_picture[i]->data[0]; i++)
- if(i && s->last_picture[i-1]->key_frame)
+ if(i && (s->last_picture[i-1]->flags & AV_FRAME_FLAG_KEY))
break;
s->ref_frames= i;
if(s->ref_frames==0){
@@ -617,7 +617,10 @@ int ff_snow_frame_start(SnowContext *s){
if ((ret = ff_snow_get_buffer(s, s->current_picture)) < 0)
return ret;
- s->current_picture->key_frame= s->keyframe;
+ if (s->keyframe)
+ s->current_picture->flags |= AV_FRAME_FLAG_KEY;
+ else
+ s->current_picture->flags &= ~AV_FRAME_FLAG_KEY;
return 0;
}