diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-01 05:05:23 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-12-02 04:05:18 +0100 |
commit | 7ffaa195704a7805a4342e58406904e6de17fef5 (patch) | |
tree | 4ae1db7873e44225851bd4eeb984c930a4451b1c /libavcodec/dsputil.c | |
parent | 7b05845b1523a10c458b5b59645cde8e6dc6c231 (diff) | |
download | ffmpeg-7ffaa195704a7805a4342e58406904e6de17fef5.tar.gz |
dsputil: x86: Move ff_inv_zigzag_direct16 table init to mpegvideo
The table is MMX-specific and used nowhere else.
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index e734fcd223..2aac64f09b 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -68,9 +68,6 @@ const uint8_t ff_zigzag248_direct[64] = { 53, 61, 54, 62, 39, 47, 55, 63, }; -/* not permutated inverse zigzag_direct + 1 for MMX quantizer */ -DECLARE_ALIGNED(16, uint16_t, ff_inv_zigzag_direct16)[64]; - const uint8_t ff_alternate_horizontal_scan[64] = { 0, 1, 2, 3, 8, 9, 16, 17, 10, 11, 4, 5, 6, 7, 15, 14, @@ -2431,8 +2428,6 @@ av_cold void ff_dsputil_static_init(void) for(i=0;i<512;i++) { ff_squareTbl[i] = (i - 256) * (i - 256); } - - for(i=0; i<64; i++) ff_inv_zigzag_direct16[ff_zigzag_direct[i]]= i+1; } int ff_check_alignment(void){ |