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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * macroblock.h: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2005-2008 x264 project
  5.  *
  6.  * Authors: Loren Merritt <lorenm@u.washington.edu>
  7.  *          Laurent Aimar <fenrir@via.ecp.fr>
  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. #ifndef X264_MACROBLOCK_H
  25. #define X264_MACROBLOCK_H
  26. enum macroblock_position_e
  27. {
  28.     MB_LEFT     = 0x01,
  29.     MB_TOP      = 0x02,
  30.     MB_TOPRIGHT = 0x04,
  31.     MB_TOPLEFT  = 0x08,
  32.     MB_PRIVATE  = 0x10,
  33.     ALL_NEIGHBORS = 0xf,
  34. };
  35. static const uint8_t x264_pred_i4x4_neighbors[12] =
  36. {
  37.     MB_TOP,                         // I_PRED_4x4_V
  38.     MB_LEFT,                        // I_PRED_4x4_H
  39.     MB_LEFT | MB_TOP,               // I_PRED_4x4_DC
  40.     MB_TOP  | MB_TOPRIGHT,          // I_PRED_4x4_DDL
  41.     MB_LEFT | MB_TOPLEFT | MB_TOP,  // I_PRED_4x4_DDR
  42.     MB_LEFT | MB_TOPLEFT | MB_TOP,  // I_PRED_4x4_VR
  43.     MB_LEFT | MB_TOPLEFT | MB_TOP,  // I_PRED_4x4_HD
  44.     MB_TOP  | MB_TOPRIGHT,          // I_PRED_4x4_VL
  45.     MB_LEFT,                        // I_PRED_4x4_HU
  46.     MB_LEFT,                        // I_PRED_4x4_DC_LEFT
  47.     MB_TOP,                         // I_PRED_4x4_DC_TOP
  48.     0                               // I_PRED_4x4_DC_128
  49. };
  50. /* XXX mb_type isn't the one written in the bitstream -> only internal usage */
  51. #define IS_INTRA(type) ( (type) == I_4x4 || (type) == I_8x8 || (type) == I_16x16 || (type) == I_PCM )
  52. #define IS_SKIP(type)  ( (type) == P_SKIP || (type) == B_SKIP )
  53. #define IS_DIRECT(type)  ( (type) == B_DIRECT )
  54. enum mb_class_e
  55. {
  56.     I_4x4           = 0,
  57.     I_8x8           = 1,
  58.     I_16x16         = 2,
  59.     I_PCM           = 3,
  60.     P_L0            = 4,
  61.     P_8x8           = 5,
  62.     P_SKIP          = 6,
  63.     B_DIRECT        = 7,
  64.     B_L0_L0         = 8,
  65.     B_L0_L1         = 9,
  66.     B_L0_BI         = 10,
  67.     B_L1_L0         = 11,
  68.     B_L1_L1         = 12,
  69.     B_L1_BI         = 13,
  70.     B_BI_L0         = 14,
  71.     B_BI_L1         = 15,
  72.     B_BI_BI         = 16,
  73.     B_8x8           = 17,
  74.     B_SKIP          = 18,
  75.     X264_MBTYPE_MAX = 19
  76. };
  77. static const uint8_t x264_mb_type_fix[X264_MBTYPE_MAX] =
  78. {
  79.     I_4x4, I_4x4, I_16x16, I_PCM,
  80.     P_L0, P_8x8, P_SKIP,
  81.     B_DIRECT, B_L0_L0, B_L0_L1, B_L0_BI, B_L1_L0, B_L1_L1,
  82.     B_L1_BI, B_BI_L0, B_BI_L1, B_BI_BI, B_8x8, B_SKIP
  83. };
  84. static const uint8_t x264_mb_type_list0_table[X264_MBTYPE_MAX][2] =
  85. {
  86.     {0,0}, {0,0}, {0,0}, {0,0}, /* INTRA */
  87.     {1,1},                  /* P_L0 */
  88.     {0,0},                  /* P_8x8 */
  89.     {1,1},                  /* P_SKIP */
  90.     {0,0},                  /* B_DIRECT */
  91.     {1,1}, {1,0}, {1,1},    /* B_L0_* */
  92.     {0,1}, {0,0}, {0,1},    /* B_L1_* */
  93.     {1,1}, {1,0}, {1,1},    /* B_BI_* */
  94.     {0,0},                  /* B_8x8 */
  95.     {0,0}                   /* B_SKIP */
  96. };
  97. static const uint8_t x264_mb_type_list1_table[X264_MBTYPE_MAX][2] =
  98. {
  99.     {0,0}, {0,0}, {0,0}, {0,0}, /* INTRA */
  100.     {0,0},                  /* P_L0 */
  101.     {0,0},                  /* P_8x8 */
  102.     {0,0},                  /* P_SKIP */
  103.     {0,0},                  /* B_DIRECT */
  104.     {0,0}, {0,1}, {0,1},    /* B_L0_* */
  105.     {1,0}, {1,1}, {1,1},    /* B_L1_* */
  106.     {1,0}, {1,1}, {1,1},    /* B_BI_* */
  107.     {0,0},                  /* B_8x8 */
  108.     {0,0}                   /* B_SKIP */
  109. };
  110. #define IS_SUB4x4(type) ( (type ==D_L0_4x4)||(type ==D_L1_4x4)||(type ==D_BI_4x4))
  111. #define IS_SUB4x8(type) ( (type ==D_L0_4x8)||(type ==D_L1_4x8)||(type ==D_BI_4x8))
  112. #define IS_SUB8x4(type) ( (type ==D_L0_8x4)||(type ==D_L1_8x4)||(type ==D_BI_8x4))
  113. #define IS_SUB8x8(type) ( (type ==D_L0_8x8)||(type ==D_L1_8x8)||(type ==D_BI_8x8)||(type ==D_DIRECT_8x8))
  114. enum mb_partition_e
  115. {
  116.     /* sub partition type for P_8x8 and B_8x8 */
  117.     D_L0_4x4          = 0,
  118.     D_L0_8x4          = 1,
  119.     D_L0_4x8          = 2,
  120.     D_L0_8x8          = 3,
  121.     /* sub partition type for B_8x8 only */
  122.     D_L1_4x4          = 4,
  123.     D_L1_8x4          = 5,
  124.     D_L1_4x8          = 6,
  125.     D_L1_8x8          = 7,
  126.     D_BI_4x4          = 8,
  127.     D_BI_8x4          = 9,
  128.     D_BI_4x8          = 10,
  129.     D_BI_8x8          = 11,
  130.     D_DIRECT_8x8      = 12,
  131.     /* partition */
  132.     D_8x8             = 13,
  133.     D_16x8            = 14,
  134.     D_8x16            = 15,
  135.     D_16x16           = 16,
  136.     X264_PARTTYPE_MAX = 17,
  137. };
  138. static const uint8_t x264_mb_partition_listX_table[2][17] =
  139. {{
  140.     1, 1, 1, 1, /* D_L0_* */
  141.     0, 0, 0, 0, /* D_L1_* */
  142.     1, 1, 1, 1, /* D_BI_* */
  143.     0,          /* D_DIRECT_8x8 */
  144.     0, 0, 0, 0  /* 8x8 .. 16x16 */
  145. },
  146. {
  147.     0, 0, 0, 0, /* D_L0_* */
  148.     1, 1, 1, 1, /* D_L1_* */
  149.     1, 1, 1, 1, /* D_BI_* */
  150.     0,          /* D_DIRECT_8x8 */
  151.     0, 0, 0, 0  /* 8x8 .. 16x16 */
  152. }};
  153. static const uint8_t x264_mb_partition_count_table[17] =
  154. {
  155.     /* sub L0 */
  156.     4, 2, 2, 1,
  157.     /* sub L1 */
  158.     4, 2, 2, 1,
  159.     /* sub BI */
  160.     4, 2, 2, 1,
  161.     /* Direct */
  162.     1,
  163.     /* Partition */
  164.     4, 2, 2, 1
  165. };
  166. static const uint8_t x264_mb_partition_pixel_table[17] =
  167. {
  168.     6, 4, 5, 3, 6, 4, 5, 3, 6, 4, 5, 3, 3, 3, 1, 2, 0
  169. };
  170. /* zigzags are transposed with respect to the tables in the standard */
  171. static const uint8_t x264_zigzag_scan4[2][16] =
  172. {{ // frame
  173.     0,  4,  1,  2,  5,  8, 12,  9,  6,  3,  7, 10, 13, 14, 11, 15
  174. },
  175. {  // field
  176.     0,  1,  4,  2,  3,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15
  177. }};
  178. static const uint8_t x264_zigzag_scan8[2][64] =
  179. {{
  180.     0,  8,  1,  2,  9, 16, 24, 17, 10,  3,  4, 11, 18, 25, 32, 40,
  181.    33, 26, 19, 12,  5,  6, 13, 20, 27, 34, 41, 48, 56, 49, 42, 35,
  182.    28, 21, 14,  7, 15, 22, 29, 36, 43, 50, 57, 58, 51, 44, 37, 30,
  183.    23, 31, 38, 45, 52, 59, 60, 53, 46, 39, 47, 54, 61, 62, 55, 63
  184. },
  185. {
  186.     0,  1,  2,  8,  9,  3,  4, 10, 16, 11,  5,  6,  7, 12, 17, 24,
  187.    18, 13, 14, 15, 19, 25, 32, 26, 20, 21, 22, 23, 27, 33, 40, 34,
  188.    28, 29, 30, 31, 35, 41, 48, 42, 36, 37, 38, 39, 43, 49, 50, 44,
  189.    45, 46, 47, 51, 56, 57, 52, 53, 54, 55, 58, 59, 60, 61, 62, 63
  190. }};
  191. static const uint8_t block_idx_x[16] =
  192. {
  193.     0, 1, 0, 1, 2, 3, 2, 3, 0, 1, 0, 1, 2, 3, 2, 3
  194. };
  195. static const uint8_t block_idx_y[16] =
  196. {
  197.     0, 0, 1, 1, 0, 0, 1, 1, 2, 2, 3, 3, 2, 2, 3, 3
  198. };
  199. static const uint8_t block_idx_xy[4][4] =
  200. {
  201.     { 0, 2, 8,  10 },
  202.     { 1, 3, 9,  11 },
  203.     { 4, 6, 12, 14 },
  204.     { 5, 7, 13, 15 }
  205. };
  206. static const uint8_t block_idx_xy_1d[16] =
  207. {
  208.     0, 1, 4, 5, 2, 3, 6, 7, 8, 9, 12, 13, 10, 11, 14, 15
  209. };
  210. static const uint8_t block_idx_yx_1d[16] =
  211. {
  212.     0, 4, 1, 5, 8, 12, 9, 13, 2, 6, 3, 7, 10, 14, 11, 15
  213. };
  214. static const uint8_t block_idx_xy_fenc[16] =
  215. {
  216.     0*4 + 0*4*FENC_STRIDE, 1*4 + 0*4*FENC_STRIDE,
  217.     0*4 + 1*4*FENC_STRIDE, 1*4 + 1*4*FENC_STRIDE,
  218.     2*4 + 0*4*FENC_STRIDE, 3*4 + 0*4*FENC_STRIDE,
  219.     2*4 + 1*4*FENC_STRIDE, 3*4 + 1*4*FENC_STRIDE,
  220.     0*4 + 2*4*FENC_STRIDE, 1*4 + 2*4*FENC_STRIDE,
  221.     0*4 + 3*4*FENC_STRIDE, 1*4 + 3*4*FENC_STRIDE,
  222.     2*4 + 2*4*FENC_STRIDE, 3*4 + 2*4*FENC_STRIDE,
  223.     2*4 + 3*4*FENC_STRIDE, 3*4 + 3*4*FENC_STRIDE
  224. };
  225. static const uint16_t block_idx_xy_fdec[16] =
  226. {
  227.     0*4 + 0*4*FDEC_STRIDE, 1*4 + 0*4*FDEC_STRIDE,
  228.     0*4 + 1*4*FDEC_STRIDE, 1*4 + 1*4*FDEC_STRIDE,
  229.     2*4 + 0*4*FDEC_STRIDE, 3*4 + 0*4*FDEC_STRIDE,
  230.     2*4 + 1*4*FDEC_STRIDE, 3*4 + 1*4*FDEC_STRIDE,
  231.     0*4 + 2*4*FDEC_STRIDE, 1*4 + 2*4*FDEC_STRIDE,
  232.     0*4 + 3*4*FDEC_STRIDE, 1*4 + 3*4*FDEC_STRIDE,
  233.     2*4 + 2*4*FDEC_STRIDE, 3*4 + 2*4*FDEC_STRIDE,
  234.     2*4 + 3*4*FDEC_STRIDE, 3*4 + 3*4*FDEC_STRIDE
  235. };
  236. static const uint8_t i_chroma_qp_table[52+12*2] =
  237. {
  238.      0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
  239.      0,  1,  2,  3,  4,  5,  6,  7,  8,  9,
  240.     10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
  241.     20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
  242.     29, 30, 31, 32, 32, 33, 34, 34, 35, 35,
  243.     36, 36, 37, 37, 37, 38, 38, 38, 39, 39,
  244.     39, 39,
  245.     39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39,
  246. };
  247. enum cabac_ctx_block_cat_e
  248. {
  249.     DCT_LUMA_DC   = 0,
  250.     DCT_LUMA_AC   = 1,
  251.     DCT_LUMA_4x4  = 2,
  252.     DCT_CHROMA_DC = 3,
  253.     DCT_CHROMA_AC = 4,
  254.     DCT_LUMA_8x8  = 5,
  255. };
  256. int  x264_macroblock_cache_init( x264_t *h );
  257. void x264_macroblock_slice_init( x264_t *h );
  258. void x264_macroblock_cache_load( x264_t *h, int i_mb_x, int i_mb_y );
  259. void x264_macroblock_cache_save( x264_t *h );
  260. void x264_macroblock_cache_end( x264_t *h );
  261. void x264_macroblock_bipred_init( x264_t *h );
  262. void x264_prefetch_fenc( x264_t *h, x264_frame_t *fenc, int i_mb_x, int i_mb_y );
  263. /* x264_mb_predict_mv_16x16:
  264.  *      set mvp with predicted mv for D_16x16 block
  265.  *      h->mb. need only valid values from other blocks */
  266. void x264_mb_predict_mv_16x16( x264_t *h, int i_list, int i_ref, int16_t mvp[2] );
  267. /* x264_mb_predict_mv_pskip:
  268.  *      set mvp with predicted mv for P_SKIP
  269.  *      h->mb. need only valid values from other blocks */
  270. void x264_mb_predict_mv_pskip( x264_t *h, int16_t mv[2] );
  271. /* x264_mb_predict_mv:
  272.  *      set mvp with predicted mv for all blocks except SKIP and DIRECT
  273.  *      h->mb. need valid ref/partition/sub of current block to be valid
  274.  *      and valid mv/ref from other blocks. */
  275. void x264_mb_predict_mv( x264_t *h, int i_list, int idx, int i_width, int16_t mvp[2] );
  276. /* x264_mb_predict_mv_direct16x16:
  277.  *      set h->mb.cache.mv and h->mb.cache.ref for B_SKIP or B_DIRECT
  278.  *      h->mb. need only valid values from other blocks.
  279.  *      return 1 on success, 0 on failure.
  280.  *      if b_changed != NULL, set it to whether refs or mvs differ from
  281.  *      before this functioncall. */
  282. int x264_mb_predict_mv_direct16x16( x264_t *h, int *b_changed );
  283. /* x264_mb_load_mv_direct8x8:
  284.  *      set h->mb.cache.mv and h->mb.cache.ref for B_DIRECT
  285.  *      must be called only after x264_mb_predict_mv_direct16x16 */
  286. void x264_mb_load_mv_direct8x8( x264_t *h, int idx );
  287. /* x264_mb_predict_mv_ref16x16:
  288.  *      set mvc with D_16x16 prediction.
  289.  *      uses all neighbors, even those that didn't end up using this ref.
  290.  *      h->mb. need only valid values from other blocks */
  291. void x264_mb_predict_mv_ref16x16( x264_t *h, int i_list, int i_ref, int16_t mvc[8][2], int *i_mvc );
  292. void x264_mb_mc( x264_t *h );
  293. void x264_mb_mc_8x8( x264_t *h, int i8 );
  294. static ALWAYS_INLINE uint32_t pack16to32( int a, int b )
  295. {
  296. #ifdef WORDS_BIGENDIAN
  297.    return b + (a<<16);
  298. #else
  299.    return a + (b<<16);
  300. #endif
  301. }
  302. static ALWAYS_INLINE uint32_t pack8to16( int a, int b )
  303. {
  304. #ifdef WORDS_BIGENDIAN
  305.    return b + (a<<8);
  306. #else
  307.    return a + (b<<8);
  308. #endif
  309. }
  310. static ALWAYS_INLINE uint32_t pack8to32( int a, int b, int c, int d )
  311. {
  312. #ifdef WORDS_BIGENDIAN
  313.    return d + (c<<8) + (b<<16) + (a<<24);
  314. #else
  315.    return a + (b<<8) + (c<<16) + (d<<24);
  316. #endif
  317. }
  318. static ALWAYS_INLINE uint32_t pack16to32_mask( int a, int b )
  319. {
  320. #ifdef WORDS_BIGENDIAN
  321.    return (b&0xFFFF) + (a<<16);
  322. #else
  323.    return (a&0xFFFF) + (b<<16);
  324. #endif
  325. }
  326. static ALWAYS_INLINE void x264_macroblock_cache_rect1( void *dst, int width, int height, uint8_t val )
  327. {
  328.     int dy;
  329.     if( width == 4 )
  330.     {
  331.         uint32_t val2 = val * 0x01010101;
  332.         for( dy = 0; dy < height; dy++ )
  333.             ((uint32_t*)dst)[2*dy] = val2;
  334.     }
  335.     else // 2
  336.     {
  337.         uint32_t val2 = val * 0x0101;
  338.         for( dy = 0; dy < height; dy++ )
  339.             ((uint16_t*)dst)[4*dy] = val2;
  340.     }
  341. }
  342. static ALWAYS_INLINE void x264_macroblock_cache_rect4( void *dst, int width, int height, uint32_t val )
  343. {
  344.     int dy, dx;
  345.     if( width == 1 || WORD_SIZE < 8 )
  346.     {
  347.         for( dy = 0; dy < height; dy++ )
  348.             for( dx = 0; dx < width; dx++ )
  349.                 ((uint32_t*)dst)[dx+8*dy] = val;
  350.     }
  351.     else
  352.     {
  353.         uint64_t val64 = val + ((uint64_t)val<<32);
  354.         for( dy = 0; dy < height; dy++ )
  355.             for( dx = 0; dx < width/2; dx++ )
  356.                 ((uint64_t*)dst)[dx+4*dy] = val64;
  357.     }
  358. }
  359. #define x264_macroblock_cache_mv_ptr(a,x,y,w,h,l,mv) x264_macroblock_cache_mv(a,x,y,w,h,l,*(uint32_t*)mv)
  360. static ALWAYS_INLINE void x264_macroblock_cache_mv( x264_t *h, int x, int y, int width, int height, int i_list, uint32_t mv )
  361. {
  362.     x264_macroblock_cache_rect4( &h->mb.cache.mv[i_list][X264_SCAN8_0+x+8*y], width, height, mv );
  363. }
  364. static ALWAYS_INLINE void x264_macroblock_cache_mvd( x264_t *h, int x, int y, int width, int height, int i_list, uint32_t mv )
  365. {
  366.     x264_macroblock_cache_rect4( &h->mb.cache.mvd[i_list][X264_SCAN8_0+x+8*y], width, height, mv );
  367. }
  368. static ALWAYS_INLINE void x264_macroblock_cache_ref( x264_t *h, int x, int y, int width, int height, int i_list, uint8_t ref )
  369. {
  370.     x264_macroblock_cache_rect1( &h->mb.cache.ref[i_list][X264_SCAN8_0+x+8*y], width, height, ref );
  371. }
  372. static ALWAYS_INLINE void x264_macroblock_cache_skip( x264_t *h, int x, int y, int width, int height, int b_skip )
  373. {
  374.     x264_macroblock_cache_rect1( &h->mb.cache.skip[X264_SCAN8_0+x+8*y], width, height, b_skip );
  375. }
  376. static ALWAYS_INLINE void x264_macroblock_cache_intra8x8_pred( x264_t *h, int x, int y, int i_mode )
  377. {
  378.     int8_t *cache = &h->mb.cache.intra4x4_pred_mode[X264_SCAN8_0+x+8*y];
  379.     cache[0] = cache[1] = cache[8] = cache[9] = i_mode;
  380. }
  381. #define array_non_zero(a) array_non_zero_int(a, sizeof(a))
  382. #define array_non_zero_int array_non_zero_int_c
  383. static ALWAYS_INLINE int array_non_zero_int_c( void *v, int i_count )
  384. {
  385.     uint64_t *x = v;
  386.     if(i_count == 8)
  387.         return !!x[0];
  388.     else if(i_count == 16)
  389.         return !!(x[0]|x[1]);
  390.     else if(i_count == 32)
  391.         return !!(x[0]|x[1]|x[2]|x[3]);
  392.     else
  393.     {
  394.         int i;
  395.         i_count /= sizeof(uint64_t);
  396.         for( i = 0; i < i_count; i++ )
  397.             if( x[i] ) return 1;
  398.         return 0;
  399.     }
  400. }
  401. /* This function and its MMX version only work on arrays of size 16 */
  402. static ALWAYS_INLINE int array_non_zero_count( int16_t *v )
  403. {
  404.     int i;
  405.     int i_nz;
  406.     for( i = 0, i_nz = 0; i < 16; i++ )
  407.         if( v[i] )
  408.             i_nz++;
  409.     return i_nz;
  410. }
  411. static inline int x264_mb_predict_intra4x4_mode( x264_t *h, int idx )
  412. {
  413.     const int ma = h->mb.cache.intra4x4_pred_mode[x264_scan8[idx] - 1];
  414.     const int mb = h->mb.cache.intra4x4_pred_mode[x264_scan8[idx] - 8];
  415.     const int m  = X264_MIN( x264_mb_pred_mode4x4_fix(ma),
  416.                              x264_mb_pred_mode4x4_fix(mb) );
  417.     if( m < 0 )
  418.         return I_PRED_4x4_DC;
  419.     return m;
  420. }
  421. static inline int x264_mb_predict_non_zero_code( x264_t *h, int idx )
  422. {
  423.     const int za = h->mb.cache.non_zero_count[x264_scan8[idx] - 1];
  424.     const int zb = h->mb.cache.non_zero_count[x264_scan8[idx] - 8];
  425.     int i_ret = za + zb;
  426.     if( i_ret < 0x80 )
  427.     {
  428.         i_ret = ( i_ret + 1 ) >> 1;
  429.     }
  430.     return i_ret & 0x7f;
  431. }
  432. /* x264_mb_transform_8x8_allowed:
  433.  *      check whether any partition is smaller than 8x8 (or at least
  434.  *      might be, according to just partition type.)
  435.  *      doesn't check for cbp */
  436. static inline int x264_mb_transform_8x8_allowed( x264_t *h )
  437. {
  438.     // intra and skip are disallowed
  439.     // large partitions are allowed
  440.     // direct and 8x8 are conditional
  441.     static const uint8_t partition_tab[X264_MBTYPE_MAX] = {
  442.         0,0,0,0,1,2,0,2,1,1,1,1,1,1,1,1,1,2,0,
  443.     };
  444.     int p, i;
  445.     if( !h->pps->b_transform_8x8_mode )
  446.         return 0;
  447.     p = partition_tab[h->mb.i_type];
  448.     if( p < 2 )
  449.         return p;
  450.     else if( h->mb.i_type == B_DIRECT )
  451.         return h->sps->b_direct8x8_inference;
  452.     else if( h->mb.i_type == P_8x8 )
  453.     {
  454.         if( !(h->param.analyse.inter & X264_ANALYSE_PSUB8x8) )
  455.             return 1;
  456.         for( i=0; i<4; i++ )
  457.             if( h->mb.i_sub_partition[i] != D_L0_8x8 )
  458.                 return 0;
  459.         return 1;
  460.     }
  461.     else // B_8x8
  462.     {
  463.         // x264 currently doesn't use sub-8x8 B partitions, so don't check for them
  464.         if( h->sps->b_direct8x8_inference )
  465.             return 1;
  466.         for( i=0; i<4; i++ )
  467.             if( h->mb.i_sub_partition[i] == D_DIRECT_8x8 )
  468.                 return 0;
  469.         return 1;
  470.     }
  471. }
  472. #endif