The branch, master has been updated via 451e6bed436ada70a761a90f1d08f1fa505020fd (commit) from b8856c5fc51a486836983eaffc661e14b57ef49e (commit)
- Log ----------------------------------------------------------------- commit 451e6bed436ada70a761a90f1d08f1fa505020fd Author: Lynne <d...@lynne.ee> AuthorDate: Wed Aug 20 22:05:38 2025 +0900 Commit: Lynne <d...@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 -- _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".