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