dsputil.c
上传用户:chinavct
上传日期:2022-06-20
资源大小:330k
文件大小:174k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * DSP utils
  3.  * Copyright (c) 2000, 2001 Fabrice Bellard.
  4.  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5.  *
  6.  * gmc & q-pel & 32/64 bit based MC by Michael Niedermayer <michaelni@gmx.at>
  7.  *
  8.  * This file is part of FFmpeg.
  9.  *
  10.  * FFmpeg is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU Lesser General Public
  12.  * License as published by the Free Software Foundation; either
  13.  * version 2.1 of the License, or (at your option) any later version.
  14.  *
  15.  * FFmpeg is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.  * Lesser General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU Lesser General Public
  21.  * License along with FFmpeg; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23.  */
  24. /**
  25.  * @file dsputil.c
  26.  * DSP utils
  27.  */
  28. #include "dsputil.h"
  29. //#include "internal.h"
  30. //#include "avcodec.h"
  31. #include "mpegvideo.h"
  32. #include "simple_idct.h"
  33. //#include "faandct.h"
  34. //#include "faanidct.h"
  35. //#include "h263.h"
  36. //#include "snow.h"
  37. /* snow.c */
  38. void ff_spatial_dwt(int *buffer, int width, int height, int stride, int type, int decomposition_count);
  39. /* vorbis.c */
  40. void vorbis_inverse_coupling(float *mag, float *ang, int blocksize);
  41. /* ac3dec.c */
  42. void ff_ac3_downmix_c(float (*samples)[256], float (*matrix)[2], int out_ch, int in_ch, int len);
  43. /* flacenc.c */
  44. void ff_flac_compute_autocorr(const int32_t *data, int len, int lag, double *autoc);
  45. /* pngdec.c */
  46. void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp);
  47. /* eaidct.c */
  48. void ff_ea_idct_put_c(uint8_t *dest, int linesize, DCTELEM *block);
  49. uint8_t ff_cropTbl[256 + 2 * MAX_NEG_CROP] = {0, };
  50. uint32_t ff_squareTbl[512] = {0, };
  51. // 0x7f7f7f7f or 0x7f7f7f7f7f7f7f7f or whatever, depending on the cpu's native arithmetic size
  52. #define pb_7f (~0UL/255 * 0x7f)
  53. #define pb_80 (~0UL/255 * 0x80)
  54. const uint8_t ff_zigzag_direct[64] = {
  55.     0,   1,  8, 16,  9,  2,  3, 10,
  56.     17, 24, 32, 25, 18, 11,  4,  5,
  57.     12, 19, 26, 33, 40, 48, 41, 34,
  58.     27, 20, 13,  6,  7, 14, 21, 28,
  59.     35, 42, 49, 56, 57, 50, 43, 36,
  60.     29, 22, 15, 23, 30, 37, 44, 51,
  61.     58, 59, 52, 45, 38, 31, 39, 46,
  62.     53, 60, 61, 54, 47, 55, 62, 63
  63. };
  64. /* Specific zigzag scan for 248 idct. NOTE that unlike the
  65.    specification, we interleave the fields */
  66. const uint8_t ff_zigzag248_direct[64] = {
  67.      0,  8,  1,  9, 16, 24,  2, 10,
  68.     17, 25, 32, 40, 48, 56, 33, 41,
  69.     18, 26,  3, 11,  4, 12, 19, 27,
  70.     34, 42, 49, 57, 50, 58, 35, 43,
  71.     20, 28,  5, 13,  6, 14, 21, 29,
  72.     36, 44, 51, 59, 52, 60, 37, 45,
  73.     22, 30,  7, 15, 23, 31, 38, 46,
  74.     53, 61, 54, 62, 39, 47, 55, 63,
  75. };
  76. /* not permutated inverse zigzag_direct + 1 for MMX quantizer */
  77. DECLARE_ALIGNED_8(uint16_t, inv_zigzag_direct16[64]) = {0, };
  78. const uint8_t ff_alternate_horizontal_scan[64] = {
  79.     0,  1,   2,  3,  8,  9, 16, 17,
  80.     10, 11,  4,  5,  6,  7, 15, 14,
  81.     13, 12, 19, 18, 24, 25, 32, 33,
  82.     26, 27, 20, 21, 22, 23, 28, 29,
  83.     30, 31, 34, 35, 40, 41, 48, 49,
  84.     42, 43, 36, 37, 38, 39, 44, 45,
  85.     46, 47, 50, 51, 56, 57, 58, 59,
  86.     52, 53, 54, 55, 60, 61, 62, 63,
  87. };
  88. const uint8_t ff_alternate_vertical_scan[64] = {
  89.     0,  8,  16, 24,  1,  9,  2, 10,
  90.     17, 25, 32, 40, 48, 56, 57, 49,
  91.     41, 33, 26, 18,  3, 11,  4, 12,
  92.     19, 27, 34, 42, 50, 58, 35, 43,
  93.     51, 59, 20, 28,  5, 13,  6, 14,
  94.     21, 29, 36, 44, 52, 60, 37, 45,
  95.     53, 61, 22, 30,  7, 15, 23, 31,
  96.     38, 46, 54, 62, 39, 47, 55, 63,
  97. };
  98. /* a*inverse[b]>>32 == a/b for all 0<=a<=65536 && 2<=b<=255 */
  99. const uint32_t ff_inverse[256]={
  100.          0, 4294967295U,2147483648U,1431655766, 1073741824,  858993460,  715827883,  613566757,
  101.  536870912,  477218589,  429496730,  390451573,  357913942,  330382100,  306783379,  286331154,
  102.  268435456,  252645136,  238609295,  226050911,  214748365,  204522253,  195225787,  186737709,
  103.  178956971,  171798692,  165191050,  159072863,  153391690,  148102321,  143165577,  138547333,
  104.  134217728,  130150525,  126322568,  122713352,  119304648,  116080198,  113025456,  110127367,
  105.  107374183,  104755300,  102261127,   99882961,   97612894,   95443718,   93368855,   91382283,
  106.   89478486,   87652394,   85899346,   84215046,   82595525,   81037119,   79536432,   78090315,
  107.   76695845,   75350304,   74051161,   72796056,   71582789,   70409300,   69273667,   68174085,
  108.   67108864,   66076420,   65075263,   64103990,   63161284,   62245903,   61356676,   60492498,
  109.   59652324,   58835169,   58040099,   57266231,   56512728,   55778797,   55063684,   54366675,
  110.   53687092,   53024288,   52377650,   51746594,   51130564,   50529028,   49941481,   49367441,
  111.   48806447,   48258060,   47721859,   47197443,   46684428,   46182445,   45691142,   45210183,
  112.   44739243,   44278014,   43826197,   43383509,   42949673,   42524429,   42107523,   41698712,
  113.   41297763,   40904451,   40518560,   40139882,   39768216,   39403370,   39045158,   38693400,
  114.   38347923,   38008561,   37675152,   37347542,   37025581,   36709123,   36398028,   36092163,
  115.   35791395,   35495598,   35204650,   34918434,   34636834,   34359739,   34087043,   33818641,
  116.   33554432,   33294321,   33038210,   32786010,   32537632,   32292988,   32051995,   31814573,
  117.   31580642,   31350127,   31122952,   30899046,   30678338,   30460761,   30246249,   30034737,
  118.   29826162,   29620465,   29417585,   29217465,   29020050,   28825284,   28633116,   28443493,
  119.   28256364,   28071682,   27889399,   27709467,   27531842,   27356480,   27183338,   27012373,
  120.   26843546,   26676816,   26512144,   26349493,   26188825,   26030105,   25873297,   25718368,
  121.   25565282,   25414008,   25264514,   25116768,   24970741,   24826401,   24683721,   24542671,
  122.   24403224,   24265352,   24129030,   23994231,   23860930,   23729102,   23598722,   23469767,
  123.   23342214,   23216040,   23091223,   22967740,   22845571,   22724695,   22605092,   22486740,
  124.   22369622,   22253717,   22139007,   22025474,   21913099,   21801865,   21691755,   21582751,
  125.   21474837,   21367997,   21262215,   21157475,   21053762,   20951060,   20849356,   20748635,
  126.   20648882,   20550083,   20452226,   20355296,   20259280,   20164166,   20069941,   19976593,
  127.   19884108,   19792477,   19701685,   19611723,   19522579,   19434242,   19346700,   19259944,
  128.   19173962,   19088744,   19004281,   18920561,   18837576,   18755316,   18673771,   18592933,
  129.   18512791,   18433337,   18354562,   18276457,   18199014,   18122225,   18046082,   17970575,
  130.   17895698,   17821442,   17747799,   17674763,   17602325,   17530479,   17459217,   17388532,
  131.   17318417,   17248865,   17179870,   17111424,   17043522,   16976156,   16909321,   16843010,
  132. };
  133. /* Input permutation for the simple_idct_mmx */
  134. static const uint8_t simple_mmx_permutation[64]={
  135.         0x00, 0x08, 0x04, 0x09, 0x01, 0x0C, 0x05, 0x0D,
  136.         0x10, 0x18, 0x14, 0x19, 0x11, 0x1C, 0x15, 0x1D,
  137.         0x20, 0x28, 0x24, 0x29, 0x21, 0x2C, 0x25, 0x2D,
  138.         0x12, 0x1A, 0x16, 0x1B, 0x13, 0x1E, 0x17, 0x1F,
  139.         0x02, 0x0A, 0x06, 0x0B, 0x03, 0x0E, 0x07, 0x0F,
  140.         0x30, 0x38, 0x34, 0x39, 0x31, 0x3C, 0x35, 0x3D,
  141.         0x22, 0x2A, 0x26, 0x2B, 0x23, 0x2E, 0x27, 0x2F,
  142.         0x32, 0x3A, 0x36, 0x3B, 0x33, 0x3E, 0x37, 0x3F,
  143. };
  144. static const uint8_t idct_sse2_row_perm[8] = {0, 4, 1, 5, 2, 6, 3, 7};
  145. void ff_init_scantable(uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable){
  146.     int i;
  147.     int end;
  148.     st->scantable= src_scantable;
  149.     for(i=0; i<64; i++){
  150.         int j;
  151.         j = src_scantable[i];
  152.         st->permutated[i] = permutation[j];
  153. #ifdef ARCH_PPC
  154.         st->inverse[j] = i;
  155. #endif
  156.     }
  157.     end=-1;
  158.     for(i=0; i<64; i++){
  159.         int j;
  160.         j = st->permutated[i];
  161.         if(j>end) end=j;
  162.         st->raster_end[i]= end;
  163.     }
  164. }
  165. static int pix_sum_c(uint8_t * pix, int line_size)
  166. {
  167.     int s, i, j;
  168.     s = 0;
  169.     for (i = 0; i < 16; i++) {
  170.         for (j = 0; j < 16; j += 8) {
  171.             s += pix[0];
  172.             s += pix[1];
  173.             s += pix[2];
  174.             s += pix[3];
  175.             s += pix[4];
  176.             s += pix[5];
  177.             s += pix[6];
  178.             s += pix[7];
  179.             pix += 8;
  180.         }
  181.         pix += line_size - 16;
  182.     }
  183.     return s;
  184. }
  185. static int pix_norm1_c(uint8_t * pix, int line_size)
  186. {
  187.     int s, i, j;
  188.     uint32_t *sq = ff_squareTbl + 256;
  189.     s = 0;
  190.     for (i = 0; i < 16; i++) {
  191.         for (j = 0; j < 16; j += 8) {
  192. #if 0
  193.             s += sq[pix[0]];
  194.             s += sq[pix[1]];
  195.             s += sq[pix[2]];
  196.             s += sq[pix[3]];
  197.             s += sq[pix[4]];
  198.             s += sq[pix[5]];
  199.             s += sq[pix[6]];
  200.             s += sq[pix[7]];
  201. #else
  202. #if LONG_MAX > 2147483647
  203.             register uint64_t x=*(uint64_t*)pix;
  204.             s += sq[x&0xff];
  205.             s += sq[(x>>8)&0xff];
  206.             s += sq[(x>>16)&0xff];
  207.             s += sq[(x>>24)&0xff];
  208.             s += sq[(x>>32)&0xff];
  209.             s += sq[(x>>40)&0xff];
  210.             s += sq[(x>>48)&0xff];
  211.             s += sq[(x>>56)&0xff];
  212. #else
  213.             register uint32_t x=*(uint32_t*)pix;
  214.             s += sq[x&0xff];
  215.             s += sq[(x>>8)&0xff];
  216.             s += sq[(x>>16)&0xff];
  217.             s += sq[(x>>24)&0xff];
  218.             x=*(uint32_t*)(pix+4);
  219.             s += sq[x&0xff];
  220.             s += sq[(x>>8)&0xff];
  221.             s += sq[(x>>16)&0xff];
  222.             s += sq[(x>>24)&0xff];
  223. #endif
  224. #endif
  225.             pix += 8;
  226.         }
  227.         pix += line_size - 16;
  228.     }
  229.     return s;
  230. }
  231. static void bswap_buf(uint32_t *dst, const uint32_t *src, int w){
  232.     int i;
  233.     for(i=0; i+8<=w; i+=8){
  234.         dst[i+0]= bswap_32(src[i+0]);
  235.         dst[i+1]= bswap_32(src[i+1]);
  236.         dst[i+2]= bswap_32(src[i+2]);
  237.         dst[i+3]= bswap_32(src[i+3]);
  238.         dst[i+4]= bswap_32(src[i+4]);
  239.         dst[i+5]= bswap_32(src[i+5]);
  240.         dst[i+6]= bswap_32(src[i+6]);
  241.         dst[i+7]= bswap_32(src[i+7]);
  242.     }
  243.     for(;i<w; i++){
  244.         dst[i+0]= bswap_32(src[i+0]);
  245.     }
  246. }
  247. static int sse4_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h)
  248. {
  249.     int s, i;
  250.     uint32_t *sq = ff_squareTbl + 256;
  251.     s = 0;
  252.     for (i = 0; i < h; i++) {
  253.         s += sq[pix1[0] - pix2[0]];
  254.         s += sq[pix1[1] - pix2[1]];
  255.         s += sq[pix1[2] - pix2[2]];
  256.         s += sq[pix1[3] - pix2[3]];
  257.         pix1 += line_size;
  258.         pix2 += line_size;
  259.     }
  260.     return s;
  261. }
  262. static int sse8_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h)
  263. {
  264.     int s, i;
  265.     uint32_t *sq = ff_squareTbl + 256;
  266.     s = 0;
  267.     for (i = 0; i < h; i++) {
  268.         s += sq[pix1[0] - pix2[0]];
  269.         s += sq[pix1[1] - pix2[1]];
  270.         s += sq[pix1[2] - pix2[2]];
  271.         s += sq[pix1[3] - pix2[3]];
  272.         s += sq[pix1[4] - pix2[4]];
  273.         s += sq[pix1[5] - pix2[5]];
  274.         s += sq[pix1[6] - pix2[6]];
  275.         s += sq[pix1[7] - pix2[7]];
  276.         pix1 += line_size;
  277.         pix2 += line_size;
  278.     }
  279.     return s;
  280. }
  281. static int sse16_c(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
  282. {
  283.     int s, i;
  284.     uint32_t *sq = ff_squareTbl + 256;
  285.     s = 0;
  286.     for (i = 0; i < h; i++) {
  287.         s += sq[pix1[ 0] - pix2[ 0]];
  288.         s += sq[pix1[ 1] - pix2[ 1]];
  289.         s += sq[pix1[ 2] - pix2[ 2]];
  290.         s += sq[pix1[ 3] - pix2[ 3]];
  291.         s += sq[pix1[ 4] - pix2[ 4]];
  292.         s += sq[pix1[ 5] - pix2[ 5]];
  293.         s += sq[pix1[ 6] - pix2[ 6]];
  294.         s += sq[pix1[ 7] - pix2[ 7]];
  295.         s += sq[pix1[ 8] - pix2[ 8]];
  296.         s += sq[pix1[ 9] - pix2[ 9]];
  297.         s += sq[pix1[10] - pix2[10]];
  298.         s += sq[pix1[11] - pix2[11]];
  299.         s += sq[pix1[12] - pix2[12]];
  300.         s += sq[pix1[13] - pix2[13]];
  301.         s += sq[pix1[14] - pix2[14]];
  302.         s += sq[pix1[15] - pix2[15]];
  303.         pix1 += line_size;
  304.         pix2 += line_size;
  305.     }
  306.     return s;
  307. }
  308. #ifdef CONFIG_SNOW_ENCODER //dwt is in snow.c
  309. static inline int w_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int w, int h, int type){
  310.     int s, i, j;
  311.     const int dec_count= w==8 ? 3 : 4;
  312.     int tmp[32*32];
  313.     int level, ori;
  314.     static const int scale[2][2][4][4]={
  315.       {
  316.         {
  317.             // 9/7 8x8 dec=3
  318.             {268, 239, 239, 213},
  319.             {  0, 224, 224, 152},
  320.             {  0, 135, 135, 110},
  321.         },{
  322.             // 9/7 16x16 or 32x32 dec=4
  323.             {344, 310, 310, 280},
  324.             {  0, 320, 320, 228},
  325.             {  0, 175, 175, 136},
  326.             {  0, 129, 129, 102},
  327.         }
  328.       },{
  329.         {
  330.             // 5/3 8x8 dec=3
  331.             {275, 245, 245, 218},
  332.             {  0, 230, 230, 156},
  333.             {  0, 138, 138, 113},
  334.         },{
  335.             // 5/3 16x16 or 32x32 dec=4
  336.             {352, 317, 317, 286},
  337.             {  0, 328, 328, 233},
  338.             {  0, 180, 180, 140},
  339.             {  0, 132, 132, 105},
  340.         }
  341.       }
  342.     };
  343.     for (i = 0; i < h; i++) {
  344.         for (j = 0; j < w; j+=4) {
  345.             tmp[32*i+j+0] = (pix1[j+0] - pix2[j+0])<<4;
  346.             tmp[32*i+j+1] = (pix1[j+1] - pix2[j+1])<<4;
  347.             tmp[32*i+j+2] = (pix1[j+2] - pix2[j+2])<<4;
  348.             tmp[32*i+j+3] = (pix1[j+3] - pix2[j+3])<<4;
  349.         }
  350.         pix1 += line_size;
  351.         pix2 += line_size;
  352.     }
  353.     ff_spatial_dwt(tmp, w, h, 32, type, dec_count);
  354.     s=0;
  355.     assert(w==h);
  356.     for(level=0; level<dec_count; level++){
  357.         for(ori= level ? 1 : 0; ori<4; ori++){
  358.             int size= w>>(dec_count-level);
  359.             int sx= (ori&1) ? size : 0;
  360.             int stride= 32<<(dec_count-level);
  361.             int sy= (ori&2) ? stride>>1 : 0;
  362.             for(i=0; i<size; i++){
  363.                 for(j=0; j<size; j++){
  364.                     int v= tmp[sx + sy + i*stride + j] * scale[type][dec_count-3][level][ori];
  365.                     s += FFABS(v);
  366.                 }
  367.             }
  368.         }
  369.     }
  370.     assert(s>=0);
  371.     return s>>9;
  372. }
  373. static int w53_8_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h){
  374.     return w_c(v, pix1, pix2, line_size,  8, h, 1);
  375. }
  376. static int w97_8_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h){
  377.     return w_c(v, pix1, pix2, line_size,  8, h, 0);
  378. }
  379. static int w53_16_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h){
  380.     return w_c(v, pix1, pix2, line_size, 16, h, 1);
  381. }
  382. static int w97_16_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h){
  383.     return w_c(v, pix1, pix2, line_size, 16, h, 0);
  384. }
  385. int w53_32_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h){
  386.     return w_c(v, pix1, pix2, line_size, 32, h, 1);
  387. }
  388. int w97_32_c(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, int h){
  389.     return w_c(v, pix1, pix2, line_size, 32, h, 0);
  390. }
  391. #endif
  392. /* draw the edges of width 'w' of an image of size width, height */
  393. //FIXME check that this is ok for mpeg4 interlaced
  394. static void draw_edges_c(uint8_t *buf, int wrap, int width, int height, int w)
  395. {
  396.     uint8_t *ptr, *last_line;
  397.     int i;
  398.     last_line = buf + (height - 1) * wrap;
  399.     for(i=0;i<w;i++) {
  400.         /* top and bottom */
  401.         memcpy(buf - (i + 1) * wrap, buf, width);
  402.         memcpy(last_line + (i + 1) * wrap, last_line, width);
  403.     }
  404.     /* left and right */
  405.     ptr = buf;
  406.     for(i=0;i<height;i++) {
  407.         memset(ptr - w, ptr[0], w);
  408.         memset(ptr + width, ptr[width-1], w);
  409.         ptr += wrap;
  410.     }
  411.     /* corners */
  412.     for(i=0;i<w;i++) {
  413.         memset(buf - (i + 1) * wrap - w, buf[0], w); /* top left */
  414.         memset(buf - (i + 1) * wrap + width, buf[width-1], w); /* top right */
  415.         memset(last_line + (i + 1) * wrap - w, last_line[0], w); /* top left */
  416.         memset(last_line + (i + 1) * wrap + width, last_line[width-1], w); /* top right */
  417.     }
  418. }
  419. /**
  420.  * Copies a rectangular area of samples to a temporary buffer and replicates the boarder samples.
  421.  * @param buf destination buffer
  422.  * @param src source buffer
  423.  * @param linesize number of bytes between 2 vertically adjacent samples in both the source and destination buffers
  424.  * @param block_w width of block
  425.  * @param block_h height of block
  426.  * @param src_x x coordinate of the top left sample of the block in the source buffer
  427.  * @param src_y y coordinate of the top left sample of the block in the source buffer
  428.  * @param w width of the source buffer
  429.  * @param h height of the source buffer
  430.  */
  431. void ff_emulated_edge_mc(uint8_t *buf, uint8_t *src, int linesize, int block_w, int block_h,
  432.                                     int src_x, int src_y, int w, int h){
  433.     int x, y;
  434.     int start_y, start_x, end_y, end_x;
  435.     if(src_y>= h){
  436.         src+= (h-1-src_y)*linesize;
  437.         src_y=h-1;
  438.     }else if(src_y<=-block_h){
  439.         src+= (1-block_h-src_y)*linesize;
  440.         src_y=1-block_h;
  441.     }
  442.     if(src_x>= w){
  443.         src+= (w-1-src_x);
  444.         src_x=w-1;
  445.     }else if(src_x<=-block_w){
  446.         src+= (1-block_w-src_x);
  447.         src_x=1-block_w;
  448.     }
  449.     start_y= FFMAX(0, -src_y);
  450.     start_x= FFMAX(0, -src_x);
  451.     end_y= FFMIN(block_h, h-src_y);
  452.     end_x= FFMIN(block_w, w-src_x);
  453.     // copy existing part
  454.     for(y=start_y; y<end_y; y++){
  455.         for(x=start_x; x<end_x; x++){
  456.             buf[x + y*linesize]= src[x + y*linesize];
  457.         }
  458.     }
  459.     //top
  460.     for(y=0; y<start_y; y++){
  461.         for(x=start_x; x<end_x; x++){
  462.             buf[x + y*linesize]= buf[x + start_y*linesize];
  463.         }
  464.     }
  465.     //bottom
  466.     for(y=end_y; y<block_h; y++){
  467.         for(x=start_x; x<end_x; x++){
  468.             buf[x + y*linesize]= buf[x + (end_y-1)*linesize];
  469.         }
  470.     }
  471.     for(y=0; y<block_h; y++){
  472.        //left
  473.         for(x=0; x<start_x; x++){
  474.             buf[x + y*linesize]= buf[start_x + y*linesize];
  475.         }
  476.        //right
  477.         for(x=end_x; x<block_w; x++){
  478.             buf[x + y*linesize]= buf[end_x - 1 + y*linesize];
  479.         }
  480.     }
  481. }
  482. static void get_pixels_c(DCTELEM *restrict block, const uint8_t *pixels, int line_size)
  483. {
  484.     int i;
  485.     /* read the pixels */
  486.     for(i=0;i<8;i++) {
  487.         block[0] = pixels[0];
  488.         block[1] = pixels[1];
  489.         block[2] = pixels[2];
  490.         block[3] = pixels[3];
  491.         block[4] = pixels[4];
  492.         block[5] = pixels[5];
  493.         block[6] = pixels[6];
  494.         block[7] = pixels[7];
  495.         pixels += line_size;
  496.         block += 8;
  497.     }
  498. }
  499. static void diff_pixels_c(DCTELEM *restrict block, const uint8_t *s1,
  500.                           const uint8_t *s2, int stride){
  501.     int i;
  502.     /* read the pixels */
  503.     for(i=0;i<8;i++) {
  504.         block[0] = s1[0] - s2[0];
  505.         block[1] = s1[1] - s2[1];
  506.         block[2] = s1[2] - s2[2];
  507.         block[3] = s1[3] - s2[3];
  508.         block[4] = s1[4] - s2[4];
  509.         block[5] = s1[5] - s2[5];
  510.         block[6] = s1[6] - s2[6];
  511.         block[7] = s1[7] - s2[7];
  512.         s1 += stride;
  513.         s2 += stride;
  514.         block += 8;
  515.     }
  516. }
  517. static void put_pixels_clamped_c(const DCTELEM *block, uint8_t *restrict pixels,
  518.                                  int line_size)
  519. {
  520.     int i;
  521.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  522.     /* read the pixels */
  523.     for(i=0;i<8;i++) {
  524.         pixels[0] = cm[block[0]];
  525.         pixels[1] = cm[block[1]];
  526.         pixels[2] = cm[block[2]];
  527.         pixels[3] = cm[block[3]];
  528.         pixels[4] = cm[block[4]];
  529.         pixels[5] = cm[block[5]];
  530.         pixels[6] = cm[block[6]];
  531.         pixels[7] = cm[block[7]];
  532.         pixels += line_size;
  533.         block += 8;
  534.     }
  535. }
  536. static void put_pixels_clamped4_c(const DCTELEM *block, uint8_t *restrict pixels,
  537.                                  int line_size)
  538. {
  539.     int i;
  540.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  541.     /* read the pixels */
  542.     for(i=0;i<4;i++) {
  543.         pixels[0] = cm[block[0]];
  544.         pixels[1] = cm[block[1]];
  545.         pixels[2] = cm[block[2]];
  546.         pixels[3] = cm[block[3]];
  547.         pixels += line_size;
  548.         block += 8;
  549.     }
  550. }
  551. static void put_pixels_clamped2_c(const DCTELEM *block, uint8_t *restrict pixels,
  552.                                  int line_size)
  553. {
  554.     int i;
  555.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  556.     /* read the pixels */
  557.     for(i=0;i<2;i++) {
  558.         pixels[0] = cm[block[0]];
  559.         pixels[1] = cm[block[1]];
  560.         pixels += line_size;
  561.         block += 8;
  562.     }
  563. }
  564. static void put_signed_pixels_clamped_c(const DCTELEM *block,
  565.                                         uint8_t *restrict pixels,
  566.                                         int line_size)
  567. {
  568.     int i, j;
  569.     for (i = 0; i < 8; i++) {
  570.         for (j = 0; j < 8; j++) {
  571.             if (*block < -128)
  572.                 *pixels = 0;
  573.             else if (*block > 127)
  574.                 *pixels = 255;
  575.             else
  576.                 *pixels = (uint8_t)(*block + 128);
  577.             block++;
  578.             pixels++;
  579.         }
  580.         pixels += (line_size - 8);
  581.     }
  582. }
  583. static void add_pixels_clamped_c(const DCTELEM *block, uint8_t *restrict pixels,
  584.                           int line_size)
  585. {
  586.     int i;
  587.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  588.     /* read the pixels */
  589.     for(i=0;i<8;i++) {
  590.         pixels[0] = cm[pixels[0] + block[0]];
  591.         pixels[1] = cm[pixels[1] + block[1]];
  592.         pixels[2] = cm[pixels[2] + block[2]];
  593.         pixels[3] = cm[pixels[3] + block[3]];
  594.         pixels[4] = cm[pixels[4] + block[4]];
  595.         pixels[5] = cm[pixels[5] + block[5]];
  596.         pixels[6] = cm[pixels[6] + block[6]];
  597.         pixels[7] = cm[pixels[7] + block[7]];
  598.         pixels += line_size;
  599.         block += 8;
  600.     }
  601. }
  602. static void add_pixels_clamped4_c(const DCTELEM *block, uint8_t *restrict pixels,
  603.                           int line_size)
  604. {
  605.     int i;
  606.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  607.     /* read the pixels */
  608.     for(i=0;i<4;i++) {
  609.         pixels[0] = cm[pixels[0] + block[0]];
  610.         pixels[1] = cm[pixels[1] + block[1]];
  611.         pixels[2] = cm[pixels[2] + block[2]];
  612.         pixels[3] = cm[pixels[3] + block[3]];
  613.         pixels += line_size;
  614.         block += 8;
  615.     }
  616. }
  617. static void add_pixels_clamped2_c(const DCTELEM *block, uint8_t *restrict pixels,
  618.                           int line_size)
  619. {
  620.     int i;
  621.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  622.     /* read the pixels */
  623.     for(i=0;i<2;i++) {
  624.         pixels[0] = cm[pixels[0] + block[0]];
  625.         pixels[1] = cm[pixels[1] + block[1]];
  626.         pixels += line_size;
  627.         block += 8;
  628.     }
  629. }
  630. static void add_pixels8_c(uint8_t *restrict pixels, DCTELEM *block, int line_size)
  631. {
  632.     int i;
  633.     for(i=0;i<8;i++) {
  634.         pixels[0] += block[0];
  635.         pixels[1] += block[1];
  636.         pixels[2] += block[2];
  637.         pixels[3] += block[3];
  638.         pixels[4] += block[4];
  639.         pixels[5] += block[5];
  640.         pixels[6] += block[6];
  641.         pixels[7] += block[7];
  642.         pixels += line_size;
  643.         block += 8;
  644.     }
  645. }
  646. static void add_pixels4_c(uint8_t *restrict pixels, DCTELEM *block, int line_size)
  647. {
  648.     int i;
  649.     for(i=0;i<4;i++) {
  650.         pixels[0] += block[0];
  651.         pixels[1] += block[1];
  652.         pixels[2] += block[2];
  653.         pixels[3] += block[3];
  654.         pixels += line_size;
  655.         block += 4;
  656.     }
  657. }
  658. static int sum_abs_dctelem_c(DCTELEM *block)
  659. {
  660.     int sum=0, i;
  661.     for(i=0; i<64; i++)
  662.         sum+= FFABS(block[i]);
  663.     return sum;
  664. }
  665. #if 0
  666. #define PIXOP2(OPNAME, OP) 
  667. static void OPNAME ## _pixels(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  668. {
  669.     int i;
  670.     for(i=0; i<h; i++){
  671.         OP(*((uint64_t*)block), AV_RN64(pixels));
  672.         pixels+=line_size;
  673.         block +=line_size;
  674.     }
  675. }
  676. static void OPNAME ## _no_rnd_pixels_x2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  677. {
  678.     int i;
  679.     for(i=0; i<h; i++){
  680.         const uint64_t a= AV_RN64(pixels  );
  681.         const uint64_t b= AV_RN64(pixels+1);
  682.         OP(*((uint64_t*)block), (a&b) + (((a^b)&0xFEFEFEFEFEFEFEFEULL)>>1));
  683.         pixels+=line_size;
  684.         block +=line_size;
  685.     }
  686. }
  687. static void OPNAME ## _pixels_x2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  688. {
  689.     int i;
  690.     for(i=0; i<h; i++){
  691.         const uint64_t a= AV_RN64(pixels  );
  692.         const uint64_t b= AV_RN64(pixels+1);
  693.         OP(*((uint64_t*)block), (a|b) - (((a^b)&0xFEFEFEFEFEFEFEFEULL)>>1));
  694.         pixels+=line_size;
  695.         block +=line_size;
  696.     }
  697. }
  698. static void OPNAME ## _no_rnd_pixels_y2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  699. {
  700.     int i;
  701.     for(i=0; i<h; i++){
  702.         const uint64_t a= AV_RN64(pixels          );
  703.         const uint64_t b= AV_RN64(pixels+line_size);
  704.         OP(*((uint64_t*)block), (a&b) + (((a^b)&0xFEFEFEFEFEFEFEFEULL)>>1));
  705.         pixels+=line_size;
  706.         block +=line_size;
  707.     }
  708. }
  709. static void OPNAME ## _pixels_y2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  710. {
  711.     int i;
  712.     for(i=0; i<h; i++){
  713.         const uint64_t a= AV_RN64(pixels          );
  714.         const uint64_t b= AV_RN64(pixels+line_size);
  715.         OP(*((uint64_t*)block), (a|b) - (((a^b)&0xFEFEFEFEFEFEFEFEULL)>>1));
  716.         pixels+=line_size;
  717.         block +=line_size;
  718.     }
  719. }
  720. static void OPNAME ## _pixels_xy2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  721. {
  722.         int i;
  723.         const uint64_t a= AV_RN64(pixels  );
  724.         const uint64_t b= AV_RN64(pixels+1);
  725.         uint64_t l0=  (a&0x0303030303030303ULL)
  726.                     + (b&0x0303030303030303ULL)
  727.                     + 0x0202020202020202ULL;
  728.         uint64_t h0= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)
  729.                    + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);
  730.         uint64_t l1,h1;
  731.         pixels+=line_size;
  732.         for(i=0; i<h; i+=2){
  733.             uint64_t a= AV_RN64(pixels  );
  734.             uint64_t b= AV_RN64(pixels+1);
  735.             l1=  (a&0x0303030303030303ULL)
  736.                + (b&0x0303030303030303ULL);
  737.             h1= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)
  738.               + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);
  739.             OP(*((uint64_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0F0F0F0F0FULL));
  740.             pixels+=line_size;
  741.             block +=line_size;
  742.             a= AV_RN64(pixels  );
  743.             b= AV_RN64(pixels+1);
  744.             l0=  (a&0x0303030303030303ULL)
  745.                + (b&0x0303030303030303ULL)
  746.                + 0x0202020202020202ULL;
  747.             h0= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)
  748.               + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);
  749.             OP(*((uint64_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0F0F0F0F0FULL));
  750.             pixels+=line_size;
  751.             block +=line_size;
  752.         }
  753. }
  754. static void OPNAME ## _no_rnd_pixels_xy2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  755. {
  756.         int i;
  757.         const uint64_t a= AV_RN64(pixels  );
  758.         const uint64_t b= AV_RN64(pixels+1);
  759.         uint64_t l0=  (a&0x0303030303030303ULL)
  760.                     + (b&0x0303030303030303ULL)
  761.                     + 0x0101010101010101ULL;
  762.         uint64_t h0= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)
  763.                    + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);
  764.         uint64_t l1,h1;
  765.         pixels+=line_size;
  766.         for(i=0; i<h; i+=2){
  767.             uint64_t a= AV_RN64(pixels  );
  768.             uint64_t b= AV_RN64(pixels+1);
  769.             l1=  (a&0x0303030303030303ULL)
  770.                + (b&0x0303030303030303ULL);
  771.             h1= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)
  772.               + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);
  773.             OP(*((uint64_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0F0F0F0F0FULL));
  774.             pixels+=line_size;
  775.             block +=line_size;
  776.             a= AV_RN64(pixels  );
  777.             b= AV_RN64(pixels+1);
  778.             l0=  (a&0x0303030303030303ULL)
  779.                + (b&0x0303030303030303ULL)
  780.                + 0x0101010101010101ULL;
  781.             h0= ((a&0xFCFCFCFCFCFCFCFCULL)>>2)
  782.               + ((b&0xFCFCFCFCFCFCFCFCULL)>>2);
  783.             OP(*((uint64_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0F0F0F0F0FULL));
  784.             pixels+=line_size;
  785.             block +=line_size;
  786.         }
  787. }
  788. CALL_2X_PIXELS(OPNAME ## _pixels16_c    , OPNAME ## _pixels_c    , 8)
  789. CALL_2X_PIXELS(OPNAME ## _pixels16_x2_c , OPNAME ## _pixels_x2_c , 8)
  790. CALL_2X_PIXELS(OPNAME ## _pixels16_y2_c , OPNAME ## _pixels_y2_c , 8)
  791. CALL_2X_PIXELS(OPNAME ## _pixels16_xy2_c, OPNAME ## _pixels_xy2_c, 8)
  792. CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_x2_c , OPNAME ## _no_rnd_pixels_x2_c , 8)
  793. CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_y2_c , OPNAME ## _no_rnd_pixels_y2_c , 8)
  794. CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_xy2_c, OPNAME ## _no_rnd_pixels_xy2_c, 8)
  795. #define op_avg(a, b) a = ( ((a)|(b)) - ((((a)^(b))&0xFEFEFEFEFEFEFEFEULL)>>1) )
  796. #else // 64 bit variant
  797. #define PIXOP2(OPNAME, OP) 
  798. static void OPNAME ## _pixels2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  799.     int i;
  800.     for(i=0; i<h; i++){
  801.         OP(*((uint16_t*)(block  )), AV_RN16(pixels  ));
  802.         pixels+=line_size;
  803.         block +=line_size;
  804.     }
  805. }
  806. static void OPNAME ## _pixels4_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  807.     int i;
  808.     for(i=0; i<h; i++){
  809.         OP(*((uint32_t*)(block  )), AV_RN32(pixels  ));
  810.         pixels+=line_size;
  811.         block +=line_size;
  812.     }
  813. }
  814. static void OPNAME ## _pixels8_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  815.     int i;
  816.     for(i=0; i<h; i++){
  817.         OP(*((uint32_t*)(block  )), AV_RN32(pixels  ));
  818.         OP(*((uint32_t*)(block+4)), AV_RN32(pixels+4));
  819.         pixels+=line_size;
  820.         block +=line_size;
  821.     }
  822. }
  823. static inline void OPNAME ## _no_rnd_pixels8_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  824.     OPNAME ## _pixels8_c(block, pixels, line_size, h);
  825. }
  826. static inline void OPNAME ## _no_rnd_pixels8_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, 
  827.                                                 int src_stride1, int src_stride2, int h){
  828.     int i;
  829.     for(i=0; i<h; i++){
  830.         uint32_t a,b;
  831.         a= AV_RN32(&src1[i*src_stride1  ]);
  832.         b= AV_RN32(&src2[i*src_stride2  ]);
  833.         OP(*((uint32_t*)&dst[i*dst_stride  ]), no_rnd_avg32(a, b));
  834.         a= AV_RN32(&src1[i*src_stride1+4]);
  835.         b= AV_RN32(&src2[i*src_stride2+4]);
  836.         OP(*((uint32_t*)&dst[i*dst_stride+4]), no_rnd_avg32(a, b));
  837.     }
  838. }
  839. static inline void OPNAME ## _pixels8_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, 
  840.                                                 int src_stride1, int src_stride2, int h){
  841.     int i;
  842.     for(i=0; i<h; i++){
  843.         uint32_t a,b;
  844.         a= AV_RN32(&src1[i*src_stride1  ]);
  845.         b= AV_RN32(&src2[i*src_stride2  ]);
  846.         OP(*((uint32_t*)&dst[i*dst_stride  ]), rnd_avg32(a, b));
  847.         a= AV_RN32(&src1[i*src_stride1+4]);
  848.         b= AV_RN32(&src2[i*src_stride2+4]);
  849.         OP(*((uint32_t*)&dst[i*dst_stride+4]), rnd_avg32(a, b));
  850.     }
  851. }
  852. static inline void OPNAME ## _pixels4_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, 
  853.                                                 int src_stride1, int src_stride2, int h){
  854.     int i;
  855.     for(i=0; i<h; i++){
  856.         uint32_t a,b;
  857.         a= AV_RN32(&src1[i*src_stride1  ]);
  858.         b= AV_RN32(&src2[i*src_stride2  ]);
  859.         OP(*((uint32_t*)&dst[i*dst_stride  ]), rnd_avg32(a, b));
  860.     }
  861. }
  862. static inline void OPNAME ## _pixels2_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, 
  863.                                                 int src_stride1, int src_stride2, int h){
  864.     int i;
  865.     for(i=0; i<h; i++){
  866.         uint32_t a,b;
  867.         a= AV_RN16(&src1[i*src_stride1  ]);
  868.         b= AV_RN16(&src2[i*src_stride2  ]);
  869.         OP(*((uint16_t*)&dst[i*dst_stride  ]), rnd_avg32(a, b));
  870.     }
  871. }
  872. static inline void OPNAME ## _pixels16_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, 
  873.                                                 int src_stride1, int src_stride2, int h){
  874.     OPNAME ## _pixels8_l2(dst  , src1  , src2  , dst_stride, src_stride1, src_stride2, h);
  875.     OPNAME ## _pixels8_l2(dst+8, src1+8, src2+8, dst_stride, src_stride1, src_stride2, h);
  876. }
  877. /*
  878. static inline void OPNAME ## _no_rnd_pixels16_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, 
  879.                                                 int src_stride1, int src_stride2, int h){
  880.     OPNAME ## _no_rnd_pixels8_l2(dst  , src1  , src2  , dst_stride, src_stride1, src_stride2, h);
  881.     OPNAME ## _no_rnd_pixels8_l2(dst+8, src1+8, src2+8, dst_stride, src_stride1, src_stride2, h);
  882. }
  883. */static inline void OPNAME ## _no_rnd_pixels8_x2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  884.     OPNAME ## _no_rnd_pixels8_l2(block, pixels, pixels+1, line_size, line_size, line_size, h);
  885. }
  886. static inline void OPNAME ## _pixels8_x2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  887.     OPNAME ## _pixels8_l2(block, pixels, pixels+1, line_size, line_size, line_size, h);
  888. }
  889. static inline void OPNAME ## _no_rnd_pixels8_y2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  890.     OPNAME ## _no_rnd_pixels8_l2(block, pixels, pixels+line_size, line_size, line_size, line_size, h);
  891. }
  892. static inline void OPNAME ## _pixels8_y2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  893.     OPNAME ## _pixels8_l2(block, pixels, pixels+line_size, line_size, line_size, line_size, h);
  894. }
  895. static inline void OPNAME ## _pixels8_l4(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,
  896.                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){
  897.     int i;
  898.     for(i=0; i<h; i++){
  899.         uint32_t a, b, c, d, l0, l1, h0, h1;
  900.         a= AV_RN32(&src1[i*src_stride1]);
  901.         b= AV_RN32(&src2[i*src_stride2]);
  902.         c= AV_RN32(&src3[i*src_stride3]);
  903.         d= AV_RN32(&src4[i*src_stride4]);
  904.         l0=  (a&0x03030303UL)
  905.            + (b&0x03030303UL)
  906.            + 0x02020202UL;
  907.         h0= ((a&0xFCFCFCFCUL)>>2)
  908.           + ((b&0xFCFCFCFCUL)>>2);
  909.         l1=  (c&0x03030303UL)
  910.            + (d&0x03030303UL);
  911.         h1= ((c&0xFCFCFCFCUL)>>2)
  912.           + ((d&0xFCFCFCFCUL)>>2);
  913.         OP(*((uint32_t*)&dst[i*dst_stride]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  914.         a= AV_RN32(&src1[i*src_stride1+4]);
  915.         b= AV_RN32(&src2[i*src_stride2+4]);
  916.         c= AV_RN32(&src3[i*src_stride3+4]);
  917.         d= AV_RN32(&src4[i*src_stride4+4]);
  918.         l0=  (a&0x03030303UL)
  919.            + (b&0x03030303UL)
  920.            + 0x02020202UL;
  921.         h0= ((a&0xFCFCFCFCUL)>>2)
  922.           + ((b&0xFCFCFCFCUL)>>2);
  923.         l1=  (c&0x03030303UL)
  924.            + (d&0x03030303UL);
  925.         h1= ((c&0xFCFCFCFCUL)>>2)
  926.           + ((d&0xFCFCFCFCUL)>>2);
  927.         OP(*((uint32_t*)&dst[i*dst_stride+4]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  928.     }
  929. }
  930. static inline void OPNAME ## _pixels4_x2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  931.     OPNAME ## _pixels4_l2(block, pixels, pixels+1, line_size, line_size, line_size, h);
  932. }
  933. static inline void OPNAME ## _pixels4_y2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  934.     OPNAME ## _pixels4_l2(block, pixels, pixels+line_size, line_size, line_size, line_size, h);
  935. }
  936. static inline void OPNAME ## _pixels2_x2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  937.     OPNAME ## _pixels2_l2(block, pixels, pixels+1, line_size, line_size, line_size, h);
  938. }
  939. static inline void OPNAME ## _pixels2_y2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h){
  940.     OPNAME ## _pixels2_l2(block, pixels, pixels+line_size, line_size, line_size, line_size, h);
  941. }
  942. /*
  943. static inline void OPNAME ## _no_rnd_pixels8_l4(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,
  944.                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){
  945.     int i;
  946.     for(i=0; i<h; i++){
  947.         uint32_t a, b, c, d, l0, l1, h0, h1;
  948.         a= AV_RN32(&src1[i*src_stride1]);
  949.         b= AV_RN32(&src2[i*src_stride2]);
  950.         c= AV_RN32(&src3[i*src_stride3]);
  951.         d= AV_RN32(&src4[i*src_stride4]);
  952.         l0=  (a&0x03030303UL)
  953.            + (b&0x03030303UL)
  954.            + 0x01010101UL;
  955.         h0= ((a&0xFCFCFCFCUL)>>2)
  956.           + ((b&0xFCFCFCFCUL)>>2);
  957.         l1=  (c&0x03030303UL)
  958.            + (d&0x03030303UL);
  959.         h1= ((c&0xFCFCFCFCUL)>>2)
  960.           + ((d&0xFCFCFCFCUL)>>2);
  961.         OP(*((uint32_t*)&dst[i*dst_stride]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  962.         a= AV_RN32(&src1[i*src_stride1+4]);
  963.         b= AV_RN32(&src2[i*src_stride2+4]);
  964.         c= AV_RN32(&src3[i*src_stride3+4]);
  965.         d= AV_RN32(&src4[i*src_stride4+4]);
  966.         l0=  (a&0x03030303UL)
  967.            + (b&0x03030303UL)
  968.            + 0x01010101UL;
  969.         h0= ((a&0xFCFCFCFCUL)>>2)
  970.           + ((b&0xFCFCFCFCUL)>>2);
  971.         l1=  (c&0x03030303UL)
  972.            + (d&0x03030303UL);
  973.         h1= ((c&0xFCFCFCFCUL)>>2)
  974.           + ((d&0xFCFCFCFCUL)>>2);
  975.         OP(*((uint32_t*)&dst[i*dst_stride+4]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  976.     }
  977. }*/static inline void OPNAME ## _pixels16_l4(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,
  978.                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){
  979.     OPNAME ## _pixels8_l4(dst  , src1  , src2  , src3  , src4  , dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);
  980.     OPNAME ## _pixels8_l4(dst+8, src1+8, src2+8, src3+8, src4+8, dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);
  981. }
  982. /*static inline void OPNAME ## _no_rnd_pixels16_l4(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,
  983.                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){
  984.     OPNAME ## _no_rnd_pixels8_l4(dst  , src1  , src2  , src3  , src4  , dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);
  985.     OPNAME ## _no_rnd_pixels8_l4(dst+8, src1+8, src2+8, src3+8, src4+8, dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);
  986. }
  987. */static inline void OPNAME ## _pixels2_xy2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  988. {
  989.         int i, a0, b0, a1, b1;
  990.         a0= pixels[0];
  991.         b0= pixels[1] + 2;
  992.         a0 += b0;
  993.         b0 += pixels[2];
  994.         pixels+=line_size;
  995.         for(i=0; i<h; i+=2){
  996.             a1= pixels[0];
  997.             b1= pixels[1];
  998.             a1 += b1;
  999.             b1 += pixels[2];
  1000.             block[0]= (a1+a0)>>2; /* FIXME non put */
  1001.             block[1]= (b1+b0)>>2;
  1002.             pixels+=line_size;
  1003.             block +=line_size;
  1004.             a0= pixels[0];
  1005.             b0= pixels[1] + 2;
  1006.             a0 += b0;
  1007.             b0 += pixels[2];
  1008.             block[0]= (a1+a0)>>2;
  1009.             block[1]= (b1+b0)>>2;
  1010.             pixels+=line_size;
  1011.             block +=line_size;
  1012.         }
  1013. }
  1014. static inline void OPNAME ## _pixels4_xy2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  1015. {
  1016.         int i;
  1017.         const uint32_t a= AV_RN32(pixels  );
  1018.         const uint32_t b= AV_RN32(pixels+1);
  1019.         uint32_t l0=  (a&0x03030303UL)
  1020.                     + (b&0x03030303UL)
  1021.                     + 0x02020202UL;
  1022.         uint32_t h0= ((a&0xFCFCFCFCUL)>>2)
  1023.                    + ((b&0xFCFCFCFCUL)>>2);
  1024.         uint32_t l1,h1;
  1025.         pixels+=line_size;
  1026.         for(i=0; i<h; i+=2){
  1027.             uint32_t a= AV_RN32(pixels  );
  1028.             uint32_t b= AV_RN32(pixels+1);
  1029.             l1=  (a&0x03030303UL)
  1030.                + (b&0x03030303UL);
  1031.             h1= ((a&0xFCFCFCFCUL)>>2)
  1032.               + ((b&0xFCFCFCFCUL)>>2);
  1033.             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  1034.             pixels+=line_size;
  1035.             block +=line_size;
  1036.             a= AV_RN32(pixels  );
  1037.             b= AV_RN32(pixels+1);
  1038.             l0=  (a&0x03030303UL)
  1039.                + (b&0x03030303UL)
  1040.                + 0x02020202UL;
  1041.             h0= ((a&0xFCFCFCFCUL)>>2)
  1042.               + ((b&0xFCFCFCFCUL)>>2);
  1043.             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  1044.             pixels+=line_size;
  1045.             block +=line_size;
  1046.         }
  1047. }
  1048. static inline void OPNAME ## _pixels8_xy2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  1049. {
  1050.     int j;
  1051.     for(j=0; j<2; j++){
  1052.         int i;
  1053.         const uint32_t a= AV_RN32(pixels  );
  1054.         const uint32_t b= AV_RN32(pixels+1);
  1055.         uint32_t l0=  (a&0x03030303UL)
  1056.                     + (b&0x03030303UL)
  1057.                     + 0x02020202UL;
  1058.         uint32_t h0= ((a&0xFCFCFCFCUL)>>2)
  1059.                    + ((b&0xFCFCFCFCUL)>>2);
  1060.         uint32_t l1,h1;
  1061.         pixels+=line_size;
  1062.         for(i=0; i<h; i+=2){
  1063.             uint32_t a= AV_RN32(pixels  );
  1064.             uint32_t b= AV_RN32(pixels+1);
  1065.             l1=  (a&0x03030303UL)
  1066.                + (b&0x03030303UL);
  1067.             h1= ((a&0xFCFCFCFCUL)>>2)
  1068.               + ((b&0xFCFCFCFCUL)>>2);
  1069.             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  1070.             pixels+=line_size;
  1071.             block +=line_size;
  1072.             a= AV_RN32(pixels  );
  1073.             b= AV_RN32(pixels+1);
  1074.             l0=  (a&0x03030303UL)
  1075.                + (b&0x03030303UL)
  1076.                + 0x02020202UL;
  1077.             h0= ((a&0xFCFCFCFCUL)>>2)
  1078.               + ((b&0xFCFCFCFCUL)>>2);
  1079.             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  1080.             pixels+=line_size;
  1081.             block +=line_size;
  1082.         }
  1083.         pixels+=4-line_size*(h+1);
  1084.         block +=4-line_size*h;
  1085.     }
  1086. }
  1087. static inline void OPNAME ## _no_rnd_pixels8_xy2_c(uint8_t *block, const uint8_t *pixels, int line_size, int h)
  1088. {
  1089.     int j;
  1090.     for(j=0; j<2; j++){
  1091.         int i;
  1092.         const uint32_t a= AV_RN32(pixels  );
  1093.         const uint32_t b= AV_RN32(pixels+1);
  1094.         uint32_t l0=  (a&0x03030303UL)
  1095.                     + (b&0x03030303UL)
  1096.                     + 0x01010101UL;
  1097.         uint32_t h0= ((a&0xFCFCFCFCUL)>>2)
  1098.                    + ((b&0xFCFCFCFCUL)>>2);
  1099.         uint32_t l1,h1;
  1100.         pixels+=line_size;
  1101.         for(i=0; i<h; i+=2){
  1102.             uint32_t a= AV_RN32(pixels  );
  1103.             uint32_t b= AV_RN32(pixels+1);
  1104.             l1=  (a&0x03030303UL)
  1105.                + (b&0x03030303UL);
  1106.             h1= ((a&0xFCFCFCFCUL)>>2)
  1107.               + ((b&0xFCFCFCFCUL)>>2);
  1108.             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  1109.             pixels+=line_size;
  1110.             block +=line_size;
  1111.             a= AV_RN32(pixels  );
  1112.             b= AV_RN32(pixels+1);
  1113.             l0=  (a&0x03030303UL)
  1114.                + (b&0x03030303UL)
  1115.                + 0x01010101UL;
  1116.             h0= ((a&0xFCFCFCFCUL)>>2)
  1117.               + ((b&0xFCFCFCFCUL)>>2);
  1118.             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  1119.             pixels+=line_size;
  1120.             block +=line_size;
  1121.         }
  1122.         pixels+=4-line_size*(h+1);
  1123.         block +=4-line_size*h;
  1124.     }
  1125. }
  1126. CALL_2X_PIXELS(OPNAME ## _pixels16_c  , OPNAME ## _pixels8_c  , 8)
  1127. CALL_2X_PIXELS(OPNAME ## _pixels16_x2_c , OPNAME ## _pixels8_x2_c , 8)
  1128. CALL_2X_PIXELS(OPNAME ## _pixels16_y2_c , OPNAME ## _pixels8_y2_c , 8)
  1129. CALL_2X_PIXELS(OPNAME ## _pixels16_xy2_c, OPNAME ## _pixels8_xy2_c, 8)
  1130. CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_c  , OPNAME ## _pixels8_c         , 8)
  1131. CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_x2_c , OPNAME ## _no_rnd_pixels8_x2_c , 8)
  1132. CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_y2_c , OPNAME ## _no_rnd_pixels8_y2_c , 8)
  1133. CALL_2X_PIXELS(OPNAME ## _no_rnd_pixels16_xy2_c, OPNAME ## _no_rnd_pixels8_xy2_c, 8)
  1134. #define op_avg(a, b) a = rnd_avg32(a, b)
  1135. #endif
  1136. #define op_put(a, b) a = b
  1137. PIXOP2(avg, op_avg)
  1138. PIXOP2(put, op_put)
  1139. static inline void put_no_rnd_pixels8_l4(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,
  1140.                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h)
  1141. {
  1142.     int i;
  1143.     for(i=0; i<h; i++){
  1144.         uint32_t a, b, c, d, l0, l1, h0, h1;
  1145.         a= AV_RN32(&src1[i*src_stride1]);
  1146.         b= AV_RN32(&src2[i*src_stride2]);
  1147.         c= AV_RN32(&src3[i*src_stride3]);
  1148.         d= AV_RN32(&src4[i*src_stride4]);
  1149.         l0=  (a&0x03030303UL)
  1150.            + (b&0x03030303UL)
  1151.            + 0x01010101UL;
  1152.         h0= ((a&0xFCFCFCFCUL)>>2)
  1153.           + ((b&0xFCFCFCFCUL)>>2);
  1154.         l1=  (c&0x03030303UL)
  1155.            + (d&0x03030303UL);
  1156.         h1= ((c&0xFCFCFCFCUL)>>2)
  1157.           + ((d&0xFCFCFCFCUL)>>2);
  1158.         /*OP(*((uint32_t*)&dst[i*dst_stride]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));*/
  1159. *((uint32_t*)&dst[i*dst_stride]) = rnd_avg32(*((uint32_t*)&dst[i*dst_stride]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  1160.         a= AV_RN32(&src1[i*src_stride1+4]);
  1161.         b= AV_RN32(&src2[i*src_stride2+4]);
  1162.         c= AV_RN32(&src3[i*src_stride3+4]);
  1163.         d= AV_RN32(&src4[i*src_stride4+4]);
  1164.         l0=  (a&0x03030303UL)
  1165.            + (b&0x03030303UL)
  1166.            + 0x01010101UL;
  1167.         h0= ((a&0xFCFCFCFCUL)>>2)
  1168.           + ((b&0xFCFCFCFCUL)>>2);
  1169.         l1=  (c&0x03030303UL)
  1170.            + (d&0x03030303UL);
  1171.         h1= ((c&0xFCFCFCFCUL)>>2)
  1172.           + ((d&0xFCFCFCFCUL)>>2);
  1173.         /*OP(*((uint32_t*)&dst[i*dst_stride+4]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));*/
  1174. *((uint32_t*)&dst[i*dst_stride+4]) = rnd_avg32(*((uint32_t*)&dst[i*dst_stride+4]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));
  1175.     }
  1176. }
  1177. static inline void put_no_rnd_pixels16_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, 
  1178.                                                 int src_stride1, int src_stride2, int h){
  1179.     put_no_rnd_pixels8_l2(dst  , src1  , src2  , dst_stride, src_stride1, src_stride2, h);
  1180.     put_no_rnd_pixels8_l2(dst+8, src1+8, src2+8, dst_stride, src_stride1, src_stride2, h);
  1181. }
  1182. static inline void put_no_rnd_pixels16_l4(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,
  1183.                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){
  1184.     put_no_rnd_pixels8_l4(dst  , src1  , src2  , src3  , src4  , dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);
  1185.     put_no_rnd_pixels8_l4(dst+8, src1+8, src2+8, src3+8, src4+8, dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);
  1186. }
  1187. #undef op_avg
  1188. #undef op_put
  1189. #define avg2(a,b) ((a+b+1)>>1)
  1190. #define avg4(a,b,c,d) ((a+b+c+d+2)>>2)
  1191. static void put_no_rnd_pixels16_l2_c(uint8_t *dst, const uint8_t *a, const uint8_t *b, int stride, int h){
  1192.     put_no_rnd_pixels16_l2(dst, a, b, stride, stride, stride, h);
  1193. }
  1194. static void put_no_rnd_pixels8_l2_c(uint8_t *dst, const uint8_t *a, const uint8_t *b, int stride, int h){
  1195.     put_no_rnd_pixels8_l2(dst, a, b, stride, stride, stride, h);
  1196. }
  1197. static void gmc1_c(uint8_t *dst, uint8_t *src, int stride, int h, int x16, int y16, int rounder)
  1198. {
  1199.     const int A=(16-x16)*(16-y16);
  1200.     const int B=(   x16)*(16-y16);
  1201.     const int C=(16-x16)*(   y16);
  1202.     const int D=(   x16)*(   y16);
  1203.     int i;
  1204.     for(i=0; i<h; i++)
  1205.     {
  1206.         dst[0]= (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1] + rounder)>>8;
  1207.         dst[1]= (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2] + rounder)>>8;
  1208.         dst[2]= (A*src[2] + B*src[3] + C*src[stride+2] + D*src[stride+3] + rounder)>>8;
  1209.         dst[3]= (A*src[3] + B*src[4] + C*src[stride+3] + D*src[stride+4] + rounder)>>8;
  1210.         dst[4]= (A*src[4] + B*src[5] + C*src[stride+4] + D*src[stride+5] + rounder)>>8;
  1211.         dst[5]= (A*src[5] + B*src[6] + C*src[stride+5] + D*src[stride+6] + rounder)>>8;
  1212.         dst[6]= (A*src[6] + B*src[7] + C*src[stride+6] + D*src[stride+7] + rounder)>>8;
  1213.         dst[7]= (A*src[7] + B*src[8] + C*src[stride+7] + D*src[stride+8] + rounder)>>8;
  1214.         dst+= stride;
  1215.         src+= stride;
  1216.     }
  1217. }
  1218. void ff_gmc_c(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy,
  1219.                   int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height)
  1220. {
  1221.     int y, vx, vy;
  1222.     const int s= 1<<shift;
  1223.     width--;
  1224.     height--;
  1225.     for(y=0; y<h; y++){
  1226.         int x;
  1227.         vx= ox;
  1228.         vy= oy;
  1229.         for(x=0; x<8; x++){ //XXX FIXME optimize
  1230.             int src_x, src_y, frac_x, frac_y, index;
  1231.             src_x= vx>>16;
  1232.             src_y= vy>>16;
  1233.             frac_x= src_x&(s-1);
  1234.             frac_y= src_y&(s-1);
  1235.             src_x>>=shift;
  1236.             src_y>>=shift;
  1237.             if(src_x < width){
  1238.                 if(src_y < height){
  1239.                     index= src_x + src_y*stride;
  1240.                     dst[y*stride + x]= (  (  src[index         ]*(s-frac_x)
  1241.                                            + src[index       +1]*   frac_x )*(s-frac_y)
  1242.                                         + (  src[index+stride  ]*(s-frac_x)
  1243.                                            + src[index+stride+1]*   frac_x )*   frac_y
  1244.                                         + r)>>(shift*2);
  1245.                 }else{
  1246.                     index= src_x + av_clip(src_y, 0, height)*stride;
  1247.                     dst[y*stride + x]= ( (  src[index         ]*(s-frac_x)
  1248.                                           + src[index       +1]*   frac_x )*s
  1249.                                         + r)>>(shift*2);
  1250.                 }
  1251.             }else{
  1252.                 if(src_y < height){
  1253.                     index= av_clip(src_x, 0, width) + src_y*stride;
  1254.                     dst[y*stride + x]= (  (  src[index         ]*(s-frac_y)
  1255.                                            + src[index+stride  ]*   frac_y )*s
  1256.                                         + r)>>(shift*2);
  1257.                 }else{
  1258.                     index= av_clip(src_x, 0, width) + av_clip(src_y, 0, height)*stride;
  1259.                     dst[y*stride + x]=    src[index         ];
  1260.                 }
  1261.             }
  1262.             vx+= dxx;
  1263.             vy+= dyx;
  1264.         }
  1265.         ox += dxy;
  1266.         oy += dyy;
  1267.     }
  1268. }
  1269. static inline void put_tpel_pixels_mc00_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1270.     switch(width){
  1271.     case 2: put_pixels2_c (dst, src, stride, height); break;
  1272.     case 4: put_pixels4_c (dst, src, stride, height); break;
  1273.     case 8: put_pixels8_c (dst, src, stride, height); break;
  1274.     case 16:put_pixels16_c(dst, src, stride, height); break;
  1275.     }
  1276. }
  1277. static inline void put_tpel_pixels_mc10_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1278.     int i,j;
  1279.     for (i=0; i < height; i++) {
  1280.       for (j=0; j < width; j++) {
  1281.         dst[j] = (683*(2*src[j] + src[j+1] + 1)) >> 11;
  1282.       }
  1283.       src += stride;
  1284.       dst += stride;
  1285.     }
  1286. }
  1287. static inline void put_tpel_pixels_mc20_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1288.     int i,j;
  1289.     for (i=0; i < height; i++) {
  1290.       for (j=0; j < width; j++) {
  1291.         dst[j] = (683*(src[j] + 2*src[j+1] + 1)) >> 11;
  1292.       }
  1293.       src += stride;
  1294.       dst += stride;
  1295.     }
  1296. }
  1297. static inline void put_tpel_pixels_mc01_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1298.     int i,j;
  1299.     for (i=0; i < height; i++) {
  1300.       for (j=0; j < width; j++) {
  1301.         dst[j] = (683*(2*src[j] + src[j+stride] + 1)) >> 11;
  1302.       }
  1303.       src += stride;
  1304.       dst += stride;
  1305.     }
  1306. }
  1307. static inline void put_tpel_pixels_mc11_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1308.     int i,j;
  1309.     for (i=0; i < height; i++) {
  1310.       for (j=0; j < width; j++) {
  1311.         dst[j] = (2731*(4*src[j] + 3*src[j+1] + 3*src[j+stride] + 2*src[j+stride+1] + 6)) >> 15;
  1312.       }
  1313.       src += stride;
  1314.       dst += stride;
  1315.     }
  1316. }
  1317. static inline void put_tpel_pixels_mc12_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1318.     int i,j;
  1319.     for (i=0; i < height; i++) {
  1320.       for (j=0; j < width; j++) {
  1321.         dst[j] = (2731*(3*src[j] + 2*src[j+1] + 4*src[j+stride] + 3*src[j+stride+1] + 6)) >> 15;
  1322.       }
  1323.       src += stride;
  1324.       dst += stride;
  1325.     }
  1326. }
  1327. static inline void put_tpel_pixels_mc02_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1328.     int i,j;
  1329.     for (i=0; i < height; i++) {
  1330.       for (j=0; j < width; j++) {
  1331.         dst[j] = (683*(src[j] + 2*src[j+stride] + 1)) >> 11;
  1332.       }
  1333.       src += stride;
  1334.       dst += stride;
  1335.     }
  1336. }
  1337. static inline void put_tpel_pixels_mc21_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1338.     int i,j;
  1339.     for (i=0; i < height; i++) {
  1340.       for (j=0; j < width; j++) {
  1341.         dst[j] = (2731*(3*src[j] + 4*src[j+1] + 2*src[j+stride] + 3*src[j+stride+1] + 6)) >> 15;
  1342.       }
  1343.       src += stride;
  1344.       dst += stride;
  1345.     }
  1346. }
  1347. static inline void put_tpel_pixels_mc22_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1348.     int i,j;
  1349.     for (i=0; i < height; i++) {
  1350.       for (j=0; j < width; j++) {
  1351.         dst[j] = (2731*(2*src[j] + 3*src[j+1] + 3*src[j+stride] + 4*src[j+stride+1] + 6)) >> 15;
  1352.       }
  1353.       src += stride;
  1354.       dst += stride;
  1355.     }
  1356. }
  1357. static inline void avg_tpel_pixels_mc00_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1358.     switch(width){
  1359.     case 2: avg_pixels2_c (dst, src, stride, height); break;
  1360.     case 4: avg_pixels4_c (dst, src, stride, height); break;
  1361.     case 8: avg_pixels8_c (dst, src, stride, height); break;
  1362.     case 16:avg_pixels16_c(dst, src, stride, height); break;
  1363.     }
  1364. }
  1365. static inline void avg_tpel_pixels_mc10_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1366.     int i,j;
  1367.     for (i=0; i < height; i++) {
  1368.       for (j=0; j < width; j++) {
  1369.         dst[j] = (dst[j] + ((683*(2*src[j] + src[j+1] + 1)) >> 11) + 1) >> 1;
  1370.       }
  1371.       src += stride;
  1372.       dst += stride;
  1373.     }
  1374. }
  1375. static inline void avg_tpel_pixels_mc20_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1376.     int i,j;
  1377.     for (i=0; i < height; i++) {
  1378.       for (j=0; j < width; j++) {
  1379.         dst[j] = (dst[j] + ((683*(src[j] + 2*src[j+1] + 1)) >> 11) + 1) >> 1;
  1380.       }
  1381.       src += stride;
  1382.       dst += stride;
  1383.     }
  1384. }
  1385. static inline void avg_tpel_pixels_mc01_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1386.     int i,j;
  1387.     for (i=0; i < height; i++) {
  1388.       for (j=0; j < width; j++) {
  1389.         dst[j] = (dst[j] + ((683*(2*src[j] + src[j+stride] + 1)) >> 11) + 1) >> 1;
  1390.       }
  1391.       src += stride;
  1392.       dst += stride;
  1393.     }
  1394. }
  1395. static inline void avg_tpel_pixels_mc11_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1396.     int i,j;
  1397.     for (i=0; i < height; i++) {
  1398.       for (j=0; j < width; j++) {
  1399.         dst[j] = (dst[j] + ((2731*(4*src[j] + 3*src[j+1] + 3*src[j+stride] + 2*src[j+stride+1] + 6)) >> 15) + 1) >> 1;
  1400.       }
  1401.       src += stride;
  1402.       dst += stride;
  1403.     }
  1404. }
  1405. static inline void avg_tpel_pixels_mc12_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1406.     int i,j;
  1407.     for (i=0; i < height; i++) {
  1408.       for (j=0; j < width; j++) {
  1409.         dst[j] = (dst[j] + ((2731*(3*src[j] + 2*src[j+1] + 4*src[j+stride] + 3*src[j+stride+1] + 6)) >> 15) + 1) >> 1;
  1410.       }
  1411.       src += stride;
  1412.       dst += stride;
  1413.     }
  1414. }
  1415. static inline void avg_tpel_pixels_mc02_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1416.     int i,j;
  1417.     for (i=0; i < height; i++) {
  1418.       for (j=0; j < width; j++) {
  1419.         dst[j] = (dst[j] + ((683*(src[j] + 2*src[j+stride] + 1)) >> 11) + 1) >> 1;
  1420.       }
  1421.       src += stride;
  1422.       dst += stride;
  1423.     }
  1424. }
  1425. static inline void avg_tpel_pixels_mc21_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1426.     int i,j;
  1427.     for (i=0; i < height; i++) {
  1428.       for (j=0; j < width; j++) {
  1429.         dst[j] = (dst[j] + ((2731*(3*src[j] + 4*src[j+1] + 2*src[j+stride] + 3*src[j+stride+1] + 6)) >> 15) + 1) >> 1;
  1430.       }
  1431.       src += stride;
  1432.       dst += stride;
  1433.     }
  1434. }
  1435. static inline void avg_tpel_pixels_mc22_c(uint8_t *dst, const uint8_t *src, int stride, int width, int height){
  1436.     int i,j;
  1437.     for (i=0; i < height; i++) {
  1438.       for (j=0; j < width; j++) {
  1439.         dst[j] = (dst[j] + ((2731*(2*src[j] + 3*src[j+1] + 3*src[j+stride] + 4*src[j+stride+1] + 6)) >> 15) + 1) >> 1;
  1440.       }
  1441.       src += stride;
  1442.       dst += stride;
  1443.     }
  1444. }
  1445. #if 0
  1446. #define TPEL_WIDTH(width)
  1447. static void put_tpel_pixels ## width ## _mc00_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1448.     void put_tpel_pixels_mc00_c(dst, src, stride, width, height);}
  1449. static void put_tpel_pixels ## width ## _mc10_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1450.     void put_tpel_pixels_mc10_c(dst, src, stride, width, height);}
  1451. static void put_tpel_pixels ## width ## _mc20_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1452.     void put_tpel_pixels_mc20_c(dst, src, stride, width, height);}
  1453. static void put_tpel_pixels ## width ## _mc01_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1454.     void put_tpel_pixels_mc01_c(dst, src, stride, width, height);}
  1455. static void put_tpel_pixels ## width ## _mc11_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1456.     void put_tpel_pixels_mc11_c(dst, src, stride, width, height);}
  1457. static void put_tpel_pixels ## width ## _mc21_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1458.     void put_tpel_pixels_mc21_c(dst, src, stride, width, height);}
  1459. static void put_tpel_pixels ## width ## _mc02_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1460.     void put_tpel_pixels_mc02_c(dst, src, stride, width, height);}
  1461. static void put_tpel_pixels ## width ## _mc12_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1462.     void put_tpel_pixels_mc12_c(dst, src, stride, width, height);}
  1463. static void put_tpel_pixels ## width ## _mc22_c(uint8_t *dst, const uint8_t *src, int stride, int height){
  1464.     void put_tpel_pixels_mc22_c(dst, src, stride, width, height);}
  1465. #endif
  1466. #define H264_CHROMA_MC(OPNAME, OP)
  1467. static void OPNAME ## h264_chroma_mc2_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){
  1468.     const int A=(8-x)*(8-y);
  1469.     const int B=(  x)*(8-y);
  1470.     const int C=(8-x)*(  y);
  1471.     const int D=(  x)*(  y);
  1472.     int i;
  1473.     
  1474.     assert(x<8 && y<8 && x>=0 && y>=0);
  1475.     if(D){
  1476.         for(i=0; i<h; i++){
  1477.             OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));
  1478.             OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));
  1479.             dst+= stride;
  1480.             src+= stride;
  1481.         }
  1482.     }else{
  1483.         const int E= B+C;
  1484.         const int step= C ? stride : 1;
  1485.         for(i=0; i<h; i++){
  1486.             OP(dst[0], (A*src[0] + E*src[step+0]));
  1487.             OP(dst[1], (A*src[1] + E*src[step+1]));
  1488.             dst+= stride;
  1489.             src+= stride;
  1490.         }
  1491.     }
  1492. }
  1493. static void OPNAME ## h264_chroma_mc4_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){
  1494.     const int A=(8-x)*(8-y);
  1495.     const int B=(  x)*(8-y);
  1496.     const int C=(8-x)*(  y);
  1497.     const int D=(  x)*(  y);
  1498.     int i;
  1499.     
  1500.     assert(x<8 && y<8 && x>=0 && y>=0);
  1501.     if(D){
  1502.         for(i=0; i<h; i++){
  1503.             OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));
  1504.             OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));
  1505.             OP(dst[2], (A*src[2] + B*src[3] + C*src[stride+2] + D*src[stride+3]));
  1506.             OP(dst[3], (A*src[3] + B*src[4] + C*src[stride+3] + D*src[stride+4]));
  1507.             dst+= stride;
  1508.             src+= stride;
  1509.         }
  1510.     }else{
  1511.         const int E= B+C;
  1512.         const int step= C ? stride : 1;
  1513.         for(i=0; i<h; i++){
  1514.             OP(dst[0], (A*src[0] + E*src[step+0]));
  1515.             OP(dst[1], (A*src[1] + E*src[step+1]));
  1516.             OP(dst[2], (A*src[2] + E*src[step+2]));
  1517.             OP(dst[3], (A*src[3] + E*src[step+3]));
  1518.             dst+= stride;
  1519.             src+= stride;
  1520.         }
  1521.     }
  1522. }
  1523. static void OPNAME ## h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){
  1524.     const int A=(8-x)*(8-y);
  1525.     const int B=(  x)*(8-y);
  1526.     const int C=(8-x)*(  y);
  1527.     const int D=(  x)*(  y);
  1528.     int i;
  1529.     
  1530.     assert(x<8 && y<8 && x>=0 && y>=0);
  1531.     if(D){
  1532.         for(i=0; i<h; i++){
  1533.             OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));
  1534.             OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));
  1535.             OP(dst[2], (A*src[2] + B*src[3] + C*src[stride+2] + D*src[stride+3]));
  1536.             OP(dst[3], (A*src[3] + B*src[4] + C*src[stride+3] + D*src[stride+4]));
  1537.             OP(dst[4], (A*src[4] + B*src[5] + C*src[stride+4] + D*src[stride+5]));
  1538.             OP(dst[5], (A*src[5] + B*src[6] + C*src[stride+5] + D*src[stride+6]));
  1539.             OP(dst[6], (A*src[6] + B*src[7] + C*src[stride+6] + D*src[stride+7]));
  1540.             OP(dst[7], (A*src[7] + B*src[8] + C*src[stride+7] + D*src[stride+8]));
  1541.             dst+= stride;
  1542.             src+= stride;
  1543.         }
  1544.     }else{
  1545.         const int E= B+C;
  1546.         const int step= C ? stride : 1;
  1547.         for(i=0; i<h; i++){
  1548.             OP(dst[0], (A*src[0] + E*src[step+0]));
  1549.             OP(dst[1], (A*src[1] + E*src[step+1]));
  1550.             OP(dst[2], (A*src[2] + E*src[step+2]));
  1551.             OP(dst[3], (A*src[3] + E*src[step+3]));
  1552.             OP(dst[4], (A*src[4] + E*src[step+4]));
  1553.             OP(dst[5], (A*src[5] + E*src[step+5]));
  1554.             OP(dst[6], (A*src[6] + E*src[step+6]));
  1555.             OP(dst[7], (A*src[7] + E*src[step+7]));
  1556.             dst+= stride;
  1557.             src+= stride;
  1558.         }
  1559.     }
  1560. }
  1561. #define op_avg(a, b) a = (((a)+(((b) + 32)>>6)+1)>>1)
  1562. #define op_put(a, b) a = (((b) + 32)>>6)
  1563. H264_CHROMA_MC(put_       , op_put)
  1564. H264_CHROMA_MC(avg_       , op_avg)
  1565. #undef op_avg
  1566. #undef op_put
  1567. static void put_no_rnd_h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){
  1568.     const int A=(8-x)*(8-y);
  1569.     const int B=(  x)*(8-y);
  1570.     const int C=(8-x)*(  y);
  1571.     const int D=(  x)*(  y);
  1572.     int i;
  1573.     assert(x<8 && y<8 && x>=0 && y>=0);
  1574.     for(i=0; i<h; i++)
  1575.     {
  1576.         dst[0] = (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1] + 32 - 4) >> 6;
  1577.         dst[1] = (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2] + 32 - 4) >> 6;
  1578.         dst[2] = (A*src[2] + B*src[3] + C*src[stride+2] + D*src[stride+3] + 32 - 4) >> 6;
  1579.         dst[3] = (A*src[3] + B*src[4] + C*src[stride+3] + D*src[stride+4] + 32 - 4) >> 6;
  1580.         dst[4] = (A*src[4] + B*src[5] + C*src[stride+4] + D*src[stride+5] + 32 - 4) >> 6;
  1581.         dst[5] = (A*src[5] + B*src[6] + C*src[stride+5] + D*src[stride+6] + 32 - 4) >> 6;
  1582.         dst[6] = (A*src[6] + B*src[7] + C*src[stride+6] + D*src[stride+7] + 32 - 4) >> 6;
  1583.         dst[7] = (A*src[7] + B*src[8] + C*src[stride+7] + D*src[stride+8] + 32 - 4) >> 6;
  1584.         dst+= stride;
  1585.         src+= stride;
  1586.     }
  1587. }
  1588. #define QPEL_MC(r, OPNAME, RND, OP) 
  1589. static void OPNAME ## mpeg4_qpel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){
  1590.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  1591.     int i;
  1592.     for(i=0; i<h; i++)
  1593.     {
  1594.         OP(dst[0], (src[0]+src[1])*20 - (src[0]+src[2])*6 + (src[1]+src[3])*3 - (src[2]+src[4]));
  1595.         OP(dst[1], (src[1]+src[2])*20 - (src[0]+src[3])*6 + (src[0]+src[4])*3 - (src[1]+src[5]));
  1596.         OP(dst[2], (src[2]+src[3])*20 - (src[1]+src[4])*6 + (src[0]+src[5])*3 - (src[0]+src[6]));
  1597.         OP(dst[3], (src[3]+src[4])*20 - (src[2]+src[5])*6 + (src[1]+src[6])*3 - (src[0]+src[7]));
  1598.         OP(dst[4], (src[4]+src[5])*20 - (src[3]+src[6])*6 + (src[2]+src[7])*3 - (src[1]+src[8]));
  1599.         OP(dst[5], (src[5]+src[6])*20 - (src[4]+src[7])*6 + (src[3]+src[8])*3 - (src[2]+src[8]));
  1600.         OP(dst[6], (src[6]+src[7])*20 - (src[5]+src[8])*6 + (src[4]+src[8])*3 - (src[3]+src[7]));
  1601.         OP(dst[7], (src[7]+src[8])*20 - (src[6]+src[8])*6 + (src[5]+src[7])*3 - (src[4]+src[6]));
  1602.         dst+=dstStride;
  1603.         src+=srcStride;
  1604.     }
  1605. }
  1606. static void OPNAME ## mpeg4_qpel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  1607.     const int w=8;
  1608.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  1609.     int i;
  1610.     for(i=0; i<w; i++)
  1611.     {
  1612.         const int src0= src[0*srcStride];
  1613.         const int src1= src[1*srcStride];
  1614.         const int src2= src[2*srcStride];
  1615.         const int src3= src[3*srcStride];
  1616.         const int src4= src[4*srcStride];
  1617.         const int src5= src[5*srcStride];
  1618.         const int src6= src[6*srcStride];
  1619.         const int src7= src[7*srcStride];
  1620.         const int src8= src[8*srcStride];
  1621.         OP(dst[0*dstStride], (src0+src1)*20 - (src0+src2)*6 + (src1+src3)*3 - (src2+src4));
  1622.         OP(dst[1*dstStride], (src1+src2)*20 - (src0+src3)*6 + (src0+src4)*3 - (src1+src5));
  1623.         OP(dst[2*dstStride], (src2+src3)*20 - (src1+src4)*6 + (src0+src5)*3 - (src0+src6));
  1624.         OP(dst[3*dstStride], (src3+src4)*20 - (src2+src5)*6 + (src1+src6)*3 - (src0+src7));
  1625.         OP(dst[4*dstStride], (src4+src5)*20 - (src3+src6)*6 + (src2+src7)*3 - (src1+src8));
  1626.         OP(dst[5*dstStride], (src5+src6)*20 - (src4+src7)*6 + (src3+src8)*3 - (src2+src8));
  1627.         OP(dst[6*dstStride], (src6+src7)*20 - (src5+src8)*6 + (src4+src8)*3 - (src3+src7));
  1628.         OP(dst[7*dstStride], (src7+src8)*20 - (src6+src8)*6 + (src5+src7)*3 - (src4+src6));
  1629.         dst++;
  1630.         src++;
  1631.     }
  1632. }
  1633. static void OPNAME ## mpeg4_qpel16_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){
  1634.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  1635.     int i;
  1636.     
  1637.     for(i=0; i<h; i++)
  1638.     {
  1639.         OP(dst[ 0], (src[ 0]+src[ 1])*20 - (src[ 0]+src[ 2])*6 + (src[ 1]+src[ 3])*3 - (src[ 2]+src[ 4]));
  1640.         OP(dst[ 1], (src[ 1]+src[ 2])*20 - (src[ 0]+src[ 3])*6 + (src[ 0]+src[ 4])*3 - (src[ 1]+src[ 5]));
  1641.         OP(dst[ 2], (src[ 2]+src[ 3])*20 - (src[ 1]+src[ 4])*6 + (src[ 0]+src[ 5])*3 - (src[ 0]+src[ 6]));
  1642.         OP(dst[ 3], (src[ 3]+src[ 4])*20 - (src[ 2]+src[ 5])*6 + (src[ 1]+src[ 6])*3 - (src[ 0]+src[ 7]));
  1643.         OP(dst[ 4], (src[ 4]+src[ 5])*20 - (src[ 3]+src[ 6])*6 + (src[ 2]+src[ 7])*3 - (src[ 1]+src[ 8]));
  1644.         OP(dst[ 5], (src[ 5]+src[ 6])*20 - (src[ 4]+src[ 7])*6 + (src[ 3]+src[ 8])*3 - (src[ 2]+src[ 9]));
  1645.         OP(dst[ 6], (src[ 6]+src[ 7])*20 - (src[ 5]+src[ 8])*6 + (src[ 4]+src[ 9])*3 - (src[ 3]+src[10]));
  1646.         OP(dst[ 7], (src[ 7]+src[ 8])*20 - (src[ 6]+src[ 9])*6 + (src[ 5]+src[10])*3 - (src[ 4]+src[11]));
  1647.         OP(dst[ 8], (src[ 8]+src[ 9])*20 - (src[ 7]+src[10])*6 + (src[ 6]+src[11])*3 - (src[ 5]+src[12]));
  1648.         OP(dst[ 9], (src[ 9]+src[10])*20 - (src[ 8]+src[11])*6 + (src[ 7]+src[12])*3 - (src[ 6]+src[13]));
  1649.         OP(dst[10], (src[10]+src[11])*20 - (src[ 9]+src[12])*6 + (src[ 8]+src[13])*3 - (src[ 7]+src[14]));
  1650.         OP(dst[11], (src[11]+src[12])*20 - (src[10]+src[13])*6 + (src[ 9]+src[14])*3 - (src[ 8]+src[15]));
  1651.         OP(dst[12], (src[12]+src[13])*20 - (src[11]+src[14])*6 + (src[10]+src[15])*3 - (src[ 9]+src[16]));
  1652.         OP(dst[13], (src[13]+src[14])*20 - (src[12]+src[15])*6 + (src[11]+src[16])*3 - (src[10]+src[16]));
  1653.         OP(dst[14], (src[14]+src[15])*20 - (src[13]+src[16])*6 + (src[12]+src[16])*3 - (src[11]+src[15]));
  1654.         OP(dst[15], (src[15]+src[16])*20 - (src[14]+src[16])*6 + (src[13]+src[15])*3 - (src[12]+src[14]));
  1655.         dst+=dstStride;
  1656.         src+=srcStride;
  1657.     }
  1658. }
  1659. static void OPNAME ## mpeg4_qpel16_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  1660.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  1661.     int i;
  1662.     const int w=16;
  1663.     for(i=0; i<w; i++)
  1664.     {
  1665.         const int src0= src[0*srcStride];
  1666.         const int src1= src[1*srcStride];
  1667.         const int src2= src[2*srcStride];
  1668.         const int src3= src[3*srcStride];
  1669.         const int src4= src[4*srcStride];
  1670.         const int src5= src[5*srcStride];
  1671.         const int src6= src[6*srcStride];
  1672.         const int src7= src[7*srcStride];
  1673.         const int src8= src[8*srcStride];
  1674.         const int src9= src[9*srcStride];
  1675.         const int src10= src[10*srcStride];
  1676.         const int src11= src[11*srcStride];
  1677.         const int src12= src[12*srcStride];
  1678.         const int src13= src[13*srcStride];
  1679.         const int src14= src[14*srcStride];
  1680.         const int src15= src[15*srcStride];
  1681.         const int src16= src[16*srcStride];
  1682.         OP(dst[ 0*dstStride], (src0 +src1 )*20 - (src0 +src2 )*6 + (src1 +src3 )*3 - (src2 +src4 ));
  1683.         OP(dst[ 1*dstStride], (src1 +src2 )*20 - (src0 +src3 )*6 + (src0 +src4 )*3 - (src1 +src5 ));
  1684.         OP(dst[ 2*dstStride], (src2 +src3 )*20 - (src1 +src4 )*6 + (src0 +src5 )*3 - (src0 +src6 ));
  1685.         OP(dst[ 3*dstStride], (src3 +src4 )*20 - (src2 +src5 )*6 + (src1 +src6 )*3 - (src0 +src7 ));
  1686.         OP(dst[ 4*dstStride], (src4 +src5 )*20 - (src3 +src6 )*6 + (src2 +src7 )*3 - (src1 +src8 ));
  1687.         OP(dst[ 5*dstStride], (src5 +src6 )*20 - (src4 +src7 )*6 + (src3 +src8 )*3 - (src2 +src9 ));
  1688.         OP(dst[ 6*dstStride], (src6 +src7 )*20 - (src5 +src8 )*6 + (src4 +src9 )*3 - (src3 +src10));
  1689.         OP(dst[ 7*dstStride], (src7 +src8 )*20 - (src6 +src9 )*6 + (src5 +src10)*3 - (src4 +src11));
  1690.         OP(dst[ 8*dstStride], (src8 +src9 )*20 - (src7 +src10)*6 + (src6 +src11)*3 - (src5 +src12));
  1691.         OP(dst[ 9*dstStride], (src9 +src10)*20 - (src8 +src11)*6 + (src7 +src12)*3 - (src6 +src13));
  1692.         OP(dst[10*dstStride], (src10+src11)*20 - (src9 +src12)*6 + (src8 +src13)*3 - (src7 +src14));
  1693.         OP(dst[11*dstStride], (src11+src12)*20 - (src10+src13)*6 + (src9 +src14)*3 - (src8 +src15));
  1694.         OP(dst[12*dstStride], (src12+src13)*20 - (src11+src14)*6 + (src10+src15)*3 - (src9 +src16));
  1695.         OP(dst[13*dstStride], (src13+src14)*20 - (src12+src15)*6 + (src11+src16)*3 - (src10+src16));
  1696.         OP(dst[14*dstStride], (src14+src15)*20 - (src13+src16)*6 + (src12+src16)*3 - (src11+src15));
  1697.         OP(dst[15*dstStride], (src15+src16)*20 - (src14+src16)*6 + (src13+src15)*3 - (src12+src14));
  1698.         dst++;
  1699.         src++;
  1700.     }
  1701. }
  1702. static void OPNAME ## qpel8_mc00_c (uint8_t *dst, uint8_t *src, int stride){
  1703.     OPNAME ## pixels8_c(dst, src, stride, 8);
  1704. }
  1705. static void OPNAME ## qpel8_mc10_c(uint8_t *dst, uint8_t *src, int stride){
  1706.     uint8_t half[64];
  1707.     put ## RND ## mpeg4_qpel8_h_lowpass(half, src, 8, stride, 8);
  1708.     OPNAME ## pixels8_l2(dst, src, half, stride, stride, 8, 8);
  1709. }
  1710. static void OPNAME ## qpel8_mc20_c(uint8_t *dst, uint8_t *src, int stride){
  1711.     OPNAME ## mpeg4_qpel8_h_lowpass(dst, src, stride, stride, 8);
  1712. }
  1713. static void OPNAME ## qpel8_mc30_c(uint8_t *dst, uint8_t *src, int stride){
  1714.     uint8_t half[64];
  1715.     put ## RND ## mpeg4_qpel8_h_lowpass(half, src, 8, stride, 8);
  1716.     OPNAME ## pixels8_l2(dst, src+1, half, stride, stride, 8, 8);
  1717. }
  1718. static void OPNAME ## qpel8_mc01_c(uint8_t *dst, uint8_t *src, int stride){
  1719.     uint8_t full[16*9];
  1720.     uint8_t half[64];
  1721.     copy_block9(full, src, 16, stride, 9);
  1722.     put ## RND ## mpeg4_qpel8_v_lowpass(half, full, 8, 16);
  1723.     OPNAME ## pixels8_l2(dst, full, half, stride, 16, 8, 8);
  1724. }
  1725. static void OPNAME ## qpel8_mc02_c(uint8_t *dst, uint8_t *src, int stride){
  1726.     uint8_t full[16*9];
  1727.     copy_block9(full, src, 16, stride, 9);
  1728.     OPNAME ## mpeg4_qpel8_v_lowpass(dst, full, stride, 16);
  1729. }
  1730. static void OPNAME ## qpel8_mc03_c(uint8_t *dst, uint8_t *src, int stride){
  1731.     uint8_t full[16*9];
  1732.     uint8_t half[64];
  1733.     copy_block9(full, src, 16, stride, 9);
  1734.     put ## RND ## mpeg4_qpel8_v_lowpass(half, full, 8, 16);
  1735.     OPNAME ## pixels8_l2(dst, full+16, half, stride, 16, 8, 8);
  1736. }
  1737. void ff_ ## OPNAME ## qpel8_mc11_old_c(uint8_t *dst, uint8_t *src, int stride){
  1738.     uint8_t full[16*9];
  1739.     uint8_t halfH[72];
  1740.     uint8_t halfV[64];
  1741.     uint8_t halfHV[64];
  1742.     copy_block9(full, src, 16, stride, 9);
  1743.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1744.     put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);
  1745.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1746.     OPNAME ## pixels8_l4(dst, full, halfH, halfV, halfHV, stride, 16, 8, 8, 8, 8);
  1747. }
  1748. static void OPNAME ## qpel8_mc11_c(uint8_t *dst, uint8_t *src, int stride){
  1749.     uint8_t full[16*9];
  1750.     uint8_t halfH[72];
  1751.     uint8_t halfHV[64];
  1752.     copy_block9(full, src, 16, stride, 9);
  1753.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1754.     put ## RND ## pixels8_l2(halfH, halfH, full, 8, 8, 16, 9);
  1755.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1756.     OPNAME ## pixels8_l2(dst, halfH, halfHV, stride, 8, 8, 8);
  1757. }
  1758. void ff_ ## OPNAME ## qpel8_mc31_old_c(uint8_t *dst, uint8_t *src, int stride){
  1759.     uint8_t full[16*9];
  1760.     uint8_t halfH[72];
  1761.     uint8_t halfV[64];
  1762.     uint8_t halfHV[64];
  1763.     copy_block9(full, src, 16, stride, 9);
  1764.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1765.     put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);
  1766.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1767.     OPNAME ## pixels8_l4(dst, full+1, halfH, halfV, halfHV, stride, 16, 8, 8, 8, 8);
  1768. }
  1769. static void OPNAME ## qpel8_mc31_c(uint8_t *dst, uint8_t *src, int stride){
  1770.     uint8_t full[16*9];
  1771.     uint8_t halfH[72];
  1772.     uint8_t halfHV[64];
  1773.     copy_block9(full, src, 16, stride, 9);
  1774.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1775.     put ## RND ## pixels8_l2(halfH, halfH, full+1, 8, 8, 16, 9);
  1776.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1777.     OPNAME ## pixels8_l2(dst, halfH, halfHV, stride, 8, 8, 8);
  1778. }
  1779. void ff_ ## OPNAME ## qpel8_mc13_old_c(uint8_t *dst, uint8_t *src, int stride){
  1780.     uint8_t full[16*9];
  1781.     uint8_t halfH[72];
  1782.     uint8_t halfV[64];
  1783.     uint8_t halfHV[64];
  1784.     copy_block9(full, src, 16, stride, 9);
  1785.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1786.     put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);
  1787.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1788.     OPNAME ## pixels8_l4(dst, full+16, halfH+8, halfV, halfHV, stride, 16, 8, 8, 8, 8);
  1789. }
  1790. static void OPNAME ## qpel8_mc13_c(uint8_t *dst, uint8_t *src, int stride){
  1791.     uint8_t full[16*9];
  1792.     uint8_t halfH[72];
  1793.     uint8_t halfHV[64];
  1794.     copy_block9(full, src, 16, stride, 9);
  1795.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1796.     put ## RND ## pixels8_l2(halfH, halfH, full, 8, 8, 16, 9);
  1797.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1798.     OPNAME ## pixels8_l2(dst, halfH+8, halfHV, stride, 8, 8, 8);
  1799. }
  1800. void ff_ ## OPNAME ## qpel8_mc33_old_c(uint8_t *dst, uint8_t *src, int stride){
  1801.     uint8_t full[16*9];
  1802.     uint8_t halfH[72];
  1803.     uint8_t halfV[64];
  1804.     uint8_t halfHV[64];
  1805.     copy_block9(full, src, 16, stride, 9);
  1806.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full  , 8, 16, 9);
  1807.     put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);
  1808.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1809.     OPNAME ## pixels8_l4(dst, full+17, halfH+8, halfV, halfHV, stride, 16, 8, 8, 8, 8);
  1810. }
  1811. static void OPNAME ## qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride){
  1812.     uint8_t full[16*9];
  1813.     uint8_t halfH[72];
  1814.     uint8_t halfHV[64];
  1815.     copy_block9(full, src, 16, stride, 9);
  1816.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1817.     put ## RND ## pixels8_l2(halfH, halfH, full+1, 8, 8, 16, 9);
  1818.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1819.     OPNAME ## pixels8_l2(dst, halfH+8, halfHV, stride, 8, 8, 8);
  1820. }
  1821. static void OPNAME ## qpel8_mc21_c(uint8_t *dst, uint8_t *src, int stride){
  1822.     uint8_t halfH[72];
  1823.     uint8_t halfHV[64];
  1824.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);
  1825.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1826.     OPNAME ## pixels8_l2(dst, halfH, halfHV, stride, 8, 8, 8);
  1827. }
  1828. static void OPNAME ## qpel8_mc23_c(uint8_t *dst, uint8_t *src, int stride){
  1829.     uint8_t halfH[72];
  1830.     uint8_t halfHV[64];
  1831.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);
  1832.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1833.     OPNAME ## pixels8_l2(dst, halfH+8, halfHV, stride, 8, 8, 8);
  1834. }
  1835. void ff_ ## OPNAME ## qpel8_mc12_old_c(uint8_t *dst, uint8_t *src, int stride){
  1836.     uint8_t full[16*9];
  1837.     uint8_t halfH[72];
  1838.     uint8_t halfV[64];
  1839.     uint8_t halfHV[64];
  1840.     copy_block9(full, src, 16, stride, 9);
  1841.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1842.     put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);
  1843.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1844.     OPNAME ## pixels8_l2(dst, halfV, halfHV, stride, 8, 8, 8);
  1845. }
  1846. static void OPNAME ## qpel8_mc12_c(uint8_t *dst, uint8_t *src, int stride){
  1847.     uint8_t full[16*9];
  1848.     uint8_t halfH[72];
  1849.     copy_block9(full, src, 16, stride, 9);
  1850.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1851.     put ## RND ## pixels8_l2(halfH, halfH, full, 8, 8, 16, 9);
  1852.     OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);
  1853. }
  1854. void ff_ ## OPNAME ## qpel8_mc32_old_c(uint8_t *dst, uint8_t *src, int stride){
  1855.     uint8_t full[16*9];
  1856.     uint8_t halfH[72];
  1857.     uint8_t halfV[64];
  1858.     uint8_t halfHV[64];
  1859.     copy_block9(full, src, 16, stride, 9);
  1860.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1861.     put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);
  1862.     put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);
  1863.     OPNAME ## pixels8_l2(dst, halfV, halfHV, stride, 8, 8, 8);
  1864. }
  1865. static void OPNAME ## qpel8_mc32_c(uint8_t *dst, uint8_t *src, int stride){
  1866.     uint8_t full[16*9];
  1867.     uint8_t halfH[72];
  1868.     copy_block9(full, src, 16, stride, 9);
  1869.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);
  1870.     put ## RND ## pixels8_l2(halfH, halfH, full+1, 8, 8, 16, 9);
  1871.     OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);
  1872. }
  1873. static void OPNAME ## qpel8_mc22_c(uint8_t *dst, uint8_t *src, int stride){
  1874.     uint8_t halfH[72];
  1875.     put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);
  1876.     OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);
  1877. }
  1878. static void OPNAME ## qpel16_mc00_c (uint8_t *dst, uint8_t *src, int stride){
  1879.     OPNAME ## pixels16_c(dst, src, stride, 16);
  1880. }
  1881. static void OPNAME ## qpel16_mc10_c(uint8_t *dst, uint8_t *src, int stride){
  1882.     uint8_t half[256];
  1883.     put ## RND ## mpeg4_qpel16_h_lowpass(half, src, 16, stride, 16);
  1884.     OPNAME ## pixels16_l2(dst, src, half, stride, stride, 16, 16);
  1885. }
  1886. static void OPNAME ## qpel16_mc20_c(uint8_t *dst, uint8_t *src, int stride){
  1887.     OPNAME ## mpeg4_qpel16_h_lowpass(dst, src, stride, stride, 16);
  1888. }
  1889. static void OPNAME ## qpel16_mc30_c(uint8_t *dst, uint8_t *src, int stride){
  1890.     uint8_t half[256];
  1891.     put ## RND ## mpeg4_qpel16_h_lowpass(half, src, 16, stride, 16);
  1892.     OPNAME ## pixels16_l2(dst, src+1, half, stride, stride, 16, 16);
  1893. }
  1894. static void OPNAME ## qpel16_mc01_c(uint8_t *dst, uint8_t *src, int stride){
  1895.     uint8_t full[24*17];
  1896.     uint8_t half[256];
  1897.     copy_block17(full, src, 24, stride, 17);
  1898.     put ## RND ## mpeg4_qpel16_v_lowpass(half, full, 16, 24);
  1899.     OPNAME ## pixels16_l2(dst, full, half, stride, 24, 16, 16);
  1900. }
  1901. static void OPNAME ## qpel16_mc02_c(uint8_t *dst, uint8_t *src, int stride){
  1902.     uint8_t full[24*17];
  1903.     copy_block17(full, src, 24, stride, 17);
  1904.     OPNAME ## mpeg4_qpel16_v_lowpass(dst, full, stride, 24);
  1905. }
  1906. static void OPNAME ## qpel16_mc03_c(uint8_t *dst, uint8_t *src, int stride){
  1907.     uint8_t full[24*17];
  1908.     uint8_t half[256];
  1909.     copy_block17(full, src, 24, stride, 17);
  1910.     put ## RND ## mpeg4_qpel16_v_lowpass(half, full, 16, 24);
  1911.     OPNAME ## pixels16_l2(dst, full+24, half, stride, 24, 16, 16);
  1912. }
  1913. void ff_ ## OPNAME ## qpel16_mc11_old_c(uint8_t *dst, uint8_t *src, int stride){
  1914.     uint8_t full[24*17];
  1915.     uint8_t halfH[272];
  1916.     uint8_t halfV[256];
  1917.     uint8_t halfHV[256];
  1918.     copy_block17(full, src, 24, stride, 17);
  1919.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  1920.     put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);
  1921.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  1922.     OPNAME ## pixels16_l4(dst, full, halfH, halfV, halfHV, stride, 24, 16, 16, 16, 16);
  1923. }
  1924. static void OPNAME ## qpel16_mc11_c(uint8_t *dst, uint8_t *src, int stride){
  1925.     uint8_t full[24*17];
  1926.     uint8_t halfH[272];
  1927.     uint8_t halfHV[256];
  1928.     copy_block17(full, src, 24, stride, 17);
  1929.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  1930.     put ## RND ## pixels16_l2(halfH, halfH, full, 16, 16, 24, 17);
  1931.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  1932.     OPNAME ## pixels16_l2(dst, halfH, halfHV, stride, 16, 16, 16);
  1933. }
  1934. void ff_ ## OPNAME ## qpel16_mc31_old_c(uint8_t *dst, uint8_t *src, int stride){
  1935.     uint8_t full[24*17];
  1936.     uint8_t halfH[272];
  1937.     uint8_t halfV[256];
  1938.     uint8_t halfHV[256];
  1939.     copy_block17(full, src, 24, stride, 17);
  1940.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  1941.     put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);
  1942.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  1943.     OPNAME ## pixels16_l4(dst, full+1, halfH, halfV, halfHV, stride, 24, 16, 16, 16, 16);
  1944. }
  1945. static void OPNAME ## qpel16_mc31_c(uint8_t *dst, uint8_t *src, int stride){
  1946.     uint8_t full[24*17];
  1947.     uint8_t halfH[272];
  1948.     uint8_t halfHV[256];
  1949.     copy_block17(full, src, 24, stride, 17);
  1950.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  1951.     put ## RND ## pixels16_l2(halfH, halfH, full+1, 16, 16, 24, 17);
  1952.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  1953.     OPNAME ## pixels16_l2(dst, halfH, halfHV, stride, 16, 16, 16);
  1954. }
  1955. void ff_ ## OPNAME ## qpel16_mc13_old_c(uint8_t *dst, uint8_t *src, int stride){
  1956.     uint8_t full[24*17];
  1957.     uint8_t halfH[272];
  1958.     uint8_t halfV[256];
  1959.     uint8_t halfHV[256];
  1960.     copy_block17(full, src, 24, stride, 17);
  1961.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  1962.     put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);
  1963.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  1964.     OPNAME ## pixels16_l4(dst, full+24, halfH+16, halfV, halfHV, stride, 24, 16, 16, 16, 16);
  1965. }
  1966. static void OPNAME ## qpel16_mc13_c(uint8_t *dst, uint8_t *src, int stride){
  1967.     uint8_t full[24*17];
  1968.     uint8_t halfH[272];
  1969.     uint8_t halfHV[256];
  1970.     copy_block17(full, src, 24, stride, 17);
  1971.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  1972.     put ## RND ## pixels16_l2(halfH, halfH, full, 16, 16, 24, 17);
  1973.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  1974.     OPNAME ## pixels16_l2(dst, halfH+16, halfHV, stride, 16, 16, 16);
  1975. }
  1976. void ff_ ## OPNAME ## qpel16_mc33_old_c(uint8_t *dst, uint8_t *src, int stride){
  1977.     uint8_t full[24*17];
  1978.     uint8_t halfH[272];
  1979.     uint8_t halfV[256];
  1980.     uint8_t halfHV[256];
  1981.     copy_block17(full, src, 24, stride, 17);
  1982.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full  , 16, 24, 17);
  1983.     put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);
  1984.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  1985.     OPNAME ## pixels16_l4(dst, full+25, halfH+16, halfV, halfHV, stride, 24, 16, 16, 16, 16);
  1986. }
  1987. static void OPNAME ## qpel16_mc33_c(uint8_t *dst, uint8_t *src, int stride){
  1988.     uint8_t full[24*17];
  1989.     uint8_t halfH[272];
  1990.     uint8_t halfHV[256];
  1991.     copy_block17(full, src, 24, stride, 17);
  1992.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  1993.     put ## RND ## pixels16_l2(halfH, halfH, full+1, 16, 16, 24, 17);
  1994.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  1995.     OPNAME ## pixels16_l2(dst, halfH+16, halfHV, stride, 16, 16, 16);
  1996. }
  1997. static void OPNAME ## qpel16_mc21_c(uint8_t *dst, uint8_t *src, int stride){
  1998.     uint8_t halfH[272];
  1999.     uint8_t halfHV[256];
  2000.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);
  2001.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  2002.     OPNAME ## pixels16_l2(dst, halfH, halfHV, stride, 16, 16, 16);
  2003. }
  2004. static void OPNAME ## qpel16_mc23_c(uint8_t *dst, uint8_t *src, int stride){
  2005.     uint8_t halfH[272];
  2006.     uint8_t halfHV[256];
  2007.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);
  2008.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  2009.     OPNAME ## pixels16_l2(dst, halfH+16, halfHV, stride, 16, 16, 16);
  2010. }
  2011. void ff_ ## OPNAME ## qpel16_mc12_old_c(uint8_t *dst, uint8_t *src, int stride){
  2012.     uint8_t full[24*17];
  2013.     uint8_t halfH[272];
  2014.     uint8_t halfV[256];
  2015.     uint8_t halfHV[256];
  2016.     copy_block17(full, src, 24, stride, 17);
  2017.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  2018.     put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);
  2019.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  2020.     OPNAME ## pixels16_l2(dst, halfV, halfHV, stride, 16, 16, 16);
  2021. }
  2022. static void OPNAME ## qpel16_mc12_c(uint8_t *dst, uint8_t *src, int stride){
  2023.     uint8_t full[24*17];
  2024.     uint8_t halfH[272];
  2025.     copy_block17(full, src, 24, stride, 17);
  2026.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  2027.     put ## RND ## pixels16_l2(halfH, halfH, full, 16, 16, 24, 17);
  2028.     OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);
  2029. }
  2030. void ff_ ## OPNAME ## qpel16_mc32_old_c(uint8_t *dst, uint8_t *src, int stride){
  2031.     uint8_t full[24*17];
  2032.     uint8_t halfH[272];
  2033.     uint8_t halfV[256];
  2034.     uint8_t halfHV[256];
  2035.     copy_block17(full, src, 24, stride, 17);
  2036.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  2037.     put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);
  2038.     put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);
  2039.     OPNAME ## pixels16_l2(dst, halfV, halfHV, stride, 16, 16, 16);
  2040. }
  2041. static void OPNAME ## qpel16_mc32_c(uint8_t *dst, uint8_t *src, int stride){
  2042.     uint8_t full[24*17];
  2043.     uint8_t halfH[272];
  2044.     copy_block17(full, src, 24, stride, 17);
  2045.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);
  2046.     put ## RND ## pixels16_l2(halfH, halfH, full+1, 16, 16, 24, 17);
  2047.     OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);
  2048. }
  2049. static void OPNAME ## qpel16_mc22_c(uint8_t *dst, uint8_t *src, int stride){
  2050.     uint8_t halfH[272];
  2051.     put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);
  2052.     OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);
  2053. }
  2054. #define op_avg(a, b) a = (((a)+cm[((b) + 16)>>5]+1)>>1)
  2055. #define op_avg_no_rnd(a, b) a = (((a)+cm[((b) + 15)>>5])>>1)
  2056. #define op_put(a, b) a = cm[((b) + 16)>>5]
  2057. #define op_put_no_rnd(a, b) a = cm[((b) + 15)>>5]
  2058. QPEL_MC(0, put_       , _       , op_put)
  2059. QPEL_MC(1, put_no_rnd_, _no_rnd_, op_put_no_rnd)
  2060. QPEL_MC(0, avg_       , _       , op_avg)
  2061. //QPEL_MC(1, avg_no_rnd , _       , op_avg)
  2062. #undef op_avg
  2063. #undef op_avg_no_rnd
  2064. #undef op_put
  2065. #undef op_put_no_rnd
  2066. #if 1
  2067. #define H264_LOWPASS(OPNAME, OP, OP2) 
  2068. /*static av_unused void OPNAME ## h264_qpel2_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  2069.     const int h=2;
  2070.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  2071.     int i;
  2072.     for(i=0; i<h; i++)
  2073.     {
  2074.         OP(dst[0], (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3]));
  2075.         OP(dst[1], (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4]));
  2076.         dst+=dstStride;
  2077.         src+=srcStride;
  2078.     }
  2079. }
  2080. static av_unused void OPNAME ## h264_qpel2_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  2081.     const int w=2;
  2082.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  2083.     int i;
  2084.     for(i=0; i<w; i++)
  2085.     {
  2086.         const int srcB= src[-2*srcStride];
  2087.         const int srcA= src[-1*srcStride];
  2088.         const int src0= src[0 *srcStride];
  2089.         const int src1= src[1 *srcStride];
  2090.         const int src2= src[2 *srcStride];
  2091.         const int src3= src[3 *srcStride];
  2092.         const int src4= src[4 *srcStride];
  2093.         OP(dst[0*dstStride], (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));
  2094.         OP(dst[1*dstStride], (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));
  2095.         dst++;
  2096.         src++;
  2097.     }
  2098. }
  2099. static av_unused void OPNAME ## h264_qpel2_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){
  2100.     const int h=2;
  2101.     const int w=2;
  2102.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  2103.     int i;
  2104.     src -= 2*srcStride;
  2105.     for(i=0; i<h+5; i++)
  2106.     {
  2107.         tmp[0]= (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3]);
  2108.         tmp[1]= (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4]);
  2109.         tmp+=tmpStride;
  2110.         src+=srcStride;
  2111.     }
  2112.     tmp -= tmpStride*(h+5-2);
  2113.     for(i=0; i<w; i++)
  2114.     {
  2115.         const int tmpB= tmp[-2*tmpStride];
  2116.         const int tmpA= tmp[-1*tmpStride];
  2117.         const int tmp0= tmp[0 *tmpStride];
  2118.         const int tmp1= tmp[1 *tmpStride];
  2119.         const int tmp2= tmp[2 *tmpStride];
  2120.         const int tmp3= tmp[3 *tmpStride];
  2121.         const int tmp4= tmp[4 *tmpStride];
  2122.         OP2(dst[0*dstStride], (tmp0+tmp1)*20 - (tmpA+tmp2)*5 + (tmpB+tmp3));
  2123.         OP2(dst[1*dstStride], (tmp1+tmp2)*20 - (tmp0+tmp3)*5 + (tmpA+tmp4));
  2124.         dst++;
  2125.         tmp++;
  2126.     }
  2127. }*/static void OPNAME ## h264_qpel4_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  2128.     const int h=4;
  2129.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  2130.     int i;
  2131.     for(i=0; i<h; i++)
  2132.     {
  2133.         OP(dst[0], (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3]));
  2134.         OP(dst[1], (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4]));
  2135.         OP(dst[2], (src[2]+src[3])*20 - (src[1 ]+src[4])*5 + (src[0 ]+src[5]));
  2136.         OP(dst[3], (src[3]+src[4])*20 - (src[2 ]+src[5])*5 + (src[1 ]+src[6]));
  2137.         dst+=dstStride;
  2138.         src+=srcStride;
  2139.     }
  2140. }
  2141. static void OPNAME ## h264_qpel4_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  2142.     const int w=4;
  2143.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  2144.     int i;
  2145.     for(i=0; i<w; i++)
  2146.     {
  2147.         const int srcB= src[-2*srcStride];
  2148.         const int srcA= src[-1*srcStride];
  2149.         const int src0= src[0 *srcStride];
  2150.         const int src1= src[1 *srcStride];
  2151.         const int src2= src[2 *srcStride];
  2152.         const int src3= src[3 *srcStride];
  2153.         const int src4= src[4 *srcStride];
  2154.         const int src5= src[5 *srcStride];
  2155.         const int src6= src[6 *srcStride];
  2156.         OP(dst[0*dstStride], (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));
  2157.         OP(dst[1*dstStride], (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));
  2158.         OP(dst[2*dstStride], (src2+src3)*20 - (src1+src4)*5 + (src0+src5));
  2159.         OP(dst[3*dstStride], (src3+src4)*20 - (src2+src5)*5 + (src1+src6));
  2160.         dst++;
  2161.         src++;
  2162.     }
  2163. }
  2164. static void OPNAME ## h264_qpel4_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){
  2165.     const int h=4;
  2166.     const int w=4;
  2167.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  2168.     int i;
  2169.     src -= 2*srcStride;
  2170.     for(i=0; i<h+5; i++)
  2171.     {
  2172.         tmp[0]= (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3]);
  2173.         tmp[1]= (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4]);
  2174.         tmp[2]= (src[2]+src[3])*20 - (src[1 ]+src[4])*5 + (src[0 ]+src[5]);
  2175.         tmp[3]= (src[3]+src[4])*20 - (src[2 ]+src[5])*5 + (src[1 ]+src[6]);
  2176.         tmp+=tmpStride;
  2177.         src+=srcStride;
  2178.     }
  2179.     tmp -= tmpStride*(h+5-2);
  2180.     for(i=0; i<w; i++)
  2181.     {
  2182.         const int tmpB= tmp[-2*tmpStride];
  2183.         const int tmpA= tmp[-1*tmpStride];
  2184.         const int tmp0= tmp[0 *tmpStride];
  2185.         const int tmp1= tmp[1 *tmpStride];
  2186.         const int tmp2= tmp[2 *tmpStride];
  2187.         const int tmp3= tmp[3 *tmpStride];
  2188.         const int tmp4= tmp[4 *tmpStride];
  2189.         const int tmp5= tmp[5 *tmpStride];
  2190.         const int tmp6= tmp[6 *tmpStride];
  2191.         OP2(dst[0*dstStride], (tmp0+tmp1)*20 - (tmpA+tmp2)*5 + (tmpB+tmp3));
  2192.         OP2(dst[1*dstStride], (tmp1+tmp2)*20 - (tmp0+tmp3)*5 + (tmpA+tmp4));
  2193.         OP2(dst[2*dstStride], (tmp2+tmp3)*20 - (tmp1+tmp4)*5 + (tmp0+tmp5));
  2194.         OP2(dst[3*dstStride], (tmp3+tmp4)*20 - (tmp2+tmp5)*5 + (tmp1+tmp6));
  2195.         dst++;
  2196.         tmp++;
  2197.     }
  2198. }
  2199. static void OPNAME ## h264_qpel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){
  2200.     const int h=8;
  2201.     uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;
  2202.     int i;
  2203.     for(i=0; i<h; i++)
  2204.     {
  2205.         OP(dst[0], (src[0]+src[1])*20 - (src[-1]+src[2])*5 + (src[-2]+src[3 ]));
  2206.         OP(dst[1], (src[1]+src[2])*20 - (src[0 ]+src[3])*5 + (src[-1]+src[4 ]));
  2207.         OP(dst[2], (src[2]+src[3])*20 - (src[1 ]+src[4])*5 + (src[0 ]+src[5 ]));
  2208.         OP(dst[3], (src[3]+src[4])*20 - (src[2 ]+src[5])*5 + (src[1 ]+src[6 ]));
  2209.         OP(dst[4], (src[4]+src[5])*20 - (src[3 ]+src[6])*5 + (src[2 ]+src[7 ]));
  2210.         OP(dst[5], (src[5]+src[6])*20 - (src[4 ]+src[7])*5 + (src[3 ]+src[8 ]));
  2211.         OP(dst[6], (src[6]+src[7])*20 - (src[5 ]+src[8])*5 + (src[4 ]+src[9 ]));
  2212.         OP(dst[7], (src[7]+src[8])*20 - (src[6 ]+src[9])*5 + (src[5 ]+src[10]));
  2213.         dst+=dstStride;
  2214.         src+=srcStride;