]> git.sesse.net Git - x264/blob - common/common.h
743bd6cb56fb56a2ba66cff7558a7437436fcf95
[x264] / common / common.h
1 /*****************************************************************************
2  * common.h: misc common functions
3  *****************************************************************************
4  * Copyright (C) 2003-2011 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  * This program is also available under a commercial proprietary license.
24  * For more information, contact us at licensing@x264.com.
25  *****************************************************************************/
26
27 #ifndef X264_COMMON_H
28 #define X264_COMMON_H
29
30 /****************************************************************************
31  * Macros
32  ****************************************************************************/
33 #define X264_MIN(a,b) ( (a)<(b) ? (a) : (b) )
34 #define X264_MAX(a,b) ( (a)>(b) ? (a) : (b) )
35 #define X264_MIN3(a,b,c) X264_MIN((a),X264_MIN((b),(c)))
36 #define X264_MAX3(a,b,c) X264_MAX((a),X264_MAX((b),(c)))
37 #define X264_MIN4(a,b,c,d) X264_MIN((a),X264_MIN3((b),(c),(d)))
38 #define X264_MAX4(a,b,c,d) X264_MAX((a),X264_MAX3((b),(c),(d)))
39 #define XCHG(type,a,b) do{ type t = a; a = b; b = t; } while(0)
40 #define IS_DISPOSABLE(type) ( type == X264_TYPE_B )
41 #define FIX8(f) ((int)(f*(1<<8)+.5))
42 #define ALIGN(x,a) (((x)+((a)-1))&~((a)-1))
43
44 #define CHECKED_MALLOC( var, size )\
45 do {\
46     var = x264_malloc( size );\
47     if( !var )\
48         goto fail;\
49 } while( 0 )
50 #define CHECKED_MALLOCZERO( var, size )\
51 do {\
52     CHECKED_MALLOC( var, size );\
53     memset( var, 0, size );\
54 } while( 0 )
55
56 #define X264_BFRAME_MAX 16
57 #define X264_REF_MAX 16
58 #define X264_THREAD_MAX 128
59 #define X264_PCM_COST (384*BIT_DEPTH+16)
60 #define X264_LOOKAHEAD_MAX 250
61 #define QP_BD_OFFSET (6*(BIT_DEPTH-8))
62 #define QP_MAX_SPEC (51+QP_BD_OFFSET)
63 #define QP_MAX (QP_MAX_SPEC+18)
64 #define QP_MAX_MAX (51+2*6+18)
65 #define PIXEL_MAX ((1 << BIT_DEPTH)-1)
66 // arbitrary, but low because SATD scores are 1/4 normal
67 #define X264_LOOKAHEAD_QP (12+QP_BD_OFFSET)
68 #define SPEC_QP(x) X264_MIN((x), QP_MAX_SPEC)
69
70 // number of pixels (per thread) in progress at any given time.
71 // 16 for the macroblock in progress + 3 for deblocking + 3 for motion compensation filter + 2 for extra safety
72 #define X264_THREAD_HEIGHT 24
73
74 /* WEIGHTP_FAKE is set when mb_tree & psy are enabled, but normal weightp is disabled
75  * (such as in baseline). It checks for fades in lookahead and adjusts qp accordingly
76  * to increase quality. Defined as (-1) so that if(i_weighted_pred > 0) is true only when
77  * real weights are being used. */
78
79 #define X264_WEIGHTP_FAKE (-1)
80
81 #define NALU_OVERHEAD 5 // startcode + NAL type costs 5 bytes per frame
82 #define FILLER_OVERHEAD (NALU_OVERHEAD+1)
83
84 /****************************************************************************
85  * Includes
86  ****************************************************************************/
87 #include "osdep.h"
88 #include <stdarg.h>
89 #include <stddef.h>
90 #include <stdlib.h>
91 #include <string.h>
92 #include <assert.h>
93 #include <limits.h>
94
95 /* Unions for type-punning.
96  * Mn: load or store n bits, aligned, native-endian
97  * CPn: copy n bits, aligned, native-endian
98  * we don't use memcpy for CPn because memcpy's args aren't assumed to be aligned */
99 typedef union { uint16_t i; uint8_t  c[2]; } MAY_ALIAS x264_union16_t;
100 typedef union { uint32_t i; uint16_t b[2]; uint8_t  c[4]; } MAY_ALIAS x264_union32_t;
101 typedef union { uint64_t i; uint32_t a[2]; uint16_t b[4]; uint8_t c[8]; } MAY_ALIAS x264_union64_t;
102 typedef struct { uint64_t i[2]; } x264_uint128_t;
103 typedef union { x264_uint128_t i; uint64_t a[2]; uint32_t b[4]; uint16_t c[8]; uint8_t d[16]; } MAY_ALIAS x264_union128_t;
104 #define M16(src) (((x264_union16_t*)(src))->i)
105 #define M32(src) (((x264_union32_t*)(src))->i)
106 #define M64(src) (((x264_union64_t*)(src))->i)
107 #define M128(src) (((x264_union128_t*)(src))->i)
108 #define M128_ZERO ((x264_uint128_t){{0,0}})
109 #define CP16(dst,src) M16(dst) = M16(src)
110 #define CP32(dst,src) M32(dst) = M32(src)
111 #define CP64(dst,src) M64(dst) = M64(src)
112 #define CP128(dst,src) M128(dst) = M128(src)
113
114 #if HIGH_BIT_DEPTH
115     typedef uint16_t pixel;
116     typedef uint64_t pixel4;
117     typedef int32_t  dctcoef;
118     typedef uint32_t udctcoef;
119
120 #   define PIXEL_SPLAT_X4(x) ((x)*0x0001000100010001ULL)
121 #   define MPIXEL_X4(src) M64(src)
122 #else
123     typedef uint8_t  pixel;
124     typedef uint32_t pixel4;
125     typedef int16_t  dctcoef;
126     typedef uint16_t udctcoef;
127
128 #   define PIXEL_SPLAT_X4(x) ((x)*0x01010101U)
129 #   define MPIXEL_X4(src) M32(src)
130 #endif
131
132 #define BIT_DEPTH X264_BIT_DEPTH
133
134 #define CPPIXEL_X4(dst,src) MPIXEL_X4(dst) = MPIXEL_X4(src)
135
136 #define X264_SCAN8_SIZE (6*8)
137 #define X264_SCAN8_LUMA_SIZE (5*8)
138 #define X264_SCAN8_0 (4+1*8)
139
140 static const unsigned x264_scan8[16+2*4+3] =
141 {
142     /* Luma */
143     4+1*8, 5+1*8, 4+2*8, 5+2*8,
144     6+1*8, 7+1*8, 6+2*8, 7+2*8,
145     4+3*8, 5+3*8, 4+4*8, 5+4*8,
146     6+3*8, 7+3*8, 6+4*8, 7+4*8,
147
148     /* Cb */
149     1+1*8, 2+1*8,
150     1+2*8, 2+2*8,
151
152     /* Cr */
153     1+4*8, 2+4*8,
154     1+5*8, 2+5*8,
155
156     /* Luma DC */
157     4+5*8,
158
159     /* Chroma DC */
160     6+5*8, 7+5*8
161 };
162 /*
163    0 1 2 3 4 5 6 7
164  0
165  1   B B   L L L L
166  2   B B   L L L L
167  3         L L L L
168  4   R R   L L L L
169  5   R R   Dy  DuDv
170 */
171
172 #include "x264.h"
173 #include "bitstream.h"
174 #include "set.h"
175 #include "predict.h"
176 #include "pixel.h"
177 #include "mc.h"
178 #include "frame.h"
179 #include "dct.h"
180 #include "cabac.h"
181 #include "quant.h"
182 #include "cpu.h"
183 #include "threadpool.h"
184
185 /****************************************************************************
186  * General functions
187  ****************************************************************************/
188 /* x264_malloc : will do or emulate a memalign
189  * you have to use x264_free for buffers allocated with x264_malloc */
190 void *x264_malloc( int );
191 void  x264_free( void * );
192
193 /* x264_slurp_file: malloc space for the whole file and read it */
194 char *x264_slurp_file( const char *filename );
195
196 /* mdate: return the current date in microsecond */
197 int64_t x264_mdate( void );
198
199 /* x264_param2string: return a (malloced) string containing most of
200  * the encoding options */
201 char *x264_param2string( x264_param_t *p, int b_res );
202
203 /* log */
204 void x264_log( x264_t *h, int i_level, const char *psz_fmt, ... );
205
206 void x264_reduce_fraction( uint32_t *n, uint32_t *d );
207 void x264_reduce_fraction64( uint64_t *n, uint64_t *d );
208 void x264_cavlc_init( void );
209 void x264_cabac_init( void );
210
211 static ALWAYS_INLINE pixel x264_clip_pixel( int x )
212 {
213     return ( (x & ~PIXEL_MAX) ? (-x)>>31 & PIXEL_MAX : x );
214 }
215
216 static ALWAYS_INLINE int x264_clip3( int v, int i_min, int i_max )
217 {
218     return ( (v < i_min) ? i_min : (v > i_max) ? i_max : v );
219 }
220
221 static ALWAYS_INLINE double x264_clip3f( double v, double f_min, double f_max )
222 {
223     return ( (v < f_min) ? f_min : (v > f_max) ? f_max : v );
224 }
225
226 static ALWAYS_INLINE int x264_median( int a, int b, int c )
227 {
228     int t = (a-b)&((a-b)>>31);
229     a -= t;
230     b += t;
231     b -= (b-c)&((b-c)>>31);
232     b += (a-b)&((a-b)>>31);
233     return b;
234 }
235
236 static ALWAYS_INLINE void x264_median_mv( int16_t *dst, int16_t *a, int16_t *b, int16_t *c )
237 {
238     dst[0] = x264_median( a[0], b[0], c[0] );
239     dst[1] = x264_median( a[1], b[1], c[1] );
240 }
241
242 static ALWAYS_INLINE int x264_predictor_difference( int16_t (*mvc)[2], intptr_t i_mvc )
243 {
244     int sum = 0;
245     for( int i = 0; i < i_mvc-1; i++ )
246     {
247         sum += abs( mvc[i][0] - mvc[i+1][0] )
248              + abs( mvc[i][1] - mvc[i+1][1] );
249     }
250     return sum;
251 }
252
253 static ALWAYS_INLINE uint16_t x264_cabac_mvd_sum( uint8_t *mvdleft, uint8_t *mvdtop )
254 {
255     int amvd0 = abs(mvdleft[0]) + abs(mvdtop[0]);
256     int amvd1 = abs(mvdleft[1]) + abs(mvdtop[1]);
257     amvd0 = (amvd0 > 2) + (amvd0 > 32);
258     amvd1 = (amvd1 > 2) + (amvd1 > 32);
259     return amvd0 + (amvd1<<8);
260 }
261
262 static void ALWAYS_INLINE x264_predictor_roundclip( int16_t (*dst)[2], int16_t (*mvc)[2], int i_mvc, int mv_x_min, int mv_x_max, int mv_y_min, int mv_y_max )
263 {
264     for( int i = 0; i < i_mvc; i++ )
265     {
266         int mx = (mvc[i][0] + 2) >> 2;
267         int my = (mvc[i][1] + 2) >> 2;
268         dst[i][0] = x264_clip3( mx, mv_x_min, mv_x_max );
269         dst[i][1] = x264_clip3( my, mv_y_min, mv_y_max );
270     }
271 }
272
273 extern const uint8_t x264_exp2_lut[64];
274 extern const float x264_log2_lut[128];
275 extern const float x264_log2_lz_lut[32];
276
277 /* Not a general-purpose function; multiplies input by -1/6 to convert
278  * qp to qscale. */
279 static ALWAYS_INLINE int x264_exp2fix8( float x )
280 {
281     int i = x*(-64.f/6.f) + 512.5f;
282     if( i < 0 ) return 0;
283     if( i > 1023 ) return 0xffff;
284     return (x264_exp2_lut[i&63]+256) << (i>>6) >> 8;
285 }
286
287 static ALWAYS_INLINE float x264_log2( uint32_t x )
288 {
289     int lz = x264_clz( x );
290     return x264_log2_lut[(x<<lz>>24)&0x7f] + x264_log2_lz_lut[lz];
291 }
292
293 /****************************************************************************
294  *
295  ****************************************************************************/
296 enum slice_type_e
297 {
298     SLICE_TYPE_P  = 0,
299     SLICE_TYPE_B  = 1,
300     SLICE_TYPE_I  = 2,
301 };
302
303 static const char slice_type_to_char[] = { 'P', 'B', 'I' };
304
305 enum sei_payload_type_e
306 {
307     SEI_BUFFERING_PERIOD       = 0,
308     SEI_PIC_TIMING             = 1,
309     SEI_PAN_SCAN_RECT          = 2,
310     SEI_FILLER                 = 3,
311     SEI_USER_DATA_REGISTERED   = 4,
312     SEI_USER_DATA_UNREGISTERED = 5,
313     SEI_RECOVERY_POINT         = 6,
314     SEI_DEC_REF_PIC_MARKING    = 7,
315     SEI_FRAME_PACKING          = 45,
316 };
317
318 typedef struct
319 {
320     x264_sps_t *sps;
321     x264_pps_t *pps;
322
323     int i_type;
324     int i_first_mb;
325     int i_last_mb;
326
327     int i_pps_id;
328
329     int i_frame_num;
330
331     int b_mbaff;
332     int b_field_pic;
333     int b_bottom_field;
334
335     int i_idr_pic_id;   /* -1 if nal_type != 5 */
336
337     int i_poc;
338     int i_delta_poc_bottom;
339
340     int i_delta_poc[2];
341     int i_redundant_pic_cnt;
342
343     int b_direct_spatial_mv_pred;
344
345     int b_num_ref_idx_override;
346     int i_num_ref_idx_l0_active;
347     int i_num_ref_idx_l1_active;
348
349     int b_ref_pic_list_reordering[2];
350     struct
351     {
352         int idc;
353         int arg;
354     } ref_pic_list_order[2][X264_REF_MAX];
355
356     /* P-frame weighting */
357     x264_weight_t weight[X264_REF_MAX*2][3];
358
359     int i_mmco_remove_from_end;
360     int i_mmco_command_count;
361     struct /* struct for future expansion */
362     {
363         int i_difference_of_pic_nums;
364         int i_poc;
365     } mmco[X264_REF_MAX];
366
367     int i_cabac_init_idc;
368
369     int i_qp;
370     int i_qp_delta;
371     int b_sp_for_swidth;
372     int i_qs_delta;
373
374     /* deblocking filter */
375     int i_disable_deblocking_filter_idc;
376     int i_alpha_c0_offset;
377     int i_beta_offset;
378
379 } x264_slice_header_t;
380
381 typedef struct x264_lookahead_t
382 {
383     volatile uint8_t              b_exit_thread;
384     uint8_t                       b_thread_active;
385     uint8_t                       b_analyse_keyframe;
386     int                           i_last_keyframe;
387     int                           i_slicetype_length;
388     x264_frame_t                  *last_nonb;
389     x264_pthread_t                thread_handle;
390     x264_sync_frame_list_t        ifbuf;
391     x264_sync_frame_list_t        next;
392     x264_sync_frame_list_t        ofbuf;
393 } x264_lookahead_t;
394
395 typedef struct x264_ratecontrol_t   x264_ratecontrol_t;
396
397 typedef struct x264_left_table_t
398 {
399     uint8_t intra[4];
400     uint8_t nnz[4];
401     uint8_t nnz_chroma[4];
402     uint8_t mv[4];
403     uint8_t ref[4];
404 } x264_left_table_t;
405
406 struct x264_t
407 {
408     /* encoder parameters */
409     x264_param_t    param;
410
411     x264_t          *thread[X264_THREAD_MAX+1];
412     int             b_thread_active;
413     int             i_thread_phase; /* which thread to use for the next frame */
414     int             i_threadslice_start; /* first row in this thread slice */
415     int             i_threadslice_end; /* row after the end of this thread slice */
416     x264_threadpool_t *threadpool;
417
418     /* bitstream output */
419     struct
420     {
421         int         i_nal;
422         int         i_nals_allocated;
423         x264_nal_t  *nal;
424         int         i_bitstream;    /* size of p_bitstream */
425         uint8_t     *p_bitstream;   /* will hold data for all nal */
426         bs_t        bs;
427     } out;
428
429     uint8_t *nal_buffer;
430     int      nal_buffer_size;
431
432     x264_sps_t      *sps;
433     x264_pps_t      *pps;
434
435     /**** thread synchronization starts here ****/
436
437     /* frame number/poc */
438     int             i_frame;
439     int             i_frame_num;
440
441     int             i_thread_frames; /* Number of different frames being encoded by threads;
442                                       * 1 when sliced-threads is on. */
443     int             i_nal_type;
444     int             i_nal_ref_idc;
445
446     int64_t         i_disp_fields;  /* Number of displayed fields (both coded and implied via pic_struct) */
447     int             i_disp_fields_last_frame;
448     int64_t         i_prev_duration; /* Duration of previous frame */
449     int64_t         i_coded_fields; /* Number of coded fields (both coded and implied via pic_struct) */
450     int64_t         i_cpb_delay;    /* Equal to number of fields preceding this field
451                                      * since last buffering_period SEI */
452     int64_t         i_coded_fields_lookahead; /* Use separate counters for lookahead */
453     int64_t         i_cpb_delay_lookahead;
454
455     int64_t         i_cpb_delay_pir_offset;
456
457     int             b_queued_intra_refresh;
458     int64_t         i_last_idr_pts;
459
460     /* We use only one SPS and one PPS */
461     x264_sps_t      sps_array[1];
462     x264_pps_t      pps_array[1];
463     int             i_idr_pic_id;
464
465     /* quantization matrix for decoding, [cqm][qp%6][coef] */
466     int             (*dequant4_mf[4])[16];   /* [4][6][16] */
467     int             (*dequant8_mf[2])[64];   /* [2][6][64] */
468     /* quantization matrix for trellis, [cqm][qp][coef] */
469     int             (*unquant4_mf[4])[16];   /* [4][52][16] */
470     int             (*unquant8_mf[2])[64];   /* [2][52][64] */
471     /* quantization matrix for deadzone */
472     udctcoef        (*quant4_mf[4])[16];     /* [4][52][16] */
473     udctcoef        (*quant8_mf[2])[64];     /* [2][52][64] */
474     udctcoef        (*quant4_bias[4])[16];   /* [4][52][16] */
475     udctcoef        (*quant8_bias[2])[64];   /* [2][52][64] */
476     udctcoef        (*nr_offset_emergency)[3][64];
477
478     /* mv/ref cost arrays. */
479     uint16_t *cost_mv[QP_MAX+1];
480     uint16_t *cost_mv_fpel[QP_MAX+1][4];
481
482     const uint8_t   *chroma_qp_table; /* includes both the nonlinear luma->chroma mapping and chroma_qp_offset */
483
484     /* Slice header */
485     x264_slice_header_t sh;
486
487     /* Slice header backup, for SEI_DEC_REF_PIC_MARKING */
488     int b_sh_backup;
489     x264_slice_header_t sh_backup;
490
491     /* cabac context */
492     x264_cabac_t    cabac;
493
494     struct
495     {
496         /* Frames to be encoded (whose types have been decided) */
497         x264_frame_t **current;
498         /* Unused frames: 0 = fenc, 1 = fdec */
499         x264_frame_t **unused[2];
500
501         /* Unused blank frames (for duplicates) */
502         x264_frame_t **blank_unused;
503
504         /* frames used for reference + sentinels */
505         x264_frame_t *reference[X264_REF_MAX+2];
506
507         int i_last_keyframe;       /* Frame number of the last keyframe */
508         int i_last_idr;            /* Frame number of the last IDR (not RP)*/
509         int i_poc_last_open_gop;   /* Poc of the I frame of the last open-gop. The value
510                                     * is only assigned during the period between that
511                                     * I frame and the next P or I frame, else -1 */
512
513         int i_input;    /* Number of input frames already accepted */
514
515         int i_max_dpb;  /* Number of frames allocated in the decoded picture buffer */
516         int i_max_ref0;
517         int i_max_ref1;
518         int i_delay;    /* Number of frames buffered for B reordering */
519         int     i_bframe_delay;
520         int64_t i_bframe_delay_time;
521         int64_t i_first_pts;
522         int64_t i_prev_reordered_pts[2];
523         int64_t i_largest_pts;
524         int64_t i_second_largest_pts;
525         int b_have_lowres;  /* Whether 1/2 resolution luma planes are being used */
526         int b_have_sub8x8_esa;
527     } frames;
528
529     /* current frame being encoded */
530     x264_frame_t    *fenc;
531
532     /* frame being reconstructed */
533     x264_frame_t    *fdec;
534
535     /* references lists */
536     int             i_ref[2];
537     x264_frame_t    *fref[2][X264_REF_MAX+3];
538     x264_frame_t    *fref_nearest[2];
539     int             b_ref_reorder[2];
540
541     /* hrd */
542     int initial_cpb_removal_delay;
543     int initial_cpb_removal_delay_offset;
544     int64_t i_reordered_pts_delay;
545
546     /* Current MB DCT coeffs */
547     struct
548     {
549         ALIGNED_16( dctcoef luma16x16_dc[16] );
550         ALIGNED_16( dctcoef chroma_dc[2][4] );
551         // FIXME share memory?
552         ALIGNED_16( dctcoef luma8x8[4][64] );
553         ALIGNED_16( dctcoef luma4x4[16+8][16] );
554     } dct;
555
556     /* MB table and cache for current frame/mb */
557     struct
558     {
559         int     i_mb_width;
560         int     i_mb_height;
561         int     i_mb_count;                 /* number of mbs in a frame */
562
563         /* Strides */
564         int     i_mb_stride;
565         int     i_b8_stride;
566         int     i_b4_stride;
567         int     left_b8[2];
568         int     left_b4[2];
569
570         /* Current index */
571         int     i_mb_x;
572         int     i_mb_y;
573         int     i_mb_xy;
574         int     i_b8_xy;
575         int     i_b4_xy;
576
577         /* Search parameters */
578         int     i_me_method;
579         int     i_subpel_refine;
580         int     b_chroma_me;
581         int     b_trellis;
582         int     b_noise_reduction;
583         int     b_dct_decimate;
584         int     i_psy_rd; /* Psy RD strength--fixed point value*/
585         int     i_psy_trellis; /* Psy trellis strength--fixed point value*/
586
587         int     b_interlaced;
588         int     b_adaptive_mbaff; /* MBAFF+subme 0 requires non-adaptive MBAFF i.e. all field mbs */
589
590         /* Allowed qpel MV range to stay within the picture + emulated edge pixels */
591         int     mv_min[2];
592         int     mv_max[2];
593         /* Subpel MV range for motion search.
594          * same mv_min/max but includes levels' i_mv_range. */
595         int     mv_min_spel[2];
596         int     mv_max_spel[2];
597         /* Fullpel MV range for motion search */
598         int     mv_min_fpel[2];
599         int     mv_max_fpel[2];
600
601         /* neighboring MBs */
602         unsigned int i_neighbour;
603         unsigned int i_neighbour8[4];       /* neighbours of each 8x8 or 4x4 block that are available */
604         unsigned int i_neighbour4[16];      /* at the time the block is coded */
605         unsigned int i_neighbour_intra;     /* for constrained intra pred */
606         unsigned int i_neighbour_frame;     /* ignoring slice boundaries */
607         int     i_mb_type_top;
608         int     i_mb_type_left[2];
609         int     i_mb_type_topleft;
610         int     i_mb_type_topright;
611         int     i_mb_prev_xy;
612         int     i_mb_left_xy[2];
613         int     i_mb_top_xy;
614         int     i_mb_topleft_xy;
615         int     i_mb_topright_xy;
616         int     i_mb_top_y;
617         int     i_mb_topleft_y;
618         int     i_mb_topright_y;
619         x264_left_table_t *left_index_table;
620         int     topleft_partition;
621
622         /**** thread synchronization ends here ****/
623         /* subsequent variables are either thread-local or constant,
624          * and won't be copied from one thread to another */
625
626         /* mb table */
627         int8_t  *type;                      /* mb type */
628         uint8_t *partition;                 /* mb partition */
629         int8_t  *qp;                        /* mb qp */
630         int16_t *cbp;                       /* mb cbp: 0x0?: luma, 0x?0: chroma, 0x100: luma dc, 0x0200 and 0x0400: chroma dc  (all set for PCM)*/
631         int8_t  (*intra4x4_pred_mode)[8];   /* intra4x4 pred mode. for non I4x4 set to I_PRED_4x4_DC(2) */
632                                             /* actually has only 7 entries; set to 8 for write-combining optimizations */
633         uint8_t (*non_zero_count)[16+4+4];  /* nzc. for I_PCM set to 16 */
634         int8_t  *chroma_pred_mode;          /* chroma_pred_mode. cabac only. for non intra I_PRED_CHROMA_DC(0) */
635         int16_t (*mv[2])[2];                /* mb mv. set to 0 for intra mb */
636         uint8_t (*mvd[2])[8][2];            /* absolute value of mb mv difference with predict, clipped to [0,33]. set to 0 if intra. cabac only */
637         int8_t   *ref[2];                   /* mb ref. set to -1 if non used (intra or Lx only) */
638         int16_t (*mvr[2][X264_REF_MAX*2])[2];/* 16x16 mv for each possible ref */
639         int8_t  *skipbp;                    /* block pattern for SKIP or DIRECT (sub)mbs. B-frames + cabac only */
640         int8_t  *mb_transform_size;         /* transform_size_8x8_flag of each mb */
641         uint16_t *slice_table;              /* sh->first_mb of the slice that the indexed mb is part of
642                                              * NOTE: this will fail on resolutions above 2^16 MBs... */
643         uint8_t *field;
644
645          /* buffer for weighted versions of the reference frames */
646         pixel *p_weight_buf[X264_REF_MAX];
647
648         /* current value */
649         int     i_type;
650         int     i_partition;
651         ALIGNED_4( uint8_t i_sub_partition[4] );
652         int     b_transform_8x8;
653
654         int     i_cbp_luma;
655         int     i_cbp_chroma;
656
657         int     i_intra16x16_pred_mode;
658         int     i_chroma_pred_mode;
659
660         /* skip flags for i4x4 and i8x8
661          * 0 = encode as normal.
662          * 1 (non-RD only) = the DCT is still in h->dct, restore fdec and skip reconstruction.
663          * 2 (RD only) = the DCT has since been overwritten by RD; restore that too. */
664         int i_skip_intra;
665         /* skip flag for motion compensation */
666         /* if we've already done MC, we don't need to do it again */
667         int b_skip_mc;
668         /* set to true if we are re-encoding a macroblock. */
669         int b_reencode_mb;
670         int ip_offset; /* Used by PIR to offset the quantizer of intra-refresh blocks. */
671         int b_deblock_rdo;
672         int b_overflow; /* If CAVLC had a level code overflow during bitstream writing. */
673
674         struct
675         {
676             /* space for p_fenc and p_fdec */
677 #define FENC_STRIDE 16
678 #define FDEC_STRIDE 32
679             ALIGNED_16( pixel fenc_buf[24*FENC_STRIDE] );
680             ALIGNED_16( pixel fdec_buf[27*FDEC_STRIDE] );
681
682             /* i4x4 and i8x8 backup data, for skipping the encode stage when possible */
683             ALIGNED_16( pixel i4x4_fdec_buf[16*16] );
684             ALIGNED_16( pixel i8x8_fdec_buf[16*16] );
685             ALIGNED_16( dctcoef i8x8_dct_buf[3][64] );
686             ALIGNED_16( dctcoef i4x4_dct_buf[15][16] );
687             uint32_t i4x4_nnz_buf[4];
688             uint32_t i8x8_nnz_buf[4];
689             int i4x4_cbp;
690             int i8x8_cbp;
691
692             /* Psy trellis DCT data */
693             ALIGNED_16( dctcoef fenc_dct8[4][64] );
694             ALIGNED_16( dctcoef fenc_dct4[16][16] );
695
696             /* Psy RD SATD/SA8D scores cache */
697             ALIGNED_16( uint64_t fenc_hadamard_cache[9] );
698             ALIGNED_16( uint32_t fenc_satd_cache[32] );
699
700             /* pointer over mb of the frame to be compressed */
701             pixel *p_fenc[3]; /* y,u,v */
702             /* pointer to the actual source frame, not a block copy */
703             pixel *p_fenc_plane[2]; /* y,uv */
704
705             /* pointer over mb of the frame to be reconstructed  */
706             pixel *p_fdec[3];
707
708             /* pointer over mb of the references */
709             int i_fref[2];
710             pixel *p_fref[2][X264_REF_MAX*2][4+1]; /* last: yN, yH, yV, yHV, uv */
711             pixel *p_fref_w[X264_REF_MAX*2];  /* weighted fullpel luma */
712             uint16_t *p_integral[2][X264_REF_MAX];
713
714             /* fref stride */
715             int     i_stride[3];
716         } pic;
717
718         /* cache */
719         struct
720         {
721             /* real intra4x4_pred_mode if I_4X4 or I_8X8, I_PRED_4x4_DC if mb available, -1 if not */
722             ALIGNED_8( int8_t intra4x4_pred_mode[X264_SCAN8_LUMA_SIZE] );
723
724             /* i_non_zero_count if available else 0x80 */
725             ALIGNED_16( uint8_t non_zero_count[X264_SCAN8_SIZE] );
726
727             /* -1 if unused, -2 if unavailable */
728             ALIGNED_4( int8_t ref[2][X264_SCAN8_LUMA_SIZE] );
729
730             /* 0 if not available */
731             ALIGNED_16( int16_t mv[2][X264_SCAN8_LUMA_SIZE][2] );
732             ALIGNED_8( uint8_t mvd[2][X264_SCAN8_LUMA_SIZE][2] );
733
734             /* 1 if SKIP or DIRECT. set only for B-frames + CABAC */
735             ALIGNED_4( int8_t skip[X264_SCAN8_LUMA_SIZE] );
736
737             ALIGNED_4( int16_t direct_mv[2][4][2] );
738             ALIGNED_4( int8_t  direct_ref[2][4] );
739             int     direct_partition;
740             ALIGNED_4( int16_t pskip_mv[2] );
741
742             /* number of neighbors (top and left) that used 8x8 dct */
743             int     i_neighbour_transform_size;
744             int     i_neighbour_interlaced;
745
746             /* neighbor CBPs */
747             int     i_cbp_top;
748             int     i_cbp_left;
749         } cache;
750
751         /* */
752         int     i_qp;       /* current qp */
753         int     i_chroma_qp;
754         int     i_last_qp;  /* last qp */
755         int     i_last_dqp; /* last delta qp */
756         int     b_variable_qp; /* whether qp is allowed to vary per macroblock */
757         int     b_lossless;
758         int     b_direct_auto_read; /* take stats for --direct auto from the 2pass log */
759         int     b_direct_auto_write; /* analyse direct modes, to use and/or save */
760
761         /* lambda values */
762         int     i_trellis_lambda2[2][2]; /* [luma,chroma][inter,intra] */
763         int     i_psy_rd_lambda;
764         int     i_chroma_lambda2_offset;
765
766         /* B_direct and weighted prediction */
767         int16_t dist_scale_factor_buf[2][X264_REF_MAX*2][4];
768         int16_t (*dist_scale_factor)[4];
769         int8_t bipred_weight_buf[2][X264_REF_MAX*2][4];
770         int8_t (*bipred_weight)[4];
771         /* maps fref1[0]'s ref indices into the current list0 */
772 #define map_col_to_list0(col) h->mb.map_col_to_list0[(col)+2]
773         int8_t  map_col_to_list0[X264_REF_MAX+2];
774         int ref_blind_dupe; /* The index of the blind reference frame duplicate. */
775         int8_t deblock_ref_table[X264_REF_MAX*2+2];
776 #define deblock_ref_table(x) h->mb.deblock_ref_table[(x)+2]
777     } mb;
778
779     /* rate control encoding only */
780     x264_ratecontrol_t *rc;
781
782     /* stats */
783     struct
784     {
785         /* Current frame stats */
786         struct
787         {
788             /* MV bits (MV+Ref+Block Type) */
789             int i_mv_bits;
790             /* Texture bits (DCT coefs) */
791             int i_tex_bits;
792             /* ? */
793             int i_misc_bits;
794             /* MB type counts */
795             int i_mb_count[19];
796             int i_mb_count_i;
797             int i_mb_count_p;
798             int i_mb_count_skip;
799             int i_mb_count_8x8dct[2];
800             int i_mb_count_ref[2][X264_REF_MAX*2];
801             int i_mb_partition[17];
802             int i_mb_cbp[6];
803             int i_mb_pred_mode[4][13];
804             /* Adaptive direct mv pred */
805             int i_direct_score[2];
806             /* Metrics */
807             int64_t i_ssd[3];
808             double f_ssim;
809         } frame;
810
811         /* Cumulated stats */
812
813         /* per slice info */
814         int     i_frame_count[3];
815         int64_t i_frame_size[3];
816         double  f_frame_qp[3];
817         int     i_consecutive_bframes[X264_BFRAME_MAX+1];
818         /* */
819         double  f_ssd_global[3];
820         double  f_psnr_average[3];
821         double  f_psnr_mean_y[3];
822         double  f_psnr_mean_u[3];
823         double  f_psnr_mean_v[3];
824         double  f_ssim_mean_y[3];
825         double  f_frame_duration[3];
826         /* */
827         int64_t i_mb_count[3][19];
828         int64_t i_mb_partition[2][17];
829         int64_t i_mb_count_8x8dct[2];
830         int64_t i_mb_count_ref[2][2][X264_REF_MAX*2];
831         int64_t i_mb_cbp[6];
832         int64_t i_mb_pred_mode[4][13];
833         /* */
834         int     i_direct_score[2];
835         int     i_direct_frames[2];
836         /* num p-frames weighted */
837         int     i_wpred[2];
838
839     } stat;
840
841     /* 0 = luma 4x4, 1 = luma 8x8, 2 = chroma 4x4 */
842     udctcoef (*nr_offset)[64];
843     uint32_t (*nr_residual_sum)[64];
844     uint32_t *nr_count;
845
846     ALIGNED_16( udctcoef nr_offset_denoise[3][64] );
847     ALIGNED_16( uint32_t nr_residual_sum_buf[2][3][64] );
848     uint32_t nr_count_buf[2][3];
849
850     /* Buffers that are allocated per-thread even in sliced threads. */
851     void *scratch_buffer; /* for any temporary storage that doesn't want repeated malloc */
852     pixel *intra_border_backup[5][2]; /* bottom pixels of the previous mb row, used for intra prediction after the framebuffer has been deblocked */
853     uint8_t (*deblock_strength[2])[2][4][4];
854
855     /* CPU functions dependents */
856     x264_predict_t      predict_16x16[4+3];
857     x264_predict_t      predict_8x8c[4+3];
858     x264_predict8x8_t   predict_8x8[9+3];
859     x264_predict_t      predict_4x4[9+3];
860     x264_predict_8x8_filter_t predict_8x8_filter;
861
862     x264_pixel_function_t pixf;
863     x264_mc_functions_t   mc;
864     x264_dct_function_t   dctf;
865     x264_zigzag_function_t zigzagf;
866     x264_quant_function_t quantf;
867     x264_deblock_function_t loopf;
868     x264_bitstream_function_t bsf;
869
870 #if HAVE_VISUALIZE
871     struct visualize_t *visualize;
872 #endif
873     x264_lookahead_t *lookahead;
874 };
875
876 // included at the end because it needs x264_t
877 #include "macroblock.h"
878
879 #if ARCH_X86 || ARCH_X86_64
880 #include "x86/util.h"
881 #endif
882
883 #include "rectangle.h"
884
885 #endif
886