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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * common.h: h264 encoder
  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. #ifndef X264_COMMON_H
  24. #define X264_COMMON_H
  25. /****************************************************************************
  26.  * Macros
  27.  ****************************************************************************/
  28. #define X264_MIN(a,b) ( (a)<(b) ? (a) : (b) )
  29. #define X264_MAX(a,b) ( (a)>(b) ? (a) : (b) )
  30. #define X264_MIN3(a,b,c) X264_MIN((a),X264_MIN((b),(c)))
  31. #define X264_MAX3(a,b,c) X264_MAX((a),X264_MAX((b),(c)))
  32. #define X264_MIN4(a,b,c,d) X264_MIN((a),X264_MIN3((b),(c),(d)))
  33. #define X264_MAX4(a,b,c,d) X264_MAX((a),X264_MAX3((b),(c),(d)))
  34. #define XCHG(type,a,b) do{ type t = a; a = b; b = t; } while(0)
  35. #define FIX8(f) ((int)(f*(1<<8)+.5))
  36. #define CHECKED_MALLOC( var, size )
  37. do {
  38.     var = x264_malloc( size );
  39.     if( !var )
  40.         goto fail;
  41. } while( 0 )
  42. #define CHECKED_MALLOCZERO( var, size )
  43. do {
  44.     CHECKED_MALLOC( var, size );
  45.     memset( var, 0, size );
  46. } while( 0 )
  47. #define X264_BFRAME_MAX 16
  48. #define X264_THREAD_MAX 128
  49. #define X264_PCM_COST (386*8)
  50. #define X264_LOOKAHEAD_MAX 250
  51. // arbitrary, but low because SATD scores are 1/4 normal
  52. #define X264_LOOKAHEAD_QP 12
  53. // number of pixels (per thread) in progress at any given time.
  54. // 16 for the macroblock in progress + 3 for deblocking + 3 for motion compensation filter + 2 for extra safety
  55. #define X264_THREAD_HEIGHT 24
  56. /****************************************************************************
  57.  * Includes
  58.  ****************************************************************************/
  59. #include "osdep.h"
  60. #include <stdarg.h>
  61. #include <stddef.h>
  62. #include <stdlib.h>
  63. #include <string.h>
  64. #include <assert.h>
  65. #include <limits.h>
  66. #include "x264.h"
  67. #include "bs.h"
  68. #include "set.h"
  69. #include "predict.h"
  70. #include "pixel.h"
  71. #include "mc.h"
  72. #include "frame.h"
  73. #include "dct.h"
  74. #include "cabac.h"
  75. #include "quant.h"
  76. /****************************************************************************
  77.  * General functions
  78.  ****************************************************************************/
  79. /* x264_malloc : will do or emulate a memalign
  80.  * you have to use x264_free for buffers allocated with x264_malloc */
  81. void *x264_malloc( int );
  82. void  x264_free( void * );
  83. /* x264_slurp_file: malloc space for the whole file and read it */
  84. char *x264_slurp_file( const char *filename );
  85. /* mdate: return the current date in microsecond */
  86. int64_t x264_mdate( void );
  87. /* x264_param2string: return a (malloced) string containing most of
  88.  * the encoding options */
  89. char *x264_param2string( x264_param_t *p, int b_res );
  90. int x264_nal_encode( uint8_t *dst, int b_annexb, x264_nal_t *nal );
  91. /* log */
  92. void x264_log( x264_t *h, int i_level, const char *psz_fmt, ... );
  93. void x264_reduce_fraction( int *n, int *d );
  94. void x264_init_vlc_tables();
  95. static inline uint8_t x264_clip_uint8( int x )
  96. {
  97.     return x&(~255) ? (-x)>>31 : x;
  98. }
  99. static inline int x264_clip3( int v, int i_min, int i_max )
  100. {
  101.     return ( (v < i_min) ? i_min : (v > i_max) ? i_max : v );
  102. }
  103. static inline double x264_clip3f( double v, double f_min, double f_max )
  104. {
  105.     return ( (v < f_min) ? f_min : (v > f_max) ? f_max : v );
  106. }
  107. static inline int x264_median( int a, int b, int c )
  108. {
  109.     int t = (a-b)&((a-b)>>31);
  110.     a -= t;
  111.     b += t;
  112.     b -= (b-c)&((b-c)>>31);
  113.     b += (a-b)&((a-b)>>31);
  114.     return b;
  115. }
  116. static inline void x264_median_mv( int16_t *dst, int16_t *a, int16_t *b, int16_t *c )
  117. {
  118.     dst[0] = x264_median( a[0], b[0], c[0] );
  119.     dst[1] = x264_median( a[1], b[1], c[1] );
  120. }
  121. static inline int x264_predictor_difference( int16_t (*mvc)[2], intptr_t i_mvc )
  122. {
  123.     int sum = 0, i;
  124.     for( i = 0; i < i_mvc-1; i++ )
  125.     {
  126.         sum += abs( mvc[i][0] - mvc[i+1][0] )
  127.              + abs( mvc[i][1] - mvc[i+1][1] );
  128.     }
  129.     return sum;
  130. }
  131. static inline uint32_t x264_cabac_amvd_sum( int16_t *mvdleft, int16_t *mvdtop )
  132. {
  133.     int amvd0 = abs(mvdleft[0]) + abs(mvdtop[0]);
  134.     int amvd1 = abs(mvdleft[1]) + abs(mvdtop[1]);
  135.     amvd0 = (amvd0 > 2) + (amvd0 > 32);
  136.     amvd1 = (amvd1 > 2) + (amvd1 > 32);
  137.     return amvd0 + (amvd1<<16);
  138. }
  139. extern const uint8_t x264_exp2_lut[64];
  140. extern const float x264_log2_lut[128];
  141. extern const float x264_log2_lz_lut[32];
  142. /* Not a general-purpose function; multiplies input by -1/6 to convert
  143.  * qp to qscale. */
  144. static ALWAYS_INLINE int x264_exp2fix8( float x )
  145. {
  146.     //C程序不能中间定义变量 --@lia
  147. int i;
  148. if( x >= 512.f/6.f ) return 0;
  149.     if( x <= -512.f/6.f ) return 0xffff;
  150. //C程序不能中间定义变量 --@lia
  151.     //int 
  152. i = x*(-64.f/6.f) + 512;
  153.     return (x264_exp2_lut[i&63]+256) << (i>>6) >> 8;
  154. }
  155. static ALWAYS_INLINE float x264_log2( uint32_t x )
  156. {
  157.     int lz = x264_clz( x );
  158.     return x264_log2_lut[(x<<lz>>24)&0x7f] + x264_log2_lz_lut[lz];
  159. }
  160. /****************************************************************************
  161.  *
  162.  ****************************************************************************/
  163. enum slice_type_e
  164. {
  165.     SLICE_TYPE_P  = 0,
  166.     SLICE_TYPE_B  = 1,
  167.     SLICE_TYPE_I  = 2,
  168.     SLICE_TYPE_SP = 3,
  169.     SLICE_TYPE_SI = 4
  170. };
  171. static const char slice_type_to_char[] = { 'P', 'B', 'I', 'S', 'S' };
  172. typedef struct
  173. {
  174.     x264_sps_t *sps;
  175.     x264_pps_t *pps;
  176.     int i_type;
  177.     int i_first_mb;
  178.     int i_last_mb;
  179.     int i_pps_id;
  180.     int i_frame_num;
  181.     int b_mbaff;
  182.     int b_field_pic;
  183.     int b_bottom_field;
  184.     int i_idr_pic_id;   /* -1 if nal_type != 5 */
  185.     int i_poc_lsb;
  186.     int i_delta_poc_bottom;
  187.     int i_delta_poc[2];
  188.     int i_redundant_pic_cnt;
  189.     int b_direct_spatial_mv_pred;
  190.     int b_num_ref_idx_override;
  191.     int i_num_ref_idx_l0_active;
  192.     int i_num_ref_idx_l1_active;
  193.     int b_ref_pic_list_reordering_l0;
  194.     int b_ref_pic_list_reordering_l1;
  195.     struct {
  196.         int idc;
  197.         int arg;
  198.     } ref_pic_list_order[2][16];
  199.     int i_cabac_init_idc;
  200.     int i_qp;
  201.     int i_qp_delta;
  202.     int b_sp_for_swidth;
  203.     int i_qs_delta;
  204.     /* deblocking filter */
  205.     int i_disable_deblocking_filter_idc;
  206.     int i_alpha_c0_offset;
  207.     int i_beta_offset;
  208. } x264_slice_header_t;
  209. typedef struct x264_lookahead_t
  210. {
  211.     volatile uint8_t              b_exit_thread;
  212.     uint8_t                       b_thread_active;
  213.     uint8_t                       b_analyse_keyframe;
  214.     int                           i_last_idr;
  215.     int                           i_slicetype_length;
  216.     x264_frame_t                  *last_nonb;
  217.     x264_synch_frame_list_t       ifbuf;
  218.     x264_synch_frame_list_t       next;
  219.     x264_synch_frame_list_t       ofbuf;
  220. } x264_lookahead_t;
  221. /* From ffmpeg
  222.  */
  223. #define X264_SCAN8_SIZE (6*8)
  224. #define X264_SCAN8_0 (4+1*8)
  225. static const int x264_scan8[16+2*4+3] =
  226. {
  227.     /* Luma */
  228.     4+1*8, 5+1*8, 4+2*8, 5+2*8,
  229.     6+1*8, 7+1*8, 6+2*8, 7+2*8,
  230.     4+3*8, 5+3*8, 4+4*8, 5+4*8,
  231.     6+3*8, 7+3*8, 6+4*8, 7+4*8,
  232.     /* Cb */
  233.     1+1*8, 2+1*8,
  234.     1+2*8, 2+2*8,
  235.     /* Cr */
  236.     1+4*8, 2+4*8,
  237.     1+5*8, 2+5*8,
  238.     /* Luma DC */
  239.     4+5*8,
  240.     /* Chroma DC */
  241.     5+5*8, 6+5*8
  242. };
  243. /*
  244.    0 1 2 3 4 5 6 7
  245.  0
  246.  1   B B   L L L L
  247.  2   B B   L L L L
  248.  3         L L L L
  249.  4   R R   L L L L
  250.  5   R R   DyDuDv
  251. */
  252. typedef struct x264_ratecontrol_t   x264_ratecontrol_t;
  253. struct x264_t
  254. {
  255.     /* encoder parameters */
  256.     x264_param_t    param;
  257.     x264_t          *thread[X264_THREAD_MAX+1];
  258.     x264_pthread_t  thread_handle;
  259.     int             b_thread_active;
  260.     int             i_thread_phase; /* which thread to use for the next frame */
  261.     /* bitstream output */
  262.     struct
  263.     {
  264.         int         i_nal;
  265.         int         i_nals_allocated;
  266.         x264_nal_t  *nal;
  267.         int         i_bitstream;    /* size of p_bitstream */
  268.         uint8_t     *p_bitstream;   /* will hold data for all nal */
  269.         bs_t        bs;
  270.     } out;
  271.     uint8_t *nal_buffer;
  272.     int      nal_buffer_size;
  273.     /**** thread synchronization starts here ****/
  274.     /* frame number/poc */
  275.     int             i_frame;
  276.     int             i_frame_offset; /* decoding only */
  277.     int             i_frame_num;    /* decoding only */
  278.     int             i_poc_msb;      /* decoding only */
  279.     int             i_poc_lsb;      /* decoding only */
  280.     int             i_poc;          /* decoding only */
  281.     int             i_thread_num;   /* threads only */
  282.     int             i_nal_type;     /* threads only */
  283.     int             i_nal_ref_idc;  /* threads only */
  284.     /* We use only one SPS and one PPS */
  285.     x264_sps_t      sps_array[1];
  286.     x264_sps_t      *sps;
  287.     x264_pps_t      pps_array[1];
  288.     x264_pps_t      *pps;
  289.     int             i_idr_pic_id;
  290.     /* quantization matrix for decoding, [cqm][qp%6][coef_y][coef_x] */
  291.     int             (*dequant4_mf[4])[4][4]; /* [4][6][4][4] */
  292.     int             (*dequant8_mf[2])[8][8]; /* [2][6][8][8] */
  293.     /* quantization matrix for trellis, [cqm][qp][coef] */
  294.     int             (*unquant4_mf[4])[16];   /* [4][52][16] */
  295.     int             (*unquant8_mf[2])[64];   /* [2][52][64] */
  296.     /* quantization matrix for deadzone */
  297.     uint16_t        (*quant4_mf[4])[16];     /* [4][52][16] */
  298.     uint16_t        (*quant8_mf[2])[64];     /* [2][52][64] */
  299.     uint16_t        (*quant4_bias[4])[16];   /* [4][52][16] */
  300.     uint16_t        (*quant8_bias[2])[64];   /* [2][52][64] */
  301.     /* mv/ref cost arrays.  Indexed by lambda instead of
  302.      * qp because, due to rounding, some quantizers share
  303.      * lambdas.  This saves memory. */
  304.     uint16_t *cost_mv[92];
  305.     uint16_t *cost_mv_fpel[92][4];
  306.     const uint8_t   *chroma_qp_table; /* includes both the nonlinear luma->chroma mapping and chroma_qp_offset */
  307.     ALIGNED_16( uint32_t nr_residual_sum[2][64] );
  308.     ALIGNED_16( uint16_t nr_offset[2][64] );
  309.     uint32_t        nr_count[2];
  310.     /* Slice header */
  311.     x264_slice_header_t sh;
  312.     /* cabac context */
  313.     x264_cabac_t    cabac;
  314.     struct
  315.     {
  316.         /* Frames to be encoded (whose types have been decided) */
  317.         x264_frame_t **current;
  318.         /* Unused frames: 0 = fenc, 1 = fdec */
  319.         x264_frame_t **unused[2];
  320.         /* frames used for reference + sentinels */
  321.         x264_frame_t *reference[16+2];
  322.         int i_last_idr; /* Frame number of the last IDR */
  323.         int i_input;    /* Number of input frames already accepted */
  324.         int i_max_dpb;  /* Number of frames allocated in the decoded picture buffer */
  325.         int i_max_ref0;
  326.         int i_max_ref1;
  327.         int i_delay;    /* Number of frames buffered for B reordering */
  328.         int b_have_lowres;  /* Whether 1/2 resolution luma planes are being used */
  329.         int b_have_sub8x8_esa;
  330.     } frames;
  331.     /* current frame being encoded */
  332.     x264_frame_t    *fenc;
  333.     /* frame being reconstructed */
  334.     x264_frame_t    *fdec;
  335.     /* references lists */
  336.     int             i_ref0;
  337.     x264_frame_t    *fref0[16+3];     /* ref list 0 */
  338.     int             i_ref1;
  339.     x264_frame_t    *fref1[16+3];     /* ref list 1 */
  340.     int             b_ref_reorder[2];
  341.     /* Current MB DCT coeffs */
  342.     struct
  343.     {
  344.         ALIGNED_16( int16_t luma16x16_dc[16] );
  345.         ALIGNED_16( int16_t chroma_dc[2][4] );
  346.         // FIXME share memory?
  347.         ALIGNED_16( int16_t luma8x8[4][64] );
  348.         ALIGNED_16( int16_t luma4x4[16+8][16] );
  349.     } dct;
  350.     /* MB table and cache for current frame/mb */
  351.     struct
  352.     {
  353.         int     i_mb_count;                 /* number of mbs in a frame */
  354.         /* Strides */
  355.         int     i_mb_stride;
  356.         int     i_b8_stride;
  357.         int     i_b4_stride;
  358.         /* Current index */
  359.         int     i_mb_x;
  360.         int     i_mb_y;
  361.         int     i_mb_xy;
  362.         int     i_b8_xy;
  363.         int     i_b4_xy;
  364.         /* Search parameters */
  365.         int     i_me_method;
  366.         int     i_subpel_refine;
  367.         int     b_chroma_me;
  368.         int     b_trellis;
  369.         int     b_noise_reduction;
  370.         int     i_psy_rd; /* Psy RD strength--fixed point value*/
  371.         int     i_psy_trellis; /* Psy trellis strength--fixed point value*/
  372.         int     b_interlaced;
  373.         /* Allowed qpel MV range to stay within the picture + emulated edge pixels */
  374.         int     mv_min[2];
  375.         int     mv_max[2];
  376.         /* Subpel MV range for motion search.
  377.          * same mv_min/max but includes levels' i_mv_range. */
  378.         int     mv_min_spel[2];
  379.         int     mv_max_spel[2];
  380.         /* Fullpel MV range for motion search */
  381.         int     mv_min_fpel[2];
  382.         int     mv_max_fpel[2];
  383.         /* neighboring MBs */
  384.         unsigned int i_neighbour;
  385.         unsigned int i_neighbour8[4];       /* neighbours of each 8x8 or 4x4 block that are available */
  386.         unsigned int i_neighbour4[16];      /* at the time the block is coded */
  387.         unsigned int i_neighbour_intra;     /* for constrained intra pred */
  388.         int     i_mb_type_top;
  389.         int     i_mb_type_left;
  390.         int     i_mb_type_topleft;
  391.         int     i_mb_type_topright;
  392.         int     i_mb_prev_xy;
  393.         int     i_mb_top_xy;
  394.         /**** thread synchronization ends here ****/
  395.         /* subsequent variables are either thread-local or constant,
  396.          * and won't be copied from one thread to another */
  397.         /* mb table */
  398.         int8_t  *type;                      /* mb type */
  399.         int8_t  *qp;                        /* mb qp */
  400.         int16_t *cbp;                       /* mb cbp: 0x0?: luma, 0x?0: chroma, 0x100: luma dc, 0x0200 and 0x0400: chroma dc  (all set for PCM)*/
  401.         int8_t  (*intra4x4_pred_mode)[8];   /* intra4x4 pred mode. for non I4x4 set to I_PRED_4x4_DC(2) */
  402.                                             /* actually has only 7 entries; set to 8 for write-combining optimizations */
  403.         uint8_t (*non_zero_count)[16+4+4];  /* nzc. for I_PCM set to 16 */
  404.         int8_t  *chroma_pred_mode;          /* chroma_pred_mode. cabac only. for non intra I_PRED_CHROMA_DC(0) */
  405.         int16_t (*mv[2])[2];                /* mb mv. set to 0 for intra mb */
  406.         int16_t (*mvd[2])[2];               /* mb mv difference with predict. set to 0 if intra. cabac only */
  407.         int8_t   *ref[2];                   /* mb ref. set to -1 if non used (intra or Lx only) */
  408.         int16_t (*mvr[2][32])[2];           /* 16x16 mv for each possible ref */
  409.         int8_t  *skipbp;                    /* block pattern for SKIP or DIRECT (sub)mbs. B-frames + cabac only */
  410.         int8_t  *mb_transform_size;         /* transform_size_8x8_flag of each mb */
  411.         uint8_t *intra_border_backup[2][3]; /* bottom pixels of the previous mb row, used for intra prediction after the framebuffer has been deblocked */
  412.         uint8_t (*nnz_backup)[16];          /* when using cavlc + 8x8dct, the deblocker uses a modified nnz */
  413.         /* current value */
  414.         int     i_type;
  415.         int     i_partition;
  416.         ALIGNED_4( uint8_t i_sub_partition[4] );
  417.         int     b_transform_8x8;
  418.         int     i_cbp_luma;
  419.         int     i_cbp_chroma;
  420.         int     i_intra16x16_pred_mode;
  421.         int     i_chroma_pred_mode;
  422.         /* skip flags for i4x4 and i8x8
  423.          * 0 = encode as normal.
  424.          * 1 (non-RD only) = the DCT is still in h->dct, restore fdec and skip reconstruction.
  425.          * 2 (RD only) = the DCT has since been overwritten by RD; restore that too. */
  426.         int i_skip_intra;
  427.         /* skip flag for motion compensation */
  428.         /* if we've already done MC, we don't need to do it again */
  429.         int b_skip_mc;
  430.         /* set to true if we are re-encoding a macroblock. */
  431.         int b_reencode_mb;
  432.         struct
  433.         {
  434.             /* space for p_fenc and p_fdec */
  435. #define FENC_STRIDE 16
  436. #define FDEC_STRIDE 32
  437.             ALIGNED_16( uint8_t fenc_buf[24*FENC_STRIDE] );
  438.             ALIGNED_16( uint8_t fdec_buf[27*FDEC_STRIDE] );
  439.             /* i4x4 and i8x8 backup data, for skipping the encode stage when possible */
  440.             ALIGNED_16( uint8_t i4x4_fdec_buf[16*16] );
  441.             ALIGNED_16( uint8_t i8x8_fdec_buf[16*16] );
  442.             ALIGNED_16( int16_t i8x8_dct_buf[3][64] );
  443.             ALIGNED_16( int16_t i4x4_dct_buf[15][16] );
  444.             uint32_t i4x4_nnz_buf[4];
  445.             uint32_t i8x8_nnz_buf[4];
  446.             int i4x4_cbp;
  447.             int i8x8_cbp;
  448.             /* Psy trellis DCT data */
  449.             ALIGNED_16( int16_t fenc_dct8[4][64] );
  450.             ALIGNED_16( int16_t fenc_dct4[16][16] );
  451.             /* Psy RD SATD scores */
  452.             int fenc_satd[4][4];
  453.             int fenc_satd_sum;
  454.             int fenc_sa8d[2][2];
  455.             int fenc_sa8d_sum;
  456.             /* pointer over mb of the frame to be compressed */
  457.             uint8_t *p_fenc[3];
  458.             /* pointer to the actual source frame, not a block copy */
  459.             uint8_t *p_fenc_plane[3];
  460.             /* pointer over mb of the frame to be reconstructed  */
  461.             uint8_t *p_fdec[3];
  462.             /* pointer over mb of the references */
  463.             int i_fref[2];
  464.             uint8_t *p_fref[2][32][4+2]; /* last: lN, lH, lV, lHV, cU, cV */
  465.             uint16_t *p_integral[2][16];
  466.             /* fref stride */
  467.             int     i_stride[3];
  468.         } pic;
  469.         /* cache */
  470.         struct
  471.         {
  472.             /* real intra4x4_pred_mode if I_4X4 or I_8X8, I_PRED_4x4_DC if mb available, -1 if not */
  473.             int8_t  intra4x4_pred_mode[X264_SCAN8_SIZE];
  474.             /* i_non_zero_count if available else 0x80 */
  475.             uint8_t non_zero_count[X264_SCAN8_SIZE];
  476.             /* -1 if unused, -2 if unavailable */
  477.             ALIGNED_4( int8_t ref[2][X264_SCAN8_SIZE] );
  478.             /* 0 if not available */
  479.             ALIGNED_16( int16_t mv[2][X264_SCAN8_SIZE][2] );
  480.             ALIGNED_8( int16_t mvd[2][X264_SCAN8_SIZE][2] );
  481.             /* 1 if SKIP or DIRECT. set only for B-frames + CABAC */
  482.             ALIGNED_4( int8_t skip[X264_SCAN8_SIZE] );
  483.             ALIGNED_16( int16_t direct_mv[2][X264_SCAN8_SIZE][2] );
  484.             ALIGNED_4( int8_t  direct_ref[2][X264_SCAN8_SIZE] );
  485.             ALIGNED_4( int16_t pskip_mv[2] );
  486.             /* number of neighbors (top and left) that used 8x8 dct */
  487.             int     i_neighbour_transform_size;
  488.             int     i_neighbour_interlaced;
  489.             /* neighbor CBPs */
  490.             int     i_cbp_top;
  491.             int     i_cbp_left;
  492.         } cache;
  493.         /* */
  494.         int     i_qp;       /* current qp */
  495.         int     i_chroma_qp;
  496.         int     i_last_qp;  /* last qp */
  497.         int     i_last_dqp; /* last delta qp */
  498.         int     b_variable_qp; /* whether qp is allowed to vary per macroblock */
  499.         int     b_lossless;
  500.         int     b_direct_auto_read; /* take stats for --direct auto from the 2pass log */
  501.         int     b_direct_auto_write; /* analyse direct modes, to use and/or save */
  502.         /* lambda values */
  503.         int     i_trellis_lambda2[2][2]; /* [luma,chroma][inter,intra] */
  504.         int     i_psy_rd_lambda;
  505.         int     i_chroma_lambda2_offset;
  506.         /* B_direct and weighted prediction */
  507.         int16_t dist_scale_factor[16][2];
  508.         int16_t bipred_weight[32][4];
  509.         /* maps fref1[0]'s ref indices into the current list0 */
  510.         int8_t  map_col_to_list0_buf[2]; // for negative indices
  511.         int8_t  map_col_to_list0[16];
  512.     } mb;
  513.     /* rate control encoding only */
  514.     x264_ratecontrol_t *rc;
  515.     /* stats */
  516.     struct
  517.     {
  518.         /* Current frame stats */
  519.         struct
  520.         {
  521.             /* MV bits (MV+Ref+Block Type) */
  522.             int i_mv_bits;
  523.             /* Texture bits (DCT coefs) */
  524.             int i_tex_bits;
  525.             /* ? */
  526.             int i_misc_bits;
  527.             /* MB type counts */
  528.             int i_mb_count[19];
  529.             int i_mb_count_i;
  530.             int i_mb_count_p;
  531.             int i_mb_count_skip;
  532.             int i_mb_count_8x8dct[2];
  533.             int i_mb_count_ref[2][32];
  534.             int i_mb_partition[17];
  535.             int i_mb_cbp[6];
  536.             int i_mb_pred_mode[3][13];
  537.             /* Adaptive direct mv pred */
  538.             int i_direct_score[2];
  539.             /* Metrics */
  540.             int64_t i_ssd[3];
  541.             double f_ssim;
  542.         } frame;
  543.         /* Cumulated stats */
  544.         /* per slice info */
  545.         int     i_frame_count[5];
  546.         int64_t i_frame_size[5];
  547.         double  f_frame_qp[5];
  548.         int     i_consecutive_bframes[X264_BFRAME_MAX+1];
  549.         /* */
  550.         int64_t i_ssd_global[5];
  551.         double  f_psnr_average[5];
  552.         double  f_psnr_mean_y[5];
  553.         double  f_psnr_mean_u[5];
  554.         double  f_psnr_mean_v[5];
  555.         double  f_ssim_mean_y[5];
  556.         /* */
  557.         int64_t i_mb_count[5][19];
  558.         int64_t i_mb_partition[2][17];
  559.         int64_t i_mb_count_8x8dct[2];
  560.         int64_t i_mb_count_ref[2][2][32];
  561.         int64_t i_mb_cbp[6];
  562.         int64_t i_mb_pred_mode[3][13];
  563.         /* */
  564.         int     i_direct_score[2];
  565.         int     i_direct_frames[2];
  566.     } stat;
  567.     void *scratch_buffer; /* for any temporary storage that doesn't want repeated malloc */
  568.     /* CPU functions dependents */
  569.     x264_predict_t      predict_16x16[4+3];
  570.     x264_predict_t      predict_8x8c[4+3];
  571.     x264_predict8x8_t   predict_8x8[9+3];
  572.     x264_predict_t      predict_4x4[9+3];
  573.     x264_predict_8x8_filter_t predict_8x8_filter;
  574.     x264_pixel_function_t pixf;
  575.     x264_mc_functions_t   mc;
  576.     x264_dct_function_t   dctf;
  577.     x264_zigzag_function_t zigzagf;
  578.     x264_quant_function_t quantf;
  579.     x264_deblock_function_t loopf;
  580. #if VISUALIZE
  581.     struct visualize_t *visualize;
  582. #endif
  583.     x264_lookahead_t *lookahead;
  584. };
  585. // included at the end because it needs x264_t
  586. #include "macroblock.h"
  587. #ifdef HAVE_MMX
  588. #include "x86/util.h"
  589. #endif
  590. #endif