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

Windows CE

开发平台:

C/C++

  1. /*
  2.  * MMX optimized forward DCT
  3.  * The gcc porting is Copyright (c) 2001 Fabrice Bellard.
  4.  * cleanup/optimizations are Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5.  * SSE2 optimization is Copyright (c) 2004 Denes Balatoni.
  6.  *
  7.  * from  fdctam32.c - AP922 MMX(3D-Now) forward-DCT
  8.  * 
  9.  *  Intel Application Note AP-922 - fast, precise implementation of DCT
  10.  *        http://developer.intel.com/vtune/cbts/appnotes.htm
  11.  *
  12.  * Also of inspiration:
  13.  * a page about fdct at http://www.geocities.com/ssavekar/dct.htm
  14.  * Skal's fdct at http://skal.planet-d.net/coding/dct.html
  15.  */
  16. #include "common.h"
  17. #include "../dsputil.h"
  18. #include "mmx.h"
  19. #define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align)))
  20. //////////////////////////////////////////////////////////////////////
  21. //
  22. // constants for the forward DCT
  23. // -----------------------------
  24. //
  25. // Be sure to check that your compiler is aligning all constants to QWORD
  26. // (8-byte) memory boundaries!  Otherwise the unaligned memory access will
  27. // severely stall MMX execution.
  28. //
  29. //////////////////////////////////////////////////////////////////////
  30. #define BITS_FRW_ACC 3 //; 2 or 3 for accuracy
  31. #define SHIFT_FRW_COL BITS_FRW_ACC
  32. #define SHIFT_FRW_ROW (BITS_FRW_ACC + 17 - 3)
  33. #define RND_FRW_ROW (1 << (SHIFT_FRW_ROW-1))
  34. //#define RND_FRW_COL (1 << (SHIFT_FRW_COL-1))
  35. //concatenated table, for forward DCT transformation
  36. static const int16_t fdct_tg_all_16[] ATTR_ALIGN(8) = {
  37.     13036, 13036, 13036, 13036, // tg * (2<<16) + 0.5
  38.     27146, 27146, 27146, 27146, // tg * (2<<16) + 0.5
  39.     -21746, -21746, -21746, -21746, // tg * (2<<16) + 0.5
  40. };
  41. static const int16_t ocos_4_16[4] ATTR_ALIGN(8) = {
  42.     23170, 23170, 23170, 23170, //cos * (2<<15) + 0.5
  43. };
  44. static const int64_t fdct_one_corr ATTR_ALIGN(8) = 0x0001000100010001LL;
  45. static const int32_t fdct_r_row[2] ATTR_ALIGN(8) = {RND_FRW_ROW, RND_FRW_ROW };
  46. struct 
  47. {
  48.  const int32_t fdct_r_row_sse2[4] ATTR_ALIGN(16);
  49. } fdct_r_row_sse2 ATTR_ALIGN(16)=
  50. {{
  51.  RND_FRW_ROW, RND_FRW_ROW, RND_FRW_ROW, RND_FRW_ROW
  52. }};
  53. //static const long fdct_r_row_sse2[4] ATTR_ALIGN(16) = {RND_FRW_ROW, RND_FRW_ROW, RND_FRW_ROW, RND_FRW_ROW};
  54. static const int16_t tab_frw_01234567[] ATTR_ALIGN(8) = {  // forward_dct coeff table
  55.   16384,   16384,   22725,   19266, 
  56.   16384,   16384,   12873,    4520, 
  57.   21407,    8867,   19266,   -4520, 
  58.   -8867,  -21407,  -22725,  -12873, 
  59.   16384,  -16384,   12873,  -22725, 
  60.  -16384,   16384,    4520,   19266, 
  61.    8867,  -21407,    4520,  -12873, 
  62.   21407,   -8867,   19266,  -22725, 
  63.   22725,   22725,   31521,   26722, 
  64.   22725,   22725,   17855,    6270, 
  65.   29692,   12299,   26722,   -6270, 
  66.  -12299,  -29692,  -31521,  -17855, 
  67.   22725,  -22725,   17855,  -31521, 
  68.  -22725,   22725,    6270,   26722, 
  69.   12299,  -29692,    6270,  -17855, 
  70.   29692,  -12299,   26722,  -31521, 
  71.   21407,   21407,   29692,   25172, 
  72.   21407,   21407,   16819,    5906, 
  73.   27969,   11585,   25172,   -5906, 
  74.  -11585,  -27969,  -29692,  -16819, 
  75.   21407,  -21407,   16819,  -29692, 
  76.  -21407,   21407,    5906,   25172, 
  77.   11585,  -27969,    5906,  -16819, 
  78.   27969,  -11585,   25172,  -29692, 
  79.   19266,   19266,   26722,   22654, 
  80.   19266,   19266,   15137,    5315, 
  81.   25172,   10426,   22654,   -5315, 
  82.  -10426,  -25172,  -26722,  -15137, 
  83.   19266,  -19266,   15137,  -26722, 
  84.  -19266,   19266,    5315,   22654, 
  85.   10426,  -25172,    5315,  -15137, 
  86.   25172,  -10426,   22654,  -26722, 
  87.   16384,   16384,   22725,   19266, 
  88.   16384,   16384,   12873,    4520, 
  89.   21407,    8867,   19266,   -4520, 
  90.   -8867,  -21407,  -22725,  -12873, 
  91.   16384,  -16384,   12873,  -22725, 
  92.  -16384,   16384,    4520,   19266, 
  93.    8867,  -21407,    4520,  -12873, 
  94.   21407,   -8867,   19266,  -22725, 
  95.   19266,   19266,   26722,   22654, 
  96.   19266,   19266,   15137,    5315, 
  97.   25172,   10426,   22654,   -5315, 
  98.  -10426,  -25172,  -26722,  -15137, 
  99.   19266,  -19266,   15137,  -26722, 
  100.  -19266,   19266,    5315,   22654, 
  101.   10426,  -25172,    5315,  -15137, 
  102.   25172,  -10426,   22654,  -26722, 
  103.   21407,   21407,   29692,   25172, 
  104.   21407,   21407,   16819,    5906, 
  105.   27969,   11585,   25172,   -5906, 
  106.  -11585,  -27969,  -29692,  -16819, 
  107.   21407,  -21407,   16819,  -29692, 
  108.  -21407,   21407,    5906,   25172, 
  109.   11585,  -27969,    5906,  -16819, 
  110.   27969,  -11585,   25172,  -29692, 
  111.   22725,   22725,   31521,   26722, 
  112.   22725,   22725,   17855,    6270, 
  113.   29692,   12299,   26722,   -6270, 
  114.  -12299,  -29692,  -31521,  -17855, 
  115.   22725,  -22725,   17855,  -31521, 
  116.  -22725,   22725,    6270,   26722, 
  117.   12299,  -29692,    6270,  -17855, 
  118.   29692,  -12299,   26722,  -31521, 
  119. };
  120. struct 
  121. {
  122.  const int16_t tab_frw_01234567_sse2[256] ATTR_ALIGN(16);
  123. } tab_frw_01234567_sse2 ATTR_ALIGN(16) =
  124. {{
  125. //static const int16_t tab_frw_01234567_sse2[] ATTR_ALIGN(16) = {  // forward_dct coeff table  
  126. #define TABLE_SSE2 C4,  C4,  C1,  C3, -C6, -C2, -C1, -C5, 
  127.                    C4,  C4,  C5,  C7,  C2,  C6,  C3, -C7, 
  128.                   -C4,  C4,  C7,  C3,  C6, -C2,  C7, -C5, 
  129.                    C4, -C4,  C5, -C1,  C2, -C6,  C3, -C1, 
  130. // c1..c7 * cos(pi/4) * 2^15 
  131. #define C1 22725
  132. #define C2 21407
  133. #define C3 19266
  134. #define C4 16384
  135. #define C5 12873
  136. #define C6 8867
  137. #define C7 4520
  138. TABLE_SSE2
  139. #undef C1
  140. #undef C2
  141. #undef C3
  142. #undef C4
  143. #undef C5
  144. #undef C6
  145. #undef C7
  146. #define C1 31521
  147. #define C2 29692
  148. #define C3 26722
  149. #define C4 22725
  150. #define C5 17855
  151. #define C6 12299
  152. #define C7 6270
  153. TABLE_SSE2
  154. #undef C1
  155. #undef C2
  156. #undef C3
  157. #undef C4
  158. #undef C5
  159. #undef C6
  160. #undef C7
  161. #define C1 29692
  162. #define C2 27969
  163. #define C3 25172
  164. #define C4 21407
  165. #define C5 16819
  166. #define C6 11585
  167. #define C7 5906
  168. TABLE_SSE2
  169. #undef C1
  170. #undef C2
  171. #undef C3
  172. #undef C4
  173. #undef C5
  174. #undef C6
  175. #undef C7
  176. #define C1 26722
  177. #define C2 25172
  178. #define C3 22654
  179. #define C4 19266
  180. #define C5 15137
  181. #define C6 10426
  182. #define C7 5315
  183. TABLE_SSE2
  184. #undef C1
  185. #undef C2
  186. #undef C3
  187. #undef C4
  188. #undef C5
  189. #undef C6
  190. #undef C7
  191. #define C1 22725
  192. #define C2 21407
  193. #define C3 19266
  194. #define C4 16384
  195. #define C5 12873
  196. #define C6 8867
  197. #define C7 4520
  198. TABLE_SSE2
  199. #undef C1
  200. #undef C2
  201. #undef C3
  202. #undef C4
  203. #undef C5
  204. #undef C6
  205. #undef C7
  206. #define C1 26722
  207. #define C2 25172
  208. #define C3 22654
  209. #define C4 19266
  210. #define C5 15137
  211. #define C6 10426
  212. #define C7 5315
  213. TABLE_SSE2
  214. #undef C1
  215. #undef C2
  216. #undef C3
  217. #undef C4
  218. #undef C5
  219. #undef C6
  220. #undef C7
  221. #define C1 29692
  222. #define C2 27969
  223. #define C3 25172
  224. #define C4 21407
  225. #define C5 16819
  226. #define C6 11585
  227. #define C7 5906
  228. TABLE_SSE2
  229. #undef C1
  230. #undef C2
  231. #undef C3
  232. #undef C4
  233. #undef C5
  234. #undef C6
  235. #undef C7
  236. #define C1 31521
  237. #define C2 29692
  238. #define C3 26722
  239. #define C4 22725
  240. #define C5 17855
  241. #define C6 12299
  242. #define C7 6270
  243. TABLE_SSE2
  244. }};
  245. static always_inline void fdct_col(const int16_t *in, int16_t *out, int offset)
  246. {
  247.     movq_m2r(*(in + offset + 1 * 8), mm0);
  248.     movq_m2r(*(in + offset + 6 * 8), mm1);
  249.     movq_r2r(mm0, mm2);
  250.     movq_m2r(*(in + offset + 2 * 8), mm3);
  251.     paddsw_r2r(mm1, mm0);
  252.     movq_m2r(*(in + offset + 5 * 8), mm4);
  253.     psllw_i2r(SHIFT_FRW_COL, mm0);
  254.     movq_m2r(*(in + offset + 0 * 8), mm5);
  255.     paddsw_r2r(mm3, mm4);
  256.     paddsw_m2r(*(in + offset + 7 * 8), mm5);
  257.     psllw_i2r(SHIFT_FRW_COL, mm4);
  258.     movq_r2r(mm0, mm6);
  259.     psubsw_r2r(mm1, mm2);
  260.     movq_m2r(*(fdct_tg_all_16 + 4), mm1);
  261.     psubsw_r2r(mm4, mm0);
  262.     movq_m2r(*(in + offset + 3 * 8), mm7);
  263.     pmulhw_r2r(mm0, mm1);
  264.     paddsw_m2r(*(in + offset + 4 * 8), mm7);
  265.     psllw_i2r(SHIFT_FRW_COL, mm5);
  266.     paddsw_r2r(mm4, mm6);
  267.     psllw_i2r(SHIFT_FRW_COL, mm7);
  268.     movq_r2r(mm5, mm4);
  269.     psubsw_r2r(mm7, mm5);
  270.     paddsw_r2r(mm5, mm1);
  271.     paddsw_r2r(mm7, mm4);
  272.     por_m2r(fdct_one_corr, mm1);
  273.     psllw_i2r(SHIFT_FRW_COL + 1, mm2);
  274.     pmulhw_m2r(*(fdct_tg_all_16 + 4), mm5);
  275.     movq_r2r(mm4, mm7);
  276.     psubsw_m2r(*(in + offset + 5 * 8), mm3);
  277.     psubsw_r2r(mm6, mm4);
  278.     movq_r2m(mm1, *(out + offset + 2 * 8));
  279.     paddsw_r2r(mm6, mm7);
  280.     movq_m2r(*(in + offset + 3 * 8), mm1);
  281.     psllw_i2r(SHIFT_FRW_COL + 1, mm3);
  282.     psubsw_m2r(*(in + offset + 4 * 8), mm1);
  283.     movq_r2r(mm2, mm6);
  284.     movq_r2m(mm4, *(out + offset + 4 * 8));
  285.     paddsw_r2r(mm3, mm2);
  286.     pmulhw_m2r(*ocos_4_16, mm2);
  287.     psubsw_r2r(mm3, mm6);
  288.     pmulhw_m2r(*ocos_4_16, mm6);
  289.     psubsw_r2r(mm0, mm5);
  290.     por_m2r(fdct_one_corr, mm5);
  291.     psllw_i2r(SHIFT_FRW_COL, mm1);
  292.     por_m2r(fdct_one_corr, mm2);
  293.     movq_r2r(mm1, mm4);
  294.     movq_m2r(*(in + offset + 0 * 8), mm3);
  295.     paddsw_r2r(mm6, mm1);
  296.     psubsw_m2r(*(in + offset + 7 * 8), mm3);
  297.     psubsw_r2r(mm6, mm4);
  298.     movq_m2r(*(fdct_tg_all_16 + 0), mm0);
  299.     psllw_i2r(SHIFT_FRW_COL, mm3);
  300.     movq_m2r(*(fdct_tg_all_16 + 8), mm6);
  301.     pmulhw_r2r(mm1, mm0);
  302.     movq_r2m(mm7, *(out + offset + 0 * 8));
  303.     pmulhw_r2r(mm4, mm6);
  304.     movq_r2m(mm5, *(out + offset + 6 * 8));
  305.     movq_r2r(mm3, mm7);
  306.     movq_m2r(*(fdct_tg_all_16 + 8), mm5);
  307.     psubsw_r2r(mm2, mm7);
  308.     paddsw_r2r(mm2, mm3);
  309.     pmulhw_r2r(mm7, mm5);
  310.     paddsw_r2r(mm3, mm0);
  311.     paddsw_r2r(mm4, mm6);
  312.     pmulhw_m2r(*(fdct_tg_all_16 + 0), mm3);
  313.     por_m2r(fdct_one_corr, mm0);
  314.     paddsw_r2r(mm7, mm5);
  315.     psubsw_r2r(mm6, mm7);
  316.     movq_r2m(mm0, *(out + offset + 1 * 8));
  317.     paddsw_r2r(mm4, mm5);
  318.     movq_r2m(mm7, *(out + offset + 3 * 8));
  319.     psubsw_r2r(mm1, mm3);
  320.     movq_r2m(mm5, *(out + offset + 5 * 8));
  321.     movq_r2m(mm3, *(out + offset + 7 * 8));
  322. }
  323. static always_inline void fdct_row_sse2(const int16_t *in, int16_t *out)
  324. {
  325.     asm volatile(
  326.         ".macro FDCT_ROW_SSE2_H1 i t   nt"
  327. "movq      \i(%0), %%xmm2     nt"
  328. "movq      \i+8(%0), %%xmm0   nt"
  329. "movdqa    \t+32(%1), %%xmm3  nt"
  330. "movdqa    \t+48(%1), %%xmm7  nt"
  331. "movdqa    \t(%1), %%xmm4     nt"
  332. "movdqa    \t+16(%1), %%xmm5  nt"
  333. ".endm                         nt"
  334.         ".macro FDCT_ROW_SSE2_H2 i t   nt"
  335. "movq      \i(%0), %%xmm2     nt"
  336. "movq      \i+8(%0), %%xmm0   nt"
  337. "movdqa    \t+32(%1), %%xmm3  nt"
  338. "movdqa    \t+48(%1), %%xmm7  nt"
  339. ".endm                         nt"
  340. ".macro FDCT_ROW_SSE2 i        nt"
  341. "movq      %%xmm2, %%xmm1      nt"
  342. "pshuflw   $27, %%xmm0, %%xmm0 nt"
  343. "paddsw    %%xmm0, %%xmm1      nt"
  344. "psubsw    %%xmm0, %%xmm2      nt"
  345. "punpckldq %%xmm2, %%xmm1      nt"
  346. "pshufd    $78, %%xmm1, %%xmm2 nt"
  347. "pmaddwd   %%xmm2, %%xmm3      nt"
  348. "pmaddwd   %%xmm1, %%xmm7      nt"
  349. "pmaddwd   %%xmm5, %%xmm2      nt"
  350. "pmaddwd   %%xmm4, %%xmm1      nt"
  351. "paddd     %%xmm7, %%xmm3      nt"
  352. "paddd     %%xmm2, %%xmm1      nt"
  353. "paddd     %%xmm6, %%xmm3      nt"
  354. "paddd     %%xmm6, %%xmm1      nt"
  355. "psrad     %3, %%xmm3          nt"
  356. "psrad     %3, %%xmm1          nt"
  357. "packssdw  %%xmm3, %%xmm1      nt"
  358. "movdqa    %%xmm1, \i(%4)     nt"
  359. ".endm                         nt"
  360. "movdqa    (%2), %%xmm6        nt"
  361. "FDCT_ROW_SSE2_H1 0 0 nt"
  362. "FDCT_ROW_SSE2 0 nt"
  363. "FDCT_ROW_SSE2_H2 64 0 nt"
  364. "FDCT_ROW_SSE2 64 nt"
  365. "FDCT_ROW_SSE2_H1 16 64 nt"
  366. "FDCT_ROW_SSE2 16 nt"
  367. "FDCT_ROW_SSE2_H2 112 64 nt"
  368. "FDCT_ROW_SSE2 112 nt"
  369. "FDCT_ROW_SSE2_H1 32 128 nt"
  370. "FDCT_ROW_SSE2 32 nt"
  371. "FDCT_ROW_SSE2_H2 96 128 nt"
  372. "FDCT_ROW_SSE2 96 nt"
  373. "FDCT_ROW_SSE2_H1 48 192 nt"
  374. "FDCT_ROW_SSE2 48 nt"
  375. "FDCT_ROW_SSE2_H2 80 192 nt"
  376. "FDCT_ROW_SSE2 80 nt"
  377. :
  378. : "r" (in), "r" (tab_frw_01234567_sse2.tab_frw_01234567_sse2), "r" (fdct_r_row_sse2.fdct_r_row_sse2), "i" (SHIFT_FRW_ROW), "r" (out)
  379.     );
  380. }
  381. static always_inline void fdct_row_mmx2(const int16_t *in, int16_t *out, const int16_t *table)
  382.     pshufw_m2r(*(in + 4), mm5, 0x1B);
  383.     movq_m2r(*(in + 0), mm0);
  384.     movq_r2r(mm0, mm1);
  385.     paddsw_r2r(mm5, mm0);
  386.     psubsw_r2r(mm5, mm1);
  387.     movq_r2r(mm0, mm2);
  388.     punpckldq_r2r(mm1, mm0);
  389.     punpckhdq_r2r(mm1, mm2);
  390.     movq_m2r(*(table + 0), mm1);
  391.     movq_m2r(*(table + 4), mm3);
  392.     movq_m2r(*(table + 8), mm4);
  393.     movq_m2r(*(table + 12), mm5);
  394.     movq_m2r(*(table + 16), mm6);
  395.     movq_m2r(*(table + 20), mm7);
  396.     pmaddwd_r2r(mm0, mm1);
  397.     pmaddwd_r2r(mm2, mm3);
  398.     pmaddwd_r2r(mm0, mm4);
  399.     pmaddwd_r2r(mm2, mm5);
  400.     pmaddwd_r2r(mm0, mm6);
  401.     pmaddwd_r2r(mm2, mm7);
  402.     pmaddwd_m2r(*(table + 24), mm0);
  403.     pmaddwd_m2r(*(table + 28), mm2);
  404.     paddd_r2r(mm1, mm3);
  405.     paddd_r2r(mm4, mm5);
  406.     paddd_r2r(mm6, mm7);
  407.     paddd_r2r(mm0, mm2);
  408.     movq_m2r(*fdct_r_row, mm0);
  409.     paddd_r2r(mm0, mm3);
  410.     paddd_r2r(mm0, mm5);
  411.     paddd_r2r(mm0, mm7);
  412.     paddd_r2r(mm0, mm2);
  413.     psrad_i2r(SHIFT_FRW_ROW, mm3);
  414.     psrad_i2r(SHIFT_FRW_ROW, mm5);
  415.     psrad_i2r(SHIFT_FRW_ROW, mm7);
  416.     psrad_i2r(SHIFT_FRW_ROW, mm2);
  417.     packssdw_r2r(mm5, mm3);
  418.     packssdw_r2r(mm2, mm7);
  419.     movq_r2m(mm3, *(out + 0));
  420.     movq_r2m(mm7, *(out + 4));
  421. }
  422. static always_inline void fdct_row_mmx(const int16_t *in, int16_t *out, const int16_t *table)
  423. //FIXME reorder (i dont have a old mmx only cpu here to benchmark ...)
  424.     movd_m2r(*(in + 6), mm1);
  425.     punpcklwd_m2r(*(in + 4), mm1);
  426.     movq_r2r(mm1, mm2);
  427.     psrlq_i2r(0x20, mm1);
  428.     movq_m2r(*(in + 0), mm0);
  429.     punpcklwd_r2r(mm2, mm1);
  430.     movq_r2r(mm0, mm5);
  431.     paddsw_r2r(mm1, mm0);
  432.     psubsw_r2r(mm1, mm5);
  433.     movq_r2r(mm0, mm2);
  434.     punpckldq_r2r(mm5, mm0);
  435.     punpckhdq_r2r(mm5, mm2);
  436.     movq_m2r(*(table + 0), mm1);
  437.     movq_m2r(*(table + 4), mm3);
  438.     movq_m2r(*(table + 8), mm4);
  439.     movq_m2r(*(table + 12), mm5);
  440.     movq_m2r(*(table + 16), mm6);
  441.     movq_m2r(*(table + 20), mm7);
  442.     pmaddwd_r2r(mm0, mm1);
  443.     pmaddwd_r2r(mm2, mm3);
  444.     pmaddwd_r2r(mm0, mm4);
  445.     pmaddwd_r2r(mm2, mm5);
  446.     pmaddwd_r2r(mm0, mm6);
  447.     pmaddwd_r2r(mm2, mm7);
  448.     pmaddwd_m2r(*(table + 24), mm0);
  449.     pmaddwd_m2r(*(table + 28), mm2);
  450.     paddd_r2r(mm1, mm3);
  451.     paddd_r2r(mm4, mm5);
  452.     paddd_r2r(mm6, mm7);
  453.     paddd_r2r(mm0, mm2);
  454.     movq_m2r(*fdct_r_row, mm0);
  455.     paddd_r2r(mm0, mm3);
  456.     paddd_r2r(mm0, mm5);
  457.     paddd_r2r(mm0, mm7);
  458.     paddd_r2r(mm0, mm2);
  459.     psrad_i2r(SHIFT_FRW_ROW, mm3);
  460.     psrad_i2r(SHIFT_FRW_ROW, mm5);
  461.     psrad_i2r(SHIFT_FRW_ROW, mm7);
  462.     psrad_i2r(SHIFT_FRW_ROW, mm2);
  463.     packssdw_r2r(mm5, mm3);
  464.     packssdw_r2r(mm2, mm7);
  465.     movq_r2m(mm3, *(out + 0));
  466.     movq_r2m(mm7, *(out + 4));
  467. }
  468. void ff_fdct_mmx(int16_t *block)
  469. {
  470.     int64_t align_tmp[16] ATTR_ALIGN(8);
  471.     int16_t * const block_tmp= (int16_t*)align_tmp;
  472.     int16_t *block1, *out;
  473.     const int16_t *table;
  474.     int i;
  475.     block1 = block_tmp;
  476.     fdct_col(block, block1, 0);
  477.     fdct_col(block, block1, 4);
  478.     block1 = block_tmp;
  479.     table = tab_frw_01234567;
  480.     out = block;
  481.     for(i=8;i>0;i--) {
  482.         fdct_row_mmx(block1, out, table);
  483.         block1 += 8;
  484.         table += 32;
  485.         out += 8;
  486.     }
  487. }
  488. void ff_fdct_mmx2(int16_t *block)
  489. {
  490.     int64_t align_tmp[16] ATTR_ALIGN(8);
  491.     int16_t * const block_tmp= (int16_t*)align_tmp;
  492.     int16_t *block1, *out;
  493.     const int16_t *table;
  494.     int i;
  495.     block1 = block_tmp;
  496.     fdct_col(block, block1, 0);
  497.     fdct_col(block, block1, 4);
  498.     block1 = block_tmp;
  499.     table = tab_frw_01234567;
  500.     out = block;
  501.     for(i=8;i>0;i--) {
  502.         fdct_row_mmx2(block1, out, table);
  503.         block1 += 8;
  504.         table += 32;
  505.         out += 8;
  506.     }
  507. }
  508. void ff_fdct_sse2(int16_t *block) 
  509. {
  510.     int64_t align_tmp[16] ATTR_ALIGN(8);
  511.     int16_t * const block_tmp= (int16_t*)align_tmp;
  512.     int16_t *block1;
  513.     block1 = block_tmp;
  514.     fdct_col(block, block1, 0);
  515.     fdct_col(block, block1, 4);
  516.     fdct_row_sse2(block1, block);
  517. }