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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * cavlc.c: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 Laurent Aimar
  5.  * $Id: cavlc.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include <stdio.h>
  24. #include <string.h>
  25. #include "common/common.h"
  26. #include "common/vlc.h"
  27. #include "macroblock.h"
  28. static const uint8_t intra4x4_cbp_to_golomb[48]=
  29. {
  30.   3, 29, 30, 17, 31, 18, 37,  8, 32, 38, 19,  9, 20, 10, 11,  2,
  31.  16, 33, 34, 21, 35, 22, 39,  4, 36, 40, 23,  5, 24,  6,  7,  1,
  32.  41, 42, 43, 25, 44, 26, 46, 12, 45, 47, 27, 13, 28, 14, 15,  0
  33. };
  34. static const uint8_t inter_cbp_to_golomb[48]=
  35. {
  36.   0,  2,  3,  7,  4,  8, 17, 13,  5, 18,  9, 14, 10, 15, 16, 11,
  37.   1, 32, 33, 36, 34, 37, 44, 40, 35, 45, 38, 41, 39, 42, 43, 19,
  38.   6, 24, 25, 20, 26, 21, 46, 28, 27, 47, 22, 29, 23, 30, 31, 12
  39. };
  40. static const uint8_t mb_type_b_to_golomb[3][9]=
  41. {
  42.     { 4,  8, 12, 10,  6, 14, 16, 18, 20 }, /* D_16x8 */
  43.     { 5,  9, 13, 11,  7, 15, 17, 19, 21 }, /* D_8x16 */
  44.     { 1, -1, -1, -1,  2, -1, -1, -1,  3 }  /* D_16x16 */
  45. };
  46. static const uint8_t sub_mb_type_p_to_golomb[4]=
  47. {
  48.     3, 1, 2, 0
  49. };
  50. static const uint8_t sub_mb_type_b_to_golomb[13]=
  51. {
  52.     10,  4,  5,  1, 11,  6,  7,  2, 12,  8,  9,  3,  0
  53. };
  54. #define BLOCK_INDEX_CHROMA_DC   (-1)
  55. #define BLOCK_INDEX_LUMA_DC     (-2)
  56. static inline void bs_write_vlc( bs_t *s, vlc_t v )
  57. {
  58.     bs_write( s, v.i_size, v.i_bits );
  59. }
  60. /****************************************************************************
  61.  * block_residual_write_cavlc:
  62.  ****************************************************************************/
  63. static void block_residual_write_cavlc( x264_t *h, bs_t *s, int i_idx, int *l, int i_count )
  64. {
  65.     int level[16], run[16];
  66.     int i_total, i_trailing;
  67.     int i_total_zero;
  68.     int i_last;
  69.     unsigned int i_sign;
  70.     int i;
  71.     int i_zero_left;
  72.     int i_suffix_length;
  73.     /* first find i_last */
  74.     i_last = i_count - 1;
  75.     while( i_last >= 0 && l[i_last] == 0 )
  76.     {
  77.         i_last--;
  78.     }
  79.     i_sign = 0;
  80.     i_total = 0;
  81.     i_trailing = 0;
  82.     i_total_zero = 0;
  83.     if( i_last >= 0 )
  84.     {
  85.         int b_trailing = 1;
  86.         int idx = 0;
  87.         /* level and run and total */
  88.         while( i_last >= 0 )
  89.         {
  90.             level[idx] = l[i_last--];
  91.             run[idx] = 0;
  92.             while( i_last >= 0 && l[i_last] == 0 )
  93.             {
  94.                 run[idx]++;
  95.                 i_last--;
  96.             }
  97.             i_total++;
  98.             i_total_zero += run[idx];
  99.             if( b_trailing && abs( level[idx] ) == 1 && i_trailing < 3 )
  100.             {
  101.                 i_sign <<= 1;
  102.                 if( level[idx] < 0 )
  103.                 {
  104.                     i_sign |= 0x01;
  105.                 }
  106.                 i_trailing++;
  107.             }
  108.             else
  109.             {
  110.                 b_trailing = 0;
  111.             }
  112.             idx++;
  113.         }
  114.     }
  115.     /* total/trailing */
  116.     if( i_idx == BLOCK_INDEX_CHROMA_DC )
  117.     {
  118.         bs_write_vlc( s, x264_coeff_token[4][i_total*4+i_trailing] );
  119.     }
  120.     else
  121.     {
  122.         /* x264_mb_predict_non_zero_code return 0 <-> (16+16+1)>>1 = 16 */
  123.         static const int ct_index[17] = {0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,3 };
  124.         int nC;
  125.         if( i_idx == BLOCK_INDEX_LUMA_DC )
  126.         {
  127.             nC = x264_mb_predict_non_zero_code( h, 0 );
  128.         }
  129.         else
  130.         {
  131.             nC = x264_mb_predict_non_zero_code( h, i_idx );
  132.         }
  133.         bs_write_vlc( s, x264_coeff_token[ct_index[nC]][i_total*4+i_trailing] );
  134.     }
  135.     if( i_total <= 0 )
  136.     {
  137.         return;
  138.     }
  139.     i_suffix_length = i_total > 10 && i_trailing < 3 ? 1 : 0;
  140.     if( i_trailing > 0 )
  141.     {
  142.         bs_write( s, i_trailing, i_sign );
  143.     }
  144.     for( i = i_trailing; i < i_total; i++ )
  145.     {
  146.         int i_level_code;
  147.         /* calculate level code */
  148.         if( level[i] < 0 )
  149.         {
  150.             i_level_code = -2*level[i] - 1;
  151.         }
  152.         else /* if( level[i] > 0 ) */
  153.         {
  154.             i_level_code = 2 * level[i] - 2;
  155.         }
  156.         if( i == i_trailing && i_trailing < 3 )
  157.         {
  158.             i_level_code -=2; /* as level[i] can't be 1 for the first one if i_trailing < 3 */
  159.         }
  160.         if( ( i_level_code >> i_suffix_length ) < 14 )
  161.         {
  162.             bs_write_vlc( s, x264_level_prefix[i_level_code >> i_suffix_length] );
  163.             if( i_suffix_length > 0 )
  164.             {
  165.                 bs_write( s, i_suffix_length, i_level_code );
  166.             }
  167.         }
  168.         else if( i_suffix_length == 0 && i_level_code < 30 )
  169.         {
  170.             bs_write_vlc( s, x264_level_prefix[14] );
  171.             bs_write( s, 4, i_level_code - 14 );
  172.         }
  173.         else if( i_suffix_length > 0 && ( i_level_code >> i_suffix_length ) == 14 )
  174.         {
  175.             bs_write_vlc( s, x264_level_prefix[14] );
  176.             bs_write( s, i_suffix_length, i_level_code );
  177.         }
  178.         else
  179.         {
  180.             bs_write_vlc( s, x264_level_prefix[15] );
  181.             i_level_code -= 15 << i_suffix_length;
  182.             if( i_suffix_length == 0 )
  183.             {
  184.                 i_level_code -= 15;
  185.             }
  186.             if( i_level_code >= ( 1 << 12 ) || i_level_code < 0 )
  187.             {
  188.                 x264_log(h, X264_LOG_ERROR, "OVERFLOW levelcode=%dn", i_level_code );
  189.             }
  190.             bs_write( s, 12, i_level_code );    /* check overflow ?? */
  191.         }
  192.         if( i_suffix_length == 0 )
  193.         {
  194.             i_suffix_length++;
  195.         }
  196.         if( abs( level[i] ) > ( 3 << ( i_suffix_length - 1 ) ) && i_suffix_length < 6 )
  197.         {
  198.             i_suffix_length++;
  199.         }
  200.     }
  201.     if( i_total < i_count )
  202.     {
  203.         if( i_idx == BLOCK_INDEX_CHROMA_DC )
  204.         {
  205.             bs_write_vlc( s, x264_total_zeros_dc[i_total-1][i_total_zero] );
  206.         }
  207.         else
  208.         {
  209.             bs_write_vlc( s, x264_total_zeros[i_total-1][i_total_zero] );
  210.         }
  211.     }
  212.     for( i = 0, i_zero_left = i_total_zero; i < i_total - 1; i++ )
  213.     {
  214.         int i_zl;
  215.         if( i_zero_left <= 0 )
  216.         {
  217.             break;
  218.         }
  219.         i_zl = X264_MIN( i_zero_left - 1, 6 );
  220.         bs_write_vlc( s, x264_run_before[i_zl][run[i]] );
  221.         i_zero_left -= run[i];
  222.     }
  223. }
  224. static void x264_sub_mb_mv_write_cavlc( x264_t *h, bs_t *s, int i_list )
  225. {
  226.     int i;
  227.     for( i = 0; i < 4; i++ )
  228.     {
  229.         int mvp[2];
  230.         if( !x264_mb_partition_listX_table[i_list][ h->mb.i_sub_partition[i] ] )
  231.         {
  232.             continue;
  233.         }
  234.         switch( h->mb.i_sub_partition[i] )
  235.         {
  236.             case D_L0_8x8:
  237.             case D_L1_8x8:
  238.             case D_BI_8x8:
  239.                 x264_mb_predict_mv( h, i_list, 4*i, 2, mvp );
  240.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i]][0] - mvp[0] );
  241.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i]][1] - mvp[1] );
  242.                 break;
  243.             case D_L0_8x4:
  244.             case D_L1_8x4:
  245.             case D_BI_8x4:
  246.                 x264_mb_predict_mv( h, i_list, 4*i+0, 2, mvp );
  247.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i]][0] - mvp[0] );
  248.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i]][1] - mvp[1] );
  249.                 x264_mb_predict_mv( h, i_list, 4*i+2, 2, mvp );
  250.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+2]][0] - mvp[0] );
  251.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+2]][1] - mvp[1] );
  252.                 break;
  253.             case D_L0_4x8:
  254.             case D_L1_4x8:
  255.             case D_BI_4x8:
  256.                 x264_mb_predict_mv( h, i_list, 4*i+0, 1, mvp );
  257.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i]][0] - mvp[0] );
  258.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i]][1] - mvp[1] );
  259.                 x264_mb_predict_mv( h, i_list, 4*i+1, 1, mvp );
  260.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+1]][0] - mvp[0] );
  261.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+1]][1] - mvp[1] );
  262.                 break;
  263.             case D_L0_4x4:
  264.             case D_L1_4x4:
  265.             case D_BI_4x4:
  266.                 x264_mb_predict_mv( h, i_list, 4*i+0, 1, mvp );
  267.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i]][0] - mvp[0] );
  268.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i]][1] - mvp[1] );
  269.                 x264_mb_predict_mv( h, i_list, 4*i+1, 1, mvp );
  270.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+1]][0] - mvp[0] );
  271.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+1]][1] - mvp[1] );
  272.                 x264_mb_predict_mv( h, i_list, 4*i+2, 1, mvp );
  273.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+2]][0] - mvp[0] );
  274.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+2]][1] - mvp[1] );
  275.                 x264_mb_predict_mv( h, i_list, 4*i+3, 1, mvp );
  276.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+3]][0] - mvp[0] );
  277.                 bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4*i+3]][1] - mvp[1] );
  278.                 break;
  279.         }
  280.     }
  281. }
  282. static void x264_macroblock_luma_write_cavlc( x264_t *h, bs_t *s )
  283. {
  284.     int i8, i4, i;
  285.     if( h->mb.b_transform_8x8 )
  286.     {
  287.         /* shuffle 8x8 dct coeffs into 4x4 lists */
  288.         for( i8 = 0; i8 < 4; i8++ )
  289.             if( h->mb.i_cbp_luma & (1 << i8) )
  290.                 for( i4 = 0; i4 < 4; i4++ )
  291.                 {
  292.                     for( i = 0; i < 16; i++ )
  293.                         h->dct.block[i4+i8*4].luma4x4[i] = h->dct.luma8x8[i8][i4+i*4];
  294.                     h->mb.cache.non_zero_count[x264_scan8[i4+i8*4]] =
  295.                         array_non_zero_count( h->dct.block[i4+i8*4].luma4x4, 16 );
  296.                 }
  297.     }
  298.     for( i8 = 0; i8 < 4; i8++ )
  299.         if( h->mb.i_cbp_luma & (1 << i8) )
  300.             for( i4 = 0; i4 < 4; i4++ )
  301.                 block_residual_write_cavlc( h, s, i4+i8*4, h->dct.block[i4+i8*4].luma4x4, 16 );
  302. }
  303. /*****************************************************************************
  304.  * x264_macroblock_write:
  305.  *****************************************************************************/
  306. void x264_macroblock_write_cavlc( x264_t *h, bs_t *s )
  307. {
  308.     const int i_mb_type = h->mb.i_type;
  309.     int i_mb_i_offset;
  310.     int i;
  311. #ifndef RDO_SKIP_BS
  312.     const int i_mb_pos_start = bs_pos( s );
  313.     int       i_mb_pos_tex;
  314. #endif
  315.     switch( h->sh.i_type )
  316.     {
  317.         case SLICE_TYPE_I:
  318.             i_mb_i_offset = 0;
  319.             break;
  320.         case SLICE_TYPE_P:
  321.             i_mb_i_offset = 5;
  322.             break;
  323.         case SLICE_TYPE_B:
  324.             i_mb_i_offset = 23;
  325.             break;
  326.         default:
  327.             x264_log(h, X264_LOG_ERROR, "internal error or slice unsupportedn" );
  328.             return;
  329.     }
  330.     /* Write:
  331.       - type
  332.       - prediction
  333.       - mv */
  334.     if( i_mb_type == I_PCM )
  335.     {
  336.         /* Untested */
  337.         bs_write_ue( s, i_mb_i_offset + 25 );
  338. #ifdef RDO_SKIP_BS
  339.         s->i_bits_encoded += 384*8;
  340. #else
  341.         bs_align_0( s );
  342.         /* Luma */
  343.         for( i = 0; i < 16*16; i++ )
  344.         {
  345.             const int x = 16 * h->mb.i_mb_x + (i % 16);
  346.             const int y = 16 * h->mb.i_mb_y + (i / 16);
  347.             bs_write( s, 8, h->fenc->plane[0][y*h->mb.pic.i_stride[0]+x] );
  348.         }
  349.         /* Cb */
  350.         for( i = 0; i < 8*8; i++ )
  351.         {
  352.             const int x = 8 * h->mb.i_mb_x + (i % 8);
  353.             const int y = 8 * h->mb.i_mb_y + (i / 8);
  354.             bs_write( s, 8, h->fenc->plane[1][y*h->mb.pic.i_stride[1]+x] );
  355.         }
  356.         /* Cr */
  357.         for( i = 0; i < 8*8; i++ )
  358.         {
  359.             const int x = 8 * h->mb.i_mb_x + (i % 8);
  360.             const int y = 8 * h->mb.i_mb_y + (i / 8);
  361.             bs_write( s, 8, h->fenc->plane[2][y*h->mb.pic.i_stride[2]+x] );
  362.         }
  363. #endif
  364.         return;
  365.     }
  366.     else if( i_mb_type == I_4x4 || i_mb_type == I_8x8 )
  367.     {
  368.         int di = i_mb_type == I_8x8 ? 4 : 1;
  369.         bs_write_ue( s, i_mb_i_offset + 0 );
  370.         if( h->pps->b_transform_8x8_mode )
  371.             bs_write1( s, h->mb.b_transform_8x8 );
  372.         /* Prediction: Luma */
  373.         for( i = 0; i < 16; i += di )
  374.         {
  375.             int i_pred = x264_mb_predict_intra4x4_mode( h, i );
  376.             int i_mode = x264_mb_pred_mode4x4_fix( h->mb.cache.intra4x4_pred_mode[x264_scan8[i]] );
  377.             if( i_pred == i_mode)
  378.             {
  379.                 bs_write1( s, 1 );  /* b_prev_intra4x4_pred_mode */
  380.             }
  381.             else
  382.             {
  383.                 bs_write1( s, 0 );  /* b_prev_intra4x4_pred_mode */
  384.                 if( i_mode < i_pred )
  385.                 {
  386.                     bs_write( s, 3, i_mode );
  387.                 }
  388.                 else
  389.                 {
  390.                     bs_write( s, 3, i_mode - 1 );
  391.                 }
  392.             }
  393.         }
  394.         bs_write_ue( s, x264_mb_pred_mode8x8c_fix[ h->mb.i_chroma_pred_mode ] );
  395.     }
  396.     else if( i_mb_type == I_16x16 )
  397.     {
  398.         bs_write_ue( s, i_mb_i_offset + 1 + x264_mb_pred_mode16x16_fix[h->mb.i_intra16x16_pred_mode] +
  399.                         h->mb.i_cbp_chroma * 4 + ( h->mb.i_cbp_luma == 0 ? 0 : 12 ) );
  400.         bs_write_ue( s, x264_mb_pred_mode8x8c_fix[ h->mb.i_chroma_pred_mode ] );
  401.     }
  402.     else if( i_mb_type == P_L0 )
  403.     {
  404.         int mvp[2];
  405.         if( h->mb.i_partition == D_16x16 )
  406.         {
  407.             bs_write_ue( s, 0 );
  408.             if( h->sh.i_num_ref_idx_l0_active > 1 )
  409.             {
  410.                 bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[0]] );
  411.             }
  412.             x264_mb_predict_mv( h, 0, 0, 4, mvp );
  413.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[0]][0] - mvp[0] );
  414.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[0]][1] - mvp[1] );
  415.         }
  416.         else if( h->mb.i_partition == D_16x8 )
  417.         {
  418.             bs_write_ue( s, 1 );
  419.             if( h->sh.i_num_ref_idx_l0_active > 1 )
  420.             {
  421.                 bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[0]] );
  422.                 bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[8]] );
  423.             }
  424.             x264_mb_predict_mv( h, 0, 0, 4, mvp );
  425.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[0]][0] - mvp[0] );
  426.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[0]][1] - mvp[1] );
  427.             x264_mb_predict_mv( h, 0, 8, 4, mvp );
  428.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[8]][0] - mvp[0] );
  429.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[8]][1] - mvp[1] );
  430.         }
  431.         else if( h->mb.i_partition == D_8x16 )
  432.         {
  433.             bs_write_ue( s, 2 );
  434.             if( h->sh.i_num_ref_idx_l0_active > 1 )
  435.             {
  436.                 bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[0]] );
  437.                 bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[4]] );
  438.             }
  439.             x264_mb_predict_mv( h, 0, 0, 2, mvp );
  440.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[0]][0] - mvp[0] );
  441.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[0]][1] - mvp[1] );
  442.             x264_mb_predict_mv( h, 0, 4, 2, mvp );
  443.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[4]][0] - mvp[0] );
  444.             bs_write_se( s, h->mb.cache.mv[0][x264_scan8[4]][1] - mvp[1] );
  445.         }
  446.     }
  447.     else if( i_mb_type == P_8x8 )
  448.     {
  449.         int b_sub_ref0;
  450.         if( h->mb.cache.ref[0][x264_scan8[0]] == 0 && h->mb.cache.ref[0][x264_scan8[4]] == 0 &&
  451.             h->mb.cache.ref[0][x264_scan8[8]] == 0 && h->mb.cache.ref[0][x264_scan8[12]] == 0 )
  452.         {
  453.             bs_write_ue( s, 4 );
  454.             b_sub_ref0 = 0;
  455.         }
  456.         else
  457.         {
  458.             bs_write_ue( s, 3 );
  459.             b_sub_ref0 = 1;
  460.         }
  461.         /* sub mb type */
  462.         for( i = 0; i < 4; i++ )
  463.         {
  464.             bs_write_ue( s, sub_mb_type_p_to_golomb[ h->mb.i_sub_partition[i] ] );
  465.         }
  466.         /* ref0 */
  467.         if( h->sh.i_num_ref_idx_l0_active > 1 && b_sub_ref0 )
  468.         {
  469.             bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[0]] );
  470.             bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[4]] );
  471.             bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[8]] );
  472.             bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[12]] );
  473.         }
  474.         x264_sub_mb_mv_write_cavlc( h, s, 0 );
  475.     }
  476.     else if( i_mb_type == B_8x8 )
  477.     {
  478.         bs_write_ue( s, 22 );
  479.         /* sub mb type */
  480.         for( i = 0; i < 4; i++ )
  481.         {
  482.             bs_write_ue( s, sub_mb_type_b_to_golomb[ h->mb.i_sub_partition[i] ] );
  483.         }
  484.         /* ref */
  485.         for( i = 0; i < 4; i++ )
  486.         {
  487.             if( x264_mb_partition_listX_table[0][ h->mb.i_sub_partition[i] ] )
  488.             {
  489.                 bs_write_te( s, h->sh.i_num_ref_idx_l0_active - 1, h->mb.cache.ref[0][x264_scan8[i*4]] );
  490.             }
  491.         }
  492.         for( i = 0; i < 4; i++ )
  493.         {
  494.             if( x264_mb_partition_listX_table[1][ h->mb.i_sub_partition[i] ] )
  495.             {
  496.                 bs_write_te( s, h->sh.i_num_ref_idx_l1_active - 1, h->mb.cache.ref[1][x264_scan8[i*4]] );
  497.             }
  498.         }
  499.         /* mvd */
  500.         x264_sub_mb_mv_write_cavlc( h, s, 0 );
  501.         x264_sub_mb_mv_write_cavlc( h, s, 1 );
  502.     }
  503.     else if( i_mb_type != B_DIRECT )
  504.     {
  505.         /* All B mode */
  506.         /* Motion Vector */
  507.         int i_list;
  508.         int mvp[2];
  509.         int b_list[2][2];
  510.         /* init ref list utilisations */
  511.         for( i = 0; i < 2; i++ )
  512.         {
  513.             b_list[0][i] = x264_mb_type_list0_table[i_mb_type][i];
  514.             b_list[1][i] = x264_mb_type_list1_table[i_mb_type][i];
  515.         }
  516.         bs_write_ue( s, mb_type_b_to_golomb[ h->mb.i_partition - D_16x8 ][ i_mb_type - B_L0_L0 ] );
  517.         for( i_list = 0; i_list < 2; i_list++ )
  518.         {
  519.             const int i_ref_max = i_list == 0 ? h->sh.i_num_ref_idx_l0_active : h->sh.i_num_ref_idx_l1_active;
  520.             if( i_ref_max > 1 )
  521.             {
  522.                 switch( h->mb.i_partition )
  523.                 {
  524.                     case D_16x16:
  525.                         if( b_list[i_list][0] ) bs_write_te( s, i_ref_max - 1, h->mb.cache.ref[i_list][x264_scan8[0]] );
  526.                         break;
  527.                     case D_16x8:
  528.                         if( b_list[i_list][0] ) bs_write_te( s, i_ref_max - 1, h->mb.cache.ref[i_list][x264_scan8[0]] );
  529.                         if( b_list[i_list][1] ) bs_write_te( s, i_ref_max - 1, h->mb.cache.ref[i_list][x264_scan8[8]] );
  530.                         break;
  531.                     case D_8x16:
  532.                         if( b_list[i_list][0] ) bs_write_te( s, i_ref_max - 1, h->mb.cache.ref[i_list][x264_scan8[0]] );
  533.                         if( b_list[i_list][1] ) bs_write_te( s, i_ref_max - 1, h->mb.cache.ref[i_list][x264_scan8[4]] );
  534.                         break;
  535.                 }
  536.             }
  537.         }
  538.         for( i_list = 0; i_list < 2; i_list++ )
  539.         {
  540.             switch( h->mb.i_partition )
  541.             {
  542.                 case D_16x16:
  543.                     if( b_list[i_list][0] )
  544.                     {
  545.                         x264_mb_predict_mv( h, i_list, 0, 4, mvp );
  546.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[0]][0] - mvp[0] );
  547.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[0]][1] - mvp[1] );
  548.                     }
  549.                     break;
  550.                 case D_16x8:
  551.                     if( b_list[i_list][0] )
  552.                     {
  553.                         x264_mb_predict_mv( h, i_list, 0, 4, mvp );
  554.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[0]][0] - mvp[0] );
  555.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[0]][1] - mvp[1] );
  556.                     }
  557.                     if( b_list[i_list][1] )
  558.                     {
  559.                         x264_mb_predict_mv( h, i_list, 8, 4, mvp );
  560.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[8]][0] - mvp[0] );
  561.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[8]][1] - mvp[1] );
  562.                     }
  563.                     break;
  564.                 case D_8x16:
  565.                     if( b_list[i_list][0] )
  566.                     {
  567.                         x264_mb_predict_mv( h, i_list, 0, 2, mvp );
  568.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[0]][0] - mvp[0] );
  569.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[0]][1] - mvp[1] );
  570.                     }
  571.                     if( b_list[i_list][1] )
  572.                     {
  573.                         x264_mb_predict_mv( h, i_list, 4, 2, mvp );
  574.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4]][0] - mvp[0] );
  575.                         bs_write_se( s, h->mb.cache.mv[i_list][x264_scan8[4]][1] - mvp[1] );
  576.                     }
  577.                     break;
  578.             }
  579.         }
  580.     }
  581.     else if( i_mb_type == B_DIRECT )
  582.     {
  583.         bs_write_ue( s, 0 );
  584.     }
  585.     else
  586.     {
  587.         x264_log(h, X264_LOG_ERROR, "invalid/unhandled mb_typen" );
  588.         return;
  589.     }
  590. #ifndef RDO_SKIP_BS
  591.     i_mb_pos_tex = bs_pos( s );
  592.     h->stat.frame.i_hdr_bits += i_mb_pos_tex - i_mb_pos_start;
  593. #endif
  594.     /* Coded block patern */
  595.     if( i_mb_type == I_4x4 || i_mb_type == I_8x8 )
  596.     {
  597.         bs_write_ue( s, intra4x4_cbp_to_golomb[( h->mb.i_cbp_chroma << 4 )|h->mb.i_cbp_luma] );
  598.     }
  599.     else if( i_mb_type != I_16x16 )
  600.     {
  601.         bs_write_ue( s, inter_cbp_to_golomb[( h->mb.i_cbp_chroma << 4 )|h->mb.i_cbp_luma] );
  602.     }
  603.     /* transform size 8x8 flag */
  604.     if( h->mb.cache.b_transform_8x8_allowed && h->mb.i_cbp_luma && !IS_INTRA(i_mb_type) )
  605.     {
  606.         bs_write1( s, h->mb.b_transform_8x8 );
  607.     }
  608.     /* write residual */
  609.     if( i_mb_type == I_16x16 )
  610.     {
  611.         bs_write_se( s, h->mb.i_qp - h->mb.i_last_qp );
  612.         /* DC Luma */
  613.         block_residual_write_cavlc( h, s, BLOCK_INDEX_LUMA_DC , h->dct.luma16x16_dc, 16 );
  614.         /* AC Luma */
  615.         if( h->mb.i_cbp_luma != 0 )
  616.             for( i = 0; i < 16; i++ )
  617.                 block_residual_write_cavlc( h, s, i, h->dct.block[i].residual_ac, 15 );
  618.     }
  619.     else if( h->mb.i_cbp_luma != 0 || h->mb.i_cbp_chroma != 0 )
  620.     {
  621.         bs_write_se( s, h->mb.i_qp - h->mb.i_last_qp );
  622.         x264_macroblock_luma_write_cavlc( h, s );
  623.     }
  624.     if( h->mb.i_cbp_chroma != 0 )
  625.     {
  626.         /* Chroma DC residual present */
  627.         block_residual_write_cavlc( h, s, BLOCK_INDEX_CHROMA_DC, h->dct.chroma_dc[0], 4 );
  628.         block_residual_write_cavlc( h, s, BLOCK_INDEX_CHROMA_DC, h->dct.chroma_dc[1], 4 );
  629.         if( h->mb.i_cbp_chroma&0x02 ) /* Chroma AC residual present */
  630.             for( i = 0; i < 8; i++ )
  631.                 block_residual_write_cavlc( h, s, 16 + i, h->dct.block[16+i].residual_ac, 15 );
  632.     }
  633. #ifndef RDO_SKIP_BS
  634.     if( IS_INTRA( i_mb_type ) )
  635.         h->stat.frame.i_itex_bits += bs_pos(s) - i_mb_pos_tex;
  636.     else
  637.         h->stat.frame.i_ptex_bits += bs_pos(s) - i_mb_pos_tex;
  638. #endif
  639. }