1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-20 07:48:15 +02:00

avcodec/ffv1enc_vulkan: add missing arguent to ff_ffv1_common_init()

Missed in 3d3ce9647f9b7a002080c7af12be654a90d2ba7c.

Found-by: kasper93
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2025-02-06 17:02:44 -03:00
parent dc9e0ca447
commit 19045957af

View File

@ -1468,7 +1468,7 @@ static av_cold int vulkan_encode_ffv1_init(AVCodecContext *avctx)
FFV1Context *f = &fv->ctx;
FFVkSPIRVCompiler *spv;
if ((err = ff_ffv1_common_init(avctx)) < 0)
if ((err = ff_ffv1_common_init(avctx, f)) < 0)
return err;
if (f->ac == 1)