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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * mc.c: h264 encoder library (Motion Compensation)
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 x264 project
  5.  *
  6.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  7.  *          Loren Merritt <lorenm@u.washington.edu>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include "common.h"
  24. #ifdef HAVE_MMX
  25. #include "x86/mc.h"
  26. #endif
  27. #ifdef ARCH_PPC
  28. #include "ppc/mc.h"
  29. #endif
  30. #ifdef ARCH_ARM
  31. #include "arm/mc.h"
  32. #endif
  33. static inline void pixel_avg( uint8_t *dst,  int i_dst_stride,
  34.                               uint8_t *src1, int i_src1_stride,
  35.                               uint8_t *src2, int i_src2_stride,
  36.                               int i_width, int i_height )
  37. {
  38.     int x, y;
  39.     for( y = 0; y < i_height; y++ )
  40.     {
  41.         for( x = 0; x < i_width; x++ )
  42.         {
  43.             dst[x] = ( src1[x] + src2[x] + 1 ) >> 1;
  44.         }
  45.         dst  += i_dst_stride;
  46.         src1 += i_src1_stride;
  47.         src2 += i_src2_stride;
  48.     }
  49. }
  50. static inline void pixel_avg_wxh( uint8_t *dst, int i_dst, uint8_t *src1, int i_src1, uint8_t *src2, int i_src2, int width, int height )
  51. {
  52.     int x, y;
  53.     for( y = 0; y < height; y++ )
  54.     {
  55.         for( x = 0; x < width; x++ )
  56.         {
  57.             dst[x] = ( src1[x] + src2[x] + 1 ) >> 1;
  58.         }
  59.         src1 += i_src1;
  60.         src2 += i_src2;
  61.         dst += i_dst;
  62.     }
  63. }
  64. /* Implicit weighted bipred only:
  65.  * assumes log2_denom = 5, offset = 0, weight1 + weight2 = 64 */
  66. #define op_scale2(x) dst[x] = x264_clip_uint8( (src1[x]*i_weight1 + src2[x]*i_weight2 + (1<<5)) >> 6 )
  67. static inline void pixel_avg_weight_wxh( uint8_t *dst, int i_dst, uint8_t *src1, int i_src1, uint8_t *src2, int i_src2, int width, int height, int i_weight1 )
  68. {
  69.     int y;
  70.     const int i_weight2 = 64 - i_weight1;
  71.     for( y = 0; y<height; y++, dst += i_dst, src1 += i_src1, src2 += i_src2 )
  72.     {
  73.         op_scale2(0);
  74.         op_scale2(1);
  75.         if(width==2) continue;
  76.         op_scale2(2);
  77.         op_scale2(3);
  78.         if(width==4) continue;
  79.         op_scale2(4);
  80.         op_scale2(5);
  81.         op_scale2(6);
  82.         op_scale2(7);
  83.         if(width==8) continue;
  84.         op_scale2(8);
  85.         op_scale2(9);
  86.         op_scale2(10);
  87.         op_scale2(11);
  88.         op_scale2(12);
  89.         op_scale2(13);
  90.         op_scale2(14);
  91.         op_scale2(15);
  92.     }
  93. }
  94. #undef op_scale2
  95. #define PIXEL_AVG_C( name, width, height ) 
  96. static void name( uint8_t *pix1, int i_stride_pix1, 
  97.                   uint8_t *pix2, int i_stride_pix2, 
  98.                   uint8_t *pix3, int i_stride_pix3, int weight ) 
  99.     if( weight == 32 )
  100.         pixel_avg_wxh( pix1, i_stride_pix1, pix2, i_stride_pix2, pix3, i_stride_pix3, width, height ); 
  101.     else
  102.         pixel_avg_weight_wxh( pix1, i_stride_pix1, pix2, i_stride_pix2, pix3, i_stride_pix3, width, height, weight ); 
  103. }
  104. PIXEL_AVG_C( pixel_avg_16x16, 16, 16 )
  105. PIXEL_AVG_C( pixel_avg_16x8,  16, 8 )
  106. PIXEL_AVG_C( pixel_avg_8x16,  8, 16 )
  107. PIXEL_AVG_C( pixel_avg_8x8,   8, 8 )
  108. PIXEL_AVG_C( pixel_avg_8x4,   8, 4 )
  109. PIXEL_AVG_C( pixel_avg_4x8,   4, 8 )
  110. PIXEL_AVG_C( pixel_avg_4x4,   4, 4 )
  111. PIXEL_AVG_C( pixel_avg_4x2,   4, 2 )
  112. PIXEL_AVG_C( pixel_avg_2x4,   2, 4 )
  113. PIXEL_AVG_C( pixel_avg_2x2,   2, 2 )
  114. static void mc_copy( uint8_t *src, int i_src_stride, uint8_t *dst, int i_dst_stride, int i_width, int i_height )
  115. {
  116.     int y;
  117.     for( y = 0; y < i_height; y++ )
  118.     {
  119.         memcpy( dst, src, i_width );
  120.         src += i_src_stride;
  121.         dst += i_dst_stride;
  122.     }
  123. }
  124. #define TAPFILTER(pix, d) ((pix)[x-2*d] + (pix)[x+3*d] - 5*((pix)[x-d] + (pix)[x+2*d]) + 20*((pix)[x] + (pix)[x+d]))
  125. static void hpel_filter( uint8_t *dsth, uint8_t *dstv, uint8_t *dstc, uint8_t *src,
  126.                          int stride, int width, int height, int16_t *buf )
  127. {
  128.     int x, y;
  129.     for( y=0; y<height; y++ )
  130.     {
  131.         for( x=-2; x<width+3; x++ )
  132.         {
  133.             int v = TAPFILTER(src,stride);
  134.             dstv[x] = x264_clip_uint8((v + 16) >> 5);
  135.             buf[x+2] = v;
  136.         }
  137.         for( x=0; x<width; x++ )
  138.             dstc[x] = x264_clip_uint8((TAPFILTER(buf+2,1) + 512) >> 10);
  139.         for( x=0; x<width; x++ )
  140.             dsth[x] = x264_clip_uint8((TAPFILTER(src,1) + 16) >> 5);
  141.         dsth += stride;
  142.         dstv += stride;
  143.         dstc += stride;
  144.         src += stride;
  145.     }
  146. }
  147. static const int hpel_ref0[16] = {0,1,1,1,0,1,1,1,2,3,3,3,0,1,1,1};
  148. static const int hpel_ref1[16] = {0,0,0,0,2,2,3,2,2,2,3,2,2,2,3,2};
  149. static void mc_luma( uint8_t *dst,    int i_dst_stride,
  150.                      uint8_t *src[4], int i_src_stride,
  151.                      int mvx, int mvy,
  152.                      int i_width, int i_height )
  153. {
  154.     int qpel_idx = ((mvy&3)<<2) + (mvx&3);
  155.     int offset = (mvy>>2)*i_src_stride + (mvx>>2);
  156.     uint8_t *src1 = src[hpel_ref0[qpel_idx]] + offset + ((mvy&3) == 3) * i_src_stride;
  157.     if( qpel_idx & 5 ) /* qpel interpolation needed */
  158.     {
  159.         uint8_t *src2 = src[hpel_ref1[qpel_idx]] + offset + ((mvx&3) == 3);
  160.         pixel_avg( dst, i_dst_stride, src1, i_src_stride,
  161.                    src2, i_src_stride, i_width, i_height );
  162.     }
  163.     else
  164.     {
  165.         mc_copy( src1, i_src_stride, dst, i_dst_stride, i_width, i_height );
  166.     }
  167. }
  168. static uint8_t *get_ref( uint8_t *dst,   int *i_dst_stride,
  169.                          uint8_t *src[4], int i_src_stride,
  170.                          int mvx, int mvy,
  171.                          int i_width, int i_height )
  172. {
  173.     int qpel_idx = ((mvy&3)<<2) + (mvx&3);
  174.     int offset = (mvy>>2)*i_src_stride + (mvx>>2);
  175.     uint8_t *src1 = src[hpel_ref0[qpel_idx]] + offset + ((mvy&3) == 3) * i_src_stride;
  176.     if( qpel_idx & 5 ) /* qpel interpolation needed */
  177.     {
  178.         uint8_t *src2 = src[hpel_ref1[qpel_idx]] + offset + ((mvx&3) == 3);
  179.         pixel_avg( dst, *i_dst_stride, src1, i_src_stride,
  180.                    src2, i_src_stride, i_width, i_height );
  181.         return dst;
  182.     }
  183.     else
  184.     {
  185.         *i_dst_stride = i_src_stride;
  186.         return src1;
  187.     }
  188. }
  189. /* full chroma mc (ie until 1/8 pixel)*/
  190. static void mc_chroma( uint8_t *dst, int i_dst_stride,
  191.                        uint8_t *src, int i_src_stride,
  192.                        int mvx, int mvy,
  193.                        int i_width, int i_height )
  194. {
  195.     uint8_t *srcp;
  196.     int x, y;
  197.     const int d8x = mvx&0x07;
  198.     const int d8y = mvy&0x07;
  199.     const int cA = (8-d8x)*(8-d8y);
  200.     const int cB = d8x    *(8-d8y);
  201.     const int cC = (8-d8x)*d8y;
  202.     const int cD = d8x    *d8y;
  203.     src  += (mvy >> 3) * i_src_stride + (mvx >> 3);
  204.     srcp = &src[i_src_stride];
  205.     for( y = 0; y < i_height; y++ )
  206.     {
  207.         for( x = 0; x < i_width; x++ )
  208.         {
  209.             dst[x] = ( cA*src[x]  + cB*src[x+1] +
  210.                        cC*srcp[x] + cD*srcp[x+1] + 32 ) >> 6;
  211.         }
  212.         dst  += i_dst_stride;
  213.         src   = srcp;
  214.         srcp += i_src_stride;
  215.     }
  216. }
  217. #define MC_COPY(W) 
  218. static void mc_copy_w##W( uint8_t *dst, int i_dst, uint8_t *src, int i_src, int i_height ) 
  219.     mc_copy( src, i_src, dst, i_dst, W, i_height ); 
  220. }
  221. MC_COPY( 16 )
  222. MC_COPY( 8 )
  223. MC_COPY( 4 )
  224. static void plane_copy( uint8_t *dst, int i_dst,
  225.                         uint8_t *src, int i_src, int w, int h)
  226. {
  227.     while( h-- )
  228.     {
  229.         memcpy( dst, src, w );
  230.         dst += i_dst;
  231.         src += i_src;
  232.     }
  233. }
  234. static void prefetch_fenc_null( uint8_t *pix_y, int stride_y,
  235.                                 uint8_t *pix_uv, int stride_uv, int mb_x )
  236. {}
  237. static void prefetch_ref_null( uint8_t *pix, int stride, int parity )
  238. {}
  239. static void memzero_aligned( void * dst, int n )
  240. {
  241.     memset( dst, 0, n );
  242. }
  243. static void integral_init4h( uint16_t *sum, uint8_t *pix, int stride )
  244. {
  245.     int x, v = pix[0]+pix[1]+pix[2]+pix[3];
  246.     for( x=0; x<stride-4; x++ )
  247.     {
  248.         sum[x] = v + sum[x-stride];
  249.         v += pix[x+4] - pix[x];
  250.     }
  251. }
  252. static void integral_init8h( uint16_t *sum, uint8_t *pix, int stride )
  253. {
  254.     int x, v = pix[0]+pix[1]+pix[2]+pix[3]+pix[4]+pix[5]+pix[6]+pix[7];
  255.     for( x=0; x<stride-8; x++ )
  256.     {
  257.         sum[x] = v + sum[x-stride];
  258.         v += pix[x+8] - pix[x];
  259.     }
  260. }
  261. static void integral_init4v( uint16_t *sum8, uint16_t *sum4, int stride )
  262. {
  263.     int x;
  264.     for( x=0; x<stride-8; x++ )
  265.         sum4[x] = sum8[x+4*stride] - sum8[x];
  266.     for( x=0; x<stride-8; x++ )
  267.         sum8[x] = sum8[x+8*stride] + sum8[x+8*stride+4] - sum8[x] - sum8[x+4];
  268. }
  269. static void integral_init8v( uint16_t *sum8, int stride )
  270. {
  271.     int x;
  272.     for( x=0; x<stride-8; x++ )
  273.         sum8[x] = sum8[x+8*stride] - sum8[x];
  274. }
  275. void x264_frame_init_lowres( x264_t *h, x264_frame_t *frame )
  276. {
  277.     uint8_t *src = frame->plane[0];
  278.     int i_stride = frame->i_stride[0];
  279.     int i_height = frame->i_lines[0];
  280.     int i_width  = frame->i_width[0];
  281.     int x, y;
  282.     // duplicate last row and column so that their interpolation doesn't have to be special-cased
  283.     for( y=0; y<i_height; y++ )
  284.         src[i_width+y*i_stride] = src[i_width-1+y*i_stride];
  285.     memcpy( src+i_stride*i_height, src+i_stride*(i_height-1), i_width );
  286.     h->mc.frame_init_lowres_core( src, frame->lowres[0], frame->lowres[1], frame->lowres[2], frame->lowres[3],
  287.                                   i_stride, frame->i_stride_lowres, frame->i_width_lowres, frame->i_lines_lowres );
  288.     x264_frame_expand_border_lowres( frame );
  289.     memset( frame->i_cost_est, -1, sizeof(frame->i_cost_est) );
  290.     for( x = 0; x < h->param.i_bframe + 2; x++ )
  291.         for( y = 0; y < h->param.i_bframe + 2; y++ )
  292.             frame->i_row_satds[y][x][0] = -1;
  293.     for( y = 0; y <= !!h->param.i_bframe; y++ )
  294.         for( x = 0; x <= h->param.i_bframe; x++ )
  295.             frame->lowres_mvs[y][x][0][0] = 0x7FFF;
  296. }
  297. static void frame_init_lowres_core( uint8_t *src0, uint8_t *dst0, uint8_t *dsth, uint8_t *dstv, uint8_t *dstc,
  298.                                     int src_stride, int dst_stride, int width, int height )
  299. {
  300.     int x,y;
  301.     for( y=0; y<height; y++ )
  302.     {
  303.         uint8_t *src1 = src0+src_stride;
  304.         uint8_t *src2 = src1+src_stride;
  305.         for( x=0; x<width; x++ )
  306.         {
  307.             // slower than naive bilinear, but matches asm
  308. #define FILTER(a,b,c,d) ((((a+b+1)>>1)+((c+d+1)>>1)+1)>>1)
  309.             dst0[x] = FILTER(src0[2*x  ], src1[2*x  ], src0[2*x+1], src1[2*x+1]);
  310.             dsth[x] = FILTER(src0[2*x+1], src1[2*x+1], src0[2*x+2], src1[2*x+2]);
  311.             dstv[x] = FILTER(src1[2*x  ], src2[2*x  ], src1[2*x+1], src2[2*x+1]);
  312.             dstc[x] = FILTER(src1[2*x+1], src2[2*x+1], src1[2*x+2], src2[2*x+2]);
  313. #undef FILTER
  314.         }
  315.         src0 += src_stride*2;
  316.         dst0 += dst_stride;
  317.         dsth += dst_stride;
  318.         dstv += dst_stride;
  319.         dstc += dst_stride;
  320.     }
  321. }
  322. #if defined(__GNUC__) && (defined(ARCH_X86) || defined(ARCH_X86_64))
  323. // gcc isn't smart enough to use the "idiv" instruction
  324. static ALWAYS_INLINE int32_t div_64_32(int64_t x, int32_t y) {
  325.     int32_t quotient, remainder;
  326.     asm("idiv %4"
  327.         :"=a"(quotient), "=d"(remainder)
  328.         :"a"((uint32_t)x), "d"((int32_t)(x>>32)), "r"(y)
  329.     );
  330.     return quotient;
  331. }
  332. #else
  333. #define div_64_32(x,y) ((x)/(y))
  334. #endif
  335. /* Estimate the total amount of influence on future quality that could be had if we
  336.  * were to improve the reference samples used to inter predict any given macroblock. */
  337. static void mbtree_propagate_cost( int *dst, uint16_t *propagate_in, uint16_t *intra_costs,
  338.                                    uint16_t *inter_costs, uint16_t *inv_qscales, int len )
  339. {
  340.     int i;
  341.     for( i=0; i<len; i++ )
  342.     {
  343.         int propagate_amount = propagate_in[i] + ((intra_costs[i] * inv_qscales[i] + 128)>>8);
  344.         dst[i] = div_64_32((int64_t)propagate_amount * (intra_costs[i] - inter_costs[i]), intra_costs[i]);
  345.     }
  346. }
  347. void x264_mc_init( int cpu, x264_mc_functions_t *pf )
  348. {
  349.     pf->mc_luma   = mc_luma;
  350.     pf->get_ref   = get_ref;
  351.     pf->mc_chroma = mc_chroma;
  352.     pf->avg[PIXEL_16x16]= pixel_avg_16x16;
  353.     pf->avg[PIXEL_16x8] = pixel_avg_16x8;
  354.     pf->avg[PIXEL_8x16] = pixel_avg_8x16;
  355.     pf->avg[PIXEL_8x8]  = pixel_avg_8x8;
  356.     pf->avg[PIXEL_8x4]  = pixel_avg_8x4;
  357.     pf->avg[PIXEL_4x8]  = pixel_avg_4x8;
  358.     pf->avg[PIXEL_4x4]  = pixel_avg_4x4;
  359.     pf->avg[PIXEL_4x2]  = pixel_avg_4x2;
  360.     pf->avg[PIXEL_2x4]  = pixel_avg_2x4;
  361.     pf->avg[PIXEL_2x2]  = pixel_avg_2x2;
  362.     pf->copy_16x16_unaligned = mc_copy_w16;
  363.     pf->copy[PIXEL_16x16] = mc_copy_w16;
  364.     pf->copy[PIXEL_8x8]   = mc_copy_w8;
  365.     pf->copy[PIXEL_4x4]   = mc_copy_w4;
  366.     pf->plane_copy = plane_copy;
  367.     pf->hpel_filter = hpel_filter;
  368.     pf->prefetch_fenc = prefetch_fenc_null;
  369.     pf->prefetch_ref  = prefetch_ref_null;
  370.     pf->memcpy_aligned = memcpy;
  371.     pf->memzero_aligned = memzero_aligned;
  372.     pf->frame_init_lowres_core = frame_init_lowres_core;
  373.     pf->integral_init4h = integral_init4h;
  374.     pf->integral_init8h = integral_init8h;
  375.     pf->integral_init4v = integral_init4v;
  376.     pf->integral_init8v = integral_init8v;
  377.     pf->mbtree_propagate_cost = mbtree_propagate_cost;
  378. #ifdef HAVE_MMX
  379.     x264_mc_init_mmx( cpu, pf );
  380. #endif
  381. #ifdef ARCH_PPC
  382.     if( cpu&X264_CPU_ALTIVEC )
  383.         x264_mc_altivec_init( pf );
  384. #endif
  385. #ifdef HAVE_ARMV6
  386.     x264_mc_init_arm( cpu, pf );
  387. #endif
  388. }
  389. void x264_frame_filter( x264_t *h, x264_frame_t *frame, int mb_y, int b_end )
  390. {
  391.     const int b_interlaced = h->sh.b_mbaff;
  392.     const int stride = frame->i_stride[0] << b_interlaced;
  393.     const int width = frame->i_width[0];
  394.     int start = (mb_y*16 >> b_interlaced) - 8; // buffer = 4 for deblock + 3 for 6tap, rounded to 8
  395.     int height = ((b_end ? frame->i_lines[0] : mb_y*16) >> b_interlaced) + 8;
  396.     int offs = start*stride - 8; // buffer = 3 for 6tap, aligned to 8 for simd
  397.     int y;
  398.     if( mb_y & b_interlaced )
  399.         return;
  400.     for( y=0; y<=b_interlaced; y++, offs+=frame->i_stride[0] )
  401.     {
  402.         h->mc.hpel_filter(
  403.             frame->filtered[1] + offs,
  404.             frame->filtered[2] + offs,
  405.             frame->filtered[3] + offs,
  406.             frame->plane[0] + offs,
  407.             stride, width + 16, height - start,
  408.             h->scratch_buffer );
  409.     }
  410.     /* generate integral image:
  411.      * frame->integral contains 2 planes. in the upper plane, each element is
  412.      * the sum of an 8x8 pixel region with top-left corner on that point.
  413.      * in the lower plane, 4x4 sums (needed only with --partitions p4x4). */
  414.     if( frame->integral )
  415.     {
  416.         if( start < 0 )
  417.         {
  418.             memset( frame->integral - PADV * stride - PADH, 0, stride * sizeof(uint16_t) );
  419.             start = -PADV;
  420.         }
  421.         if( b_end )
  422.             height += PADV-9;
  423.         for( y = start; y < height; y++ )
  424.         {
  425.             uint8_t  *pix  = frame->plane[0] + y * stride - PADH;
  426.             uint16_t *sum8 = frame->integral + (y+1) * stride - PADH;
  427.             uint16_t *sum4;
  428.             if( h->frames.b_have_sub8x8_esa )
  429.             {
  430.                 h->mc.integral_init4h( sum8, pix, stride );
  431.                 sum8 -= 8*stride;
  432.                 sum4 = sum8 + stride * (frame->i_lines[0] + PADV*2);
  433.                 if( y >= 8-PADV )
  434.                     h->mc.integral_init4v( sum8, sum4, stride );
  435.             }
  436.             else
  437.             {
  438.                 h->mc.integral_init8h( sum8, pix, stride );
  439.                 if( y >= 8-PADV )
  440.                     h->mc.integral_init8v( sum8-8*stride, stride );
  441.             }
  442.         }
  443.     }
  444. }