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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1.     uint8_t full[24*17];
  2.     uint8_t halfH[272];
  3.     copy_block17(full, src, 24, stride, 17);
  4.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  5.     put ## RND ## pixels16_l2(halfH, halfH, full, 16, 16, 24, 17);
  6.     OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);
  7. }
  8. void ff_ ## OPNAME ## qpel16_mc32_old_c(uint8_t *dst, uint8_t *src, int stride){
  9.     uint8_t full[24*17];
  10.     uint8_t halfH[272];
  11.     uint8_t halfV[256];
  12.     uint8_t halfHV[256];
  13.     copy_block17(full, src, 24, stride, 17);
  14.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  15.     put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);
  16.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  17.     OPNAME ## pixels16_l2(dst, halfV, halfHV, stride, 16, 16, 16);
  18. }
  19. static void OPNAME ## qpel16_mc32_c(uint8_t *dst, uint8_t *src, int stride){
  20.     uint8_t full[24*17];
  21.     uint8_t halfH[272];
  22.     copy_block17(full, src, 24, stride, 17);
  23.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  24.     put ## RND ## pixels16_l2(halfH, halfH, full+1, 16, 16, 24, 17);
  25.     OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);
  26. }
  27. static void OPNAME ## qpel16_mc22_c(uint8_t *dst, uint8_t *src, int stride){
  28.     uint8_t halfH[272];
  29.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);
  30.     OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);
  31. }
  32. #define op_avg(a, b) a = (((a)+cm[((b) + 16)>>5]+1)>>1)
  33. #define op_avg_no_rnd(a, b) a = (((a)+cm[((b) + 15)>>5])>>1)
  34. #define op_put(a, b) a = cm[((b) + 16)>>5]
  35. #define op_put_no_rnd(a, b) a = cm[((b) + 15)>>5]
  36. QPEL_MC(0, put_       , _       , op_put)
  37. QPEL_MC(1, put_no_rnd_, _no_rnd_, op_put_no_rnd)
  38. QPEL_MC(0, avg_       , _       , op_avg)
  39. //QPEL_MC(1, avg_no_rnd , _       , op_avg)
  40. #undef op_avg
  41. #undef op_avg_no_rnd
  42. #undef op_put
  43. #undef op_put_no_rnd
  44. #if 1
  45. #define H264_LOWPASS(OPNAME, OP, OP2) 
  46. static av_unused void OPNAME ## h264_qpel2_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  47.     const int h=2;
  48.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  49.     int i;
  50.     for(i=0; i<h; i++)
  51.     {
  52.         OP(dst[0], (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3]));
  53.         OP(dst[1], (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4]));
  54.         dst+=dstStride;
  55.         src+=srcStride;
  56.     }
  57. }
  58. static av_unused void OPNAME ## h264_qpel2_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  59.     const int w=2;
  60.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  61.     int i;
  62.     for(i=0; i<w; i++)
  63.     {
  64.         const int srcB= src[-2*srcStride];
  65.         const int srcA= src[-1*srcStride];
  66.         const int src0= src[0 *srcStride];
  67.         const int src1= src[1 *srcStride];
  68.         const int src2= src[2 *srcStride];
  69.         const int src3= src[3 *srcStride];
  70.         const int src4= src[4 *srcStride];
  71.         OP(dst[0*dstStride], (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));
  72.         OP(dst[1*dstStride], (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));
  73.         dst++;
  74.         src++;
  75.     }
  76. }
  77. static av_unused void OPNAME ## h264_qpel2_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){
  78.     const int h=2;
  79.     const int w=2;
  80.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  81.     int i;
  82.     src -= 2*srcStride;
  83.     for(i=0; i<h+5; i++)
  84.     {
  85.         tmp[0]= (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3]);
  86.         tmp[1]= (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4]);
  87.         tmp+=tmpStride;
  88.         src+=srcStride;
  89.     }
  90.     tmp -= tmpStride*(h+5-2);
  91.     for(i=0; i<w; i++)
  92.     {
  93.         const int tmpB= tmp[-2*tmpStride];
  94.         const int tmpA= tmp[-1*tmpStride];
  95.         const int tmp0= tmp[0 *tmpStride];
  96.         const int tmp1= tmp[1 *tmpStride];
  97.         const int tmp2= tmp[2 *tmpStride];
  98.         const int tmp3= tmp[3 *tmpStride];
  99.         const int tmp4= tmp[4 *tmpStride];
  100.         OP2(dst[0*dstStride], (tmp0+tmp1)*20 - (tmpA+tmp2)*5 + (tmpB+tmp3));
  101.         OP2(dst[1*dstStride], (tmp1+tmp2)*20 - (tmp0+tmp3)*5 + (tmpA+tmp4));
  102.         dst++;
  103.         tmp++;
  104.     }
  105. }
  106. static void OPNAME ## h264_qpel4_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  107.     const int h=4;
  108.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  109.     int i;
  110.     for(i=0; i<h; i++)
  111.     {
  112.         OP(dst[0], (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3]));
  113.         OP(dst[1], (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4]));
  114.         OP(dst[2], (src[2]+src[3])*20 - (src[1 ]+src[4])*5 + (src[0 ]+src[5]));
  115.         OP(dst[3], (src[3]+src[4])*20 - (src[2 ]+src[5])*5 + (src[1 ]+src[6]));
  116.         dst+=dstStride;
  117.         src+=srcStride;
  118.     }
  119. }
  120. static void OPNAME ## h264_qpel4_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  121.     const int w=4;
  122.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  123.     int i;
  124.     for(i=0; i<w; i++)
  125.     {
  126.         const int srcB= src[-2*srcStride];
  127.         const int srcA= src[-1*srcStride];
  128.         const int src0= src[0 *srcStride];
  129.         const int src1= src[1 *srcStride];
  130.         const int src2= src[2 *srcStride];
  131.         const int src3= src[3 *srcStride];
  132.         const int src4= src[4 *srcStride];
  133.         const int src5= src[5 *srcStride];
  134.         const int src6= src[6 *srcStride];
  135.         OP(dst[0*dstStride], (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));
  136.         OP(dst[1*dstStride], (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));
  137.         OP(dst[2*dstStride], (src2+src3)*20 - (src1+src4)*5 + (src0+src5));
  138.         OP(dst[3*dstStride], (src3+src4)*20 - (src2+src5)*5 + (src1+src6));
  139.         dst++;
  140.         src++;
  141.     }
  142. }
  143. static void OPNAME ## h264_qpel4_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){
  144.     const int h=4;
  145.     const int w=4;
  146.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  147.     int i;
  148.     src -= 2*srcStride;
  149.     for(i=0; i<h+5; i++)
  150.     {
  151.         tmp[0]= (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3]);
  152.         tmp[1]= (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4]);
  153.         tmp[2]= (src[2]+src[3])*20 - (src[1 ]+src[4])*5 + (src[0 ]+src[5]);
  154.         tmp[3]= (src[3]+src[4])*20 - (src[2 ]+src[5])*5 + (src[1 ]+src[6]);
  155.         tmp+=tmpStride;
  156.         src+=srcStride;
  157.     }
  158.     tmp -= tmpStride*(h+5-2);
  159.     for(i=0; i<w; i++)
  160.     {
  161.         const int tmpB= tmp[-2*tmpStride];
  162.         const int tmpA= tmp[-1*tmpStride];
  163.         const int tmp0= tmp[0 *tmpStride];
  164.         const int tmp1= tmp[1 *tmpStride];
  165.         const int tmp2= tmp[2 *tmpStride];
  166.         const int tmp3= tmp[3 *tmpStride];
  167.         const int tmp4= tmp[4 *tmpStride];
  168.         const int tmp5= tmp[5 *tmpStride];
  169.         const int tmp6= tmp[6 *tmpStride];
  170.         OP2(dst[0*dstStride], (tmp0+tmp1)*20 - (tmpA+tmp2)*5 + (tmpB+tmp3));
  171.         OP2(dst[1*dstStride], (tmp1+tmp2)*20 - (tmp0+tmp3)*5 + (tmpA+tmp4));
  172.         OP2(dst[2*dstStride], (tmp2+tmp3)*20 - (tmp1+tmp4)*5 + (tmp0+tmp5));
  173.         OP2(dst[3*dstStride], (tmp3+tmp4)*20 - (tmp2+tmp5)*5 + (tmp1+tmp6));
  174.         dst++;
  175.         tmp++;
  176.     }
  177. }
  178. static void OPNAME ## h264_qpel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  179.     const int h=8;
  180.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  181.     int i;
  182.     for(i=0; i<h; i++)
  183.     {
  184.         OP(dst[0], (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3 ]));
  185.         OP(dst[1], (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4 ]));
  186.         OP(dst[2], (src[2]+src[3])*20 - (src[1 ]+src[4])*5 + (src[0 ]+src[5 ]));
  187.         OP(dst[3], (src[3]+src[4])*20 - (src[2 ]+src[5])*5 + (src[1 ]+src[6 ]));
  188.         OP(dst[4], (src[4]+src[5])*20 - (src[3 ]+src[6])*5 + (src[2 ]+src[7 ]));
  189.         OP(dst[5], (src[5]+src[6])*20 - (src[4 ]+src[7])*5 + (src[3 ]+src[8 ]));
  190.         OP(dst[6], (src[6]+src[7])*20 - (src[5 ]+src[8])*5 + (src[4 ]+src[9 ]));
  191.         OP(dst[7], (src[7]+src[8])*20 - (src[6 ]+src[9])*5 + (src[5 ]+src[10]));
  192.         dst+=dstStride;
  193.         src+=srcStride;
  194.     }
  195. }
  196. static void OPNAME ## h264_qpel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  197.     const int w=8;
  198.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  199.     int i;
  200.     for(i=0; i<w; i++)
  201.     {
  202.         const int srcB= src[-2*srcStride];
  203.         const int srcA= src[-1*srcStride];
  204.         const int src0= src[0 *srcStride];
  205.         const int src1= src[1 *srcStride];
  206.         const int src2= src[2 *srcStride];
  207.         const int src3= src[3 *srcStride];
  208.         const int src4= src[4 *srcStride];
  209.         const int src5= src[5 *srcStride];
  210.         const int src6= src[6 *srcStride];
  211.         const int src7= src[7 *srcStride];
  212.         const int src8= src[8 *srcStride];
  213.         const int src9= src[9 *srcStride];
  214.         const int src10=src[10*srcStride];
  215.         OP(dst[0*dstStride], (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));
  216.         OP(dst[1*dstStride], (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));
  217.         OP(dst[2*dstStride], (src2+src3)*20 - (src1+src4)*5 + (src0+src5));
  218.         OP(dst[3*dstStride], (src3+src4)*20 - (src2+src5)*5 + (src1+src6));
  219.         OP(dst[4*dstStride], (src4+src5)*20 - (src3+src6)*5 + (src2+src7));
  220.         OP(dst[5*dstStride], (src5+src6)*20 - (src4+src7)*5 + (src3+src8));
  221.         OP(dst[6*dstStride], (src6+src7)*20 - (src5+src8)*5 + (src4+src9));
  222.         OP(dst[7*dstStride], (src7+src8)*20 - (src6+src9)*5 + (src5+src10));
  223.         dst++;
  224.         src++;
  225.     }
  226. }
  227. static void OPNAME ## h264_qpel8_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){
  228.     const int h=8;
  229.     const int w=8;
  230.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  231.     int i;
  232.     src -= 2*srcStride;
  233.     for(i=0; i<h+5; i++)
  234.     {
  235.         tmp[0]= (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3 ]);
  236.         tmp[1]= (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4 ]);
  237.         tmp[2]= (src[2]+src[3])*20 - (src[1 ]+src[4])*5 + (src[0 ]+src[5 ]);
  238.         tmp[3]= (src[3]+src[4])*20 - (src[2 ]+src[5])*5 + (src[1 ]+src[6 ]);
  239.         tmp[4]= (src[4]+src[5])*20 - (src[3 ]+src[6])*5 + (src[2 ]+src[7 ]);
  240.         tmp[5]= (src[5]+src[6])*20 - (src[4 ]+src[7])*5 + (src[3 ]+src[8 ]);
  241.         tmp[6]= (src[6]+src[7])*20 - (src[5 ]+src[8])*5 + (src[4 ]+src[9 ]);
  242.         tmp[7]= (src[7]+src[8])*20 - (src[6 ]+src[9])*5 + (src[5 ]+src[10]);
  243.         tmp+=tmpStride;
  244.         src+=srcStride;
  245.     }
  246.     tmp -= tmpStride*(h+5-2);
  247.     for(i=0; i<w; i++)
  248.     {
  249.         const int tmpB= tmp[-2*tmpStride];
  250.         const int tmpA= tmp[-1*tmpStride];
  251.         const int tmp0= tmp[0 *tmpStride];
  252.         const int tmp1= tmp[1 *tmpStride];
  253.         const int tmp2= tmp[2 *tmpStride];
  254.         const int tmp3= tmp[3 *tmpStride];
  255.         const int tmp4= tmp[4 *tmpStride];
  256.         const int tmp5= tmp[5 *tmpStride];
  257.         const int tmp6= tmp[6 *tmpStride];
  258.         const int tmp7= tmp[7 *tmpStride];
  259.         const int tmp8= tmp[8 *tmpStride];
  260.         const int tmp9= tmp[9 *tmpStride];
  261.         const int tmp10=tmp[10*tmpStride];
  262.         OP2(dst[0*dstStride], (tmp0+tmp1)*20 - (tmpA+tmp2)*5 + (tmpB+tmp3));
  263.         OP2(dst[1*dstStride], (tmp1+tmp2)*20 - (tmp0+tmp3)*5 + (tmpA+tmp4));
  264.         OP2(dst[2*dstStride], (tmp2+tmp3)*20 - (tmp1+tmp4)*5 + (tmp0+tmp5));
  265.         OP2(dst[3*dstStride], (tmp3+tmp4)*20 - (tmp2+tmp5)*5 + (tmp1+tmp6));
  266.         OP2(dst[4*dstStride], (tmp4+tmp5)*20 - (tmp3+tmp6)*5 + (tmp2+tmp7));
  267.         OP2(dst[5*dstStride], (tmp5+tmp6)*20 - (tmp4+tmp7)*5 + (tmp3+tmp8));
  268.         OP2(dst[6*dstStride], (tmp6+tmp7)*20 - (tmp5+tmp8)*5 + (tmp4+tmp9));
  269.         OP2(dst[7*dstStride], (tmp7+tmp8)*20 - (tmp6+tmp9)*5 + (tmp5+tmp10));
  270.         dst++;
  271.         tmp++;
  272.     }
  273. }
  274. static void OPNAME ## h264_qpel16_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  275.     OPNAME ## h264_qpel8_v_lowpass(dst  , src  , dstStride, srcStride);
  276.     OPNAME ## h264_qpel8_v_lowpass(dst+8, src+8, dstStride, srcStride);
  277.     src += 8*srcStride;
  278.     dst += 8*dstStride;
  279.     OPNAME ## h264_qpel8_v_lowpass(dst  , src  , dstStride, srcStride);
  280.     OPNAME ## h264_qpel8_v_lowpass(dst+8, src+8, dstStride, srcStride);
  281. }
  282. static void OPNAME ## h264_qpel16_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  283.     OPNAME ## h264_qpel8_h_lowpass(dst  , src  , dstStride, srcStride);
  284.     OPNAME ## h264_qpel8_h_lowpass(dst+8, src+8, dstStride, srcStride);
  285.     src += 8*srcStride;
  286.     dst += 8*dstStride;
  287.     OPNAME ## h264_qpel8_h_lowpass(dst  , src  , dstStride, srcStride);
  288.     OPNAME ## h264_qpel8_h_lowpass(dst+8, src+8, dstStride, srcStride);
  289. }
  290. static void OPNAME ## h264_qpel16_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){
  291.     OPNAME ## h264_qpel8_hv_lowpass(dst  , tmp  , src  , dstStride, tmpStride, srcStride);
  292.     OPNAME ## h264_qpel8_hv_lowpass(dst+8, tmp+8, src+8, dstStride, tmpStride, srcStride);
  293.     src += 8*srcStride;
  294.     dst += 8*dstStride;
  295.     OPNAME ## h264_qpel8_hv_lowpass(dst  , tmp  , src  , dstStride, tmpStride, srcStride);
  296.     OPNAME ## h264_qpel8_hv_lowpass(dst+8, tmp+8, src+8, dstStride, tmpStride, srcStride);
  297. }
  298. #define H264_MC(OPNAME, SIZE) 
  299. static void OPNAME ## h264_qpel ## SIZE ## _mc00_c (uint8_t *dst, uint8_t *src, int stride){
  300.     OPNAME ## pixels ## SIZE ## _c(dst, src, stride, SIZE);
  301. }
  302. static void OPNAME ## h264_qpel ## SIZE ## _mc10_c(uint8_t *dst, uint8_t *src, int stride){
  303.     uint8_t half[SIZE*SIZE];
  304.     put_h264_qpel ## SIZE ## _h_lowpass(half, src, SIZE, stride);
  305.     OPNAME ## pixels ## SIZE ## _l2(dst, src, half, stride, stride, SIZE, SIZE);
  306. }
  307. static void OPNAME ## h264_qpel ## SIZE ## _mc20_c(uint8_t *dst, uint8_t *src, int stride){
  308.     OPNAME ## h264_qpel ## SIZE ## _h_lowpass(dst, src, stride, stride);
  309. }
  310. static void OPNAME ## h264_qpel ## SIZE ## _mc30_c(uint8_t *dst, uint8_t *src, int stride){
  311.     uint8_t half[SIZE*SIZE];
  312.     put_h264_qpel ## SIZE ## _h_lowpass(half, src, SIZE, stride);
  313.     OPNAME ## pixels ## SIZE ## _l2(dst, src+1, half, stride, stride, SIZE, SIZE);
  314. }
  315. static void OPNAME ## h264_qpel ## SIZE ## _mc01_c(uint8_t *dst, uint8_t *src, int stride){
  316.     uint8_t full[SIZE*(SIZE+5)];
  317.     uint8_t * const full_mid= full + SIZE*2;
  318.     uint8_t half[SIZE*SIZE];
  319.     copy_block ## SIZE (full, src - stride*2, SIZE,  stride, SIZE + 5);
  320.     put_h264_qpel ## SIZE ## _v_lowpass(half, full_mid, SIZE, SIZE);
  321.     OPNAME ## pixels ## SIZE ## _l2(dst, full_mid, half, stride, SIZE, SIZE, SIZE);
  322. }
  323. static void OPNAME ## h264_qpel ## SIZE ## _mc02_c(uint8_t *dst, uint8_t *src, int stride){
  324.     uint8_t full[SIZE*(SIZE+5)];
  325.     uint8_t * const full_mid= full + SIZE*2;
  326.     copy_block ## SIZE (full, src - stride*2, SIZE,  stride, SIZE + 5);
  327.     OPNAME ## h264_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE);
  328. }
  329. static void OPNAME ## h264_qpel ## SIZE ## _mc03_c(uint8_t *dst, uint8_t *src, int stride){
  330.     uint8_t full[SIZE*(SIZE+5)];
  331.     uint8_t * const full_mid= full + SIZE*2;
  332.     uint8_t half[SIZE*SIZE];
  333.     copy_block ## SIZE (full, src - stride*2, SIZE,  stride, SIZE + 5);
  334.     put_h264_qpel ## SIZE ## _v_lowpass(half, full_mid, SIZE, SIZE);
  335.     OPNAME ## pixels ## SIZE ## _l2(dst, full_mid+SIZE, half, stride, SIZE, SIZE, SIZE);
  336. }
  337. static void OPNAME ## h264_qpel ## SIZE ## _mc11_c(uint8_t *dst, uint8_t *src, int stride){
  338.     uint8_t full[SIZE*(SIZE+5)];
  339.     uint8_t * const full_mid= full + SIZE*2;
  340.     uint8_t halfH[SIZE*SIZE];
  341.     uint8_t halfV[SIZE*SIZE];
  342.     put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);
  343.     copy_block ## SIZE (full, src - stride*2, SIZE,  stride, SIZE + 5);
  344.     put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);
  345.     OPNAME ## pixels ## SIZE ## _l2(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);
  346. }
  347. static void OPNAME ## h264_qpel ## SIZE ## _mc31_c(uint8_t *dst, uint8_t *src, int stride){
  348.     uint8_t full[SIZE*(SIZE+5)];
  349.     uint8_t * const full_mid= full + SIZE*2;
  350.     uint8_t halfH[SIZE*SIZE];
  351.     uint8_t halfV[SIZE*SIZE];
  352.     put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);
  353.     copy_block ## SIZE (full, src - stride*2 + 1, SIZE,  stride, SIZE + 5);
  354.     put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);
  355.     OPNAME ## pixels ## SIZE ## _l2(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);
  356. }
  357. static void OPNAME ## h264_qpel ## SIZE ## _mc13_c(uint8_t *dst, uint8_t *src, int stride){
  358.     uint8_t full[SIZE*(SIZE+5)];
  359.     uint8_t * const full_mid= full + SIZE*2;
  360.     uint8_t halfH[SIZE*SIZE];
  361.     uint8_t halfV[SIZE*SIZE];
  362.     put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);
  363.     copy_block ## SIZE (full, src - stride*2, SIZE,  stride, SIZE + 5);
  364.     put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);
  365.     OPNAME ## pixels ## SIZE ## _l2(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);
  366. }
  367. static void OPNAME ## h264_qpel ## SIZE ## _mc33_c(uint8_t *dst, uint8_t *src, int stride){
  368.     uint8_t full[SIZE*(SIZE+5)];
  369.     uint8_t * const full_mid= full + SIZE*2;
  370.     uint8_t halfH[SIZE*SIZE];
  371.     uint8_t halfV[SIZE*SIZE];
  372.     put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);
  373.     copy_block ## SIZE (full, src - stride*2 + 1, SIZE,  stride, SIZE + 5);
  374.     put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);
  375.     OPNAME ## pixels ## SIZE ## _l2(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);
  376. }
  377. static void OPNAME ## h264_qpel ## SIZE ## _mc22_c(uint8_t *dst, uint8_t *src, int stride){
  378.     int16_t tmp[SIZE*(SIZE+5)];
  379.     OPNAME ## h264_qpel ## SIZE ## _hv_lowpass(dst, tmp, src, stride, SIZE, stride);
  380. }
  381. static void OPNAME ## h264_qpel ## SIZE ## _mc21_c(uint8_t *dst, uint8_t *src, int stride){
  382.     int16_t tmp[SIZE*(SIZE+5)];
  383.     uint8_t halfH[SIZE*SIZE];
  384.     uint8_t halfHV[SIZE*SIZE];
  385.     put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);
  386.     put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);
  387.     OPNAME ## pixels ## SIZE ## _l2(dst, halfH, halfHV, stride, SIZE, SIZE, SIZE);
  388. }
  389. static void OPNAME ## h264_qpel ## SIZE ## _mc23_c(uint8_t *dst, uint8_t *src, int stride){
  390.     int16_t tmp[SIZE*(SIZE+5)];
  391.     uint8_t halfH[SIZE*SIZE];
  392.     uint8_t halfHV[SIZE*SIZE];
  393.     put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);
  394.     put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);
  395.     OPNAME ## pixels ## SIZE ## _l2(dst, halfH, halfHV, stride, SIZE, SIZE, SIZE);
  396. }
  397. static void OPNAME ## h264_qpel ## SIZE ## _mc12_c(uint8_t *dst, uint8_t *src, int stride){
  398.     uint8_t full[SIZE*(SIZE+5)];
  399.     uint8_t * const full_mid= full + SIZE*2;
  400.     int16_t tmp[SIZE*(SIZE+5)];
  401.     uint8_t halfV[SIZE*SIZE];
  402.     uint8_t halfHV[SIZE*SIZE];
  403.     copy_block ## SIZE (full, src - stride*2, SIZE,  stride, SIZE + 5);
  404.     put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);
  405.     put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);
  406.     OPNAME ## pixels ## SIZE ## _l2(dst, halfV, halfHV, stride, SIZE, SIZE, SIZE);
  407. }
  408. static void OPNAME ## h264_qpel ## SIZE ## _mc32_c(uint8_t *dst, uint8_t *src, int stride){
  409.     uint8_t full[SIZE*(SIZE+5)];
  410.     uint8_t * const full_mid= full + SIZE*2;
  411.     int16_t tmp[SIZE*(SIZE+5)];
  412.     uint8_t halfV[SIZE*SIZE];
  413.     uint8_t halfHV[SIZE*SIZE];
  414.     copy_block ## SIZE (full, src - stride*2 + 1, SIZE,  stride, SIZE + 5);
  415.     put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);
  416.     put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);
  417.     OPNAME ## pixels ## SIZE ## _l2(dst, halfV, halfHV, stride, SIZE, SIZE, SIZE);
  418. }
  419. #define op_avg(a, b)  a = (((a)+cm[((b) + 16)>>5]+1)>>1)
  420. //#define op_avg2(a, b) a = (((a)*w1+cm[((b) + 16)>>5]*w2 + o + 64)>>7)
  421. #define op_put(a, b)  a = cm[((b) + 16)>>5]
  422. #define op2_avg(a, b)  a = (((a)+cm[((b) + 512)>>10]+1)>>1)
  423. #define op2_put(a, b)  a = cm[((b) + 512)>>10]
  424. H264_LOWPASS(put_       , op_put, op2_put)
  425. H264_LOWPASS(avg_       , op_avg, op2_avg)
  426. H264_MC(put_, 2)
  427. H264_MC(put_, 4)
  428. H264_MC(put_, 8)
  429. H264_MC(put_, 16)
  430. H264_MC(avg_, 4)
  431. H264_MC(avg_, 8)
  432. H264_MC(avg_, 16)
  433. #undef op_avg
  434. #undef op_put
  435. #undef op2_avg
  436. #undef op2_put
  437. #endif
  438. #define op_scale1(x)  block[x] = av_clip_uint8( (block[x]*weight + offset) >> log2_denom )
  439. #define op_scale2(x)  dst[x] = av_clip_uint8( (src[x]*weights + dst[x]*weightd + offset) >> (log2_denom+1))
  440. #define H264_WEIGHT(W,H) 
  441. static void weight_h264_pixels ## W ## x ## H ## _c(uint8_t *block, int stride, int log2_denom, int weight, int offset){ 
  442.     int y; 
  443.     offset <<= log2_denom; 
  444.     if(log2_denom) offset += 1<<(log2_denom-1); 
  445.     for(y=0; y<H; y++, block += stride){ 
  446.         op_scale1(0); 
  447.         op_scale1(1); 
  448.         if(W==2) continue; 
  449.         op_scale1(2); 
  450.         op_scale1(3); 
  451.         if(W==4) continue; 
  452.         op_scale1(4); 
  453.         op_scale1(5); 
  454.         op_scale1(6); 
  455.         op_scale1(7); 
  456.         if(W==8) continue; 
  457.         op_scale1(8); 
  458.         op_scale1(9); 
  459.         op_scale1(10); 
  460.         op_scale1(11); 
  461.         op_scale1(12); 
  462.         op_scale1(13); 
  463.         op_scale1(14); 
  464.         op_scale1(15); 
  465.     } 
  466. static void biweight_h264_pixels ## W ## x ## H ## _c(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int offset){ 
  467.     int y; 
  468.     offset = ((offset + 1) | 1) << log2_denom; 
  469.     for(y=0; y<H; y++, dst += stride, src += stride){ 
  470.         op_scale2(0); 
  471.         op_scale2(1); 
  472.         if(W==2) continue; 
  473.         op_scale2(2); 
  474.         op_scale2(3); 
  475.         if(W==4) continue; 
  476.         op_scale2(4); 
  477.         op_scale2(5); 
  478.         op_scale2(6); 
  479.         op_scale2(7); 
  480.         if(W==8) continue; 
  481.         op_scale2(8); 
  482.         op_scale2(9); 
  483.         op_scale2(10); 
  484.         op_scale2(11); 
  485.         op_scale2(12); 
  486.         op_scale2(13); 
  487.         op_scale2(14); 
  488.         op_scale2(15); 
  489.     } 
  490. }
  491. H264_WEIGHT(16,16)
  492. H264_WEIGHT(16,8)
  493. H264_WEIGHT(8,16)
  494. H264_WEIGHT(8,8)
  495. H264_WEIGHT(8,4)
  496. H264_WEIGHT(4,8)
  497. H264_WEIGHT(4,4)
  498. H264_WEIGHT(4,2)
  499. H264_WEIGHT(2,4)
  500. H264_WEIGHT(2,2)
  501. #undef op_scale1
  502. #undef op_scale2
  503. #undef H264_WEIGHT
  504. static void wmv2_mspel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){
  505.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  506.     int i;
  507.     for(i=0; i<h; i++){
  508.         dst[0]= cm[(9*(src[0] + src[1]) - (src[-1] + src[2]) + 8)>>4];
  509.         dst[1]= cm[(9*(src[1] + src[2]) - (src[ 0] + src[3]) + 8)>>4];
  510.         dst[2]= cm[(9*(src[2] + src[3]) - (src[ 1] + src[4]) + 8)>>4];
  511.         dst[3]= cm[(9*(src[3] + src[4]) - (src[ 2] + src[5]) + 8)>>4];
  512.         dst[4]= cm[(9*(src[4] + src[5]) - (src[ 3] + src[6]) + 8)>>4];
  513.         dst[5]= cm[(9*(src[5] + src[6]) - (src[ 4] + src[7]) + 8)>>4];
  514.         dst[6]= cm[(9*(src[6] + src[7]) - (src[ 5] + src[8]) + 8)>>4];
  515.         dst[7]= cm[(9*(src[7] + src[8]) - (src[ 6] + src[9]) + 8)>>4];
  516.         dst+=dstStride;
  517.         src+=srcStride;
  518.     }
  519. }
  520. #ifdef CONFIG_CAVS_DECODER
  521. /* AVS specific */
  522. void ff_cavsdsp_init(DSPContext* c, AVCodecContext *avctx);
  523. void ff_put_cavs_qpel8_mc00_c(uint8_t *dst, uint8_t *src, int stride) {
  524.     put_pixels8_c(dst, src, stride, 8);
  525. }
  526. void ff_avg_cavs_qpel8_mc00_c(uint8_t *dst, uint8_t *src, int stride) {
  527.     avg_pixels8_c(dst, src, stride, 8);
  528. }
  529. void ff_put_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride) {
  530.     put_pixels16_c(dst, src, stride, 16);
  531. }
  532. void ff_avg_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride) {
  533.     avg_pixels16_c(dst, src, stride, 16);
  534. }
  535. #endif /* CONFIG_CAVS_DECODER */
  536. #if defined(CONFIG_VC1_DECODER) || defined(CONFIG_WMV3_DECODER)
  537. /* VC-1 specific */
  538. void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx);
  539. void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) {
  540.     put_pixels8_c(dst, src, stride, 8);
  541. }
  542. #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */
  543. void ff_intrax8dsp_init(DSPContext* c, AVCodecContext *avctx);
  544. /* H264 specific */
  545. void ff_h264dspenc_init(DSPContext* c, AVCodecContext *avctx);
  546. static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){
  547.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  548.     int i;
  549.     for(i=0; i<w; i++){
  550.         const int src_1= src[ -srcStride];
  551.         const int src0 = src[0          ];
  552.         const int src1 = src[  srcStride];
  553.         const int src2 = src[2*srcStride];
  554.         const int src3 = src[3*srcStride];
  555.         const int src4 = src[4*srcStride];
  556.         const int src5 = src[5*srcStride];
  557.         const int src6 = src[6*srcStride];
  558.         const int src7 = src[7*srcStride];
  559.         const int src8 = src[8*srcStride];
  560.         const int src9 = src[9*srcStride];
  561.         dst[0*dstStride]= cm[(9*(src0 + src1) - (src_1 + src2) + 8)>>4];
  562.         dst[1*dstStride]= cm[(9*(src1 + src2) - (src0  + src3) + 8)>>4];
  563.         dst[2*dstStride]= cm[(9*(src2 + src3) - (src1  + src4) + 8)>>4];
  564.         dst[3*dstStride]= cm[(9*(src3 + src4) - (src2  + src5) + 8)>>4];
  565.         dst[4*dstStride]= cm[(9*(src4 + src5) - (src3  + src6) + 8)>>4];
  566.         dst[5*dstStride]= cm[(9*(src5 + src6) - (src4  + src7) + 8)>>4];
  567.         dst[6*dstStride]= cm[(9*(src6 + src7) - (src5  + src8) + 8)>>4];
  568.         dst[7*dstStride]= cm[(9*(src7 + src8) - (src6  + src9) + 8)>>4];
  569.         src++;
  570.         dst++;
  571.     }
  572. }
  573. static void put_mspel8_mc00_c (uint8_t *dst, uint8_t *src, int stride){
  574.     put_pixels8_c(dst, src, stride, 8);
  575. }
  576. static void put_mspel8_mc10_c(uint8_t *dst, uint8_t *src, int stride){
  577.     uint8_t half[64];
  578.     wmv2_mspel8_h_lowpass(half, src, 8, stride, 8);
  579.     put_pixels8_l2(dst, src, half, stride, stride, 8, 8);
  580. }
  581. static void put_mspel8_mc20_c(uint8_t *dst, uint8_t *src, int stride){
  582.     wmv2_mspel8_h_lowpass(dst, src, stride, stride, 8);
  583. }
  584. static void put_mspel8_mc30_c(uint8_t *dst, uint8_t *src, int stride){
  585.     uint8_t half[64];
  586.     wmv2_mspel8_h_lowpass(half, src, 8, stride, 8);
  587.     put_pixels8_l2(dst, src+1, half, stride, stride, 8, 8);
  588. }
  589. static void put_mspel8_mc02_c(uint8_t *dst, uint8_t *src, int stride){
  590.     wmv2_mspel8_v_lowpass(dst, src, stride, stride, 8);
  591. }
  592. static void put_mspel8_mc12_c(uint8_t *dst, uint8_t *src, int stride){
  593.     uint8_t halfH[88];
  594.     uint8_t halfV[64];
  595.     uint8_t halfHV[64];
  596.     wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11);
  597.     wmv2_mspel8_v_lowpass(halfV, src, 8, stride, 8);
  598.     wmv2_mspel8_v_lowpass(halfHV, halfH+8, 8, 8, 8);
  599.     put_pixels8_l2(dst, halfV, halfHV, stride, 8, 8, 8);
  600. }
  601. static void put_mspel8_mc32_c(uint8_t *dst, uint8_t *src, int stride){
  602.     uint8_t halfH[88];
  603.     uint8_t halfV[64];
  604.     uint8_t halfHV[64];
  605.     wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11);
  606.     wmv2_mspel8_v_lowpass(halfV, src+1, 8, stride, 8);
  607.     wmv2_mspel8_v_lowpass(halfHV, halfH+8, 8, 8, 8);
  608.     put_pixels8_l2(dst, halfV, halfHV, stride, 8, 8, 8);
  609. }
  610. static void put_mspel8_mc22_c(uint8_t *dst, uint8_t *src, int stride){
  611.     uint8_t halfH[88];
  612.     wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11);
  613.     wmv2_mspel8_v_lowpass(dst, halfH+8, stride, 8, 8);
  614. }
  615. static inline void h264_loop_filter_luma_c(uint8_t *pix, int xstride, int ystride, int alpha, int beta, int8_t *tc0)
  616. {
  617.     int i, d;
  618.     for( i = 0; i < 4; i++ ) {
  619.         if( tc0[i] < 0 ) {
  620.             pix += 4*ystride;
  621.             continue;
  622.         }
  623.         for( d = 0; d < 4; d++ ) {
  624.             const int p0 = pix[-1*xstride];
  625.             const int p1 = pix[-2*xstride];
  626.             const int p2 = pix[-3*xstride];
  627.             const int q0 = pix[0];
  628.             const int q1 = pix[1*xstride];
  629.             const int q2 = pix[2*xstride];
  630.             if( FFABS( p0 - q0 ) < alpha &&
  631.                 FFABS( p1 - p0 ) < beta &&
  632.                 FFABS( q1 - q0 ) < beta ) {
  633.                 int tc = tc0[i];
  634.                 int i_delta;
  635.                 if( FFABS( p2 - p0 ) < beta ) {
  636.                     pix[-2*xstride] = p1 + av_clip( (( p2 + ( ( p0 + q0 + 1 ) >> 1 ) ) >> 1) - p1, -tc0[i], tc0[i] );
  637.                     tc++;
  638.                 }
  639.                 if( FFABS( q2 - q0 ) < beta ) {
  640.                     pix[   xstride] = q1 + av_clip( (( q2 + ( ( p0 + q0 + 1 ) >> 1 ) ) >> 1) - q1, -tc0[i], tc0[i] );
  641.                     tc++;
  642.                 }
  643.                 i_delta = av_clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
  644.                 pix[-xstride] = av_clip_uint8( p0 + i_delta );    /* p0' */
  645.                 pix[0]        = av_clip_uint8( q0 - i_delta );    /* q0' */
  646.             }
  647.             pix += ystride;
  648.         }
  649.     }
  650. }
  651. static void h264_v_loop_filter_luma_c(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0)
  652. {
  653.     h264_loop_filter_luma_c(pix, stride, 1, alpha, beta, tc0);
  654. }
  655. static void h264_h_loop_filter_luma_c(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0)
  656. {
  657.     h264_loop_filter_luma_c(pix, 1, stride, alpha, beta, tc0);
  658. }
  659. static inline void h264_loop_filter_chroma_c(uint8_t *pix, int xstride, int ystride, int alpha, int beta, int8_t *tc0)
  660. {
  661.     int i, d;
  662.     for( i = 0; i < 4; i++ ) {
  663.         const int tc = tc0[i];
  664.         if( tc <= 0 ) {
  665.             pix += 2*ystride;
  666.             continue;
  667.         }
  668.         for( d = 0; d < 2; d++ ) {
  669.             const int p0 = pix[-1*xstride];
  670.             const int p1 = pix[-2*xstride];
  671.             const int q0 = pix[0];
  672.             const int q1 = pix[1*xstride];
  673.             if( FFABS( p0 - q0 ) < alpha &&
  674.                 FFABS( p1 - p0 ) < beta &&
  675.                 FFABS( q1 - q0 ) < beta ) {
  676.                 int delta = av_clip( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
  677.                 pix[-xstride] = av_clip_uint8( p0 + delta );    /* p0' */
  678.                 pix[0]        = av_clip_uint8( q0 - delta );    /* q0' */
  679.             }
  680.             pix += ystride;
  681.         }
  682.     }
  683. }
  684. static void h264_v_loop_filter_chroma_c(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0)
  685. {
  686.     h264_loop_filter_chroma_c(pix, stride, 1, alpha, beta, tc0);
  687. }
  688. static void h264_h_loop_filter_chroma_c(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0)
  689. {
  690.     h264_loop_filter_chroma_c(pix, 1, stride, alpha, beta, tc0);
  691. }
  692. static inline void h264_loop_filter_chroma_intra_c(uint8_t *pix, int xstride, int ystride, int alpha, int beta)
  693. {
  694.     int d;
  695.     for( d = 0; d < 8; d++ ) {
  696.         const int p0 = pix[-1*xstride];
  697.         const int p1 = pix[-2*xstride];
  698.         const int q0 = pix[0];
  699.         const int q1 = pix[1*xstride];
  700.         if( FFABS( p0 - q0 ) < alpha &&
  701.             FFABS( p1 - p0 ) < beta &&
  702.             FFABS( q1 - q0 ) < beta ) {
  703.             pix[-xstride] = ( 2*p1 + p0 + q1 + 2 ) >> 2;   /* p0' */
  704.             pix[0]        = ( 2*q1 + q0 + p1 + 2 ) >> 2;   /* q0' */
  705.         }
  706.         pix += ystride;
  707.     }
  708. }
  709. static void h264_v_loop_filter_chroma_intra_c(uint8_t *pix, int stride, int alpha, int beta)
  710. {
  711.     h264_loop_filter_chroma_intra_c(pix, stride, 1, alpha, beta);
  712. }
  713. static void h264_h_loop_filter_chroma_intra_c(uint8_t *pix, int stride, int alpha, int beta)
  714. {
  715.     h264_loop_filter_chroma_intra_c(pix, 1, stride, alpha, beta);
  716. }
  717. static inline int pix_abs16_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  718. {
  719.     int s, i;
  720.     s = 0;
  721.     for(i=0;i<h;i++) {
  722.         s += abs(pix1[0] - pix2[0]);
  723.         s += abs(pix1[1] - pix2[1]);
  724.         s += abs(pix1[2] - pix2[2]);
  725.         s += abs(pix1[3] - pix2[3]);
  726.         s += abs(pix1[4] - pix2[4]);
  727.         s += abs(pix1[5] - pix2[5]);
  728.         s += abs(pix1[6] - pix2[6]);
  729.         s += abs(pix1[7] - pix2[7]);
  730.         s += abs(pix1[8] - pix2[8]);
  731.         s += abs(pix1[9] - pix2[9]);
  732.         s += abs(pix1[10] - pix2[10]);
  733.         s += abs(pix1[11] - pix2[11]);
  734.         s += abs(pix1[12] - pix2[12]);
  735.         s += abs(pix1[13] - pix2[13]);
  736.         s += abs(pix1[14] - pix2[14]);
  737.         s += abs(pix1[15] - pix2[15]);
  738.         pix1 += line_size;
  739.         pix2 += line_size;
  740.     }
  741.     return s;
  742. }
  743. static int pix_abs16_x2_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  744. {
  745.     int s, i;
  746.     s = 0;
  747.     for(i=0;i<h;i++) {
  748.         s += abs(pix1[0] - avg2(pix2[0], pix2[1]));
  749.         s += abs(pix1[1] - avg2(pix2[1], pix2[2]));
  750.         s += abs(pix1[2] - avg2(pix2[2], pix2[3]));
  751.         s += abs(pix1[3] - avg2(pix2[3], pix2[4]));
  752.         s += abs(pix1[4] - avg2(pix2[4], pix2[5]));
  753.         s += abs(pix1[5] - avg2(pix2[5], pix2[6]));
  754.         s += abs(pix1[6] - avg2(pix2[6], pix2[7]));
  755.         s += abs(pix1[7] - avg2(pix2[7], pix2[8]));
  756.         s += abs(pix1[8] - avg2(pix2[8], pix2[9]));
  757.         s += abs(pix1[9] - avg2(pix2[9], pix2[10]));
  758.         s += abs(pix1[10] - avg2(pix2[10], pix2[11]));
  759.         s += abs(pix1[11] - avg2(pix2[11], pix2[12]));
  760.         s += abs(pix1[12] - avg2(pix2[12], pix2[13]));
  761.         s += abs(pix1[13] - avg2(pix2[13], pix2[14]));
  762.         s += abs(pix1[14] - avg2(pix2[14], pix2[15]));
  763.         s += abs(pix1[15] - avg2(pix2[15], pix2[16]));
  764.         pix1 += line_size;
  765.         pix2 += line_size;
  766.     }
  767.     return s;
  768. }
  769. static int pix_abs16_y2_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  770. {
  771.     int s, i;
  772.     uint8_t *pix3 = pix2 + line_size;
  773.     s = 0;
  774.     for(i=0;i<h;i++) {
  775.         s += abs(pix1[0] - avg2(pix2[0], pix3[0]));
  776.         s += abs(pix1[1] - avg2(pix2[1], pix3[1]));
  777.         s += abs(pix1[2] - avg2(pix2[2], pix3[2]));
  778.         s += abs(pix1[3] - avg2(pix2[3], pix3[3]));
  779.         s += abs(pix1[4] - avg2(pix2[4], pix3[4]));
  780.         s += abs(pix1[5] - avg2(pix2[5], pix3[5]));
  781.         s += abs(pix1[6] - avg2(pix2[6], pix3[6]));
  782.         s += abs(pix1[7] - avg2(pix2[7], pix3[7]));
  783.         s += abs(pix1[8] - avg2(pix2[8], pix3[8]));
  784.         s += abs(pix1[9] - avg2(pix2[9], pix3[9]));
  785.         s += abs(pix1[10] - avg2(pix2[10], pix3[10]));
  786.         s += abs(pix1[11] - avg2(pix2[11], pix3[11]));
  787.         s += abs(pix1[12] - avg2(pix2[12], pix3[12]));
  788.         s += abs(pix1[13] - avg2(pix2[13], pix3[13]));
  789.         s += abs(pix1[14] - avg2(pix2[14], pix3[14]));
  790.         s += abs(pix1[15] - avg2(pix2[15], pix3[15]));
  791.         pix1 += line_size;
  792.         pix2 += line_size;
  793.         pix3 += line_size;
  794.     }
  795.     return s;
  796. }
  797. static int pix_abs16_xy2_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  798. {
  799.     int s, i;
  800.     uint8_t *pix3 = pix2 + line_size;
  801.     s = 0;
  802.     for(i=0;i<h;i++) {
  803.         s += abs(pix1[0] - avg4(pix2[0], pix2[1], pix3[0], pix3[1]));
  804.         s += abs(pix1[1] - avg4(pix2[1], pix2[2], pix3[1], pix3[2]));
  805.         s += abs(pix1[2] - avg4(pix2[2], pix2[3], pix3[2], pix3[3]));
  806.         s += abs(pix1[3] - avg4(pix2[3], pix2[4], pix3[3], pix3[4]));
  807.         s += abs(pix1[4] - avg4(pix2[4], pix2[5], pix3[4], pix3[5]));
  808.         s += abs(pix1[5] - avg4(pix2[5], pix2[6], pix3[5], pix3[6]));
  809.         s += abs(pix1[6] - avg4(pix2[6], pix2[7], pix3[6], pix3[7]));
  810.         s += abs(pix1[7] - avg4(pix2[7], pix2[8], pix3[7], pix3[8]));
  811.         s += abs(pix1[8] - avg4(pix2[8], pix2[9], pix3[8], pix3[9]));
  812.         s += abs(pix1[9] - avg4(pix2[9], pix2[10], pix3[9], pix3[10]));
  813.         s += abs(pix1[10] - avg4(pix2[10], pix2[11], pix3[10], pix3[11]));
  814.         s += abs(pix1[11] - avg4(pix2[11], pix2[12], pix3[11], pix3[12]));
  815.         s += abs(pix1[12] - avg4(pix2[12], pix2[13], pix3[12], pix3[13]));
  816.         s += abs(pix1[13] - avg4(pix2[13], pix2[14], pix3[13], pix3[14]));
  817.         s += abs(pix1[14] - avg4(pix2[14], pix2[15], pix3[14], pix3[15]));
  818.         s += abs(pix1[15] - avg4(pix2[15], pix2[16], pix3[15], pix3[16]));
  819.         pix1 += line_size;
  820.         pix2 += line_size;
  821.         pix3 += line_size;
  822.     }
  823.     return s;
  824. }
  825. static inline int pix_abs8_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  826. {
  827.     int s, i;
  828.     s = 0;
  829.     for(i=0;i<h;i++) {
  830.         s += abs(pix1[0] - pix2[0]);
  831.         s += abs(pix1[1] - pix2[1]);
  832.         s += abs(pix1[2] - pix2[2]);
  833.         s += abs(pix1[3] - pix2[3]);
  834.         s += abs(pix1[4] - pix2[4]);
  835.         s += abs(pix1[5] - pix2[5]);
  836.         s += abs(pix1[6] - pix2[6]);
  837.         s += abs(pix1[7] - pix2[7]);
  838.         pix1 += line_size;
  839.         pix2 += line_size;
  840.     }
  841.     return s;
  842. }
  843. static int pix_abs8_x2_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  844. {
  845.     int s, i;
  846.     s = 0;
  847.     for(i=0;i<h;i++) {
  848.         s += abs(pix1[0] - avg2(pix2[0], pix2[1]));
  849.         s += abs(pix1[1] - avg2(pix2[1], pix2[2]));
  850.         s += abs(pix1[2] - avg2(pix2[2], pix2[3]));
  851.         s += abs(pix1[3] - avg2(pix2[3], pix2[4]));
  852.         s += abs(pix1[4] - avg2(pix2[4], pix2[5]));
  853.         s += abs(pix1[5] - avg2(pix2[5], pix2[6]));
  854.         s += abs(pix1[6] - avg2(pix2[6], pix2[7]));
  855.         s += abs(pix1[7] - avg2(pix2[7], pix2[8]));
  856.         pix1 += line_size;
  857.         pix2 += line_size;
  858.     }
  859.     return s;
  860. }
  861. static int pix_abs8_y2_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  862. {
  863.     int s, i;
  864.     uint8_t *pix3 = pix2 + line_size;
  865.     s = 0;
  866.     for(i=0;i<h;i++) {
  867.         s += abs(pix1[0] - avg2(pix2[0], pix3[0]));
  868.         s += abs(pix1[1] - avg2(pix2[1], pix3[1]));
  869.         s += abs(pix1[2] - avg2(pix2[2], pix3[2]));
  870.         s += abs(pix1[3] - avg2(pix2[3], pix3[3]));
  871.         s += abs(pix1[4] - avg2(pix2[4], pix3[4]));
  872.         s += abs(pix1[5] - avg2(pix2[5], pix3[5]));
  873.         s += abs(pix1[6] - avg2(pix2[6], pix3[6]));
  874.         s += abs(pix1[7] - avg2(pix2[7], pix3[7]));
  875.         pix1 += line_size;
  876.         pix2 += line_size;
  877.         pix3 += line_size;
  878.     }
  879.     return s;
  880. }
  881. static int pix_abs8_xy2_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  882. {
  883.     int s, i;
  884.     uint8_t *pix3 = pix2 + line_size;
  885.     s = 0;
  886.     for(i=0;i<h;i++) {
  887.         s += abs(pix1[0] - avg4(pix2[0], pix2[1], pix3[0], pix3[1]));
  888.         s += abs(pix1[1] - avg4(pix2[1], pix2[2], pix3[1], pix3[2]));
  889.         s += abs(pix1[2] - avg4(pix2[2], pix2[3], pix3[2], pix3[3]));
  890.         s += abs(pix1[3] - avg4(pix2[3], pix2[4], pix3[3], pix3[4]));
  891.         s += abs(pix1[4] - avg4(pix2[4], pix2[5], pix3[4], pix3[5]));
  892.         s += abs(pix1[5] - avg4(pix2[5], pix2[6], pix3[5], pix3[6]));
  893.         s += abs(pix1[6] - avg4(pix2[6], pix2[7], pix3[6], pix3[7]));
  894.         s += abs(pix1[7] - avg4(pix2[7], pix2[8], pix3[7], pix3[8]));
  895.         pix1 += line_size;
  896.         pix2 += line_size;
  897.         pix3 += line_size;
  898.     }
  899.     return s;
  900. }
  901. static int try_8x8basis_c(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale){
  902.     int i;
  903.     unsigned int sum=0;
  904.     for(i=0; i<8*8; i++){
  905.         int b= rem[i] + ((basis[i]*scale + (1<<(BASIS_SHIFT - RECON_SHIFT-1)))>>(BASIS_SHIFT - RECON_SHIFT));
  906.         int w= weight[i];
  907.         b>>= RECON_SHIFT;
  908.         assert(-512<b && b<512);
  909.         sum += (w*b)*(w*b)>>4;
  910.     }
  911.     return sum>>2;
  912. }
  913. static void add_8x8basis_c(int16_t rem[64], int16_t basis[64], int scale){
  914.     int i;
  915.     for(i=0; i<8*8; i++){
  916.         rem[i] += (basis[i]*scale + (1<<(BASIS_SHIFT - RECON_SHIFT-1)))>>(BASIS_SHIFT - RECON_SHIFT);
  917.     }
  918. }
  919. /**
  920.  * permutes an 8x8 block.
  921.  * @param block the block which will be permuted according to the given permutation vector
  922.  * @param permutation the permutation vector
  923.  * @param last the last non zero coefficient in scantable order, used to speed the permutation up
  924.  * @param scantable the used scantable, this is only used to speed the permutation up, the block is not
  925.  *                  (inverse) permutated to scantable order!
  926.  */
  927. void ff_block_permute(DCTELEM *block, uint8_t *permutation, const uint8_t *scantable, int last)
  928. {
  929.     int i;
  930.     DCTELEM temp[64];
  931.     if(last<=0) return;
  932.     //if(permutation[1]==1) return; //FIXME it is ok but not clean and might fail for some permutations
  933.     for(i=0; i<=last; i++){
  934.         const int j= scantable[i];
  935.         temp[j]= block[j];
  936.         block[j]=0;
  937.     }
  938.     for(i=0; i<=last; i++){
  939.         const int j= scantable[i];
  940.         const int perm_j= permutation[j];
  941.         block[perm_j]= temp[j];
  942.     }
  943. }
  944. static int zero_cmp(void *s, uint8_t *a, uint8_t *b, int stride, int h){
  945.     return 0;
  946. }
  947. void ff_set_cmp(DSPContext* c, me_cmp_func *cmp, int type){
  948.     int i;
  949.     memset(cmp, 0, sizeof(void*)*5);
  950.     for(i=0; i<5; i++){
  951.         switch(type&0xFF){
  952.         case FF_CMP_SAD:
  953.             cmp[i]= c->sad[i];
  954.             break;
  955.         case FF_CMP_SATD:
  956.             cmp[i]= c->hadamard8_diff[i];
  957.             break;
  958.         case FF_CMP_SSE:
  959.             cmp[i]= c->sse[i];
  960.             break;
  961.         case FF_CMP_DCT:
  962.             cmp[i]= c->dct_sad[i];
  963.             break;
  964.         case FF_CMP_DCT264:
  965.             cmp[i]= c->dct264_sad[i];
  966.             break;
  967.         case FF_CMP_DCTMAX:
  968.             cmp[i]= c->dct_max[i];
  969.             break;
  970.         case FF_CMP_PSNR:
  971.             cmp[i]= c->quant_psnr[i];
  972.             break;
  973.         case FF_CMP_BIT:
  974.             cmp[i]= c->bit[i];
  975.             break;
  976.         case FF_CMP_RD:
  977.             cmp[i]= c->rd[i];
  978.             break;
  979.         case FF_CMP_VSAD:
  980.             cmp[i]= c->vsad[i];
  981.             break;
  982.         case FF_CMP_VSSE:
  983.             cmp[i]= c->vsse[i];
  984.             break;
  985.         case FF_CMP_ZERO:
  986.             cmp[i]= zero_cmp;
  987.             break;
  988.         case FF_CMP_NSSE:
  989.             cmp[i]= c->nsse[i];
  990.             break;
  991. #ifdef CONFIG_SNOW_ENCODER
  992.         case FF_CMP_W53:
  993.             cmp[i]= c->w53[i];
  994.             break;
  995.         case FF_CMP_W97:
  996.             cmp[i]= c->w97[i];
  997.             break;
  998. #endif
  999.         default:
  1000.             av_log(NULL, AV_LOG_ERROR,"internal error in cmp function selectionn");
  1001.         }
  1002.     }
  1003. }
  1004. /**
  1005.  * memset(blocks, 0, sizeof(DCTELEM)*6*64)
  1006.  */
  1007. static void clear_blocks_c(DCTELEM *blocks)
  1008. {
  1009.     memset(blocks, 0, sizeof(DCTELEM)*6*64);
  1010. }
  1011. static void add_bytes_c(uint8_t *dst, uint8_t *src, int w){
  1012.     long i;
  1013.     for(i=0; i<=w-sizeof(long); i+=sizeof(long)){
  1014.         long a = *(long*)(src+i);
  1015.         long b = *(long*)(dst+i);
  1016.         *(long*)(dst+i) = ((a&pb_7f) + (b&pb_7f)) ^ ((a^b)&pb_80);
  1017.     }
  1018.     for(; i<w; i++)
  1019.         dst[i+0] += src[i+0];
  1020. }
  1021. static void add_bytes_l2_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w){
  1022.     long i;
  1023.     for(i=0; i<=w-sizeof(long); i+=sizeof(long)){
  1024.         long a = *(long*)(src1+i);
  1025.         long b = *(long*)(src2+i);
  1026.         *(long*)(dst+i) = ((a&pb_7f) + (b&pb_7f)) ^ ((a^b)&pb_80);
  1027.     }
  1028.     for(; i<w; i++)
  1029.         dst[i] = src1[i]+src2[i];
  1030. }
  1031. static void diff_bytes_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w){
  1032.     long i;
  1033. #ifndef HAVE_FAST_UNALIGNED
  1034.     if((long)src2 & (sizeof(long)-1)){
  1035.         for(i=0; i+7<w; i+=8){
  1036.             dst[i+0] = src1[i+0]-src2[i+0];
  1037.             dst[i+1] = src1[i+1]-src2[i+1];
  1038.             dst[i+2] = src1[i+2]-src2[i+2];
  1039.             dst[i+3] = src1[i+3]-src2[i+3];
  1040.             dst[i+4] = src1[i+4]-src2[i+4];
  1041.             dst[i+5] = src1[i+5]-src2[i+5];
  1042.             dst[i+6] = src1[i+6]-src2[i+6];
  1043.             dst[i+7] = src1[i+7]-src2[i+7];
  1044.         }
  1045.     }else
  1046. #endif
  1047.     for(i=0; i<=w-sizeof(long); i+=sizeof(long)){
  1048.         long a = *(long*)(src1+i);
  1049.         long b = *(long*)(src2+i);
  1050.         *(long*)(dst+i) = ((a|pb_80) - (b&pb_7f)) ^ ((a^b^pb_80)&pb_80);
  1051.     }
  1052.     for(; i<w; i++)
  1053.         dst[i+0] = src1[i+0]-src2[i+0];
  1054. }
  1055. static void sub_hfyu_median_prediction_c(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top){
  1056.     int i;
  1057.     uint8_t l, lt;
  1058.     l= *left;
  1059.     lt= *left_top;
  1060.     for(i=0; i<w; i++){
  1061.         const int pred= mid_pred(l, src1[i], (l + src1[i] - lt)&0xFF);
  1062.         lt= src1[i];
  1063.         l= src2[i];
  1064.         dst[i]= l - pred;
  1065.     }
  1066.     *left= l;
  1067.     *left_top= lt;
  1068. }
  1069. #define BUTTERFLY2(o1,o2,i1,i2) 
  1070. o1= (i1)+(i2);
  1071. o2= (i1)-(i2);
  1072. #define BUTTERFLY1(x,y) 
  1073. {
  1074.     int a,b;
  1075.     a= x;
  1076.     b= y;
  1077.     x= a+b;
  1078.     y= a-b;
  1079. }
  1080. #define BUTTERFLYA(x,y) (FFABS((x)+(y)) + FFABS((x)-(y)))
  1081. static int hadamard8_diff8x8_c(/*MpegEncContext*/ void *s, uint8_t *dst, uint8_t *src, int stride, int h){
  1082.     int i;
  1083.     int temp[64];
  1084.     int sum=0;
  1085.     assert(h==8);
  1086.     for(i=0; i<8; i++){
  1087.         //FIXME try pointer walks
  1088.         BUTTERFLY2(temp[8*i+0], temp[8*i+1], src[stride*i+0]-dst[stride*i+0],src[stride*i+1]-dst[stride*i+1]);
  1089.         BUTTERFLY2(temp[8*i+2], temp[8*i+3], src[stride*i+2]-dst[stride*i+2],src[stride*i+3]-dst[stride*i+3]);
  1090.         BUTTERFLY2(temp[8*i+4], temp[8*i+5], src[stride*i+4]-dst[stride*i+4],src[stride*i+5]-dst[stride*i+5]);
  1091.         BUTTERFLY2(temp[8*i+6], temp[8*i+7], src[stride*i+6]-dst[stride*i+6],src[stride*i+7]-dst[stride*i+7]);
  1092.         BUTTERFLY1(temp[8*i+0], temp[8*i+2]);
  1093.         BUTTERFLY1(temp[8*i+1], temp[8*i+3]);
  1094.         BUTTERFLY1(temp[8*i+4], temp[8*i+6]);
  1095.         BUTTERFLY1(temp[8*i+5], temp[8*i+7]);
  1096.         BUTTERFLY1(temp[8*i+0], temp[8*i+4]);
  1097.         BUTTERFLY1(temp[8*i+1], temp[8*i+5]);
  1098.         BUTTERFLY1(temp[8*i+2], temp[8*i+6]);
  1099.         BUTTERFLY1(temp[8*i+3], temp[8*i+7]);
  1100.     }
  1101.     for(i=0; i<8; i++){
  1102.         BUTTERFLY1(temp[8*0+i], temp[8*1+i]);
  1103.         BUTTERFLY1(temp[8*2+i], temp[8*3+i]);
  1104.         BUTTERFLY1(temp[8*4+i], temp[8*5+i]);
  1105.         BUTTERFLY1(temp[8*6+i], temp[8*7+i]);
  1106.         BUTTERFLY1(temp[8*0+i], temp[8*2+i]);
  1107.         BUTTERFLY1(temp[8*1+i], temp[8*3+i]);
  1108.         BUTTERFLY1(temp[8*4+i], temp[8*6+i]);
  1109.         BUTTERFLY1(temp[8*5+i], temp[8*7+i]);
  1110.         sum +=
  1111.              BUTTERFLYA(temp[8*0+i], temp[8*4+i])
  1112.             +BUTTERFLYA(temp[8*1+i], temp[8*5+i])
  1113.             +BUTTERFLYA(temp[8*2+i], temp[8*6+i])
  1114.             +BUTTERFLYA(temp[8*3+i], temp[8*7+i]);
  1115.     }
  1116. #if 0
  1117. static int maxi=0;
  1118. if(sum>maxi){
  1119.     maxi=sum;
  1120.     printf("MAX:%dn", maxi);
  1121. }
  1122. #endif
  1123.     return sum;
  1124. }
  1125. static int hadamard8_intra8x8_c(/*MpegEncContext*/ void *s, uint8_t *src, uint8_t *dummy, int stride, int h){
  1126.     int i;
  1127.     int temp[64];
  1128.     int sum=0;
  1129.     assert(h==8);
  1130.     for(i=0; i<8; i++){
  1131.         //FIXME try pointer walks
  1132.         BUTTERFLY2(temp[8*i+0], temp[8*i+1], src[stride*i+0],src[stride*i+1]);
  1133.         BUTTERFLY2(temp[8*i+2], temp[8*i+3], src[stride*i+2],src[stride*i+3]);
  1134.         BUTTERFLY2(temp[8*i+4], temp[8*i+5], src[stride*i+4],src[stride*i+5]);
  1135.         BUTTERFLY2(temp[8*i+6], temp[8*i+7], src[stride*i+6],src[stride*i+7]);
  1136.         BUTTERFLY1(temp[8*i+0], temp[8*i+2]);
  1137.         BUTTERFLY1(temp[8*i+1], temp[8*i+3]);
  1138.         BUTTERFLY1(temp[8*i+4], temp[8*i+6]);
  1139.         BUTTERFLY1(temp[8*i+5], temp[8*i+7]);
  1140.         BUTTERFLY1(temp[8*i+0], temp[8*i+4]);
  1141.         BUTTERFLY1(temp[8*i+1], temp[8*i+5]);
  1142.         BUTTERFLY1(temp[8*i+2], temp[8*i+6]);
  1143.         BUTTERFLY1(temp[8*i+3], temp[8*i+7]);
  1144.     }
  1145.     for(i=0; i<8; i++){
  1146.         BUTTERFLY1(temp[8*0+i], temp[8*1+i]);
  1147.         BUTTERFLY1(temp[8*2+i], temp[8*3+i]);
  1148.         BUTTERFLY1(temp[8*4+i], temp[8*5+i]);
  1149.         BUTTERFLY1(temp[8*6+i], temp[8*7+i]);
  1150.         BUTTERFLY1(temp[8*0+i], temp[8*2+i]);
  1151.         BUTTERFLY1(temp[8*1+i], temp[8*3+i]);
  1152.         BUTTERFLY1(temp[8*4+i], temp[8*6+i]);
  1153.         BUTTERFLY1(temp[8*5+i], temp[8*7+i]);
  1154.         sum +=
  1155.              BUTTERFLYA(temp[8*0+i], temp[8*4+i])
  1156.             +BUTTERFLYA(temp[8*1+i], temp[8*5+i])
  1157.             +BUTTERFLYA(temp[8*2+i], temp[8*6+i])
  1158.             +BUTTERFLYA(temp[8*3+i], temp[8*7+i]);
  1159.     }
  1160.     sum -= FFABS(temp[8*0] + temp[8*4]); // -mean
  1161.     return sum;
  1162. }
  1163. //static int dct_sad8x8_c(/*MpegEncContext*/ void *c, uint8_t *src1, uint8_t *src2, int stride, int h){
  1164. //    MpegEncContext * const s= (MpegEncContext *)c;
  1165. //    DECLARE_ALIGNED_16(uint64_t, aligned_temp[sizeof(DCTELEM)*64/8]);
  1166. //    DCTELEM * const temp= (DCTELEM*)aligned_temp;
  1167. //
  1168. //    assert(h==8);
  1169. //
  1170. //    s->dsp.diff_pixels(temp, src1, src2, stride);
  1171. //    s->dsp.fdct(temp);
  1172. //    return s->dsp.sum_abs_dctelem(temp);
  1173. //}
  1174. //
  1175. //#ifdef CONFIG_GPL
  1176. //#define DCT8_1D {
  1177. //    const int s07 = SRC(0) + SRC(7);
  1178. //    const int s16 = SRC(1) + SRC(6);
  1179. //    const int s25 = SRC(2) + SRC(5);
  1180. //    const int s34 = SRC(3) + SRC(4);
  1181. //    const int a0 = s07 + s34;
  1182. //    const int a1 = s16 + s25;
  1183. //    const int a2 = s07 - s34;
  1184. //    const int a3 = s16 - s25;
  1185. //    const int d07 = SRC(0) - SRC(7);
  1186. //    const int d16 = SRC(1) - SRC(6);
  1187. //    const int d25 = SRC(2) - SRC(5);
  1188. //    const int d34 = SRC(3) - SRC(4);
  1189. //    const int a4 = d16 + d25 + (d07 + (d07>>1));
  1190. //    const int a5 = d07 - d34 - (d25 + (d25>>1));
  1191. //    const int a6 = d07 + d34 - (d16 + (d16>>1));
  1192. //    const int a7 = d16 - d25 + (d34 + (d34>>1));
  1193. //    DST(0,  a0 + a1     ) ;
  1194. //    DST(1,  a4 + (a7>>2)) ;
  1195. //    DST(2,  a2 + (a3>>1)) ;
  1196. //    DST(3,  a5 + (a6>>2)) ;
  1197. //    DST(4,  a0 - a1     ) ;
  1198. //    DST(5,  a6 - (a5>>2)) ;
  1199. //    DST(6, (a2>>1) - a3 ) ;
  1200. //    DST(7, (a4>>2) - a7 ) ;
  1201. //}
  1202. //
  1203. //static int dct264_sad8x8_c(/*MpegEncContext*/ void *c, uint8_t *src1, uint8_t *src2, int stride, int h){
  1204. //    MpegEncContext * const s= (MpegEncContext *)c;
  1205. //    DCTELEM dct[8][8];
  1206. //    int i;
  1207. //    int sum=0;
  1208. //
  1209. //    s->dsp.diff_pixels(dct[0], src1, src2, stride);
  1210. //
  1211. //#define SRC(x) dct[i][x]
  1212. //#define DST(x,v) dct[i][x]= v
  1213. //    for( i = 0; i < 8; i++ )
  1214. //        DCT8_1D
  1215. //#undef SRC
  1216. //#undef DST
  1217. //
  1218. //#define SRC(x) dct[x][i]
  1219. //#define DST(x,v) sum += FFABS(v)
  1220. //    for( i = 0; i < 8; i++ )
  1221. //        DCT8_1D
  1222. //#undef SRC
  1223. //#undef DST
  1224. //    return sum;
  1225. //}
  1226. //#endif
  1227. //
  1228. //static int dct_max8x8_c(/*MpegEncContext*/ void *c, uint8_t *src1, uint8_t *src2, int stride, int h){
  1229. //    MpegEncContext * const s= (MpegEncContext *)c;
  1230. //    DECLARE_ALIGNED_8(uint64_t, aligned_temp[sizeof(DCTELEM)*64/8]);
  1231. //    DCTELEM * const temp= (DCTELEM*)aligned_temp;
  1232. //    int sum=0, i;
  1233. //
  1234. //    assert(h==8);
  1235. //
  1236. //    s->dsp.diff_pixels(temp, src1, src2, stride);
  1237. //    s->dsp.fdct(temp);
  1238. //
  1239. //    for(i=0; i<64; i++)
  1240. //        sum= FFMAX(sum, FFABS(temp[i]));
  1241. //
  1242. //    return sum;
  1243. //}
  1244. //
  1245. //static int quant_psnr8x8_c(/*MpegEncContext*/ void *c, uint8_t *src1, uint8_t *src2, int stride, int h){
  1246. //    MpegEncContext * const s= (MpegEncContext *)c;
  1247. //    DECLARE_ALIGNED_8 (uint64_t, aligned_temp[sizeof(DCTELEM)*64*2/8]);
  1248. //    DCTELEM * const temp= (DCTELEM*)aligned_temp;
  1249. //    DCTELEM * const bak = ((DCTELEM*)aligned_temp)+64;
  1250. //    int sum=0, i;
  1251. //
  1252. //    assert(h==8);
  1253. //    s->mb_intra=0;
  1254. //
  1255. //    s->dsp.diff_pixels(temp, src1, src2, stride);
  1256. //
  1257. //    memcpy(bak, temp, 64*sizeof(DCTELEM));
  1258. //
  1259. //    s->block_last_index[0/*FIXME*/]= s->fast_dct_quantize(s, temp, 0/*FIXME*/, s->qscale, &i);
  1260. //    s->dct_unquantize_inter(s, temp, 0, s->qscale);
  1261. //    ff_simple_idct(temp); //FIXME
  1262. //
  1263. //    for(i=0; i<64; i++)
  1264. //        sum+= (temp[i]-bak[i])*(temp[i]-bak[i]);
  1265. //
  1266. //    return sum;
  1267. //}
  1268. //
  1269. //static int rd8x8_c(/*MpegEncContext*/ void *c, uint8_t *src1, uint8_t *src2, int stride, int h){
  1270. //    MpegEncContext * const s= (MpegEncContext *)c;
  1271. //    const uint8_t *scantable= s->intra_scantable.permutated;
  1272. //    DECLARE_ALIGNED_8 (uint64_t, aligned_temp[sizeof(DCTELEM)*64/8]);
  1273. //    DECLARE_ALIGNED_8 (uint64_t, aligned_bak[stride]);
  1274. //    DCTELEM * const temp= (DCTELEM*)aligned_temp;
  1275. //    uint8_t * const bak= (uint8_t*)aligned_bak;
  1276. //    int i, last, run, bits, level, distortion, start_i;
  1277. //    const int esc_length= s->ac_esc_length;
  1278. //    uint8_t * length;
  1279. //    uint8_t * last_length;
  1280. //
  1281. //    assert(h==8);
  1282. //
  1283. //    for(i=0; i<8; i++){
  1284. //        ((uint32_t*)(bak + i*stride))[0]= ((uint32_t*)(src2 + i*stride))[0];
  1285. //        ((uint32_t*)(bak + i*stride))[1]= ((uint32_t*)(src2 + i*stride))[1];
  1286. //    }
  1287. //
  1288. //    s->dsp.diff_pixels(temp, src1, src2, stride);
  1289. //
  1290. //    s->block_last_index[0/*FIXME*/]= last= s->fast_dct_quantize(s, temp, 0/*FIXME*/, s->qscale, &i);
  1291. //
  1292. //    bits=0;
  1293. //
  1294. //    if (s->mb_intra) {
  1295. //        start_i = 1;
  1296. //        length     = s->intra_ac_vlc_length;
  1297. //        last_length= s->intra_ac_vlc_last_length;
  1298. //        bits+= s->luma_dc_vlc_length[temp[0] + 256]; //FIXME chroma
  1299. //    } else {
  1300. //        start_i = 0;
  1301. //        length     = s->inter_ac_vlc_length;
  1302. //        last_length= s->inter_ac_vlc_last_length;
  1303. //    }
  1304. //
  1305. //    if(last>=start_i){
  1306. //        run=0;
  1307. //        for(i=start_i; i<last; i++){
  1308. //            int j= scantable[i];
  1309. //            level= temp[j];
  1310. //
  1311. //            if(level){
  1312. //                level+=64;
  1313. //                if((level&(~127)) == 0){
  1314. //                    bits+= length[UNI_AC_ENC_INDEX(run, level)];
  1315. //                }else
  1316. //                    bits+= esc_length;
  1317. //                run=0;
  1318. //            }else
  1319. //                run++;
  1320. //        }
  1321. //        i= scantable[last];
  1322. //
  1323. //        level= temp[i] + 64;
  1324. //
  1325. //        assert(level - 64);
  1326. //
  1327. //        if((level&(~127)) == 0){
  1328. //            bits+= last_length[UNI_AC_ENC_INDEX(run, level)];
  1329. //        }else
  1330. //            bits+= esc_length;
  1331. //
  1332. //    }
  1333. //
  1334. //    if(last>=0){
  1335. //        if(s->mb_intra)
  1336. //            s->dct_unquantize_intra(s, temp, 0, s->qscale);
  1337. //        else
  1338. //            s->dct_unquantize_inter(s, temp, 0, s->qscale);
  1339. //    }
  1340. //
  1341. //    s->dsp.idct_add(bak, stride, temp);
  1342. //
  1343. //    distortion= s->dsp.sse[1](NULL, bak, src1, stride, 8);
  1344. //
  1345. //    return distortion + ((bits*s->qscale*s->qscale*109 + 64)>>7);
  1346. //}
  1347. //
  1348. //static int bit8x8_c(/*MpegEncContext*/ void *c, uint8_t *src1, uint8_t *src2, int stride, int h){
  1349. //    MpegEncContext * const s= (MpegEncContext *)c;
  1350. //    const uint8_t *scantable= s->intra_scantable.permutated;
  1351. //    DECLARE_ALIGNED_8 (uint64_t, aligned_temp[sizeof(DCTELEM)*64/8]);
  1352. //    DCTELEM * const temp= (DCTELEM*)aligned_temp;
  1353. //    int i, last, run, bits, level, start_i;
  1354. //    const int esc_length= s->ac_esc_length;
  1355. //    uint8_t * length;
  1356. //    uint8_t * last_length;
  1357. //
  1358. //    assert(h==8);
  1359. //
  1360. //    s->dsp.diff_pixels(temp, src1, src2, stride);
  1361. //
  1362. //    s->block_last_index[0/*FIXME*/]= last= s->fast_dct_quantize(s, temp, 0/*FIXME*/, s->qscale, &i);
  1363. //
  1364. //    bits=0;
  1365. //
  1366. //    if (s->mb_intra) {
  1367. //        start_i = 1;
  1368. //        length     = s->intra_ac_vlc_length;
  1369. //        last_length= s->intra_ac_vlc_last_length;
  1370. //        bits+= s->luma_dc_vlc_length[temp[0] + 256]; //FIXME chroma
  1371. //    } else {
  1372. //        start_i = 0;
  1373. //        length     = s->inter_ac_vlc_length;
  1374. //        last_length= s->inter_ac_vlc_last_length;
  1375. //    }
  1376. //
  1377. //    if(last>=start_i){
  1378. //        run=0;
  1379. //        for(i=start_i; i<last; i++){
  1380. //            int j= scantable[i];
  1381. //            level= temp[j];
  1382. //
  1383. //            if(level){
  1384. //                level+=64;
  1385. //                if((level&(~127)) == 0){
  1386. //                    bits+= length[UNI_AC_ENC_INDEX(run, level)];
  1387. //                }else
  1388. //                    bits+= esc_length;
  1389. //                run=0;
  1390. //            }else
  1391. //                run++;
  1392. //        }
  1393. //        i= scantable[last];
  1394. //
  1395. //        level= temp[i] + 64;
  1396. //
  1397. //        assert(level - 64);
  1398. //
  1399. //        if((level&(~127)) == 0){
  1400. //            bits+= last_length[UNI_AC_ENC_INDEX(run, level)];
  1401. //        }else
  1402. //            bits+= esc_length;
  1403. //    }
  1404. //
  1405. //    return bits;
  1406. //}
  1407. //
  1408. //static int vsad_intra16_c(/*MpegEncContext*/ void *c, uint8_t *s, uint8_t *dummy, int stride, int h){
  1409. //    int score=0;
  1410. //    int x,y;
  1411. //
  1412. //    for(y=1; y<h; y++){
  1413. //        for(x=0; x<16; x+=4){
  1414. //            score+= FFABS(s[x  ] - s[x  +stride]) + FFABS(s[x+1] - s[x+1+stride])
  1415. //                   +FFABS(s[x+2] - s[x+2+stride]) + FFABS(s[x+3] - s[x+3+stride]);
  1416. //        }
  1417. //        s+= stride;
  1418. //    }
  1419. //
  1420. //    return score;
  1421. //}
  1422. //
  1423. //static int vsad16_c(/*MpegEncContext*/ void *c, uint8_t *s1, uint8_t *s2, int stride, int h){
  1424. //    int score=0;
  1425. //    int x,y;
  1426. //
  1427. //    for(y=1; y<h; y++){
  1428. //        for(x=0; x<16; x++){
  1429. //            score+= FFABS(s1[x  ] - s2[x ] - s1[x  +stride] + s2[x +stride]);
  1430. //        }
  1431. //        s1+= stride;
  1432. //        s2+= stride;
  1433. //    }
  1434. //
  1435. //    return score;
  1436. //}
  1437. //
  1438. //#define SQ(a) ((a)*(a))
  1439. //static int vsse_intra16_c(/*MpegEncContext*/ void *c, uint8_t *s, uint8_t *dummy, int stride, int h){
  1440. //    int score=0;
  1441. //    int x,y;
  1442. //
  1443. //    for(y=1; y<h; y++){
  1444. //        for(x=0; x<16; x+=4){
  1445. //            score+= SQ(s[x  ] - s[x  +stride]) + SQ(s[x+1] - s[x+1+stride])
  1446. //                   +SQ(s[x+2] - s[x+2+stride]) + SQ(s[x+3] - s[x+3+stride]);
  1447. //        }
  1448. //        s+= stride;
  1449. //    }
  1450. //
  1451. //    return score;
  1452. //}
  1453. //
  1454. //static int vsse16_c(/*MpegEncContext*/ void *c, uint8_t *s1, uint8_t *s2, int stride, int h){
  1455. //    int score=0;
  1456. //    int x,y;
  1457. //
  1458. //    for(y=1; y<h; y++){
  1459. //        for(x=0; x<16; x++){
  1460. //            score+= SQ(s1[x  ] - s2[x ] - s1[x  +stride] + s2[x +stride]);
  1461. //        }
  1462. //        s1+= stride;
  1463. //        s2+= stride;
  1464. //    }
  1465. //
  1466. //    return score;
  1467. //}
  1468. //
  1469. //static int ssd_int8_vs_int16_c(const int8_t *pix1, const int16_t *pix2,
  1470. //                               int size){
  1471. //    int score=0;
  1472. //    int i;
  1473. //    for(i=0; i<size; i++)
  1474. //        score += (pix1[i]-pix2[i])*(pix1[i]-pix2[i]);
  1475. //    return score;
  1476. //}
  1477. //
  1478. WRAPPER8_16_SQ(hadamard8_diff8x8_c, hadamard8_diff16_c)
  1479. //WRAPPER8_16_SQ(hadamard8_intra8x8_c, hadamard8_intra16_c)
  1480. //WRAPPER8_16_SQ(dct_sad8x8_c, dct_sad16_c)
  1481. //#ifdef CONFIG_GPL
  1482. //WRAPPER8_16_SQ(dct264_sad8x8_c, dct264_sad16_c)
  1483. //#endif
  1484. //WRAPPER8_16_SQ(dct_max8x8_c, dct_max16_c)
  1485. //WRAPPER8_16_SQ(quant_psnr8x8_c, quant_psnr16_c)
  1486. //WRAPPER8_16_SQ(rd8x8_c, rd16_c)
  1487. //WRAPPER8_16_SQ(bit8x8_c, bit16_c)
  1488. //
  1489. //static void vector_fmul_c(float *dst, const float *src, int len){
  1490. //    int i;
  1491. //    for(i=0; i<len; i++)
  1492. //        dst[i] *= src[i];
  1493. //}
  1494. //
  1495. //static void vector_fmul_reverse_c(float *dst, const float *src0, const float *src1, int len){
  1496. //    int i;
  1497. //    src1 += len-1;
  1498. //    for(i=0; i<len; i++)
  1499. //        dst[i] = src0[i] * src1[-i];
  1500. //}
  1501. //
  1502. //void ff_vector_fmul_add_add_c(float *dst, const float *src0, const float *src1, const float *src2, int src3, int len, int step){
  1503. //    int i;
  1504. //    for(i=0; i<len; i++)
  1505. //        dst[i*step] = src0[i] * src1[i] + src2[i] + src3;
  1506. //}
  1507. //
  1508. //void ff_float_to_int16_c(int16_t *dst, const float *src, int len){
  1509. //    int i;
  1510. //    for(i=0; i<len; i++) {
  1511. //        int_fast32_t tmp = ((const int32_t*)src)[i];
  1512. //        if(tmp & 0xf0000){
  1513. //            tmp = (0x43c0ffff - tmp)>>31;
  1514. //            // is this faster on some gcc/cpu combinations?
  1515. ////          if(tmp > 0x43c0ffff) tmp = 0xFFFF;
  1516. ////          else                 tmp = 0;
  1517. //        }
  1518. //        dst[i] = tmp - 0x8000;
  1519. //    }
  1520. //}
  1521. //
  1522. //#define W0 2048
  1523. //#define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */
  1524. //#define W2 2676 /* 2048*sqrt (2)*cos (2*pi/16) */
  1525. //#define W3 2408 /* 2048*sqrt (2)*cos (3*pi/16) */
  1526. //#define W4 2048 /* 2048*sqrt (2)*cos (4*pi/16) */
  1527. //#define W5 1609 /* 2048*sqrt (2)*cos (5*pi/16) */
  1528. //#define W6 1108 /* 2048*sqrt (2)*cos (6*pi/16) */
  1529. //#define W7 565  /* 2048*sqrt (2)*cos (7*pi/16) */
  1530. //
  1531. //static void wmv2_idct_row(short * b)
  1532. //{
  1533. //    int s1,s2;
  1534. //    int a0,a1,a2,a3,a4,a5,a6,a7;
  1535. //    /*step 1*/
  1536. //    a1 = W1*b[1]+W7*b[7];
  1537. //    a7 = W7*b[1]-W1*b[7];
  1538. //    a5 = W5*b[5]+W3*b[3];
  1539. //    a3 = W3*b[5]-W5*b[3];
  1540. //    a2 = W2*b[2]+W6*b[6];
  1541. //    a6 = W6*b[2]-W2*b[6];
  1542. //    a0 = W0*b[0]+W0*b[4];
  1543. //    a4 = W0*b[0]-W0*b[4];
  1544. //    /*step 2*/
  1545. //    s1 = (181*(a1-a5+a7-a3)+128)>>8;//1,3,5,7,
  1546. //    s2 = (181*(a1-a5-a7+a3)+128)>>8;
  1547. //    /*step 3*/
  1548. //    b[0] = (a0+a2+a1+a5 + (1<<7))>>8;
  1549. //    b[1] = (a4+a6 +s1   + (1<<7))>>8;
  1550. //    b[2] = (a4-a6 +s2   + (1<<7))>>8;
  1551. //    b[3] = (a0-a2+a7+a3 + (1<<7))>>8;
  1552. //    b[4] = (a0-a2-a7-a3 + (1<<7))>>8;
  1553. //    b[5] = (a4-a6 -s2   + (1<<7))>>8;
  1554. //    b[6] = (a4+a6 -s1   + (1<<7))>>8;
  1555. //    b[7] = (a0+a2-a1-a5 + (1<<7))>>8;
  1556. //}
  1557. //static void wmv2_idct_col(short * b)
  1558. //{
  1559. //    int s1,s2;
  1560. //    int a0,a1,a2,a3,a4,a5,a6,a7;
  1561. //    /*step 1, with extended precision*/
  1562. //    a1 = (W1*b[8*1]+W7*b[8*7] + 4)>>3;
  1563. //    a7 = (W7*b[8*1]-W1*b[8*7] + 4)>>3;
  1564. //    a5 = (W5*b[8*5]+W3*b[8*3] + 4)>>3;
  1565. //    a3 = (W3*b[8*5]-W5*b[8*3] + 4)>>3;
  1566. //    a2 = (W2*b[8*2]+W6*b[8*6] + 4)>>3;
  1567. //    a6 = (W6*b[8*2]-W2*b[8*6] + 4)>>3;
  1568. //    a0 = (W0*b[8*0]+W0*b[8*4]    )>>3;
  1569. //    a4 = (W0*b[8*0]-W0*b[8*4]    )>>3;
  1570. //    /*step 2*/
  1571. //    s1 = (181*(a1-a5+a7-a3)+128)>>8;
  1572. //    s2 = (181*(a1-a5-a7+a3)+128)>>8;
  1573. //    /*step 3*/
  1574. //    b[8*0] = (a0+a2+a1+a5 + (1<<13))>>14;
  1575. //    b[8*1] = (a4+a6 +s1   + (1<<13))>>14;
  1576. //    b[8*2] = (a4-a6 +s2   + (1<<13))>>14;
  1577. //    b[8*3] = (a0-a2+a7+a3 + (1<<13))>>14;
  1578. //
  1579. //    b[8*4] = (a0-a2-a7-a3 + (1<<13))>>14;
  1580. //    b[8*5] = (a4-a6 -s2   + (1<<13))>>14;
  1581. //    b[8*6] = (a4+a6 -s1   + (1<<13))>>14;
  1582. //    b[8*7] = (a0+a2-a1-a5 + (1<<13))>>14;
  1583. //}
  1584. //void ff_wmv2_idct_c(short * block){
  1585. //    int i;
  1586. //
  1587. //    for(i=0;i<64;i+=8){
  1588. //        wmv2_idct_row(block+i);
  1589. //    }
  1590. //    for(i=0;i<8;i++){
  1591. //        wmv2_idct_col(block+i);
  1592. //    }
  1593. //}
  1594. ///* XXX: those functions should be suppressed ASAP when all IDCTs are
  1595. // converted */
  1596. //static void ff_wmv2_idct_put_c(uint8_t *dest, int line_size, DCTELEM *block)
  1597. //{
  1598. //    ff_wmv2_idct_c(block);
  1599. //    put_pixels_clamped_c(block, dest, line_size);
  1600. //}
  1601. //static void ff_wmv2_idct_add_c(uint8_t *dest, int line_size, DCTELEM *block)
  1602. //{
  1603. //    ff_wmv2_idct_c(block);
  1604. //    add_pixels_clamped_c(block, dest, line_size);
  1605. //}
  1606. //static void ff_jref_idct_put(uint8_t *dest, int line_size, DCTELEM *block)
  1607. //{
  1608. //    j_rev_dct (block);
  1609. //    put_pixels_clamped_c(block, dest, line_size);
  1610. //}
  1611. //static void ff_jref_idct_add(uint8_t *dest, int line_size, DCTELEM *block)
  1612. //{
  1613. //    j_rev_dct (block);
  1614. //    add_pixels_clamped_c(block, dest, line_size);
  1615. //}
  1616. //
  1617. //static void ff_jref_idct4_put(uint8_t *dest, int line_size, DCTELEM *block)
  1618. //{
  1619. //    j_rev_dct4 (block);
  1620. //    put_pixels_clamped4_c(block, dest, line_size);
  1621. //}
  1622. //static void ff_jref_idct4_add(uint8_t *dest, int line_size, DCTELEM *block)
  1623. //{
  1624. //    j_rev_dct4 (block);
  1625. //    add_pixels_clamped4_c(block, dest, line_size);
  1626. //}
  1627. //
  1628. //static void ff_jref_idct2_put(uint8_t *dest, int line_size, DCTELEM *block)
  1629. //{
  1630. //    j_rev_dct2 (block);
  1631. //    put_pixels_clamped2_c(block, dest, line_size);
  1632. //}
  1633. //static void ff_jref_idct2_add(uint8_t *dest, int line_size, DCTELEM *block)
  1634. //{
  1635. //    j_rev_dct2 (block);
  1636. //    add_pixels_clamped2_c(block, dest, line_size);
  1637. //}
  1638. //
  1639. //static void ff_jref_idct1_put(uint8_t *dest, int line_size, DCTELEM *block)
  1640. //{
  1641. //    uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  1642. //
  1643. //    dest[0] = cm[(block[0] + 4)>>3];
  1644. //}
  1645. //static void ff_jref_idct1_add(uint8_t *dest, int line_size, DCTELEM *block)
  1646. //{
  1647. //    uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  1648. //
  1649. //    dest[0] = cm[dest[0] + ((block[0] + 4)>>3)];
  1650. //}
  1651. //
  1652. static void just_return(void *mem av_unused, int stride av_unused, int h av_unused) { return; }
  1653. //
  1654. ///* init static data */
  1655. void dsputil_static_init(void)
  1656. {
  1657.     int i;
  1658.     for(i=0;i<256;i++) ff_cropTbl[i + MAX_NEG_CROP] = i;
  1659.     for(i=0;i<MAX_NEG_CROP;i++) {
  1660.         ff_cropTbl[i] = 0;
  1661.         ff_cropTbl[i + MAX_NEG_CROP + 256] = 255;
  1662.     }
  1663.     for(i=0;i<512;i++) {
  1664.         ff_squareTbl[i] = (i - 256) * (i - 256);
  1665.     }
  1666.     for(i=0; i<64; i++) inv_zigzag_direct16[ff_zigzag_direct[i]]= i+1;
  1667. }
  1668. //
  1669. int ff_check_alignment(void){
  1670.     static int did_fail=0;
  1671.     DECLARE_ALIGNED_16(int, aligned);
  1672.     if((long)&aligned & 15){
  1673.         if(!did_fail){
  1674. #if defined(HAVE_MMX) || defined(HAVE_ALTIVEC)
  1675.             av_log(NULL, AV_LOG_ERROR,
  1676.                 "Compiler did not align stack variables. Libavcodec has been miscompiledn"
  1677.                 "and may be very slow or crash. This is not a bug in libavcodec,n"
  1678.                 "but in the compiler. You may try recompiling using gcc >= 4.2.n"
  1679.                 "Do not report crashes to FFmpeg developers.n");
  1680. #endif
  1681.             did_fail=1;
  1682.         }
  1683.         return -1;
  1684.     }
  1685.     return 0;
  1686. }
  1687. void dsputil_init(DSPContext* c, AVCodecContext *avctx)
  1688. {
  1689.     int i;
  1690.     ff_check_alignment();
  1691. #ifdef CONFIG_ENCODERS
  1692.     if(avctx->dct_algo==FF_DCT_FASTINT) {
  1693.         c->fdct = fdct_ifast;
  1694.         c->fdct248 = fdct_ifast248;
  1695.     }
  1696.     else if(avctx->dct_algo==FF_DCT_FAAN) {
  1697.         c->fdct = ff_faandct;
  1698.         c->fdct248 = ff_faandct248;
  1699.     }
  1700.     else {
  1701.         c->fdct = ff_jpeg_fdct_islow; //slow/accurate/default
  1702.         c->fdct248 = ff_fdct248_islow;
  1703.     }
  1704. #endif //CONFIG_ENCODERS
  1705.     if(avctx->lowres==1){
  1706.         if(avctx->idct_algo==FF_IDCT_INT || avctx->idct_algo==FF_IDCT_AUTO || !ENABLE_H264_DECODER){
  1707.           
  1708.         }else{
  1709.             c->idct_put= ff_h264_lowres_idct_put_c;
  1710.             c->idct_add= ff_h264_lowres_idct_add_c;
  1711.         }
  1712.         c->idct    = j_rev_dct4;
  1713.         c->idct_permutation_type= FF_NO_IDCT_PERM;
  1714.     }
  1715.     if (ENABLE_H264_DECODER) {
  1716.         c->h264_idct_add= ff_h264_idct_add_c;
  1717.         c->h264_idct8_add= ff_h264_idct8_add_c;
  1718.         c->h264_idct_dc_add= ff_h264_idct_dc_add_c;
  1719.         c->h264_idct8_dc_add= ff_h264_idct8_dc_add_c;
  1720.     }
  1721.     c->get_pixels = get_pixels_c;
  1722.     c->diff_pixels = diff_pixels_c;
  1723.     c->put_pixels_clamped = put_pixels_clamped_c;
  1724.     c->put_signed_pixels_clamped = put_signed_pixels_clamped_c;
  1725.     c->add_pixels_clamped = add_pixels_clamped_c;
  1726.     c->add_pixels8 = add_pixels8_c;
  1727.     c->add_pixels4 = add_pixels4_c;
  1728.     c->sum_abs_dctelem = sum_abs_dctelem_c;
  1729.     c->gmc1 = gmc1_c;
  1730.     c->gmc = ff_gmc_c;
  1731.     c->clear_blocks = clear_blocks_c;
  1732.     c->pix_sum = pix_sum_c;
  1733.     c->pix_norm1 = pix_norm1_c;
  1734.     /* TODO [0] 16  [1] 8 */
  1735.     c->pix_abs[0][0] = pix_abs16_c;
  1736.     c->pix_abs[0][1] = pix_abs16_x2_c;
  1737.     c->pix_abs[0][2] = pix_abs16_y2_c;
  1738.     c->pix_abs[0][3] = pix_abs16_xy2_c;
  1739.     c->pix_abs[1][0] = pix_abs8_c;
  1740.     c->pix_abs[1][1] = pix_abs8_x2_c;
  1741.     c->pix_abs[1][2] = pix_abs8_y2_c;
  1742.     c->pix_abs[1][3] = pix_abs8_xy2_c;
  1743. #define dspfunc(PFX, IDX, NUM) 
  1744.     c->PFX ## _pixels_tab[IDX][0] = PFX ## _pixels ## NUM ## _c;     
  1745.     c->PFX ## _pixels_tab[IDX][1] = PFX ## _pixels ## NUM ## _x2_c;  
  1746.     c->PFX ## _pixels_tab[IDX][2] = PFX ## _pixels ## NUM ## _y2_c;  
  1747.     c->PFX ## _pixels_tab[IDX][3] = PFX ## _pixels ## NUM ## _xy2_c
  1748.     dspfunc(put, 0, 16);
  1749.     dspfunc(put_no_rnd, 0, 16);
  1750.     dspfunc(put, 1, 8);
  1751.     dspfunc(put_no_rnd, 1, 8);
  1752.     dspfunc(put, 2, 4);
  1753.     dspfunc(put, 3, 2);
  1754.     dspfunc(avg, 0, 16);
  1755.     dspfunc(avg_no_rnd, 0, 16);
  1756.     dspfunc(avg, 1, 8);
  1757.     dspfunc(avg_no_rnd, 1, 8);
  1758.     dspfunc(avg, 2, 4);
  1759.     dspfunc(avg, 3, 2);
  1760. #undef dspfunc
  1761.     c->put_no_rnd_pixels_l2[0]= put_no_rnd_pixels16_l2_c;
  1762.     c->put_no_rnd_pixels_l2[1]= put_no_rnd_pixels8_l2_c;
  1763.     c->put_tpel_pixels_tab[ 0] = put_tpel_pixels_mc00_c;
  1764.     c->put_tpel_pixels_tab[ 1] = put_tpel_pixels_mc10_c;
  1765.     c->put_tpel_pixels_tab[ 2] = put_tpel_pixels_mc20_c;
  1766.     c->put_tpel_pixels_tab[ 4] = put_tpel_pixels_mc01_c;
  1767.     c->put_tpel_pixels_tab[ 5] = put_tpel_pixels_mc11_c;
  1768.     c->put_tpel_pixels_tab[ 6] = put_tpel_pixels_mc21_c;
  1769.     c->put_tpel_pixels_tab[ 8] = put_tpel_pixels_mc02_c;
  1770.     c->put_tpel_pixels_tab[ 9] = put_tpel_pixels_mc12_c;
  1771.     c->put_tpel_pixels_tab[10] = put_tpel_pixels_mc22_c;
  1772.     c->avg_tpel_pixels_tab[ 0] = avg_tpel_pixels_mc00_c;
  1773.     c->avg_tpel_pixels_tab[ 1] = avg_tpel_pixels_mc10_c;
  1774.     c->avg_tpel_pixels_tab[ 2] = avg_tpel_pixels_mc20_c;
  1775.     c->avg_tpel_pixels_tab[ 4] = avg_tpel_pixels_mc01_c;
  1776.     c->avg_tpel_pixels_tab[ 5] = avg_tpel_pixels_mc11_c;
  1777.     c->avg_tpel_pixels_tab[ 6] = avg_tpel_pixels_mc21_c;
  1778.     c->avg_tpel_pixels_tab[ 8] = avg_tpel_pixels_mc02_c;
  1779.     c->avg_tpel_pixels_tab[ 9] = avg_tpel_pixels_mc12_c;
  1780.     c->avg_tpel_pixels_tab[10] = avg_tpel_pixels_mc22_c;
  1781. #define dspfunc(PFX, IDX, NUM) 
  1782.     c->PFX ## _pixels_tab[IDX][ 0] = PFX ## NUM ## _mc00_c; 
  1783.     c->PFX ## _pixels_tab[IDX][ 1] = PFX ## NUM ## _mc10_c; 
  1784.     c->PFX ## _pixels_tab[IDX][ 2] = PFX ## NUM ## _mc20_c; 
  1785.     c->PFX ## _pixels_tab[IDX][ 3] = PFX ## NUM ## _mc30_c; 
  1786.     c->PFX ## _pixels_tab[IDX][ 4] = PFX ## NUM ## _mc01_c; 
  1787.     c->PFX ## _pixels_tab[IDX][ 5] = PFX ## NUM ## _mc11_c; 
  1788.     c->PFX ## _pixels_tab[IDX][ 6] = PFX ## NUM ## _mc21_c; 
  1789.     c->PFX ## _pixels_tab[IDX][ 7] = PFX ## NUM ## _mc31_c; 
  1790.     c->PFX ## _pixels_tab[IDX][ 8] = PFX ## NUM ## _mc02_c; 
  1791.     c->PFX ## _pixels_tab[IDX][ 9] = PFX ## NUM ## _mc12_c; 
  1792.     c->PFX ## _pixels_tab[IDX][10] = PFX ## NUM ## _mc22_c; 
  1793.     c->PFX ## _pixels_tab[IDX][11] = PFX ## NUM ## _mc32_c; 
  1794.     c->PFX ## _pixels_tab[IDX][12] = PFX ## NUM ## _mc03_c; 
  1795.     c->PFX ## _pixels_tab[IDX][13] = PFX ## NUM ## _mc13_c; 
  1796.     c->PFX ## _pixels_tab[IDX][14] = PFX ## NUM ## _mc23_c; 
  1797.     c->PFX ## _pixels_tab[IDX][15] = PFX ## NUM ## _mc33_c
  1798.     dspfunc(put_qpel, 0, 16);
  1799.     dspfunc(put_no_rnd_qpel, 0, 16);
  1800.     dspfunc(avg_qpel, 0, 16);
  1801.     /* dspfunc(avg_no_rnd_qpel, 0, 16); */
  1802.     dspfunc(put_qpel, 1, 8);
  1803.     dspfunc(put_no_rnd_qpel, 1, 8);
  1804.     dspfunc(avg_qpel, 1, 8);
  1805.     /* dspfunc(avg_no_rnd_qpel, 1, 8); */
  1806.     dspfunc(put_h264_qpel, 0, 16);
  1807.     dspfunc(put_h264_qpel, 1, 8);
  1808.     dspfunc(put_h264_qpel, 2, 4);
  1809.     dspfunc(put_h264_qpel, 3, 2);
  1810.     dspfunc(avg_h264_qpel, 0, 16);
  1811.     dspfunc(avg_h264_qpel, 1, 8);
  1812.     dspfunc(avg_h264_qpel, 2, 4);
  1813. #undef dspfunc
  1814.     c->put_h264_chroma_pixels_tab[0]= put_h264_chroma_mc8_c;
  1815.     c->put_h264_chroma_pixels_tab[1]= put_h264_chroma_mc4_c;
  1816.     c->put_h264_chroma_pixels_tab[2]= put_h264_chroma_mc2_c;
  1817.     c->avg_h264_chroma_pixels_tab[0]= avg_h264_chroma_mc8_c;
  1818.     c->avg_h264_chroma_pixels_tab[1]= avg_h264_chroma_mc4_c;
  1819.     c->avg_h264_chroma_pixels_tab[2]= avg_h264_chroma_mc2_c;
  1820.     c->put_no_rnd_h264_chroma_pixels_tab[0]= put_no_rnd_h264_chroma_mc8_c;
  1821.     c->weight_h264_pixels_tab[0]= weight_h264_pixels16x16_c;
  1822.     c->weight_h264_pixels_tab[1]= weight_h264_pixels16x8_c;
  1823.     c->weight_h264_pixels_tab[2]= weight_h264_pixels8x16_c;
  1824.     c->weight_h264_pixels_tab[3]= weight_h264_pixels8x8_c;
  1825.     c->weight_h264_pixels_tab[4]= weight_h264_pixels8x4_c;
  1826.     c->weight_h264_pixels_tab[5]= weight_h264_pixels4x8_c;
  1827.     c->weight_h264_pixels_tab[6]= weight_h264_pixels4x4_c;
  1828.     c->weight_h264_pixels_tab[7]= weight_h264_pixels4x2_c;
  1829.     c->weight_h264_pixels_tab[8]= weight_h264_pixels2x4_c;
  1830.     c->weight_h264_pixels_tab[9]= weight_h264_pixels2x2_c;
  1831.     c->biweight_h264_pixels_tab[0]= biweight_h264_pixels16x16_c;
  1832.     c->biweight_h264_pixels_tab[1]= biweight_h264_pixels16x8_c;
  1833.     c->biweight_h264_pixels_tab[2]= biweight_h264_pixels8x16_c;
  1834.     c->biweight_h264_pixels_tab[3]= biweight_h264_pixels8x8_c;
  1835.     c->biweight_h264_pixels_tab[4]= biweight_h264_pixels8x4_c;
  1836.     c->biweight_h264_pixels_tab[5]= biweight_h264_pixels4x8_c;
  1837.     c->biweight_h264_pixels_tab[6]= biweight_h264_pixels4x4_c;
  1838.     c->biweight_h264_pixels_tab[7]= biweight_h264_pixels4x2_c;
  1839.     c->biweight_h264_pixels_tab[8]= biweight_h264_pixels2x4_c;
  1840.     c->biweight_h264_pixels_tab[9]= biweight_h264_pixels2x2_c;
  1841.     c->draw_edges = draw_edges_c;
  1842. #ifdef CONFIG_CAVS_DECODER
  1843.     ff_cavsdsp_init(c,avctx);
  1844. #endif
  1845. #if defined(CONFIG_VC1_DECODER) || defined(CONFIG_WMV3_DECODER)
  1846.     ff_vc1dsp_init(c,avctx);
  1847. #endif
  1848. #if defined(CONFIG_WMV2_DECODER) || defined(CONFIG_VC1_DECODER) || defined(CONFIG_WMV3_DECODER)
  1849.     ff_intrax8dsp_init(c,avctx);
  1850. #endif
  1851. #if defined(CONFIG_H264_ENCODER)
  1852.     ff_h264dspenc_init(c,avctx);
  1853. #endif
  1854.     c->put_mspel_pixels_tab[0]= put_mspel8_mc00_c;
  1855.     c->put_mspel_pixels_tab[1]= put_mspel8_mc10_c;
  1856.     c->put_mspel_pixels_tab[2]= put_mspel8_mc20_c;
  1857.     c->put_mspel_pixels_tab[3]= put_mspel8_mc30_c;
  1858.     c->put_mspel_pixels_tab[4]= put_mspel8_mc02_c;
  1859.     c->put_mspel_pixels_tab[5]= put_mspel8_mc12_c;
  1860.     c->put_mspel_pixels_tab[6]= put_mspel8_mc22_c;
  1861.     c->put_mspel_pixels_tab[7]= put_mspel8_mc32_c;
  1862. //#define SET_CMP_FUNC(name) 
  1863. //    c->name[0]= name ## 16_c;
  1864. //    c->name[1]= name ## 8x8_c;
  1865. //
  1866. //    SET_CMP_FUNC(hadamard8_diff)
  1867. //    c->hadamard8_diff[4]= hadamard8_intra16_c;
  1868. //    SET_CMP_FUNC(dct_sad)
  1869. //    SET_CMP_FUNC(dct_max)
  1870. //#ifdef CONFIG_GPL
  1871. //    SET_CMP_FUNC(dct264_sad)
  1872. //#endif
  1873. //    c->sad[0]= pix_abs16_c;
  1874. //    c->sad[1]= pix_abs8_c;
  1875. //    c->sse[0]= sse16_c;
  1876. //    c->sse[1]= sse8_c;
  1877. //    c->sse[2]= sse4_c;
  1878. //    SET_CMP_FUNC(quant_psnr)
  1879. //    SET_CMP_FUNC(rd)
  1880. //    SET_CMP_FUNC(bit)
  1881. //    c->vsad[0]= vsad16_c;
  1882. //    c->vsad[4]= vsad_intra16_c;
  1883. //    c->vsse[0]= vsse16_c;
  1884. //    c->vsse[4]= vsse_intra16_c;
  1885. //    c->nsse[0]= nsse16_c;
  1886. //    c->nsse[1]= nsse8_c;
  1887. //#ifdef CONFIG_SNOW_ENCODER
  1888. //    c->w53[0]= w53_16_c;
  1889. //    c->w53[1]= w53_8_c;
  1890. //    c->w97[0]= w97_16_c;
  1891. //    c->w97[1]= w97_8_c;
  1892. //#endif
  1893. //
  1894. //    c->ssd_int8_vs_int16 = ssd_int8_vs_int16_c;
  1895. //
  1896. //    c->add_bytes= add_bytes_c;
  1897. //    c->add_bytes_l2= add_bytes_l2_c;
  1898. //    c->diff_bytes= diff_bytes_c;
  1899. //    c->sub_hfyu_median_prediction= sub_hfyu_median_prediction_c;
  1900. //    c->bswap_buf= bswap_buf;
  1901. //#ifdef CONFIG_PNG_DECODER
  1902. //    c->add_png_paeth_prediction= ff_add_png_paeth_prediction;
  1903. //#endif
  1904.     c->h264_v_loop_filter_luma= h264_v_loop_filter_luma_c;
  1905.     c->h264_h_loop_filter_luma= h264_h_loop_filter_luma_c;
  1906.     c->h264_v_loop_filter_chroma= h264_v_loop_filter_chroma_c;
  1907.     c->h264_h_loop_filter_chroma= h264_h_loop_filter_chroma_c;
  1908.     c->h264_v_loop_filter_chroma_intra= h264_v_loop_filter_chroma_intra_c;
  1909.     c->h264_h_loop_filter_chroma_intra= h264_h_loop_filter_chroma_intra_c;
  1910.     c->h264_loop_filter_strength= NULL;
  1911.    
  1912.    
  1913.     c->try_8x8basis= try_8x8basis_c;
  1914.     c->add_8x8basis= add_8x8basis_c;
  1915. #ifdef CONFIG_SNOW_DECODER
  1916.     c->vertical_compose97i = ff_snow_vertical_compose97i;
  1917.     c->horizontal_compose97i = ff_snow_horizontal_compose97i;
  1918.     c->inner_add_yblock = ff_snow_inner_add_yblock;
  1919. #endif
  1920. #ifdef CONFIG_VORBIS_DECODER
  1921.     c->vorbis_inverse_coupling = vorbis_inverse_coupling;
  1922. #endif
  1923. #ifdef CONFIG_FLAC_ENCODER
  1924.     c->flac_compute_autocorr = ff_flac_compute_autocorr;
  1925. #endif
  1926. //    c->vector_fmul = vector_fmul_c;
  1927. //    c->vector_fmul_reverse = vector_fmul_reverse_c;
  1928.  //   c->vector_fmul_add_add = ff_vector_fmul_add_add_c;
  1929.   //  c->float_to_int16 = ff_float_to_int16_c;
  1930.     c->shrink[0]= ff_img_copy_plane;
  1931.     c->shrink[1]= ff_shrink22;
  1932.     c->shrink[2]= ff_shrink44;
  1933.     c->shrink[3]= ff_shrink88;
  1934.     c->prefetch= just_return;
  1935.     memset(c->put_2tap_qpel_pixels_tab, 0, sizeof(c->put_2tap_qpel_pixels_tab));
  1936.     memset(c->avg_2tap_qpel_pixels_tab, 0, sizeof(c->avg_2tap_qpel_pixels_tab));
  1937. //    if (ENABLE_MMX)      dsputil_init_mmx   (c, avctx);
  1938. //    if (ENABLE_ARMV4L)   dsputil_init_armv4l(c, avctx);
  1939. //    if (ENABLE_MLIB)     dsputil_init_mlib  (c, avctx);
  1940. //    if (ENABLE_VIS)      dsputil_init_vis   (c, avctx);
  1941. //    if (ENABLE_ALPHA)    dsputil_init_alpha (c, avctx);
  1942. //    if (ENABLE_POWERPC)  dsputil_init_ppc   (c, avctx);
  1943. //    if (ENABLE_MMI)      dsputil_init_mmi   (c, avctx);
  1944. //    if (ENABLE_SH4)      dsputil_init_sh4   (c, avctx);
  1945. //    if (ENABLE_BFIN)     dsputil_init_bfin  (c, avctx);
  1946.     for(i=0; i<64; i++){
  1947.         if(!c->put_2tap_qpel_pixels_tab[0][i])
  1948.             c->put_2tap_qpel_pixels_tab[0][i]= c->put_h264_qpel_pixels_tab[0][i];
  1949.         if(!c->avg_2tap_qpel_pixels_tab[0][i])
  1950.             c->avg_2tap_qpel_pixels_tab[0][i]= c->avg_h264_qpel_pixels_tab[0][i];
  1951.     }
  1952.     switch(c->idct_permutation_type){
  1953.     case FF_NO_IDCT_PERM:
  1954.         for(i=0; i<64; i++)
  1955.             c->idct_permutation[i]= i;
  1956.         break;
  1957.     case FF_LIBMPEG2_IDCT_PERM:
  1958.         for(i=0; i<64; i++)
  1959.             c->idct_permutation[i]= (i & 0x38) | ((i & 6) >> 1) | ((i & 1) << 2);
  1960.         break;
  1961.     case FF_SIMPLE_IDCT_PERM:
  1962.         for(i=0; i<64; i++)
  1963.             c->idct_permutation[i]= simple_mmx_permutation[i];
  1964.         break;
  1965.     case FF_TRANSPOSE_IDCT_PERM:
  1966.         for(i=0; i<64; i++)
  1967.             c->idct_permutation[i]= ((i&7)<<3) | (i>>3);
  1968.         break;
  1969.     case FF_PARTTRANS_IDCT_PERM:
  1970.         for(i=0; i<64; i++)
  1971.             c->idct_permutation[i]= (i&0x24) | ((i&3)<<3) | ((i>>3)&3);
  1972.         break;
  1973.     case FF_SSE2_IDCT_PERM:
  1974.         for(i=0; i<64; i++)
  1975.             c->idct_permutation[i]= (i&0x38) | idct_sse2_row_perm[i&7];
  1976.         break;
  1977.     default:
  1978.         av_log(avctx, AV_LOG_ERROR, "Internal error, IDCT permutation not setn");
  1979.     }
  1980. }