Skip to content

Commit e4c8e80

Browse files
committed
avcodec/x86/constants: Move constants only used by cavsdsp to it
And make them static. Signed-off-by: Andreas Rheinhardt <[email protected]>
1 parent 437cbd2 commit e4c8e80

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

libavcodec/x86/cavsdsp.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ static void cavs_idct8_add_sse2(uint8_t *dst, int16_t *block, ptrdiff_t stride)
5151

5252
#if HAVE_MMXEXT_INLINE
5353

54+
DECLARE_ASM_CONST(8, uint64_t, pw_42) = 0x002A002A002A002AULL;
55+
DECLARE_ASM_CONST(8, uint64_t, pw_96) = 0x0060006000600060ULL;
56+
5457
/*****************************************************************************
5558
*
5659
* motion compensation
@@ -233,17 +236,17 @@ static void OPNAME ## cavs_qpel8_h_ ## MMX(uint8_t *dst, const uint8_t *src, ptr
233236
\
234237
static inline void OPNAME ## cavs_qpel8or16_v1_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)\
235238
{ \
236-
QPEL_CAVSVNUM(QPEL_CAVSV1,OP,ff_pw_64,ff_pw_96,ff_pw_42) \
239+
QPEL_CAVSVNUM(QPEL_CAVSV1,OP,ff_pw_64,pw_96,pw_42) \
237240
}\
238241
\
239242
static inline void OPNAME ## cavs_qpel8or16_v2_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)\
240243
{ \
241-
QPEL_CAVSVNUM(QPEL_CAVSV2,OP,ff_pw_4,ff_pw_5,ff_pw_42) \
244+
QPEL_CAVSVNUM(QPEL_CAVSV2,OP,ff_pw_4,ff_pw_5,pw_42) \
242245
}\
243246
\
244247
static inline void OPNAME ## cavs_qpel8or16_v3_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)\
245248
{ \
246-
QPEL_CAVSVNUM(QPEL_CAVSV3,OP,ff_pw_64,ff_pw_96,ff_pw_42) \
249+
QPEL_CAVSVNUM(QPEL_CAVSV3,OP,ff_pw_64,pw_96,pw_42) \
247250
}\
248251
\
249252
static void OPNAME ## cavs_qpel8_v1_ ## MMX(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride)\

libavcodec/x86/constants.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,8 @@ DECLARE_ALIGNED(16, const xmm_reg, ff_pw_16) = { 0x0010001000100010ULL, 0x001
3737
DECLARE_ASM_ALIGNED(16, const xmm_reg, ff_pw_18) = { 0x0012001200120012ULL, 0x0012001200120012ULL };
3838
DECLARE_ALIGNED(16, const xmm_reg, ff_pw_20) = { 0x0014001400140014ULL, 0x0014001400140014ULL };
3939
DECLARE_ALIGNED(16, const xmm_reg, ff_pw_32) = { 0x0020002000200020ULL, 0x0020002000200020ULL };
40-
DECLARE_ASM_ALIGNED(8, const uint64_t, ff_pw_42) = 0x002A002A002A002AULL;
4140
DECLARE_ASM_ALIGNED(8, const uint64_t, ff_pw_53) = 0x0035003500350035ULL;
4241
DECLARE_ASM_ALIGNED(16, const xmm_reg, ff_pw_64) = { 0x0040004000400040ULL, 0x0040004000400040ULL };
43-
DECLARE_ASM_ALIGNED(8, const uint64_t, ff_pw_96) = 0x0060006000600060ULL;
4442
DECLARE_ASM_ALIGNED(8, const uint64_t, ff_pw_128) = 0x0080008000800080ULL;
4543
DECLARE_ALIGNED(32, const ymm_reg, ff_pw_255) = { 0x00ff00ff00ff00ffULL, 0x00ff00ff00ff00ffULL,
4644
0x00ff00ff00ff00ffULL, 0x00ff00ff00ff00ffULL };

libavcodec/x86/constants.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,8 @@ extern const xmm_reg ff_pw_16;
3737
extern const xmm_reg ff_pw_18;
3838
extern const xmm_reg ff_pw_20;
3939
extern const xmm_reg ff_pw_32;
40-
extern const uint64_t ff_pw_42;
4140
extern const uint64_t ff_pw_53;
4241
extern const xmm_reg ff_pw_64;
43-
extern const uint64_t ff_pw_96;
4442
extern const uint64_t ff_pw_128;
4543
extern const ymm_reg ff_pw_255;
4644
extern const ymm_reg ff_pw_256;

0 commit comments

Comments
 (0)