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

Audio

开发平台:

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