summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
Diffstat (limited to 'video')
-rw-r--r--video/image_writer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/image_writer.c b/video/image_writer.c
index 9f76bd3008..c8cde77304 100644
--- a/video/image_writer.c
+++ b/video/image_writer.c
@@ -372,7 +372,7 @@ static bool write_avif(struct image_writer_ctx *ctx, mp_image_t *image,
avctx->codec_type = AVMEDIA_TYPE_VIDEO;
avctx->pix_fmt = imgfmt2pixfmt(image->imgfmt);
- av_opt_set_int(avctx, "still-image", 1, AV_OPT_SEARCH_CHILDREN);
+ av_opt_set_int(avctx, "still-picture", 1, AV_OPT_SEARCH_CHILDREN);
AVDictionary *avd = NULL;
mp_set_avdict(&avd, ctx->opts->avif_opts);