predict-c.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:16k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * predict.c: h264 encoder
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 x264 project
  5.  *
  6.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  7.  *          Loren Merritt <lorenm@u.washington.edu>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include "common/common.h"
  24. #include "predict.h"
  25. #include "pixel.h"
  26. extern void predict_16x16_v_mmx( uint8_t *src );
  27. extern void predict_16x16_h_mmxext( uint8_t *src );
  28. extern void predict_16x16_h_ssse3( uint8_t *src );
  29. extern void predict_16x16_dc_core_mmxext( uint8_t *src, int i_dc_left );
  30. extern void predict_16x16_dc_left_core_mmxext( uint8_t *src, int i_dc_left );
  31. extern void predict_16x16_dc_top_mmxext( uint8_t *src );
  32. extern void predict_16x16_p_core_mmxext( uint8_t *src, int i00, int b, int c );
  33. extern void predict_8x8c_p_core_mmxext( uint8_t *src, int i00, int b, int c );
  34. extern void predict_8x8c_p_core_sse2( uint8_t *src, int i00, int b, int c );
  35. extern void predict_8x8c_dc_core_mmxext( uint8_t *src, int s2, int s3 );
  36. extern void predict_8x8c_dc_top_mmxext( uint8_t *src );
  37. extern void predict_8x8c_v_mmx( uint8_t *src );
  38. extern void predict_8x8c_h_mmxext( uint8_t *src );
  39. extern void predict_8x8c_h_ssse3( uint8_t *src );
  40. extern void predict_8x8_v_mmxext( uint8_t *src, uint8_t edge[33] );
  41. extern void predict_8x8_h_mmxext( uint8_t *src, uint8_t edge[33] );
  42. extern void predict_8x8_hd_mmxext( uint8_t *src, uint8_t edge[33] );
  43. extern void predict_8x8_hu_mmxext( uint8_t *src, uint8_t edge[33] );
  44. extern void predict_8x8_dc_mmxext( uint8_t *src, uint8_t edge[33] );
  45. extern void predict_8x8_dc_top_mmxext( uint8_t *src, uint8_t edge[33] );
  46. extern void predict_8x8_dc_left_mmxext( uint8_t *src, uint8_t edge[33] );
  47. extern void predict_8x8_ddl_mmxext( uint8_t *src, uint8_t edge[33] );
  48. extern void predict_8x8_ddr_mmxext( uint8_t *src, uint8_t edge[33] );
  49. extern void predict_8x8_ddl_sse2( uint8_t *src, uint8_t edge[33] );
  50. extern void predict_8x8_ddr_sse2( uint8_t *src, uint8_t edge[33] );
  51. extern void predict_8x8_vl_sse2( uint8_t *src, uint8_t edge[33] );
  52. extern void predict_8x8_vr_sse2( uint8_t *src, uint8_t edge[33] );
  53. extern void predict_8x8_hu_sse2( uint8_t *src, uint8_t edge[33] );
  54. extern void predict_8x8_hd_sse2( uint8_t *src, uint8_t edge[33] );
  55. extern void predict_8x8_vr_core_mmxext( uint8_t *src, uint8_t edge[33] );
  56. extern void predict_8x8_hd_ssse3( uint8_t *src, uint8_t edge[33] );
  57. extern void predict_8x8_hu_ssse3( uint8_t *src, uint8_t edge[33] );
  58. extern void predict_8x8_filter_mmxext   ( uint8_t *src, uint8_t edge[33], int i_neighbor, int i_filters );
  59. extern void predict_8x8_filter_ssse3   ( uint8_t *src, uint8_t edge[33], int i_neighbor, int i_filters );
  60. extern void predict_4x4_ddl_mmxext( uint8_t *src );
  61. extern void predict_4x4_ddr_mmxext( uint8_t *src );
  62. extern void predict_4x4_vl_mmxext( uint8_t *src );
  63. extern void predict_4x4_vr_mmxext( uint8_t *src );
  64. extern void predict_4x4_vr_ssse3( uint8_t *src );
  65. extern void predict_4x4_hd_mmxext( uint8_t *src );
  66. extern void predict_4x4_hd_ssse3( uint8_t *src );
  67. extern void predict_4x4_dc_mmxext( uint8_t *src );
  68. extern void predict_4x4_ddr_ssse3( uint8_t *src );
  69. extern void predict_4x4_hu_mmxext( uint8_t *src );
  70. extern void predict_16x16_dc_top_sse2( uint8_t *src );
  71. extern void predict_16x16_dc_core_sse2( uint8_t *src, int i_dc_left );
  72. extern void predict_16x16_dc_left_core_sse2( uint8_t *src, int i_dc_left );
  73. extern void predict_16x16_v_sse2( uint8_t *src );
  74. extern void predict_16x16_p_core_sse2( uint8_t *src, int i00, int b, int c );
  75. ALIGNED_8( static const int8_t pb_12345678[8] ) = {1,2,3,4,5,6,7,8};
  76. ALIGNED_8( static const int8_t pb_m87654321[8] ) = {-8,-7,-6,-5,-4,-3,-2,-1};
  77. ALIGNED_8( static const int8_t pb_m32101234[8] ) = {-3,-2,-1,0,1,2,3,4};
  78. #define PREDICT_P_SUM(j,i)
  79.     H += i * ( src[j+i - FDEC_STRIDE ]  - src[j-i - FDEC_STRIDE ] );
  80.     V += i * ( src[(j+i)*FDEC_STRIDE -1] - src[(j-i)*FDEC_STRIDE -1] );
  81. #define PREDICT_16x16_P(name)
  82. static void predict_16x16_p_##name( uint8_t *src )
  83. {
  84.     int a, b, c;
  85.     int H = 0;
  86.     int V = 0;
  87.     int i00;
  88.     PREDICT_P_SUM(7,1) 
  89.     PREDICT_P_SUM(7,2) 
  90.     PREDICT_P_SUM(7,3) 
  91.     PREDICT_P_SUM(7,4) 
  92.     PREDICT_P_SUM(7,5) 
  93.     PREDICT_P_SUM(7,6) 
  94.     PREDICT_P_SUM(7,7) 
  95.     PREDICT_P_SUM(7,8) 
  96.     a = 16 * ( src[15*FDEC_STRIDE -1] + src[15 - FDEC_STRIDE] );
  97.     b = ( 5 * H + 32 ) >> 6;
  98.     c = ( 5 * V + 32 ) >> 6;
  99.     i00 = a - b * 7 - c * 7 + 16;
  100.     predict_16x16_p_core_##name( src, i00, b, c );
  101. }
  102. #ifndef ARCH_X86_64
  103. PREDICT_16x16_P( mmxext )
  104. #endif
  105. PREDICT_16x16_P( sse2   )
  106. #ifdef __GNUC__
  107. static void predict_16x16_p_ssse3( uint8_t *src )
  108. {
  109.     int a, b, c, i00;
  110.     int H, V;
  111.     asm (
  112.         "movq           %1, %%mm1 n"
  113.         "movq         8+%1, %%mm0 n"
  114.         "palignr $7, -8+%1, %%mm1 n"
  115.         "pmaddubsw      %2, %%mm0 n"
  116.         "pmaddubsw      %3, %%mm1 n"
  117.         "paddw       %%mm1, %%mm0 n"
  118.         "pshufw $14, %%mm0, %%mm1 n"
  119.         "paddw       %%mm1, %%mm0 n"
  120.         "pshufw  $1, %%mm0, %%mm1 n"
  121.         "paddw       %%mm1, %%mm0 n"
  122.         "movd        %%mm0, %0    n"
  123.         "movsx         %w0, %0    n"
  124.         :"=r"(H)
  125.         :"m"(src[-FDEC_STRIDE]), "m"(*pb_12345678), "m"(*pb_m87654321)
  126.     );
  127.     V = 8 * ( src[15*FDEC_STRIDE-1] - src[-1*FDEC_STRIDE-1] )
  128.       + 7 * ( src[14*FDEC_STRIDE-1] - src[ 0*FDEC_STRIDE-1] )
  129.       + 6 * ( src[13*FDEC_STRIDE-1] - src[ 1*FDEC_STRIDE-1] )
  130.       + 5 * ( src[12*FDEC_STRIDE-1] - src[ 2*FDEC_STRIDE-1] )
  131.       + 4 * ( src[11*FDEC_STRIDE-1] - src[ 3*FDEC_STRIDE-1] )
  132.       + 3 * ( src[10*FDEC_STRIDE-1] - src[ 4*FDEC_STRIDE-1] )
  133.       + 2 * ( src[ 9*FDEC_STRIDE-1] - src[ 5*FDEC_STRIDE-1] )
  134.       + 1 * ( src[ 8*FDEC_STRIDE-1] - src[ 6*FDEC_STRIDE-1] );
  135.     a = 16 * ( src[15*FDEC_STRIDE -1] + src[15 - FDEC_STRIDE] );
  136.     b = ( 5 * H + 32 ) >> 6;
  137.     c = ( 5 * V + 32 ) >> 6;
  138.     i00 = a - b * 7 - c * 7 + 16;
  139.     predict_16x16_p_core_sse2( src, i00, b, c );
  140. }
  141. #endif
  142. #define PREDICT_8x8_P(name)
  143. static void predict_8x8c_p_##name( uint8_t *src )
  144. {
  145.     int a, b, c;
  146.     int H = 0;
  147.     int V = 0;
  148.     int i00;
  149.     PREDICT_P_SUM(3,1)
  150.     PREDICT_P_SUM(3,2)
  151.     PREDICT_P_SUM(3,3)
  152.     PREDICT_P_SUM(3,4)
  153.     a = 16 * ( src[7*FDEC_STRIDE -1] + src[7 - FDEC_STRIDE] );
  154.     b = ( 17 * H + 16 ) >> 5;
  155.     c = ( 17 * V + 16 ) >> 5;
  156.     i00 = a -3*b -3*c + 16;
  157.     predict_8x8c_p_core_##name( src, i00, b, c );
  158. }
  159. #ifndef ARCH_X86_64
  160. PREDICT_8x8_P( mmxext )
  161. #endif
  162. PREDICT_8x8_P( sse2   )
  163. #ifdef __GNUC__
  164. static void predict_8x8c_p_ssse3( uint8_t *src )
  165. {
  166.     int a, b, c, i00;
  167.     int H, V;
  168.     asm (
  169.         "movq           %1, %%mm0 n"
  170.         "pmaddubsw      %2, %%mm0 n"
  171.         "pshufw $14, %%mm0, %%mm1 n"
  172.         "paddw       %%mm1, %%mm0 n"
  173.         "pshufw  $1, %%mm0, %%mm1 n"
  174.         "paddw       %%mm1, %%mm0 n"
  175.         "movd        %%mm0, %0    n"
  176.         "movsx         %w0, %0    n"
  177.         :"=r"(H)
  178.         :"m"(src[-FDEC_STRIDE]), "m"(*pb_m32101234)
  179.     );
  180.     V = 1 * ( src[4*FDEC_STRIDE -1] - src[ 2*FDEC_STRIDE -1] )
  181.       + 2 * ( src[5*FDEC_STRIDE -1] - src[ 1*FDEC_STRIDE -1] )
  182.       + 3 * ( src[6*FDEC_STRIDE -1] - src[ 0*FDEC_STRIDE -1] )
  183.       + 4 * ( src[7*FDEC_STRIDE -1] - src[-1*FDEC_STRIDE -1] );
  184.     H += -4 * src[-1*FDEC_STRIDE -1];
  185.     a = 16 * ( src[7*FDEC_STRIDE -1] + src[7 - FDEC_STRIDE] );
  186.     b = ( 17 * H + 16 ) >> 5;
  187.     c = ( 17 * V + 16 ) >> 5;
  188.     i00 = a -3*b -3*c + 16;
  189.     predict_8x8c_p_core_sse2( src, i00, b, c );
  190. }
  191. #endif
  192. #define PREDICT_16x16_DC(name)
  193. static void predict_16x16_dc_##name( uint8_t *src )
  194. {
  195.     uint32_t dc=16;
  196.     int i;
  197.     for( i = 0; i < 16; i+=2 )
  198.     {
  199.         dc += src[-1 + i * FDEC_STRIDE];
  200.         dc += src[-1 + (i+1) * FDEC_STRIDE];
  201.     }
  202.     predict_16x16_dc_core_##name( src, dc );
  203. }
  204. PREDICT_16x16_DC( mmxext )
  205. PREDICT_16x16_DC( sse2 )
  206. #define PREDICT_16x16_DC_LEFT(name)
  207. static void predict_16x16_dc_left_##name( uint8_t *src )
  208. {
  209.     uint32_t dc=8;
  210.     int i;
  211.     for( i = 0; i < 16; i+=2 )
  212.     {
  213.         dc += src[-1 + i * FDEC_STRIDE];
  214.         dc += src[-1 + (i+1) * FDEC_STRIDE];
  215.     }
  216.     predict_16x16_dc_left_core_##name( src, dc>>4 );
  217. }
  218. PREDICT_16x16_DC_LEFT( mmxext )
  219. PREDICT_16x16_DC_LEFT( sse2 )
  220. static void predict_8x8c_dc_mmxext( uint8_t *src )
  221. {
  222.     int s2 = 4
  223.        + src[-1 + 0*FDEC_STRIDE]
  224.        + src[-1 + 1*FDEC_STRIDE]
  225.        + src[-1 + 2*FDEC_STRIDE]
  226.        + src[-1 + 3*FDEC_STRIDE];
  227.     int s3 = 2
  228.        + src[-1 + 4*FDEC_STRIDE]
  229.        + src[-1 + 5*FDEC_STRIDE]
  230.        + src[-1 + 6*FDEC_STRIDE]
  231.        + src[-1 + 7*FDEC_STRIDE];
  232.     predict_8x8c_dc_core_mmxext( src, s2, s3 );
  233. }
  234. #ifdef ARCH_X86_64
  235. static void predict_8x8c_dc_left( uint8_t *src )
  236. {
  237.     int y;
  238.     uint32_t s0 = 0, s1 = 0;
  239.     uint64_t dc0, dc1;
  240.     for( y = 0; y < 4; y++ )
  241.     {
  242.         s0 += src[y * FDEC_STRIDE     - 1];
  243.         s1 += src[(y+4) * FDEC_STRIDE - 1];
  244.     }
  245.     dc0 = (( s0 + 2 ) >> 2) * 0x0101010101010101ULL;
  246.     dc1 = (( s1 + 2 ) >> 2) * 0x0101010101010101ULL;
  247.     for( y = 0; y < 4; y++ )
  248.     {
  249.         *(uint64_t*)src = dc0;
  250.         src += FDEC_STRIDE;
  251.     }
  252.     for( y = 0; y < 4; y++ )
  253.     {
  254.         *(uint64_t*)src = dc1;
  255.         src += FDEC_STRIDE;
  256.     }
  257. }
  258. #endif
  259. /****************************************************************************
  260.  * 8x8 prediction for intra luma block
  261.  ****************************************************************************/
  262. #define PL(y) 
  263.     UNUSED int l##y = edge[14-y];
  264. #define PT(x) 
  265.     UNUSED int t##x = edge[16+x];
  266. #define PREDICT_8x8_LOAD_TOPLEFT 
  267.     int lt = edge[15];
  268. #define PREDICT_8x8_LOAD_LEFT 
  269.     PL(0) PL(1) PL(2) PL(3) PL(4) PL(5) PL(6) PL(7)
  270. #define PREDICT_8x8_LOAD_TOP 
  271.     PT(0) PT(1) PT(2) PT(3) PT(4) PT(5) PT(6) PT(7)
  272. #define PREDICT_8x8_DC(v) 
  273.     int y; 
  274.     for( y = 0; y < 8; y++ ) { 
  275.         ((uint32_t*)src)[0] = 
  276.         ((uint32_t*)src)[1] = v; 
  277.         src += FDEC_STRIDE; 
  278.     }
  279. #define SRC(x,y) src[(x)+(y)*FDEC_STRIDE]
  280. #ifndef ARCH_X86_64
  281. static void predict_8x8_vr_mmxext( uint8_t *src, uint8_t edge[33] )
  282. {
  283.     predict_8x8_vr_core_mmxext( src, edge );
  284.     {
  285.         PREDICT_8x8_LOAD_TOPLEFT
  286.         PREDICT_8x8_LOAD_LEFT
  287.         SRC(0,2)=SRC(1,4)=SRC(2,6)= (l1 + 2*l0 + lt + 2) >> 2;
  288.         SRC(0,3)=SRC(1,5)=SRC(2,7)= (l2 + 2*l1 + l0 + 2) >> 2;
  289.         SRC(0,4)=SRC(1,6)= (l3 + 2*l2 + l1 + 2) >> 2;
  290.         SRC(0,5)=SRC(1,7)= (l4 + 2*l3 + l2 + 2) >> 2;
  291.         SRC(0,6)= (l5 + 2*l4 + l3 + 2) >> 2;
  292.         SRC(0,7)= (l6 + 2*l5 + l4 + 2) >> 2;
  293.     }
  294. }
  295. #endif
  296. #define SUMSUB(a,b,c,d,e,f,g,h)
  297.     t=a; a+=b; b-=t;
  298.     t=c; c+=d; d-=t;
  299.     t=e; e+=f; f-=t;
  300.     t=g; g+=h; h-=t;
  301. #define INTRA_SA8D_X3(cpu) 
  302. void x264_intra_sa8d_x3_8x8_##cpu( uint8_t *fenc, uint8_t edge[33], int res[3] )
  303. {
  304.     PREDICT_8x8_LOAD_TOP
  305.     PREDICT_8x8_LOAD_LEFT
  306.     int t;
  307.     ALIGNED_16( int16_t sa8d_1d[2][8] );
  308.     SUMSUB(l0,l4,l1,l5,l2,l6,l3,l7);
  309.     SUMSUB(l0,l2,l1,l3,l4,l6,l5,l7);
  310.     SUMSUB(l0,l1,l2,l3,l4,l5,l6,l7);
  311.     sa8d_1d[0][0] = l0;
  312.     sa8d_1d[0][1] = l1;
  313.     sa8d_1d[0][2] = l2;
  314.     sa8d_1d[0][3] = l3;
  315.     sa8d_1d[0][4] = l4;
  316.     sa8d_1d[0][5] = l5;
  317.     sa8d_1d[0][6] = l6;
  318.     sa8d_1d[0][7] = l7;
  319.     SUMSUB(t0,t4,t1,t5,t2,t6,t3,t7);
  320.     SUMSUB(t0,t2,t1,t3,t4,t6,t5,t7);
  321.     SUMSUB(t0,t1,t2,t3,t4,t5,t6,t7);
  322.     sa8d_1d[1][0] = t0;
  323.     sa8d_1d[1][1] = t1;
  324.     sa8d_1d[1][2] = t2;
  325.     sa8d_1d[1][3] = t3;
  326.     sa8d_1d[1][4] = t4;
  327.     sa8d_1d[1][5] = t5;
  328.     sa8d_1d[1][6] = t6;
  329.     sa8d_1d[1][7] = t7;
  330.     x264_intra_sa8d_x3_8x8_core_##cpu( fenc, sa8d_1d, res );
  331. }
  332. #ifdef ARCH_X86_64
  333. INTRA_SA8D_X3(sse2)
  334. INTRA_SA8D_X3(ssse3)
  335. #else
  336. INTRA_SA8D_X3(mmxext)
  337. #endif
  338. /****************************************************************************
  339.  * Exported functions:
  340.  ****************************************************************************/
  341. void x264_predict_16x16_init_mmx( int cpu, x264_predict_t pf[7] )
  342. {
  343.     if( !(cpu&X264_CPU_MMX) )
  344.         return;
  345.     pf[I_PRED_16x16_V]       = predict_16x16_v_mmx;
  346.     if( !(cpu&X264_CPU_MMXEXT) )
  347.         return;
  348.     pf[I_PRED_16x16_DC]      = predict_16x16_dc_mmxext;
  349.     pf[I_PRED_16x16_DC_TOP]  = predict_16x16_dc_top_mmxext;
  350.     pf[I_PRED_16x16_DC_LEFT] = predict_16x16_dc_left_mmxext;
  351. #ifndef ARCH_X86_64
  352.     pf[I_PRED_16x16_P]       = predict_16x16_p_mmxext;
  353. #endif
  354.     pf[I_PRED_16x16_H]       = predict_16x16_h_mmxext;
  355.     if( !(cpu&X264_CPU_SSE2) )
  356.         return;
  357.     pf[I_PRED_16x16_DC]     = predict_16x16_dc_sse2;
  358.     pf[I_PRED_16x16_V]      = predict_16x16_v_sse2;
  359.     if( cpu&X264_CPU_SSE2_IS_SLOW )
  360.         return;
  361.     pf[I_PRED_16x16_DC_TOP] = predict_16x16_dc_top_sse2;
  362.     pf[I_PRED_16x16_DC_LEFT] = predict_16x16_dc_left_sse2;
  363.     pf[I_PRED_16x16_P]      = predict_16x16_p_sse2;
  364.     if( !(cpu&X264_CPU_SSSE3) )
  365.         return;
  366.     pf[I_PRED_16x16_H]      = predict_16x16_h_ssse3;
  367. #ifdef __GNUC__
  368.     pf[I_PRED_16x16_P]      = predict_16x16_p_ssse3;
  369. #endif
  370. }
  371. void x264_predict_8x8c_init_mmx( int cpu, x264_predict_t pf[7] )
  372. {
  373.     if( !(cpu&X264_CPU_MMX) )
  374.         return;
  375. #ifdef ARCH_X86_64
  376.     pf[I_PRED_CHROMA_DC_LEFT] = predict_8x8c_dc_left;
  377. #endif
  378.     pf[I_PRED_CHROMA_V]       = predict_8x8c_v_mmx;
  379.     if( !(cpu&X264_CPU_MMXEXT) )
  380.         return;
  381.     pf[I_PRED_CHROMA_DC_TOP]  = predict_8x8c_dc_top_mmxext;
  382.     pf[I_PRED_CHROMA_H]       = predict_8x8c_h_mmxext;
  383. #ifndef ARCH_X86_64
  384.     pf[I_PRED_CHROMA_P]       = predict_8x8c_p_mmxext;
  385. #endif
  386.     pf[I_PRED_CHROMA_DC]      = predict_8x8c_dc_mmxext;
  387.     if( !(cpu&X264_CPU_SSE2) )
  388.         return;
  389.     pf[I_PRED_CHROMA_P]       = predict_8x8c_p_sse2;
  390.     if( !(cpu&X264_CPU_SSSE3) )
  391.         return;
  392.     pf[I_PRED_CHROMA_H]       = predict_8x8c_h_ssse3;
  393. #ifdef __GNUC__
  394.     pf[I_PRED_CHROMA_P]       = predict_8x8c_p_ssse3;
  395. #endif
  396. }
  397. void x264_predict_8x8_init_mmx( int cpu, x264_predict8x8_t pf[12], x264_predict_8x8_filter_t *predict_8x8_filter )
  398. {
  399.     if( !(cpu&X264_CPU_MMXEXT) )
  400.         return;
  401.     pf[I_PRED_8x8_V]   = predict_8x8_v_mmxext;
  402.     pf[I_PRED_8x8_H]   = predict_8x8_h_mmxext;
  403.     pf[I_PRED_8x8_DC]  = predict_8x8_dc_mmxext;
  404.     pf[I_PRED_8x8_DC_TOP] = predict_8x8_dc_top_mmxext;
  405.     pf[I_PRED_8x8_DC_LEFT]= predict_8x8_dc_left_mmxext;
  406.     pf[I_PRED_8x8_HD]   = predict_8x8_hd_mmxext;
  407.     *predict_8x8_filter = predict_8x8_filter_mmxext;
  408. #ifdef ARCH_X86
  409.     pf[I_PRED_8x8_DDL] = predict_8x8_ddl_mmxext;
  410.     pf[I_PRED_8x8_DDR] = predict_8x8_ddr_mmxext;
  411.     pf[I_PRED_8x8_VR]  = predict_8x8_vr_mmxext;
  412.     pf[I_PRED_8x8_HU]   = predict_8x8_hu_mmxext;
  413. #endif
  414.     if( !(cpu&X264_CPU_SSE2) )
  415.         return;
  416.     pf[I_PRED_8x8_DDL] = predict_8x8_ddl_sse2;
  417.     pf[I_PRED_8x8_VL]  = predict_8x8_vl_sse2;
  418.     pf[I_PRED_8x8_VR]  = predict_8x8_vr_sse2;
  419.     pf[I_PRED_8x8_DDR] = predict_8x8_ddr_sse2;
  420.     pf[I_PRED_8x8_HD]   = predict_8x8_hd_sse2;
  421.     pf[I_PRED_8x8_HU]   = predict_8x8_hu_sse2;
  422.     if( !(cpu&X264_CPU_SSSE3) )
  423.         return;
  424.     pf[I_PRED_8x8_HD]   = predict_8x8_hd_ssse3;
  425.     pf[I_PRED_8x8_HU]   = predict_8x8_hu_ssse3;
  426.     *predict_8x8_filter = predict_8x8_filter_ssse3;
  427. }
  428. void x264_predict_4x4_init_mmx( int cpu, x264_predict_t pf[12] )
  429. {
  430.     if( !(cpu&X264_CPU_MMXEXT) )
  431.         return;
  432.     pf[I_PRED_4x4_VR]  = predict_4x4_vr_mmxext;
  433.     pf[I_PRED_4x4_DDL] = predict_4x4_ddl_mmxext;
  434.     pf[I_PRED_4x4_VL]  = predict_4x4_vl_mmxext;
  435.     pf[I_PRED_4x4_DC]  = predict_4x4_dc_mmxext;
  436.     pf[I_PRED_4x4_DDR] = predict_4x4_ddr_mmxext;
  437.     pf[I_PRED_4x4_HD]  = predict_4x4_hd_mmxext;
  438.     pf[I_PRED_4x4_HU]  = predict_4x4_hu_mmxext;
  439.     if( !(cpu&X264_CPU_SSSE3) )
  440.         return;
  441.     pf[I_PRED_4x4_DDR] = predict_4x4_ddr_ssse3;
  442.     pf[I_PRED_4x4_VR]  = predict_4x4_vr_ssse3;
  443.     pf[I_PRED_4x4_HD]  = predict_4x4_hd_ssse3;
  444. }