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

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