]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Use ff_vp3_idct_data in vp3dsp_mmx.c rather than duplicating it
authorconrad <conrad@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 31 Aug 2008 07:05:55 +0000 (07:05 +0000)
committerconrad <conrad@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 31 Aug 2008 07:05:55 +0000 (07:05 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15118 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/i386/dsputil_mmx.c
libavcodec/i386/vp3dsp_mmx.c
libavcodec/i386/vp3dsp_mmx.h

index 41aadc611957612e896adb8aa765f58892e69cbb..7dbb6a3d16f0e93a688ede6b7727d1106ca1375b 100644 (file)
@@ -2537,7 +2537,6 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
                     c->idct    = ff_vp3_idct_sse2;
                     c->idct_permutation_type= FF_TRANSPOSE_IDCT_PERM;
                 }else{
-                    ff_vp3_dsp_init_mmx();
                     c->idct_put= ff_vp3_idct_put_mmx;
                     c->idct_add= ff_vp3_idct_add_mmx;
                     c->idct    = ff_vp3_idct_mmx;
index e0fb394e71e038a5975312416629d58f0accfbe7..bdf19bbb36f4a3429403f65701119e7262eaabd7 100644 (file)
 #include "dsputil_mmx.h"
 #include "mmx.h"
 
-/* (12 * 4) 2-byte memory locations ( = 96 bytes total)
- * idct_constants[0..15] = Mask table (M(I))
- * idct_constants[16..43] = Cosine table (C(I))
- * idct_constants[44..47] = 8
- */
-static uint16_t idct_constants[(4 + 7) * 4];
-static const uint16_t idct_cosine_table[7] = {
-    64277, 60547, 54491, 46341, 36410, 25080, 12785
-};
+extern const uint16_t ff_vp3_idct_data[];
 
 #define r0 mm0
 #define r1 mm1
@@ -258,18 +250,6 @@ static const uint16_t idct_cosine_table[7] = {
     movq_r2m(r2, *I(2)); \
 }
 
-void ff_vp3_dsp_init_mmx(void)
-{
-    int j = 16;
-    uint16_t *p;
-
-    j = 1;
-    do {
-        p = idct_constants + ((j + 3) << 2);
-        p[0] = p[1] = p[2] = p[3] = idct_cosine_table[j - 1];
-    } while (++j <= 7);
-}
-
 void ff_vp3_idct_mmx(int16_t *output_data)
 {
     /* eax = quantized input
@@ -281,7 +261,7 @@ void ff_vp3_idct_mmx(int16_t *output_data)
      * r0..r7 = mm0..mm7
      */
 
-#define C(x) (idct_constants + 16 + (x - 1) * 4)
+#define C(x) (ff_vp3_idct_data + (x - 1) * 8)
 #define Eight (&ff_pw_8)
 
     /* at this point, function has completed dequantization + dezigzag +
index 7d1c38d1a55d655cff4b52139c708394973b1972..d0e61960aed6501d20c06399c660c6ac6d9a0daa 100644 (file)
@@ -28,6 +28,5 @@
 void ff_vp3_idct_mmx(int16_t *data);
 void ff_vp3_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block);
 void ff_vp3_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block);
-void ff_vp3_dsp_init_mmx(void);
 
 #endif /* FFMPEG_VP3DSP_MMX_H */