# HG changeset patch # User aurel # Date 1196204246 0 # Node ID aa06b0387069be4d8b04015dda78eea9df59fc05 # Parent 3d2019ebd3886052b9c7f3b73fd6b87a56eb45e1 remove some unused ff_p* vars from dsputil diff -r 3d2019ebd388 -r aa06b0387069 i386/dsputil_mmx.c --- a/i386/dsputil_mmx.c Tue Nov 27 22:56:15 2007 +0000 +++ b/i386/dsputil_mmx.c Tue Nov 27 22:57:26 2007 +0000 @@ -42,9 +42,7 @@ /* pixel operations */ DECLARE_ALIGNED_8 (const uint64_t, ff_bone) = 0x0101010101010101ULL; -DECLARE_ALIGNED_8 (const uint64_t, ff_wone) = 0x0001000100010001ULL; DECLARE_ALIGNED_8 (const uint64_t, ff_wtwo) = 0x0002000200020002ULL; -DECLARE_ALIGNED_8 (const uint64_t, ff_wabs) = 0xFFFFFFFFFFFFFFFFULL; DECLARE_ALIGNED_16(const uint64_t, ff_pdw_80000000[2]) = {0x8000000080000000ULL, 0x8000000080000000ULL}; @@ -66,7 +64,6 @@ DECLARE_ALIGNED_8 (const uint64_t, ff_pb_3 ) = 0x0303030303030303ULL; DECLARE_ALIGNED_8 (const uint64_t, ff_pb_7 ) = 0x0707070707070707ULL; DECLARE_ALIGNED_8 (const uint64_t, ff_pb_3F ) = 0x3F3F3F3F3F3F3F3FULL; -DECLARE_ALIGNED_8 (const uint64_t, ff_pb_5F ) = 0x5F5F5F5F5F5F5F5FULL; DECLARE_ALIGNED_8 (const uint64_t, ff_pb_A1 ) = 0xA1A1A1A1A1A1A1A1ULL; DECLARE_ALIGNED_8 (const uint64_t, ff_pb_FC ) = 0xFCFCFCFCFCFCFCFCULL; diff -r 3d2019ebd388 -r aa06b0387069 i386/dsputil_mmx.h --- a/i386/dsputil_mmx.h Tue Nov 27 22:56:15 2007 +0000 +++ b/i386/dsputil_mmx.h Tue Nov 27 22:57:26 2007 +0000 @@ -23,9 +23,7 @@ #define FFMPEG_DSPUTIL_MMX_H extern const uint64_t ff_bone; -extern const uint64_t ff_wone; extern const uint64_t ff_wtwo; -extern const uint64_t ff_wabs; extern const uint64_t ff_pdw_80000000[2]; @@ -46,7 +44,6 @@ extern const uint64_t ff_pb_3; extern const uint64_t ff_pb_7; extern const uint64_t ff_pb_3F; -extern const uint64_t ff_pb_5F; extern const uint64_t ff_pb_A1; extern const uint64_t ff_pb_FC;