Browse Source

scale_vulkan: correctly copy the colormatrix

tags/n4.3
Lynne 5 years ago
parent
commit
ca76a5ba1a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_scale_vulkan.c

+ 1
- 1
libavfilter/vf_scale_vulkan.c View File

@@ -251,7 +251,7 @@ static av_cold int init_filter(AVFilterContext *ctx, AVFrame *in)

for (int y = 0; y < 3; y++)
for (int x = 0; x < 3; x++)
par->yuv_matrix[x][y] = tmp_mat[y][x];
par->yuv_matrix[x][y] = tmp_mat[x][y];

par->yuv_matrix[3][3] = 1.0;



Loading…
Cancel
Save