This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit a489a623fbffcef69b60c84176e88503cc656659 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sun Mar 1 00:46:37 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Fri Mar 6 20:02:42 2026 +0100 avcodec/x86/vvc/alf: Use memory sources directly Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/x86/vvc/alf.asm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavcodec/x86/vvc/alf.asm b/libavcodec/x86/vvc/alf.asm index d27e1e0cfc..cf99f1265c 100644 --- a/libavcodec/x86/vvc/alf.asm +++ b/libavcodec/x86/vvc/alf.asm @@ -107,9 +107,8 @@ SECTION .text %macro LOAD_CHROMA_PARAMS 4 ; LOAD_CHROMA_PARAMS_W %+ WIDTH %1, %2, %3, %4 - movq xm%1, [%3q] + vpbroadcastq m%1, [%3q] movd xm%2, [%3q + 8] - vpbroadcastq m%1, xm%1 vpbroadcastq m%2, xm%2 %endmacro @@ -602,8 +601,7 @@ cglobal vvc_alf_classify_grad_%1bpc, 6, 14, 16, gradient_sum, src, src_stride, w pblendw m0, m1, m6, 0x55 paddw m0, m0 ; c - movu m1, [CLASSIFY_SHUFFE] - pshufb m1, m0, m1 ; d + pshufb m1, m0, [CLASSIFY_SHUFFE] ; d paddw m9, m14 ; n + s psubw m9, m0 ; (n + s) - c _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
