mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-23 04:24:35 +02:00
lavfi/vf_scale_vulkan: fix build
This was broken in d42b410e05ad1c4d6e74aa981b4a4423103291fb.
This commit is contained in:
parent
bb6d9a0f32
commit
3e580351bc
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user