[FFmpeg-cvslog] lavfi/vf_scale_vulkan: fix build
rcombs
git at videolan.org
Thu Jun 2 04:14:55 EEST 2022
ffmpeg | branch: master | rcombs <rcombs at rcombs.me> | Wed Jun 1 20:07:47 2022 -0500| [3e580351bc1dba9d023cd5562df99be9a30fb504] | committer: rcombs
lavfi/vf_scale_vulkan: fix build
This was broken in d42b410e05ad1c4d6e74aa981b4a4423103291fb.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3e580351bc1dba9d023cd5562df99be9a30fb504
---
libavfilter/vf_scale_vulkan.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavfilter/vf_scale_vulkan.c b/libavfilter/vf_scale_vulkan.c
index 5fe36ca7b0..c140420896 100644
--- a/libavfilter/vf_scale_vulkan.c
+++ b/libavfilter/vf_scale_vulkan.c
@@ -239,14 +239,14 @@ static av_cold int init_filter(AVFilterContext *ctx, AVFrame *in)
RET(ff_vk_init_compute_pipeline(vkctx, s->pl));
if (s->vkctx.output_format != s->vkctx.input_format) {
- const struct LumaCoefficients *lcoeffs;
+ const AVLumaCoefficients *lcoeffs;
double tmp_mat[3][3];
struct {
float yuv_matrix[4][4];
} *par;
- lcoeffs = ff_get_luma_coefficients(in->colorspace);
+ lcoeffs = av_csp_luma_coeffs_from_avcsp(in->colorspace);
if (!lcoeffs) {
av_log(ctx, AV_LOG_ERROR, "Unsupported colorspace\n");
return AVERROR(EINVAL);
More information about the ffmpeg-cvslog
mailing list