This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit a2d9cd6dcbf11baafa0ad6e1e1ff42f5af223c69 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Sat Feb 28 21:48:06 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Fri Mar 6 20:02:41 2026 +0100 avcodec/x86/vvc/alf: Don't calculate twice Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/x86/vvc/alf.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/x86/vvc/alf.asm b/libavcodec/x86/vvc/alf.asm index 9563ae74d5..c8a6565e72 100644 --- a/libavcodec/x86/vvc/alf.asm +++ b/libavcodec/x86/vvc/alf.asm @@ -60,7 +60,6 @@ SECTION .text ;%1-%3 out ;%4 clip or filter %macro LOAD_LUMA_PARAMS 4 - lea offsetq, [3 * xq] ;xq * ALF_NUM_COEFF_LUMA / ALF_BLOCK_SIZE movu m%1, [%4q + 2 * offsetq + 0 * mmsize] ; 2 * for sizeof(int16_t) movu m%2, [%4q + 2 * offsetq + 1 * mmsize] movu m%3, [%4q + 2 * offsetq + 2 * mmsize] @@ -116,6 +115,7 @@ SECTION .text %macro LOAD_PARAMS 0 %if LUMA + lea offsetq, [3 * xq] ;xq * ALF_NUM_COEFF_LUMA / ALF_BLOCK_SIZE LOAD_LUMA_PARAMS 3, 4, 5, filter, 6, 7 LOAD_LUMA_PARAMS 6, 7, 8, clip, 9, 10 %else _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
