macroblock.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:30k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * macroblock.c: h264 encoder library
  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.  *          Jason Garrett-Glaser <darkshikari@gmail.com>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program 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
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include "common/common.h"
  25. #include "macroblock.h"
  26. #define ZIG(i,y,x) level[i] = dct[x][y];
  27. static inline void zigzag_scan_2x2_dc( int16_t level[4], int16_t dct[2][2] )
  28. {
  29.     ZIG(0,0,0)
  30.     ZIG(1,0,1)
  31.     ZIG(2,1,0)
  32.     ZIG(3,1,1)
  33. }
  34. #undef ZIG
  35. /* (ref: JVT-B118)
  36.  * x264_mb_decimate_score: given dct coeffs it returns a score to see if we could empty this dct coeffs
  37.  * to 0 (low score means set it to null)
  38.  * Used in inter macroblock (luma and chroma)
  39.  *  luma: for a 8x8 block: if score < 4 -> null
  40.  *        for the complete mb: if score < 6 -> null
  41.  *  chroma: for the complete mb: if score < 7 -> null
  42.  */
  43. static int x264_mb_decimate_score( int16_t *dct, int i_max )
  44. {
  45.     static const int i_ds_table4[16] = {
  46.         3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0 };
  47.     static const int i_ds_table8[64] = {
  48.         3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,
  49.         1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,
  50.         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  51.         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
  52.     const int *ds_table = (i_max == 64) ? i_ds_table8 : i_ds_table4;
  53.     int i_score = 0;
  54.     int idx = i_max - 1;
  55.     while( idx >= 0 && dct[idx] == 0 )
  56.         idx--;
  57.     while( idx >= 0 )
  58.     {
  59.         int i_run;
  60.         if( (unsigned)(dct[idx--] + 1) > 2 )
  61.             return 9;
  62.         i_run = 0;
  63.         while( idx >= 0 && dct[idx] == 0 )
  64.         {
  65.             idx--;
  66.             i_run++;
  67.         }
  68.         i_score += ds_table[i_run];
  69.     }
  70.     return i_score;
  71. }
  72. static ALWAYS_INLINE void x264_quant_4x4( x264_t *h, int16_t dct[4][4], int i_qp, int i_ctxBlockCat, int b_intra )
  73. {
  74.     int i_quant_cat = b_intra ? CQM_4IY : CQM_4PY;
  75.     if( h->mb.b_trellis )
  76.         x264_quant_4x4_trellis( h, dct, i_quant_cat, i_qp, i_ctxBlockCat, b_intra );
  77.     else
  78.         h->quantf.quant_4x4( dct, h->quant4_mf[i_quant_cat][i_qp], h->quant4_bias[i_quant_cat][i_qp] );
  79. }
  80. static ALWAYS_INLINE void x264_quant_8x8( x264_t *h, int16_t dct[8][8], int i_qp, int b_intra )
  81. {
  82.     int i_quant_cat = b_intra ? CQM_8IY : CQM_8PY;
  83.     if( h->mb.b_trellis )
  84.         x264_quant_8x8_trellis( h, dct, i_quant_cat, i_qp, b_intra );
  85.     else
  86.         h->quantf.quant_8x8( dct, h->quant8_mf[i_quant_cat][i_qp], h->quant8_bias[i_quant_cat][i_qp] );
  87. }
  88. void x264_mb_encode_i4x4( x264_t *h, int idx, int i_qp )
  89. {
  90.     uint8_t *p_src = &h->mb.pic.p_fenc[0][block_idx_xy_fenc[idx]];
  91.     uint8_t *p_dst = &h->mb.pic.p_fdec[0][block_idx_xy_fdec[idx]];
  92.     DECLARE_ALIGNED_16( int16_t dct4x4[4][4] );
  93.     if( h->mb.b_lossless )
  94.     {
  95.         h->zigzagf.sub_4x4( h->dct.luma4x4[idx], p_src, p_dst );
  96.         return;
  97.     }
  98.     h->dctf.sub4x4_dct( dct4x4, p_src, p_dst );
  99.     x264_quant_4x4( h, dct4x4, i_qp, DCT_LUMA_4x4, 1 );
  100.     if( array_non_zero( dct4x4 ) )
  101.     {
  102.         h->zigzagf.scan_4x4( h->dct.luma4x4[idx], dct4x4 );
  103.         h->quantf.dequant_4x4( dct4x4, h->dequant4_mf[CQM_4IY], i_qp );
  104.         /* output samples to fdec */
  105.         h->dctf.add4x4_idct( p_dst, dct4x4 );
  106.     }
  107.     else
  108.         memset( h->dct.luma4x4[idx], 0, sizeof(h->dct.luma4x4[idx]));
  109. }
  110. void x264_mb_encode_i8x8( x264_t *h, int idx, int i_qp )
  111. {
  112.     int x = 8 * (idx&1);
  113.     int y = 8 * (idx>>1);
  114.     uint8_t *p_src = &h->mb.pic.p_fenc[0][x+y*FENC_STRIDE];
  115.     uint8_t *p_dst = &h->mb.pic.p_fdec[0][x+y*FDEC_STRIDE];
  116.     DECLARE_ALIGNED_16( int16_t dct8x8[8][8] );
  117.     h->dctf.sub8x8_dct8( dct8x8, p_src, p_dst );
  118.     x264_quant_8x8( h, dct8x8, i_qp, 1 );
  119.     h->zigzagf.scan_8x8( h->dct.luma8x8[idx], dct8x8 );
  120.     h->quantf.dequant_8x8( dct8x8, h->dequant8_mf[CQM_8IY], i_qp );
  121.     h->dctf.add8x8_idct8( p_dst, dct8x8 );
  122. }
  123. static void x264_mb_encode_i16x16( x264_t *h, int i_qp )
  124. {
  125.     uint8_t  *p_src = h->mb.pic.p_fenc[0];
  126.     uint8_t  *p_dst = h->mb.pic.p_fdec[0];
  127.     DECLARE_ALIGNED_16( int16_t dct4x4[16][4][4] );
  128.     DECLARE_ALIGNED_16( int16_t dct_dc4x4[4][4] );
  129.     int i;
  130.     if( h->mb.b_lossless )
  131.     {
  132.         for( i = 0; i < 16; i++ )
  133.         {
  134.             int oe = block_idx_xy_fenc[i];
  135.             int od = block_idx_xy_fdec[i];
  136.             h->zigzagf.sub_4x4( h->dct.luma4x4[i], p_src+oe, p_dst+od );
  137.             dct_dc4x4[0][block_idx_yx_1d[i]] = h->dct.luma4x4[i][0];
  138.             h->dct.luma4x4[i][0] = 0;
  139.         }
  140.         h->zigzagf.scan_4x4( h->dct.luma16x16_dc, dct_dc4x4 );
  141.         return;
  142.     }
  143.     h->dctf.sub16x16_dct( dct4x4, p_src, p_dst );
  144.     for( i = 0; i < 16; i++ )
  145.     {
  146.         /* copy dc coeff */
  147.         dct_dc4x4[0][block_idx_xy_1d[i]] = dct4x4[i][0][0];
  148.         dct4x4[i][0][0] = 0;
  149.         /* quant/scan/dequant */
  150.         x264_quant_4x4( h, dct4x4[i], i_qp, DCT_LUMA_AC, 1 );
  151.         h->zigzagf.scan_4x4( h->dct.luma4x4[i], dct4x4[i] );
  152.         h->quantf.dequant_4x4( dct4x4[i], h->dequant4_mf[CQM_4IY], i_qp );
  153.     }
  154.     h->dctf.dct4x4dc( dct_dc4x4 );
  155.     h->quantf.quant_4x4_dc( dct_dc4x4, h->quant4_mf[CQM_4IY][i_qp][0]>>1, h->quant4_bias[CQM_4IY][i_qp][0]<<1 );
  156.     h->zigzagf.scan_4x4( h->dct.luma16x16_dc, dct_dc4x4 );
  157.     /* output samples to fdec */
  158.     h->dctf.idct4x4dc( dct_dc4x4 );
  159.     x264_mb_dequant_4x4_dc( dct_dc4x4, h->dequant4_mf[CQM_4IY], i_qp );  /* XXX not inversed */
  160.     /* calculate dct coeffs */
  161.     for( i = 0; i < 16; i++ )
  162.     {
  163.         /* copy dc coeff */
  164.         dct4x4[i][0][0] = dct_dc4x4[0][block_idx_xy_1d[i]];
  165.     }
  166.     /* put pixels to fdec */
  167.     h->dctf.add16x16_idct( p_dst, dct4x4 );
  168. }
  169. void x264_mb_encode_8x8_chroma( x264_t *h, int b_inter, int i_qp )
  170. {
  171.     int i, ch;
  172.     int b_decimate = b_inter && (h->sh.i_type == SLICE_TYPE_B || h->param.analyse.b_dct_decimate);
  173.     for( ch = 0; ch < 2; ch++ )
  174.     {
  175.         uint8_t  *p_src = h->mb.pic.p_fenc[1+ch];
  176.         uint8_t  *p_dst = h->mb.pic.p_fdec[1+ch];
  177.         int i_decimate_score = 0;
  178.         DECLARE_ALIGNED_16( int16_t dct2x2[2][2]  );
  179.         DECLARE_ALIGNED_16( int16_t dct4x4[4][4][4] );
  180.         if( h->mb.b_lossless )
  181.         {
  182.             for( i = 0; i < 4; i++ )
  183.             {
  184.                 int oe = block_idx_x[i]*4 + block_idx_y[i]*4*FENC_STRIDE;
  185.                 int od = block_idx_x[i]*4 + block_idx_y[i]*4*FDEC_STRIDE;
  186.                 h->zigzagf.sub_4x4( h->dct.luma4x4[16+i+ch*4], p_src+oe, p_dst+od );
  187.                 h->dct.chroma_dc[ch][i] = h->dct.luma4x4[16+i+ch*4][0];
  188.                 h->dct.luma4x4[16+i+ch*4][0] = 0;
  189.             }
  190.             continue;
  191.         }
  192.         h->dctf.sub8x8_dct( dct4x4, p_src, p_dst );
  193.         /* calculate dct coeffs */
  194.         for( i = 0; i < 4; i++ )
  195.         {
  196.             /* copy dc coeff */
  197.             dct2x2[i>>1][i&1] = dct4x4[i][0][0];
  198.             dct4x4[i][0][0] = 0;
  199.             /* no trellis; it doesn't seem to help chroma noticeably */
  200.             h->quantf.quant_4x4( dct4x4[i], h->quant4_mf[CQM_4IC+b_inter][i_qp], h->quant4_bias[CQM_4IC+b_inter][i_qp] );
  201.             h->zigzagf.scan_4x4( h->dct.luma4x4[16+i+ch*4], dct4x4[i] );
  202.             if( b_decimate )
  203.                 i_decimate_score += x264_mb_decimate_score( h->dct.luma4x4[16+i+ch*4]+1, 15 );
  204.         }
  205.         h->dctf.dct2x2dc( dct2x2 );
  206.         h->quantf.quant_2x2_dc( dct2x2, h->quant4_mf[CQM_4IC+b_inter][i_qp][0]>>1, h->quant4_bias[CQM_4IC+b_inter][i_qp][0]<<1 );
  207.         zigzag_scan_2x2_dc( h->dct.chroma_dc[ch], dct2x2 );
  208.         /* output samples to fdec */
  209.         h->dctf.idct2x2dc( dct2x2 );
  210.         x264_mb_dequant_2x2_dc( dct2x2, h->dequant4_mf[CQM_4IC + b_inter], i_qp );  /* XXX not inversed */
  211.         if( b_decimate && i_decimate_score < 7 )
  212.         {
  213.             /* Near null chroma 8x8 block so make it null (bits saving) */
  214.             memset( &h->dct.luma4x4[16+ch*4], 0, 4 * sizeof( *h->dct.luma4x4 ) );
  215.             if( !array_non_zero( dct2x2 ) )
  216.                 continue;
  217.             memset( dct4x4, 0, sizeof( dct4x4 ) );
  218.         }
  219.         else
  220.         {
  221.             for( i = 0; i < 4; i++ )
  222.                 h->quantf.dequant_4x4( dct4x4[i], h->dequant4_mf[CQM_4IC + b_inter], i_qp );
  223.         }
  224.         dct4x4[0][0][0] = dct2x2[0][0];
  225.         dct4x4[1][0][0] = dct2x2[0][1];
  226.         dct4x4[2][0][0] = dct2x2[1][0];
  227.         dct4x4[3][0][0] = dct2x2[1][1];
  228.         h->dctf.add8x8_idct( p_dst, dct4x4 );
  229.     }
  230.     /* coded block pattern */
  231.     h->mb.i_cbp_chroma = 0;
  232.     for( i = 0; i < 8; i++ )
  233.     {
  234.         int nz = array_non_zero( h->dct.luma4x4[16+i] );
  235.         h->mb.cache.non_zero_count[x264_scan8[16+i]] = nz;
  236.         h->mb.i_cbp_chroma |= nz;
  237.     }
  238.     if( h->mb.i_cbp_chroma )
  239.         h->mb.i_cbp_chroma = 2;    /* dc+ac (we can't do only ac) */
  240.     else if( array_non_zero( h->dct.chroma_dc ) )
  241.         h->mb.i_cbp_chroma = 1;    /* dc only */
  242. }
  243. static void x264_macroblock_encode_skip( x264_t *h )
  244. {
  245.     h->mb.i_cbp_luma = 0x00;
  246.     h->mb.i_cbp_chroma = 0x00;
  247.     memset( h->mb.cache.non_zero_count, 0, X264_SCAN8_SIZE );
  248.     /* store cbp */
  249.     h->mb.cbp[h->mb.i_mb_xy] = 0;
  250. }
  251. /*****************************************************************************
  252.  * x264_macroblock_encode_pskip:
  253.  *  Encode an already marked skip block
  254.  *****************************************************************************/
  255. static void x264_macroblock_encode_pskip( x264_t *h )
  256. {
  257.     const int mvx = x264_clip3( h->mb.cache.mv[0][x264_scan8[0]][0],
  258.                                 h->mb.mv_min[0], h->mb.mv_max[0] );
  259.     const int mvy = x264_clip3( h->mb.cache.mv[0][x264_scan8[0]][1],
  260.                                 h->mb.mv_min[1], h->mb.mv_max[1] );
  261.     /* don't do pskip motion compensation if it was already done in macroblock_analyse */
  262.     if( !h->mb.b_skip_mc )
  263.     {
  264.         h->mc.mc_luma( h->mb.pic.p_fdec[0],    FDEC_STRIDE,
  265.                        h->mb.pic.p_fref[0][0], h->mb.pic.i_stride[0],
  266.                        mvx, mvy, 16, 16 );
  267.         h->mc.mc_chroma( h->mb.pic.p_fdec[1],       FDEC_STRIDE,
  268.                          h->mb.pic.p_fref[0][0][4], h->mb.pic.i_stride[1],
  269.                          mvx, mvy, 8, 8 );
  270.         h->mc.mc_chroma( h->mb.pic.p_fdec[2],       FDEC_STRIDE,
  271.                          h->mb.pic.p_fref[0][0][5], h->mb.pic.i_stride[2],
  272.                          mvx, mvy, 8, 8 );
  273.     }
  274.     x264_macroblock_encode_skip( h );
  275. }
  276. /*****************************************************************************
  277.  * x264_macroblock_encode:
  278.  *****************************************************************************/
  279. void x264_macroblock_encode( x264_t *h )
  280. {
  281.     int i_cbp_dc = 0;
  282.     int i_qp = h->mb.i_qp;
  283.     int b_decimate = h->sh.i_type == SLICE_TYPE_B || h->param.analyse.b_dct_decimate;
  284.     int b_force_no_skip = 0;
  285.     int i,j,idx;
  286.     uint8_t nnz8x8[4] = {1,1,1,1};
  287.     if( h->sh.b_mbaff
  288.         && h->mb.i_mb_xy == h->sh.i_first_mb + h->mb.i_mb_stride
  289.         && IS_SKIP(h->mb.type[h->sh.i_first_mb]) )
  290.     {
  291.         /* The first skip is predicted to be a frame mb pair.
  292.          * We don't yet support the aff part of mbaff, so force it to non-skip
  293.          * so that we can pick the aff flag. */
  294.         b_force_no_skip = 1;
  295.         if( IS_SKIP(h->mb.i_type) )
  296.         {
  297.             if( h->mb.i_type == P_SKIP )
  298.                 h->mb.i_type = P_L0;
  299.             else if( h->mb.i_type == B_SKIP )
  300.                 h->mb.i_type = B_DIRECT;
  301.         }
  302.     }
  303.     if( h->mb.i_type == P_SKIP )
  304.     {
  305.         /* A bit special */
  306.         x264_macroblock_encode_pskip( h );
  307.         return;
  308.     }
  309.     if( h->mb.i_type == B_SKIP )
  310.     {
  311.         /* don't do bskip motion compensation if it was already done in macroblock_analyse */
  312.         if( !h->mb.b_skip_mc )
  313.             x264_mb_mc( h );
  314.         x264_macroblock_encode_skip( h );
  315.         return;
  316.     }
  317.     if( h->mb.i_type == I_16x16 )
  318.     {
  319.         const int i_mode = h->mb.i_intra16x16_pred_mode;
  320.         h->mb.b_transform_8x8 = 0;
  321.         /* do the right prediction */
  322.         h->predict_16x16[i_mode]( h->mb.pic.p_fdec[0] );
  323.         /* encode the 16x16 macroblock */
  324.         x264_mb_encode_i16x16( h, i_qp );
  325.     }
  326.     else if( h->mb.i_type == I_8x8 )
  327.     {
  328.         DECLARE_ALIGNED_16( uint8_t edge[33] );
  329.         h->mb.b_transform_8x8 = 1;
  330.         /* If we already encoded 3 of the 4 i8x8 blocks, we don't have to do them again. */
  331.         if( h->mb.i_skip_intra )
  332.         {
  333.             h->mc.copy[PIXEL_16x16]( h->mb.pic.p_fdec[0], FDEC_STRIDE, h->mb.pic.i8x8_fdec_buf, 16, 16 );
  334.             /* In RD mode, restore the now-overwritten DCT data. */
  335.             if( h->mb.i_skip_intra == 2 )
  336.                 h->mc.memcpy_aligned( h->dct.luma8x8, h->mb.pic.i8x8_dct_buf, sizeof(h->mb.pic.i8x8_dct_buf) );
  337.         }
  338.         for( i = h->mb.i_skip_intra ? 3 : 0 ; i < 4; i++ )
  339.         {
  340.             uint8_t  *p_dst = &h->mb.pic.p_fdec[0][8 * (i&1) + 8 * (i>>1) * FDEC_STRIDE];
  341.             int      i_mode = h->mb.cache.intra4x4_pred_mode[x264_scan8[4*i]];
  342.             x264_predict_8x8_filter( p_dst, edge, h->mb.i_neighbour8[i], x264_pred_i4x4_neighbors[i_mode] );
  343.             h->predict_8x8[i_mode]( p_dst, edge );
  344.             x264_mb_encode_i8x8( h, i, i_qp );
  345.         }
  346.         for( i = 0; i < 4; i++ )
  347.             nnz8x8[i] = array_non_zero( h->dct.luma8x8[i] );
  348.     }
  349.     else if( h->mb.i_type == I_4x4 )
  350.     {
  351.         h->mb.b_transform_8x8 = 0;
  352.         /* If we already encoded 15 of the 16 i4x4 blocks, we don't have to do them again. */
  353.         if( h->mb.i_skip_intra )
  354.         {
  355.             h->mc.copy[PIXEL_16x16]( h->mb.pic.p_fdec[0], FDEC_STRIDE, h->mb.pic.i4x4_fdec_buf, 16, 16 );
  356.             /* In RD mode, restore the now-overwritten DCT data. */
  357.             if( h->mb.i_skip_intra == 2 )
  358.                 h->mc.memcpy_aligned( h->dct.luma4x4, h->mb.pic.i4x4_dct_buf, sizeof(h->mb.pic.i4x4_dct_buf) );
  359.         }
  360.         for( i = h->mb.i_skip_intra ? 15 : 0 ; i < 16; i++ )
  361.         {
  362.             uint8_t  *p_dst = &h->mb.pic.p_fdec[0][block_idx_xy_fdec[i]];
  363.             int      i_mode = h->mb.cache.intra4x4_pred_mode[x264_scan8[i]];
  364.             if( (h->mb.i_neighbour4[i] & (MB_TOPRIGHT|MB_TOP)) == MB_TOP )
  365.                 /* emulate missing topright samples */
  366.                 *(uint32_t*) &p_dst[4-FDEC_STRIDE] = p_dst[3-FDEC_STRIDE] * 0x01010101U;
  367.             h->predict_4x4[i_mode]( p_dst );
  368.             x264_mb_encode_i4x4( h, i, i_qp );
  369.         }
  370.     }
  371.     else    /* Inter MB */
  372.     {
  373.         int i8x8, i4x4;
  374.         int i_decimate_mb = 0;
  375.         /* Don't repeat motion compensation if it was already done in non-RD transform analysis */
  376.         if( !h->mb.b_skip_mc )
  377.             x264_mb_mc( h );
  378.         if( h->mb.b_lossless )
  379.         {
  380.             for( i4x4 = 0; i4x4 < 16; i4x4++ )
  381.             {
  382.                 h->zigzagf.sub_4x4( h->dct.luma4x4[i4x4],
  383.                                     h->mb.pic.p_fenc[0]+block_idx_xy_fenc[i4x4],
  384.                                     h->mb.pic.p_fdec[0]+block_idx_xy_fdec[i4x4] );
  385.             }
  386.         }
  387.         else if( h->mb.b_transform_8x8 )
  388.         {
  389.             DECLARE_ALIGNED_16( int16_t dct8x8[4][8][8] );
  390.             b_decimate &= !h->mb.b_trellis; // 8x8 trellis is inherently optimal decimation
  391.             h->dctf.sub16x16_dct8( dct8x8, h->mb.pic.p_fenc[0], h->mb.pic.p_fdec[0] );
  392.             h->nr_count[1] += h->mb.b_noise_reduction * 4;
  393.             for( idx = 0; idx < 4; idx++ )
  394.             {
  395.                 if( h->mb.b_noise_reduction )
  396.                     h->quantf.denoise_dct( *dct8x8[idx], h->nr_residual_sum[1], h->nr_offset[1], 64 );
  397.                 x264_quant_8x8( h, dct8x8[idx], i_qp, 0 );
  398.                 h->zigzagf.scan_8x8( h->dct.luma8x8[idx], dct8x8[idx] );
  399.                 if( b_decimate )
  400.                 {
  401.                     int i_decimate_8x8 = x264_mb_decimate_score( h->dct.luma8x8[idx], 64 );
  402.                     i_decimate_mb += i_decimate_8x8;
  403.                     if( i_decimate_8x8 < 4 )
  404.                         nnz8x8[idx] = 0;
  405.                 }
  406.                 else
  407.                     nnz8x8[idx] = array_non_zero( dct8x8[idx] );
  408.             }
  409.             if( i_decimate_mb < 6 && b_decimate )
  410.                 *(uint32_t*)nnz8x8 = 0;
  411.             else
  412.             {
  413.                 for( idx = 0; idx < 4; idx++ )
  414.                     if( nnz8x8[idx] )
  415.                     {
  416.                         h->quantf.dequant_8x8( dct8x8[idx], h->dequant8_mf[CQM_8PY], i_qp );
  417.                         h->dctf.add8x8_idct8( &h->mb.pic.p_fdec[0][(idx&1)*8 + (idx>>1)*8*FDEC_STRIDE], dct8x8[idx] );
  418.                     }
  419.             }
  420.         }
  421.         else
  422.         {
  423.             DECLARE_ALIGNED_16( int16_t dct4x4[16][4][4] );
  424.             h->dctf.sub16x16_dct( dct4x4, h->mb.pic.p_fenc[0], h->mb.pic.p_fdec[0] );
  425.             h->nr_count[0] += h->mb.b_noise_reduction * 16;
  426.             for( i8x8 = 0; i8x8 < 4; i8x8++ )
  427.             {
  428.                 int i_decimate_8x8;
  429.                 /* encode one 4x4 block */
  430.                 i_decimate_8x8 = 0;
  431.                 for( i4x4 = 0; i4x4 < 4; i4x4++ )
  432.                 {
  433.                     idx = i8x8 * 4 + i4x4;
  434.                     if( h->mb.b_noise_reduction )
  435.                         h->quantf.denoise_dct( *dct4x4[idx], h->nr_residual_sum[0], h->nr_offset[0], 16 );
  436.                     x264_quant_4x4( h, dct4x4[idx], i_qp, DCT_LUMA_4x4, 0 );
  437.                     h->zigzagf.scan_4x4( h->dct.luma4x4[idx], dct4x4[idx] );
  438.                     if( b_decimate && i_decimate_8x8 <= 6 )
  439.                         i_decimate_8x8 += x264_mb_decimate_score( h->dct.luma4x4[idx], 16 );
  440.                 }
  441.                 /* decimate this 8x8 block */
  442.                 i_decimate_mb += i_decimate_8x8;
  443.                 if( i_decimate_8x8 < 4 && b_decimate )
  444.                     nnz8x8[i8x8] = 0;
  445.             }
  446.             if( i_decimate_mb < 6 && b_decimate )
  447.                 *(uint32_t*)nnz8x8 = 0;
  448.             else
  449.             {
  450.                 for( i8x8 = 0; i8x8 < 4; i8x8++ )
  451.                     if( nnz8x8[i8x8] )
  452.                     {
  453.                         for( i = 0; i < 4; i++ )
  454.                             h->quantf.dequant_4x4( dct4x4[i8x8*4+i], h->dequant4_mf[CQM_4PY], i_qp );
  455.                         h->dctf.add8x8_idct( &h->mb.pic.p_fdec[0][(i8x8&1)*8 + (i8x8>>1)*8*FDEC_STRIDE], &dct4x4[i8x8*4] );
  456.                     }
  457.             }
  458.         }
  459.     }
  460.     /* encode chroma */
  461.     if( IS_INTRA( h->mb.i_type ) )
  462.     {
  463.         const int i_mode = h->mb.i_chroma_pred_mode;
  464.         h->predict_8x8c[i_mode]( h->mb.pic.p_fdec[1] );
  465.         h->predict_8x8c[i_mode]( h->mb.pic.p_fdec[2] );
  466.     }
  467.     /* encode the 8x8 blocks */
  468.     x264_mb_encode_8x8_chroma( h, !IS_INTRA( h->mb.i_type ), h->mb.i_chroma_qp );
  469.     /* coded block pattern and non_zero_count */
  470.     h->mb.i_cbp_luma = 0x00;
  471.     if( h->mb.i_type == I_16x16 )
  472.     {
  473.         for( i = 0; i < 16; i++ )
  474.         {
  475.             int nz = array_non_zero( h->dct.luma4x4[i] );
  476.             h->mb.cache.non_zero_count[x264_scan8[i]] = nz;
  477.             h->mb.i_cbp_luma |= nz;
  478.         }
  479.         h->mb.i_cbp_luma *= 0xf;
  480.     }
  481.     else
  482.     {
  483.         for( i = 0; i < 4; i++)
  484.         {
  485.             if(!nnz8x8[i])
  486.             {
  487.                 *(uint16_t*)&h->mb.cache.non_zero_count[x264_scan8[0+i*4]] = 0;
  488.                 *(uint16_t*)&h->mb.cache.non_zero_count[x264_scan8[2+i*4]] = 0;
  489.             }
  490.             else if( h->mb.b_transform_8x8 )
  491.             {
  492.                 *(uint16_t*)&h->mb.cache.non_zero_count[x264_scan8[0+4*i]] = nnz8x8[i] * 0x0101;
  493.                 *(uint16_t*)&h->mb.cache.non_zero_count[x264_scan8[2+4*i]] = nnz8x8[i] * 0x0101;
  494.                 h->mb.i_cbp_luma |= nnz8x8[i] << i;
  495.             }
  496.             else
  497.             {
  498.                 int nz, cbp = 0;
  499.                 for( j = 0; j < 4; j++ )
  500.                 {
  501.                     nz = array_non_zero( h->dct.luma4x4[j+4*i] );
  502.                     h->mb.cache.non_zero_count[x264_scan8[j+4*i]] = nz;
  503.                     cbp |= nz;
  504.                 }
  505.                 h->mb.i_cbp_luma |= cbp << i;
  506.             }
  507.         }
  508.     }
  509.     if( h->param.b_cabac )
  510.     {
  511.         i_cbp_dc = ( h->mb.i_type == I_16x16 && array_non_zero( h->dct.luma16x16_dc ) )
  512.                  | array_non_zero( h->dct.chroma_dc[0] ) << 1
  513.                  | array_non_zero( h->dct.chroma_dc[1] ) << 2;
  514.     }
  515.     /* store cbp */
  516.     h->mb.cbp[h->mb.i_mb_xy] = (i_cbp_dc << 8) | (h->mb.i_cbp_chroma << 4) | h->mb.i_cbp_luma;
  517.     /* Check for P_SKIP
  518.      * XXX: in the me perhaps we should take x264_mb_predict_mv_pskip into account
  519.      *      (if multiple mv give same result)*/
  520.     if( !b_force_no_skip )
  521.     {
  522.         if( h->mb.i_type == P_L0 && h->mb.i_partition == D_16x16 &&
  523.             !(h->mb.i_cbp_luma | h->mb.i_cbp_chroma) &&
  524.             *(uint32_t*)h->mb.cache.mv[0][x264_scan8[0]] == *(uint32_t*)h->mb.cache.pskip_mv
  525.             && h->mb.cache.ref[0][x264_scan8[0]] == 0 )
  526.         {
  527.             h->mb.i_type = P_SKIP;
  528.         }
  529.         /* Check for B_SKIP */
  530.         if( h->mb.i_type == B_DIRECT && !(h->mb.i_cbp_luma | h->mb.i_cbp_chroma) )
  531.         {
  532.             h->mb.i_type = B_SKIP;
  533.         }
  534.     }
  535. }
  536. /*****************************************************************************
  537.  * x264_macroblock_probe_skip:
  538.  *  Check if the current MB could be encoded as a [PB]_SKIP (it supposes you use
  539.  *  the previous QP
  540.  *****************************************************************************/
  541. int x264_macroblock_probe_skip( x264_t *h, const int b_bidir )
  542. {
  543.     DECLARE_ALIGNED_16( int16_t dct4x4[4][4][4] );
  544.     DECLARE_ALIGNED_16( int16_t dct2x2[2][2] );
  545.     DECLARE_ALIGNED_16( int16_t dctscan[16] );
  546.     int i_qp = h->mb.i_qp;
  547.     int mvp[2];
  548.     int ch, thresh;
  549.     int i8x8, i4x4;
  550.     int i_decimate_mb;
  551.     if( !b_bidir )
  552.     {
  553.         /* Get the MV */
  554.         mvp[0] = x264_clip3( h->mb.cache.pskip_mv[0], h->mb.mv_min[0], h->mb.mv_max[0] );
  555.         mvp[1] = x264_clip3( h->mb.cache.pskip_mv[1], h->mb.mv_min[1], h->mb.mv_max[1] );
  556.         /* Motion compensation */
  557.         h->mc.mc_luma( h->mb.pic.p_fdec[0],    FDEC_STRIDE,
  558.                        h->mb.pic.p_fref[0][0], h->mb.pic.i_stride[0],
  559.                        mvp[0], mvp[1], 16, 16 );
  560.     }
  561.     for( i8x8 = 0, i_decimate_mb = 0; i8x8 < 4; i8x8++ )
  562.     {
  563.         int fenc_offset = (i8x8&1) * 8 + (i8x8>>1) * FENC_STRIDE * 8;
  564.         int fdec_offset = (i8x8&1) * 8 + (i8x8>>1) * FDEC_STRIDE * 8;
  565.         /* get luma diff */
  566.         h->dctf.sub8x8_dct( dct4x4, h->mb.pic.p_fenc[0] + fenc_offset,
  567.                                     h->mb.pic.p_fdec[0] + fdec_offset );
  568.         /* encode one 4x4 block */
  569.         for( i4x4 = 0; i4x4 < 4; i4x4++ )
  570.         {
  571.             h->quantf.quant_4x4( dct4x4[i4x4], h->quant4_mf[CQM_4PY][i_qp], h->quant4_bias[CQM_4PY][i_qp] );
  572.             if( !array_non_zero(dct4x4[i4x4]) )
  573.                 continue;
  574.             h->zigzagf.scan_4x4( dctscan, dct4x4[i4x4] );
  575.             i_decimate_mb += x264_mb_decimate_score( dctscan, 16 );
  576.             if( i_decimate_mb >= 6 )
  577.                 return 0;
  578.         }
  579.     }
  580.     /* encode chroma */
  581.     i_qp = h->mb.i_chroma_qp;
  582.     thresh = (x264_lambda2_tab[i_qp] + 32) >> 6;
  583.     for( ch = 0; ch < 2; ch++ )
  584.     {
  585.         uint8_t  *p_src = h->mb.pic.p_fenc[1+ch];
  586.         uint8_t  *p_dst = h->mb.pic.p_fdec[1+ch];
  587.         if( !b_bidir )
  588.         {
  589.             h->mc.mc_chroma( h->mb.pic.p_fdec[1+ch],       FDEC_STRIDE,
  590.                              h->mb.pic.p_fref[0][0][4+ch], h->mb.pic.i_stride[1+ch],
  591.                              mvp[0], mvp[1], 8, 8 );
  592.         }
  593.         /* there is almost never a termination during chroma, but we can't avoid the check entirely */
  594.         /* so instead we check SSD and skip the actual check if the score is low enough. */
  595.         if( h->pixf.ssd[PIXEL_8x8]( p_dst, FDEC_STRIDE, p_src, FENC_STRIDE ) < thresh )
  596.             continue;
  597.         h->dctf.sub8x8_dct( dct4x4, p_src, p_dst );
  598.         /* calculate dct DC */
  599.         dct2x2[0][0] = dct4x4[0][0][0];
  600.         dct2x2[0][1] = dct4x4[1][0][0];
  601.         dct2x2[1][0] = dct4x4[2][0][0];
  602.         dct2x2[1][1] = dct4x4[3][0][0];
  603.         h->dctf.dct2x2dc( dct2x2 );
  604.         h->quantf.quant_2x2_dc( dct2x2, h->quant4_mf[CQM_4PC][i_qp][0]>>1, h->quant4_bias[CQM_4PC][i_qp][0]<<1 );
  605.         if( array_non_zero(dct2x2) )
  606.             return 0;
  607.         /* calculate dct coeffs */
  608.         for( i4x4 = 0, i_decimate_mb = 0; i4x4 < 4; i4x4++ )
  609.         {
  610.             h->quantf.quant_4x4( dct4x4[i4x4], h->quant4_mf[CQM_4PC][i_qp], h->quant4_bias[CQM_4PC][i_qp] );
  611.             if( !array_non_zero(dct4x4[i4x4]) )
  612.                 continue;
  613.             h->zigzagf.scan_4x4( dctscan, dct4x4[i4x4] );
  614.             i_decimate_mb += x264_mb_decimate_score( dctscan+1, 15 );
  615.             if( i_decimate_mb >= 7 )
  616.                 return 0;
  617.         }
  618.     }
  619.     h->mb.b_skip_mc = 1;
  620.     return 1;
  621. }
  622. /****************************************************************************
  623.  * DCT-domain noise reduction / adaptive deadzone
  624.  * from libavcodec
  625.  ****************************************************************************/
  626. void x264_noise_reduction_update( x264_t *h )
  627. {
  628.     int cat, i;
  629.     for( cat = 0; cat < 2; cat++ )
  630.     {
  631.         int size = cat ? 64 : 16;
  632.         const uint16_t *weight = cat ? x264_dct8_weight2_tab : x264_dct4_weight2_tab;
  633.         if( h->nr_count[cat] > (cat ? (1<<16) : (1<<18)) )
  634.         {
  635.             for( i = 0; i < size; i++ )
  636.                 h->nr_residual_sum[cat][i] >>= 1;
  637.             h->nr_count[cat] >>= 1;
  638.         }
  639.         for( i = 0; i < size; i++ )
  640.             h->nr_offset[cat][i] =
  641.                 ((uint64_t)h->param.analyse.i_noise_reduction * h->nr_count[cat]
  642.                  + h->nr_residual_sum[cat][i]/2)
  643.               / ((uint64_t)h->nr_residual_sum[cat][i] * weight[i]/256 + 1);
  644.     }
  645. }
  646. /*****************************************************************************
  647.  * RD only; 4 calls to this do not make up for one macroblock_encode.
  648.  * doesn't transform chroma dc.
  649.  *****************************************************************************/
  650. void x264_macroblock_encode_p8x8( x264_t *h, int i8 )
  651. {
  652.     int i_qp = h->mb.i_qp;
  653.     uint8_t *p_fenc = h->mb.pic.p_fenc[0] + (i8&1)*8 + (i8>>1)*8*FENC_STRIDE;
  654.     uint8_t *p_fdec = h->mb.pic.p_fdec[0] + (i8&1)*8 + (i8>>1)*8*FDEC_STRIDE;
  655.     int b_decimate = h->sh.i_type == SLICE_TYPE_B || h->param.analyse.b_dct_decimate;
  656.     int nnz8x8 = 0;
  657.     int ch;
  658.     x264_mb_mc_8x8( h, i8 );
  659.     if( h->mb.b_lossless )
  660.     {
  661.         int i4;
  662.         for( i4 = i8*4; i4 < i8*4+4; i4++ )
  663.         {
  664.             h->zigzagf.sub_4x4( h->dct.luma4x4[i4],
  665.                                 h->mb.pic.p_fenc[0]+block_idx_xy_fenc[i4],
  666.                                 h->mb.pic.p_fdec[0]+block_idx_xy_fdec[i4] );
  667.             nnz8x8 |= array_non_zero( h->dct.luma4x4[i4] );
  668.         }
  669.         for( ch = 0; ch < 2; ch++ )
  670.         {
  671.             p_fenc = h->mb.pic.p_fenc[1+ch] + (i8&1)*4 + (i8>>1)*4*FENC_STRIDE;
  672.             p_fdec = h->mb.pic.p_fdec[1+ch] + (i8&1)*4 + (i8>>1)*4*FDEC_STRIDE;
  673.             h->zigzagf.sub_4x4( h->dct.luma4x4[16+i8+ch*4], p_fenc, p_fdec );
  674.             h->dct.luma4x4[16+i8+ch*4][0] = 0;
  675.         }
  676.     }
  677.     else
  678.     {
  679.         if( h->mb.b_transform_8x8 )
  680.         {
  681.             DECLARE_ALIGNED_16( int16_t dct8x8[8][8] );
  682.             h->dctf.sub8x8_dct8( dct8x8, p_fenc, p_fdec );
  683.             x264_quant_8x8( h, dct8x8, i_qp, 0 );
  684.             h->zigzagf.scan_8x8( h->dct.luma8x8[i8], dct8x8 );
  685.             if( b_decimate && !h->mb.b_trellis )
  686.                 nnz8x8 = 4 <= x264_mb_decimate_score( h->dct.luma8x8[i8], 64 );
  687.             else
  688.                 nnz8x8 = array_non_zero( dct8x8 );
  689.             if( nnz8x8 )
  690.             {
  691.                 h->quantf.dequant_8x8( dct8x8, h->dequant8_mf[CQM_8PY], i_qp );
  692.                 h->dctf.add8x8_idct8( p_fdec, dct8x8 );
  693.             }
  694.         }
  695.         else
  696.         {
  697.             int i4;
  698.             DECLARE_ALIGNED_16( int16_t dct4x4[4][4][4] );
  699.             h->dctf.sub8x8_dct( dct4x4, p_fenc, p_fdec );
  700.             for( i4 = 0; i4 < 4; i4++ )
  701.                 x264_quant_4x4( h, dct4x4[i4], i_qp, DCT_LUMA_4x4, 0 );
  702.             for( i4 = 0; i4 < 4; i4++ )
  703.                 h->zigzagf.scan_4x4( h->dct.luma4x4[i8*4+i4], dct4x4[i4] );
  704.             if( b_decimate )
  705.             {
  706.                 int i_decimate_8x8 = 0;
  707.                 for( i4 = 0; i4 < 4 && i_decimate_8x8 < 4; i4++ )
  708.                     i_decimate_8x8 += x264_mb_decimate_score( h->dct.luma4x4[i8*4+i4], 16 );
  709.                 nnz8x8 = 4 <= i_decimate_8x8;
  710.             }
  711.             else
  712.                 nnz8x8 = array_non_zero( dct4x4 );
  713.             if( nnz8x8 )
  714.             {
  715.                 for( i4 = 0; i4 < 4; i4++ )
  716.                     h->quantf.dequant_4x4( dct4x4[i4], h->dequant4_mf[CQM_4PY], i_qp );
  717.                 h->dctf.add8x8_idct( p_fdec, dct4x4 );
  718.             }
  719.         }
  720.         i_qp = h->mb.i_chroma_qp;
  721.         for( ch = 0; ch < 2; ch++ )
  722.         {
  723.             DECLARE_ALIGNED_16( int16_t dct4x4[4][4] );
  724.             p_fenc = h->mb.pic.p_fenc[1+ch] + (i8&1)*4 + (i8>>1)*4*FENC_STRIDE;
  725.             p_fdec = h->mb.pic.p_fdec[1+ch] + (i8&1)*4 + (i8>>1)*4*FDEC_STRIDE;
  726.             h->dctf.sub4x4_dct( dct4x4, p_fenc, p_fdec );
  727.             h->quantf.quant_4x4( dct4x4, h->quant4_mf[CQM_4PC][i_qp], h->quant4_bias[CQM_4PC][i_qp] );
  728.             h->zigzagf.scan_4x4( h->dct.luma4x4[16+i8+ch*4], dct4x4 );
  729.             h->dct.luma4x4[16+i8+ch*4][0] = 0;
  730.             if( array_non_zero( dct4x4 ) )
  731.             {
  732.                 h->quantf.dequant_4x4( dct4x4, h->dequant4_mf[CQM_4PC], i_qp );
  733.                 h->dctf.add4x4_idct( p_fdec, dct4x4 );
  734.             }
  735.         }
  736.     }
  737.     h->mb.i_cbp_luma &= ~(1 << i8);
  738.     h->mb.i_cbp_luma |= nnz8x8 << i8;
  739.     h->mb.i_cbp_chroma = 0x02;
  740. }