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