vp3dsp_mmx.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:11k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Copyright (C) 2004 the ffmpeg project
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Lesser General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Lesser General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  */
  18. /**
  19.  * @file vp3dsp_mmx.c
  20.  * MMX-optimized functions cribbed from the original VP3 source code.
  21.  */
  22. #include "../dsputil.h"
  23. #include "mmx.h"
  24. #define IdctAdjustBeforeShift 8
  25. /* (12 * 4) 2-byte memory locations ( = 96 bytes total)
  26.  * idct_constants[0..15] = Mask table (M(I))
  27.  * idct_constants[16..43] = Cosine table (C(I))
  28.  * idct_constants[44..47] = 8
  29.  */
  30. static uint16_t idct_constants[(4 + 7 + 1) * 4];
  31. static const uint16_t idct_cosine_table[7] = {
  32.     64277, 60547, 54491, 46341, 36410, 25080, 12785
  33. };
  34. #define r0 mm0
  35. #define r1 mm1
  36. #define r2 mm2
  37. #define r3 mm3
  38. #define r4 mm4
  39. #define r5 mm5
  40. #define r6 mm6
  41. #define r7 mm7
  42. /* from original comments: The Macro does IDct on 4 1-D Dcts */
  43. #define BeginIDCT() { 
  44.     movq_m2r(*I(3), r2); 
  45.     movq_m2r(*C(3), r6); 
  46.     movq_r2r(r2, r4); 
  47.     movq_m2r(*J(5), r7); 
  48.     pmulhw_r2r(r6, r4);       /* r4 = c3*i3 - i3 */ 
  49.     movq_m2r(*C(5), r1); 
  50.     pmulhw_r2r(r7, r6);       /* r6 = c3*i5 - i5 */ 
  51.     movq_r2r(r1, r5); 
  52.     pmulhw_r2r(r2, r1);       /* r1 = c5*i3 - i3 */ 
  53.     movq_m2r(*I(1), r3); 
  54.     pmulhw_r2r(r7, r5);       /* r5 = c5*i5 - i5 */ 
  55.     movq_m2r(*C(1), r0);      /* (all registers are in use) */ 
  56.     paddw_r2r(r2, r4);        /* r4 = c3*i3 */ 
  57.     paddw_r2r(r7, r6);        /* r6 = c3*i5 */ 
  58.     paddw_r2r(r1, r2);        /* r2 = c5*i3 */ 
  59.     movq_m2r(*J(7), r1); 
  60.     paddw_r2r(r5, r7);        /* r7 = c5*i5 */ 
  61.     movq_r2r(r0, r5);         /* r5 = c1 */ 
  62.     pmulhw_r2r(r3, r0);       /* r0 = c1*i1 - i1 */ 
  63.     paddsw_r2r(r7, r4);       /* r4 = C = c3*i3 + c5*i5 */ 
  64.     pmulhw_r2r(r1, r5);       /* r5 = c1*i7 - i7 */ 
  65.     movq_m2r(*C(7), r7); 
  66.     psubsw_r2r(r2, r6);       /* r6 = D = c3*i5 - c5*i3 */ 
  67.     paddw_r2r(r3, r0);        /* r0 = c1*i1 */ 
  68.     pmulhw_r2r(r7, r3);       /* r3 = c7*i1 */ 
  69.     movq_m2r(*I(2), r2); 
  70.     pmulhw_r2r(r1, r7);       /* r7 = c7*i7 */ 
  71.     paddw_r2r(r1, r5);        /* r5 = c1*i7 */ 
  72.     movq_r2r(r2, r1);         /* r1 = i2 */ 
  73.     pmulhw_m2r(*C(2), r2);    /* r2 = c2*i2 - i2 */ 
  74.     psubsw_r2r(r5, r3);       /* r3 = B = c7*i1 - c1*i7 */ 
  75.     movq_m2r(*J(6), r5); 
  76.     paddsw_r2r(r7, r0);       /* r0 = A = c1*i1 + c7*i7 */ 
  77.     movq_r2r(r5, r7);         /* r7 = i6 */ 
  78.     psubsw_r2r(r4, r0);       /* r0 = A - C */ 
  79.     pmulhw_m2r(*C(2), r5);    /* r5 = c2*i6 - i6 */ 
  80.     paddw_r2r(r1, r2);        /* r2 = c2*i2 */ 
  81.     pmulhw_m2r(*C(6), r1);    /* r1 = c6*i2 */ 
  82.     paddsw_r2r(r4, r4);       /* r4 = C + C */ 
  83.     paddsw_r2r(r0, r4);       /* r4 = C. = A + C */ 
  84.     psubsw_r2r(r6, r3);       /* r3 = B - D */ 
  85.     paddw_r2r(r7, r5);        /* r5 = c2*i6 */ 
  86.     paddsw_r2r(r6, r6);       /* r6 = D + D */ 
  87.     pmulhw_m2r(*C(6), r7);    /* r7 = c6*i6 */ 
  88.     paddsw_r2r(r3, r6);       /* r6 = D. = B + D */ 
  89.     movq_r2m(r4, *I(1));      /* save C. at I(1) */ 
  90.     psubsw_r2r(r5, r1);       /* r1 = H = c6*i2 - c2*i6 */ 
  91.     movq_m2r(*C(4), r4); 
  92.     movq_r2r(r3, r5);         /* r5 = B - D */ 
  93.     pmulhw_r2r(r4, r3);       /* r3 = (c4 - 1) * (B - D) */ 
  94.     paddsw_r2r(r2, r7);       /* r7 = G = c6*i6 + c2*i2 */ 
  95.     movq_r2m(r6, *I(2));      /* save D. at I(2) */ 
  96.     movq_r2r(r0, r2);         /* r2 = A - C */ 
  97.     movq_m2r(*I(0), r6); 
  98.     pmulhw_r2r(r4, r0);       /* r0 = (c4 - 1) * (A - C) */ 
  99.     paddw_r2r(r3, r5);        /* r5 = B. = c4 * (B - D) */ 
  100.     movq_m2r(*J(4), r3); 
  101.     psubsw_r2r(r1, r5);       /* r5 = B.. = B. - H */ 
  102.     paddw_r2r(r0, r2);        /* r0 = A. = c4 * (A - C) */ 
  103.     psubsw_r2r(r3, r6);       /* r6 = i0 - i4 */ 
  104.     movq_r2r(r6, r0); 
  105.     pmulhw_r2r(r4, r6);       /* r6 = (c4 - 1) * (i0 - i4) */ 
  106.     paddsw_r2r(r3, r3);       /* r3 = i4 + i4 */ 
  107.     paddsw_r2r(r1, r1);       /* r1 = H + H */ 
  108.     paddsw_r2r(r0, r3);       /* r3 = i0 + i4 */ 
  109.     paddsw_r2r(r5, r1);       /* r1 = H. = B + H */ 
  110.     pmulhw_r2r(r3, r4);       /* r4 = (c4 - 1) * (i0 + i4) */ 
  111.     paddsw_r2r(r0, r6);       /* r6 = F = c4 * (i0 - i4) */ 
  112.     psubsw_r2r(r2, r6);       /* r6 = F. = F - A. */ 
  113.     paddsw_r2r(r2, r2);       /* r2 = A. + A. */ 
  114.     movq_m2r(*I(1), r0);      /* r0 = C. */ 
  115.     paddsw_r2r(r6, r2);       /* r2 = A.. = F + A. */ 
  116.     paddw_r2r(r3, r4);        /* r4 = E = c4 * (i0 + i4) */ 
  117.     psubsw_r2r(r1, r2);       /* r2 = R2 = A.. - H. */ 
  118. }
  119. /* RowIDCT gets ready to transpose */
  120. #define RowIDCT() { 
  121.     
  122.     BeginIDCT(); 
  123.     
  124.     movq_m2r(*I(2), r3);   /* r3 = D. */ 
  125.     psubsw_r2r(r7, r4);    /* r4 = E. = E - G */ 
  126.     paddsw_r2r(r1, r1);    /* r1 = H. + H. */ 
  127.     paddsw_r2r(r7, r7);    /* r7 = G + G */ 
  128.     paddsw_r2r(r2, r1);    /* r1 = R1 = A.. + H. */ 
  129.     paddsw_r2r(r4, r7);    /* r7 = G. = E + G */ 
  130.     psubsw_r2r(r3, r4);    /* r4 = R4 = E. - D. */ 
  131.     paddsw_r2r(r3, r3); 
  132.     psubsw_r2r(r5, r6);    /* r6 = R6 = F. - B.. */ 
  133.     paddsw_r2r(r5, r5); 
  134.     paddsw_r2r(r4, r3);    /* r3 = R3 = E. + D. */ 
  135.     paddsw_r2r(r6, r5);    /* r5 = R5 = F. + B.. */ 
  136.     psubsw_r2r(r0, r7);    /* r7 = R7 = G. - C. */ 
  137.     paddsw_r2r(r0, r0); 
  138.     movq_r2m(r1, *I(1));   /* save R1 */ 
  139.     paddsw_r2r(r7, r0);    /* r0 = R0 = G. + C. */ 
  140. }
  141. /* Column IDCT normalizes and stores final results */
  142. #define ColumnIDCT() { 
  143.     
  144.     BeginIDCT(); 
  145.     
  146.     paddsw_m2r(*Eight, r2);    /* adjust R2 (and R1) for shift */ 
  147.     paddsw_r2r(r1, r1);        /* r1 = H. + H. */ 
  148.     paddsw_r2r(r2, r1);        /* r1 = R1 = A.. + H. */ 
  149.     psraw_i2r(4, r2);          /* r2 = NR2 */ 
  150.     psubsw_r2r(r7, r4);        /* r4 = E. = E - G */ 
  151.     psraw_i2r(4, r1);          /* r1 = NR1 */ 
  152.     movq_m2r(*I(2), r3);       /* r3 = D. */ 
  153.     paddsw_r2r(r7, r7);        /* r7 = G + G */ 
  154.     movq_r2m(r2, *I(2));       /* store NR2 at I2 */ 
  155.     paddsw_r2r(r4, r7);        /* r7 = G. = E + G */ 
  156.     movq_r2m(r1, *I(1));       /* store NR1 at I1 */ 
  157.     psubsw_r2r(r3, r4);        /* r4 = R4 = E. - D. */ 
  158.     paddsw_m2r(*Eight, r4);    /* adjust R4 (and R3) for shift */ 
  159.     paddsw_r2r(r3, r3);        /* r3 = D. + D. */ 
  160.     paddsw_r2r(r4, r3);        /* r3 = R3 = E. + D. */ 
  161.     psraw_i2r(4, r4);          /* r4 = NR4 */ 
  162.     psubsw_r2r(r5, r6);        /* r6 = R6 = F. - B.. */ 
  163.     psraw_i2r(4, r3);          /* r3 = NR3 */ 
  164.     paddsw_m2r(*Eight, r6);    /* adjust R6 (and R5) for shift */ 
  165.     paddsw_r2r(r5, r5);        /* r5 = B.. + B.. */ 
  166.     paddsw_r2r(r6, r5);        /* r5 = R5 = F. + B.. */ 
  167.     psraw_i2r(4, r6);          /* r6 = NR6 */ 
  168.     movq_r2m(r4, *J(4));       /* store NR4 at J4 */ 
  169.     psraw_i2r(4, r5);          /* r5 = NR5 */ 
  170.     movq_r2m(r3, *I(3));       /* store NR3 at I3 */ 
  171.     psubsw_r2r(r0, r7);        /* r7 = R7 = G. - C. */ 
  172.     paddsw_m2r(*Eight, r7);    /* adjust R7 (and R0) for shift */ 
  173.     paddsw_r2r(r0, r0);        /* r0 = C. + C. */ 
  174.     paddsw_r2r(r7, r0);        /* r0 = R0 = G. + C. */ 
  175.     psraw_i2r(4, r7);          /* r7 = NR7 */ 
  176.     movq_r2m(r6, *J(6));       /* store NR6 at J6 */ 
  177.     psraw_i2r(4, r0);          /* r0 = NR0 */ 
  178.     movq_r2m(r5, *J(5));       /* store NR5 at J5 */ 
  179.     movq_r2m(r7, *J(7));       /* store NR7 at J7 */ 
  180.     movq_r2m(r0, *I(0));       /* store NR0 at I0 */ 
  181. }
  182. /* Following macro does two 4x4 transposes in place.
  183.   At entry (we assume):
  184.     r0 = a3 a2 a1 a0
  185.     I(1) = b3 b2 b1 b0
  186.     r2 = c3 c2 c1 c0
  187.     r3 = d3 d2 d1 d0
  188.     r4 = e3 e2 e1 e0
  189.     r5 = f3 f2 f1 f0
  190.     r6 = g3 g2 g1 g0
  191.     r7 = h3 h2 h1 h0
  192.   At exit, we have:
  193.     I(0) = d0 c0 b0 a0
  194.     I(1) = d1 c1 b1 a1
  195.     I(2) = d2 c2 b2 a2
  196.     I(3) = d3 c3 b3 a3
  197.     
  198.     J(4) = h0 g0 f0 e0
  199.     J(5) = h1 g1 f1 e1
  200.     J(6) = h2 g2 f2 e2
  201.     J(7) = h3 g3 f3 e3
  202.    I(0) I(1) I(2) I(3)  is the transpose of r0 I(1) r2 r3.
  203.    J(4) J(5) J(6) J(7)  is the transpose of r4 r5 r6 r7.
  204.    Since r1 is free at entry, we calculate the Js first. */
  205. #define Transpose() { 
  206.     movq_r2r(r4, r1);         /* r1 = e3 e2 e1 e0 */ 
  207.     punpcklwd_r2r(r5, r4);    /* r4 = f1 e1 f0 e0 */ 
  208.     movq_r2m(r0, *I(0));      /* save a3 a2 a1 a0 */ 
  209.     punpckhwd_r2r(r5, r1);    /* r1 = f3 e3 f2 e2 */ 
  210.     movq_r2r(r6, r0);         /* r0 = g3 g2 g1 g0 */ 
  211.     punpcklwd_r2r(r7, r6);    /* r6 = h1 g1 h0 g0 */ 
  212.     movq_r2r(r4, r5);         /* r5 = f1 e1 f0 e0 */ 
  213.     punpckldq_r2r(r6, r4);    /* r4 = h0 g0 f0 e0 = R4 */ 
  214.     punpckhdq_r2r(r6, r5);    /* r5 = h1 g1 f1 e1 = R5 */ 
  215.     movq_r2r(r1, r6);         /* r6 = f3 e3 f2 e2 */ 
  216.     movq_r2m(r4, *J(4)); 
  217.     punpckhwd_r2r(r7, r0);    /* r0 = h3 g3 h2 g2 */ 
  218.     movq_r2m(r5, *J(5)); 
  219.     punpckhdq_r2r(r0, r6);    /* r6 = h3 g3 f3 e3 = R7 */ 
  220.     movq_m2r(*I(0), r4);      /* r4 = a3 a2 a1 a0 */ 
  221.     punpckldq_r2r(r0, r1);    /* r1 = h2 g2 f2 e2 = R6 */ 
  222.     movq_m2r(*I(1), r5);      /* r5 = b3 b2 b1 b0 */ 
  223.     movq_r2r(r4, r0);         /* r0 = a3 a2 a1 a0 */ 
  224.     movq_r2m(r6, *J(7)); 
  225.     punpcklwd_r2r(r5, r0);    /* r0 = b1 a1 b0 a0 */ 
  226.     movq_r2m(r1, *J(6)); 
  227.     punpckhwd_r2r(r5, r4);    /* r4 = b3 a3 b2 a2 */ 
  228.     movq_r2r(r2, r5);         /* r5 = c3 c2 c1 c0 */ 
  229.     punpcklwd_r2r(r3, r2);    /* r2 = d1 c1 d0 c0 */ 
  230.     movq_r2r(r0, r1);         /* r1 = b1 a1 b0 a0 */ 
  231.     punpckldq_r2r(r2, r0);    /* r0 = d0 c0 b0 a0 = R0 */ 
  232.     punpckhdq_r2r(r2, r1);    /* r1 = d1 c1 b1 a1 = R1 */ 
  233.     movq_r2r(r4, r2);         /* r2 = b3 a3 b2 a2 */ 
  234.     movq_r2m(r0, *I(0)); 
  235.     punpckhwd_r2r(r3, r5);    /* r5 = d3 c3 d2 c2 */ 
  236.     movq_r2m(r1, *I(1)); 
  237.     punpckhdq_r2r(r5, r4);    /* r4 = d3 c3 b3 a3 = R3 */ 
  238.     punpckldq_r2r(r5, r2);    /* r2 = d2 c2 b2 a2 = R2 */ 
  239.     movq_r2m(r4, *I(3)); 
  240.     movq_r2m(r2, *I(2)); 
  241. }
  242. void ff_vp3_dsp_init_mmx(void)
  243. {
  244.     int j = 16;
  245.     uint16_t *p;
  246.     j = 1;
  247.     do {
  248.         p = idct_constants + ((j + 3) << 2);
  249.         p[0] = p[1] = p[2] = p[3] = idct_cosine_table[j - 1];
  250.     } while (++j <= 7);
  251.     idct_constants[44] = idct_constants[45] =
  252.     idct_constants[46] = idct_constants[47] = IdctAdjustBeforeShift;
  253. }
  254. void ff_vp3_idct_mmx(int16_t *output_data)
  255. {
  256.     /* eax = quantized input
  257.      * ebx = dequantizer matrix
  258.      * ecx = IDCT constants
  259.      *  M(I) = ecx + MaskOffset(0) + I * 8
  260.      *  C(I) = ecx + CosineOffset(32) + (I-1) * 8
  261.      * edx = output
  262.      * r0..r7 = mm0..mm7
  263.      */
  264. #define C(x) (idct_constants + 16 + (x - 1) * 4)
  265. #define Eight (idct_constants + 44)
  266.     /* at this point, function has completed dequantization + dezigzag +
  267.      * partial transposition; now do the idct itself */
  268. #define I(K) (output_data + K * 8)
  269. #define J(K) (output_data + ((K - 4) * 8) + 4)
  270.     RowIDCT();
  271.     Transpose();
  272. #undef I
  273. #undef J
  274. #define I(K) (output_data + (K * 8) + 32)
  275. #define J(K) (output_data + ((K - 4) * 8) + 36)
  276.     RowIDCT();
  277.     Transpose();
  278. #undef I
  279. #undef J
  280. #define I(K) (output_data + K * 8)
  281. #define J(K) (output_data + K * 8)
  282.     ColumnIDCT();
  283. #undef I
  284. #undef J
  285. #define I(K) (output_data + (K * 8) + 4)
  286. #define J(K) (output_data + (K * 8) + 4)
  287.     ColumnIDCT();
  288. #undef I
  289. #undef J
  290. }