[FFmpeg-cvslog] [ffmpeg] branch master updated. 451e6bed43 lavfi/bwdif_vulkan: fix typo in temp_diff assignment
ffmpeg-git at ffmpeg.org
ffmpeg-git at ffmpeg.org
Wed Aug 20 16:07:03 EEST 2025
The branch, master has been updated
via 451e6bed436ada70a761a90f1d08f1fa505020fd (commit)
from b8856c5fc51a486836983eaffc661e14b57ef49e (commit)
- Log -----------------------------------------------------------------
commit 451e6bed436ada70a761a90f1d08f1fa505020fd
Author: Lynne <dev at lynne.ee>
AuthorDate: Wed Aug 20 22:05:38 2025 +0900
Commit: Lynne <dev at lynne.ee>
CommitDate: Wed Aug 20 22:06:21 2025 +0900
lavfi/bwdif_vulkan: fix typo in temp_diff assignment
Thanks to Niklas Haas for pointing this out.
diff --git a/libavfilter/vulkan/bwdif.comp b/libavfilter/vulkan/bwdif.comp
index 5c988f472e..5152464823 100644
--- a/libavfilter/vulkan/bwdif.comp
+++ b/libavfilter/vulkan/bwdif.comp
@@ -47,7 +47,7 @@ vec4 process_line(vec4 prev2[5], vec4 prev1[2], vec4 cur[4], vec4 next1[2], vec4
vec4 temp_diff[3];
temp_diff[0] = abs(prev2[2] - next2[2]);
temp_diff[1] = (abs(prev1[0] - fc) + abs(prev1[1] - fe)) / 2;
- temp_diff[1] = (abs(next1[0] - fc) + abs(next1[1] - fe)) / 2;
+ temp_diff[2] = (abs(next1[0] - fc) + abs(next1[1] - fe)) / 2;
vec4 diff = max(temp_diff[0] / 2, max(temp_diff[1], temp_diff[2]));
bvec4 diff_mask = equal(diff, vec4(0));
-----------------------------------------------------------------------
Summary of changes:
libavfilter/vulkan/bwdif.comp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
More information about the ffmpeg-cvslog
mailing list