This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 188df9549c5c120728b43f953ec281e67e4bb3c3
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Thu Nov 6 15:49:40 2025 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Thu Apr 30 10:39:33 2026 +0200

    avcodec/x86/qpeldsp: Don't use too much stack
    
    We only need (SIZE+1)*SIZE words.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/qpeldsp.asm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/x86/qpeldsp.asm b/libavcodec/x86/qpeldsp.asm
index 1d32289a4a..bb7654f27f 100644
--- a/libavcodec/x86/qpeldsp.asm
+++ b/libavcodec/x86/qpeldsp.asm
@@ -488,7 +488,7 @@ MPEG4_QPEL16_V_LOWPASS put_no_rnd
 
 
 %macro MPEG4_QPEL8_V_LOWPASS 1
-cglobal %1_mpeg4_qpel8_v_lowpass, 4, 6, 0, 288
+cglobal %1_mpeg4_qpel8_v_lowpass, 4, 6, 0, 144
     mov         r4d, 9
     mov          r5, rsp
     pxor         m7, m7

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to