This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
scale_vulkan: correctly copy the colormatrix
tags/n4.3
Lynne
5 years ago
parent
30b28f9a83
commit
ca76a5ba1a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
Write
Preview
Loading…
Cancel
Save