diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2025-02-10 14:32:23 +0100 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2025-02-10 14:32:25 +0100 |
commit | d6a364e7c39b52375c2e9e36ee59935bb418543c (patch) | |
tree | ddad3bea379f496dbb2f7e3f7495cc51c8372c83 | |
parent | 9fb97215dfb2f1933cc2b959f29734a0671323eb (diff) | |
download | ffmpeg-d6a364e7c39b52375c2e9e36ee59935bb418543c.tar.gz |
avfilter/vf_amf_common: fix build
AMF was forgotten in a28dc06869fe1f98c07e42f9b0a411d2744ff7d7
-rw-r--r-- | libavfilter/vf_amf_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_amf_common.c b/libavfilter/vf_amf_common.c index 9c48b4218e..fbf364eac1 100644 --- a/libavfilter/vf_amf_common.c +++ b/libavfilter/vf_amf_common.c @@ -282,7 +282,7 @@ int amf_init_filter_config(AVFilterLink *outlink, enum AVPixelFormat *in_format) return err; ff_scale_adjust_dimensions(inlink, &ctx->width, &ctx->height, - ctx->force_original_aspect_ratio, ctx->force_divisible_by); + ctx->force_original_aspect_ratio, ctx->force_divisible_by, 1.0); av_buffer_unref(&ctx->amf_device_ref); av_buffer_unref(&ctx->hwframes_in_ref); |