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

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 6a46ea7da2 avcodec/x86/constants, h263_loopfilter: Move pb_FC to 
h263_loopfilter
6a46ea7da2 is described below

commit 6a46ea7da2e4e681ed699f6106b73b5347d3969a
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Thu Apr 30 11:48:56 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Mon May 4 16:57:18 2026 +0200

    avcodec/x86/constants, h263_loopfilter: Move pb_FC to h263_loopfilter
    
    Only used there.
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/x86/constants.c         | 1 -
 libavcodec/x86/constants.h         | 1 -
 libavcodec/x86/h263_loopfilter.asm | 4 +++-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/x86/constants.c b/libavcodec/x86/constants.c
index 9b0d6ea47b..0bea3e2ac9 100644
--- a/libavcodec/x86/constants.c
+++ b/libavcodec/x86/constants.c
@@ -74,7 +74,6 @@ DECLARE_ALIGNED(32, const ymm_reg,  ff_pb_80)   = { 
0x8080808080808080ULL, 0x808
                                                     0x8080808080808080ULL, 
0x8080808080808080ULL };
 DECLARE_ALIGNED(32, const ymm_reg,  ff_pb_FE)   = { 0xFEFEFEFEFEFEFEFEULL, 
0xFEFEFEFEFEFEFEFEULL,
                                                     0xFEFEFEFEFEFEFEFEULL, 
0xFEFEFEFEFEFEFEFEULL };
-DECLARE_ALIGNED(16, const xmm_reg,  ff_pb_FC)   = { 0xFCFCFCFCFCFCFCFCULL, 
0xFCFCFCFCFCFCFCFCULL };
 
 DECLARE_ALIGNED(16, const xmm_reg,  ff_ps_neg)  = { 0x8000000080000000ULL, 
0x8000000080000000ULL };
 
diff --git a/libavcodec/x86/constants.h b/libavcodec/x86/constants.h
index 92ad9bb341..311794dae3 100644
--- a/libavcodec/x86/constants.h
+++ b/libavcodec/x86/constants.h
@@ -55,7 +55,6 @@ extern const ymm_reg  ff_pb_1;
 extern const ymm_reg  ff_pb_2;
 extern const ymm_reg  ff_pb_3;
 extern const ymm_reg  ff_pb_80;
-extern const xmm_reg  ff_pb_FC;
 extern const ymm_reg  ff_pb_FE;
 
 extern const xmm_reg  ff_ps_neg;
diff --git a/libavcodec/x86/h263_loopfilter.asm 
b/libavcodec/x86/h263_loopfilter.asm
index ebe76f01af..083537154b 100644
--- a/libavcodec/x86/h263_loopfilter.asm
+++ b/libavcodec/x86/h263_loopfilter.asm
@@ -22,8 +22,10 @@
 
 %include "libavutil/x86/x86util.asm"
 
-cextern pb_FC
+SECTION_RODATA
+
 cextern h263_loop_filter_strength
+pb_FC: times 16 db 0xFC
 
 SECTION .text
 

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

Reply via email to