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