]> git.sesse.net Git - x264/blob - encoder/encoder.c
Set psy=0 in lossless mode
[x264] / encoder / encoder.c
1 /*****************************************************************************
2  * x264: 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  *          Fiona Glaser <fiona@x264.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include <math.h>
26
27 #include "common/common.h"
28 #include "common/cpu.h"
29
30 #include "set.h"
31 #include "analyse.h"
32 #include "ratecontrol.h"
33 #include "macroblock.h"
34 #include "me.h"
35
36 #ifdef HAVE_VISUALIZE
37 #include "common/visualize.h"
38 #endif
39
40 //#define DEBUG_MB_TYPE
41
42 #define bs_write_ue bs_write_ue_big
43
44 static int x264_encoder_frame_end( x264_t *h, x264_t *thread_current,
45                                    x264_nal_t **pp_nal, int *pi_nal,
46                                    x264_picture_t *pic_out );
47
48 /****************************************************************************
49  *
50  ******************************* x264 libs **********************************
51  *
52  ****************************************************************************/
53 static float x264_psnr( int64_t i_sqe, int64_t i_size )
54 {
55     double f_mse = (double)i_sqe / ((double)65025.0 * (double)i_size);
56     if( f_mse <= 0.0000000001 ) /* Max 100dB */
57         return 100;
58
59     return -10.0 * log10( f_mse );
60 }
61
62 static void x264_frame_dump( x264_t *h )
63 {
64     FILE *f = fopen( h->param.psz_dump_yuv, "r+b" );
65     if( !f )
66         return;
67     /* Write the frame in display order */
68     fseek( f, (uint64_t)h->fdec->i_frame * h->param.i_height * h->param.i_width * 3/2, SEEK_SET );
69     for( int i = 0; i < h->fdec->i_plane; i++ )
70         for( int y = 0; y < h->param.i_height >> !!i; y++ )
71             fwrite( &h->fdec->plane[i][y*h->fdec->i_stride[i]], 1, h->param.i_width >> !!i, f );
72     fclose( f );
73 }
74
75
76 /* Fill "default" values */
77 static void x264_slice_header_init( x264_t *h, x264_slice_header_t *sh,
78                                     x264_sps_t *sps, x264_pps_t *pps,
79                                     int i_idr_pic_id, int i_frame, int i_qp )
80 {
81     x264_param_t *param = &h->param;
82
83     /* First we fill all fields */
84     sh->sps = sps;
85     sh->pps = pps;
86
87     sh->i_first_mb  = 0;
88     sh->i_last_mb   = h->mb.i_mb_count - 1;
89     sh->i_pps_id    = pps->i_id;
90
91     sh->i_frame_num = i_frame;
92
93     sh->b_mbaff = h->param.b_interlaced;
94     sh->b_field_pic = 0;    /* no field support for now */
95     sh->b_bottom_field = 0; /* not yet used */
96
97     sh->i_idr_pic_id = i_idr_pic_id;
98
99     /* poc stuff, fixed later */
100     sh->i_poc = 0;
101     sh->i_delta_poc_bottom = 0;
102     sh->i_delta_poc[0] = 0;
103     sh->i_delta_poc[1] = 0;
104
105     sh->i_redundant_pic_cnt = 0;
106
107     h->mb.b_direct_auto_write = h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO
108                                 && h->param.i_bframe
109                                 && ( h->param.rc.b_stat_write || !h->param.rc.b_stat_read );
110
111     if( !h->mb.b_direct_auto_read && sh->i_type == SLICE_TYPE_B )
112     {
113         if( h->fref1[0]->i_poc_l0ref0 == h->fref0[0]->i_poc )
114         {
115             if( h->mb.b_direct_auto_write )
116                 sh->b_direct_spatial_mv_pred = ( h->stat.i_direct_score[1] > h->stat.i_direct_score[0] );
117             else
118                 sh->b_direct_spatial_mv_pred = ( param->analyse.i_direct_mv_pred == X264_DIRECT_PRED_SPATIAL );
119         }
120         else
121         {
122             h->mb.b_direct_auto_write = 0;
123             sh->b_direct_spatial_mv_pred = 1;
124         }
125     }
126     /* else b_direct_spatial_mv_pred was read from the 2pass statsfile */
127
128     sh->b_num_ref_idx_override = 0;
129     sh->i_num_ref_idx_l0_active = 1;
130     sh->i_num_ref_idx_l1_active = 1;
131
132     sh->b_ref_pic_list_reordering_l0 = h->b_ref_reorder[0];
133     sh->b_ref_pic_list_reordering_l1 = h->b_ref_reorder[1];
134
135     /* If the ref list isn't in the default order, construct reordering header */
136     /* List1 reordering isn't needed yet */
137     if( sh->b_ref_pic_list_reordering_l0 )
138     {
139         int pred_frame_num = i_frame;
140         for( int i = 0; i < h->i_ref0; i++ )
141         {
142             int diff = h->fref0[i]->i_frame_num - pred_frame_num;
143             if( diff == 0 )
144                 x264_log( h, X264_LOG_ERROR, "diff frame num == 0\n" );
145             sh->ref_pic_list_order[0][i].idc = ( diff > 0 );
146             sh->ref_pic_list_order[0][i].arg = abs( diff ) - 1;
147             pred_frame_num = h->fref0[i]->i_frame_num;
148         }
149     }
150
151     sh->i_cabac_init_idc = param->i_cabac_init_idc;
152
153     sh->i_qp = i_qp;
154     sh->i_qp_delta = i_qp - pps->i_pic_init_qp;
155     sh->b_sp_for_swidth = 0;
156     sh->i_qs_delta = 0;
157
158     int deblock_thresh = i_qp + 2 * X264_MIN(param->i_deblocking_filter_alphac0, param->i_deblocking_filter_beta);
159     /* If effective qp <= 15, deblocking would have no effect anyway */
160     if( param->b_deblocking_filter && (h->mb.b_variable_qp || 15 < deblock_thresh ) )
161         sh->i_disable_deblocking_filter_idc = 0;
162     else
163         sh->i_disable_deblocking_filter_idc = 1;
164     sh->i_alpha_c0_offset = param->i_deblocking_filter_alphac0 << 1;
165     sh->i_beta_offset = param->i_deblocking_filter_beta << 1;
166 }
167
168 static void x264_slice_header_write( bs_t *s, x264_slice_header_t *sh, int i_nal_ref_idc )
169 {
170     if( sh->b_mbaff )
171     {
172         assert( sh->i_first_mb % (2*sh->sps->i_mb_width) == 0 );
173         bs_write_ue( s, sh->i_first_mb >> 1 );
174     }
175     else
176         bs_write_ue( s, sh->i_first_mb );
177
178     bs_write_ue( s, sh->i_type + 5 );   /* same type things */
179     bs_write_ue( s, sh->i_pps_id );
180     bs_write( s, sh->sps->i_log2_max_frame_num, sh->i_frame_num & ((1<<sh->sps->i_log2_max_frame_num)-1) );
181
182     if( !sh->sps->b_frame_mbs_only )
183     {
184         bs_write1( s, sh->b_field_pic );
185         if( sh->b_field_pic )
186             bs_write1( s, sh->b_bottom_field );
187     }
188
189     if( sh->i_idr_pic_id >= 0 ) /* NAL IDR */
190         bs_write_ue( s, sh->i_idr_pic_id );
191
192     if( sh->sps->i_poc_type == 0 )
193     {
194         bs_write( s, sh->sps->i_log2_max_poc_lsb, sh->i_poc & ((1<<sh->sps->i_log2_max_poc_lsb)-1) );
195         if( sh->pps->b_pic_order && !sh->b_field_pic )
196             bs_write_se( s, sh->i_delta_poc_bottom );
197     }
198     else if( sh->sps->i_poc_type == 1 && !sh->sps->b_delta_pic_order_always_zero )
199     {
200         bs_write_se( s, sh->i_delta_poc[0] );
201         if( sh->pps->b_pic_order && !sh->b_field_pic )
202             bs_write_se( s, sh->i_delta_poc[1] );
203     }
204
205     if( sh->pps->b_redundant_pic_cnt )
206         bs_write_ue( s, sh->i_redundant_pic_cnt );
207
208     if( sh->i_type == SLICE_TYPE_B )
209         bs_write1( s, sh->b_direct_spatial_mv_pred );
210
211     if( sh->i_type == SLICE_TYPE_P || sh->i_type == SLICE_TYPE_SP || sh->i_type == SLICE_TYPE_B )
212     {
213         bs_write1( s, sh->b_num_ref_idx_override );
214         if( sh->b_num_ref_idx_override )
215         {
216             bs_write_ue( s, sh->i_num_ref_idx_l0_active - 1 );
217             if( sh->i_type == SLICE_TYPE_B )
218                 bs_write_ue( s, sh->i_num_ref_idx_l1_active - 1 );
219         }
220     }
221
222     /* ref pic list reordering */
223     if( sh->i_type != SLICE_TYPE_I )
224     {
225         bs_write1( s, sh->b_ref_pic_list_reordering_l0 );
226         if( sh->b_ref_pic_list_reordering_l0 )
227         {
228             for( int i = 0; i < sh->i_num_ref_idx_l0_active; i++ )
229             {
230                 bs_write_ue( s, sh->ref_pic_list_order[0][i].idc );
231                 bs_write_ue( s, sh->ref_pic_list_order[0][i].arg );
232             }
233             bs_write_ue( s, 3 );
234         }
235     }
236     if( sh->i_type == SLICE_TYPE_B )
237     {
238         bs_write1( s, sh->b_ref_pic_list_reordering_l1 );
239         if( sh->b_ref_pic_list_reordering_l1 )
240         {
241             for( int i = 0; i < sh->i_num_ref_idx_l1_active; i++ )
242             {
243                 bs_write_ue( s, sh->ref_pic_list_order[1][i].idc );
244                 bs_write_ue( s, sh->ref_pic_list_order[1][i].arg );
245             }
246             bs_write_ue( s, 3 );
247         }
248     }
249
250     if( sh->pps->b_weighted_pred && ( sh->i_type == SLICE_TYPE_P || sh->i_type == SLICE_TYPE_SP ) )
251     {
252         /* pred_weight_table() */
253         bs_write_ue( s, sh->weight[0][0].i_denom );
254         bs_write_ue( s, sh->weight[0][1].i_denom );
255         for( int i = 0; i < sh->i_num_ref_idx_l0_active; i++ )
256         {
257             int luma_weight_l0_flag = !!sh->weight[i][0].weightfn;
258             int chroma_weight_l0_flag = !!sh->weight[i][1].weightfn || !!sh->weight[i][2].weightfn;
259             bs_write1( s, luma_weight_l0_flag );
260             if( luma_weight_l0_flag )
261             {
262                 bs_write_se( s, sh->weight[i][0].i_scale );
263                 bs_write_se( s, sh->weight[i][0].i_offset );
264             }
265             bs_write1( s, chroma_weight_l0_flag );
266             if( chroma_weight_l0_flag )
267             {
268                 for( int j = 1; j < 3; j++ )
269                 {
270                     bs_write_se( s, sh->weight[i][j].i_scale );
271                     bs_write_se( s, sh->weight[i][j].i_offset );
272                 }
273             }
274         }
275     }
276     else if( sh->pps->b_weighted_bipred == 1 && sh->i_type == SLICE_TYPE_B )
277     {
278       /* TODO */
279     }
280
281     if( i_nal_ref_idc != 0 )
282     {
283         if( sh->i_idr_pic_id >= 0 )
284         {
285             bs_write1( s, 0 );  /* no output of prior pics flag */
286             bs_write1( s, 0 );  /* long term reference flag */
287         }
288         else
289         {
290             bs_write1( s, sh->i_mmco_command_count > 0 ); /* adaptive_ref_pic_marking_mode_flag */
291             if( sh->i_mmco_command_count > 0 )
292             {
293                 for( int i = 0; i < sh->i_mmco_command_count; i++ )
294                 {
295                     bs_write_ue( s, 1 ); /* mark short term ref as unused */
296                     bs_write_ue( s, sh->mmco[i].i_difference_of_pic_nums - 1 );
297                 }
298                 bs_write_ue( s, 0 ); /* end command list */
299             }
300         }
301     }
302
303     if( sh->pps->b_cabac && sh->i_type != SLICE_TYPE_I )
304         bs_write_ue( s, sh->i_cabac_init_idc );
305
306     bs_write_se( s, sh->i_qp_delta );      /* slice qp delta */
307
308     if( sh->pps->b_deblocking_filter_control )
309     {
310         bs_write_ue( s, sh->i_disable_deblocking_filter_idc );
311         if( sh->i_disable_deblocking_filter_idc != 1 )
312         {
313             bs_write_se( s, sh->i_alpha_c0_offset >> 1 );
314             bs_write_se( s, sh->i_beta_offset >> 1 );
315         }
316     }
317 }
318
319 /* If we are within a reasonable distance of the end of the memory allocated for the bitstream, */
320 /* reallocate, adding an arbitrary amount of space (100 kilobytes). */
321 static int x264_bitstream_check_buffer( x264_t *h )
322 {
323     uint8_t *bs_bak = h->out.p_bitstream;
324     if( (h->param.b_cabac && (h->cabac.p_end - h->cabac.p < 2500)) ||
325         (h->out.bs.p_end - h->out.bs.p < 2500) )
326     {
327         h->out.i_bitstream += 100000;
328         CHECKED_MALLOC( h->out.p_bitstream, h->out.i_bitstream );
329         h->mc.memcpy_aligned( h->out.p_bitstream, bs_bak, (h->out.i_bitstream - 100000) & ~15 );
330         intptr_t delta = h->out.p_bitstream - bs_bak;
331
332         h->out.bs.p_start += delta;
333         h->out.bs.p += delta;
334         h->out.bs.p_end = h->out.p_bitstream + h->out.i_bitstream;
335
336         h->cabac.p_start += delta;
337         h->cabac.p += delta;
338         h->cabac.p_end = h->out.p_bitstream + h->out.i_bitstream;
339
340         for( int i = 0; i <= h->out.i_nal; i++ )
341             h->out.nal[i].p_payload += delta;
342         x264_free( bs_bak );
343     }
344     return 0;
345 fail:
346     x264_free( bs_bak );
347     return -1;
348 }
349
350 /****************************************************************************
351  *
352  ****************************************************************************
353  ****************************** External API*********************************
354  ****************************************************************************
355  *
356  ****************************************************************************/
357
358 static int x264_validate_parameters( x264_t *h )
359 {
360 #ifdef HAVE_MMX
361     if( !(x264_cpu_detect() & X264_CPU_SSE) )
362     {
363         x264_log( h, X264_LOG_ERROR, "your cpu does not support SSE1, but x264 was compiled with asm support\n");
364         x264_log( h, X264_LOG_ERROR, "to run x264, recompile without asm support (configure --disable-asm)\n");
365         return -1;
366     }
367 #endif
368     if( h->param.i_width <= 0 || h->param.i_height <= 0 )
369     {
370         x264_log( h, X264_LOG_ERROR, "invalid width x height (%dx%d)\n",
371                   h->param.i_width, h->param.i_height );
372         return -1;
373     }
374
375     if( h->param.i_width % 2 || h->param.i_height % 2 )
376     {
377         x264_log( h, X264_LOG_ERROR, "width or height not divisible by 2 (%dx%d)\n",
378                   h->param.i_width, h->param.i_height );
379         return -1;
380     }
381     int i_csp = h->param.i_csp & X264_CSP_MASK;
382     if( i_csp != X264_CSP_I420 && i_csp != X264_CSP_YV12 )
383     {
384         x264_log( h, X264_LOG_ERROR, "invalid CSP (only I420/YV12 supported)\n" );
385         return -1;
386     }
387
388     if( h->param.i_threads == X264_THREADS_AUTO )
389         h->param.i_threads = x264_cpu_num_processors() * (h->param.b_sliced_threads?2:3)/2;
390     h->param.i_threads = x264_clip3( h->param.i_threads, 1, X264_THREAD_MAX );
391     if( h->param.i_threads > 1 )
392     {
393 #ifndef HAVE_PTHREAD
394         x264_log( h, X264_LOG_WARNING, "not compiled with pthread support!\n");
395         h->param.i_threads = 1;
396 #endif
397         /* Avoid absurdly small thread slices as they can reduce performance
398          * and VBV compliance.  Capped at an arbitrary 4 rows per thread. */
399         if( h->param.b_sliced_threads )
400         {
401             int max_threads = (h->param.i_height+15)/16 / 4;
402             h->param.i_threads = X264_MIN( h->param.i_threads, max_threads );
403         }
404     }
405     else
406         h->param.b_sliced_threads = 0;
407     h->i_thread_frames = h->param.b_sliced_threads ? 1 : h->param.i_threads;
408
409     if( h->param.b_interlaced )
410     {
411         if( h->param.analyse.i_me_method >= X264_ME_ESA )
412         {
413             x264_log( h, X264_LOG_WARNING, "interlace + me=esa is not implemented\n" );
414             h->param.analyse.i_me_method = X264_ME_UMH;
415         }
416         if( h->param.analyse.i_weighted_pred > 0 )
417         {
418             x264_log( h, X264_LOG_WARNING, "interlace + weightp is not implemented\n" );
419             h->param.analyse.i_weighted_pred = X264_WEIGHTP_NONE;
420         }
421     }
422
423     /* Detect default ffmpeg settings and terminate with an error. */
424     {
425         int score = 0;
426         score += h->param.analyse.i_me_range == 0;
427         score += h->param.rc.i_qp_step == 3;
428         score += h->param.i_keyint_max == 12;
429         score += h->param.rc.i_qp_min == 2;
430         score += h->param.rc.i_qp_max == 31;
431         score += h->param.rc.f_qcompress == 0.5;
432         score += fabs(h->param.rc.f_ip_factor - 1.25) < 0.01;
433         score += fabs(h->param.rc.f_pb_factor - 1.25) < 0.01;
434         score += h->param.analyse.inter == 0 && h->param.analyse.i_subpel_refine == 8;
435         if( score >= 5 )
436         {
437             x264_log( h, X264_LOG_ERROR, "broken ffmpeg default settings detected\n" );
438             x264_log( h, X264_LOG_ERROR, "use an encoding preset (vpre)\n" );
439             return -1;
440         }
441     }
442
443     if( h->param.rc.i_rc_method < 0 || h->param.rc.i_rc_method > 2 )
444     {
445         x264_log( h, X264_LOG_ERROR, "no ratecontrol method specified\n" );
446         return -1;
447     }
448     h->param.rc.f_rf_constant = x264_clip3f( h->param.rc.f_rf_constant, 0, 51 );
449     h->param.rc.i_qp_constant = x264_clip3( h->param.rc.i_qp_constant, 0, 51 );
450     if( h->param.rc.i_rc_method == X264_RC_CRF )
451     {
452         h->param.rc.i_qp_constant = h->param.rc.f_rf_constant;
453         h->param.rc.i_bitrate = 0;
454     }
455     if( (h->param.rc.i_rc_method == X264_RC_CQP || h->param.rc.i_rc_method == X264_RC_CRF)
456         && h->param.rc.i_qp_constant == 0 )
457     {
458         h->mb.b_lossless = 1;
459         h->param.i_cqm_preset = X264_CQM_FLAT;
460         h->param.psz_cqm_file = NULL;
461         h->param.rc.i_rc_method = X264_RC_CQP;
462         h->param.rc.f_ip_factor = 1;
463         h->param.rc.f_pb_factor = 1;
464         h->param.analyse.b_psnr = 0;
465         h->param.analyse.b_ssim = 0;
466         h->param.analyse.i_chroma_qp_offset = 0;
467         h->param.analyse.i_trellis = 0;
468         h->param.analyse.b_fast_pskip = 0;
469         h->param.analyse.i_noise_reduction = 0;
470         h->param.analyse.b_psy = 0;
471         h->param.i_bframe = 0;
472         /* 8x8dct is not useful at all in CAVLC lossless */
473         if( !h->param.b_cabac )
474             h->param.analyse.b_transform_8x8 = 0;
475     }
476     if( h->param.rc.i_rc_method == X264_RC_CQP )
477     {
478         float qp_p = h->param.rc.i_qp_constant;
479         float qp_i = qp_p - 6*log2f( h->param.rc.f_ip_factor );
480         float qp_b = qp_p + 6*log2f( h->param.rc.f_pb_factor );
481         h->param.rc.i_qp_min = x264_clip3( (int)(X264_MIN3( qp_p, qp_i, qp_b )), 0, 51 );
482         h->param.rc.i_qp_max = x264_clip3( (int)(X264_MAX3( qp_p, qp_i, qp_b ) + .999), 0, 51 );
483         h->param.rc.i_aq_mode = 0;
484         h->param.rc.b_mb_tree = 0;
485     }
486     h->param.rc.i_qp_max = x264_clip3( h->param.rc.i_qp_max, 0, 51 );
487     h->param.rc.i_qp_min = x264_clip3( h->param.rc.i_qp_min, 0, h->param.rc.i_qp_max );
488     if( h->param.rc.i_vbv_buffer_size )
489     {
490         if( h->param.rc.i_rc_method == X264_RC_CQP )
491         {
492             x264_log( h, X264_LOG_WARNING, "VBV is incompatible with constant QP, ignored.\n" );
493             h->param.rc.i_vbv_max_bitrate = 0;
494             h->param.rc.i_vbv_buffer_size = 0;
495         }
496         else if( h->param.rc.i_vbv_max_bitrate == 0 )
497         {
498             if( h->param.rc.i_rc_method == X264_RC_ABR )
499             {
500                 x264_log( h, X264_LOG_WARNING, "VBV maxrate unspecified, assuming CBR\n" );
501                 h->param.rc.i_vbv_max_bitrate = h->param.rc.i_bitrate;
502             }
503             else
504             {
505                 x264_log( h, X264_LOG_WARNING, "VBV bufsize set but maxrate unspecified, ignored\n" );
506                 h->param.rc.i_vbv_buffer_size = 0;
507             }
508         }
509         else if( h->param.rc.i_vbv_max_bitrate < h->param.rc.i_bitrate &&
510                  h->param.rc.i_rc_method == X264_RC_ABR )
511         {
512             x264_log( h, X264_LOG_WARNING, "max bitrate less than average bitrate, assuming CBR\n" );
513             h->param.rc.i_vbv_max_bitrate = h->param.rc.i_bitrate;
514         }
515     }
516     else if( h->param.rc.i_vbv_max_bitrate )
517     {
518         x264_log( h, X264_LOG_WARNING, "VBV maxrate specified, but no bufsize, ignored\n" );
519         h->param.rc.i_vbv_max_bitrate = 0;
520     }
521
522     int max_slices = (h->param.i_height+((16<<h->param.b_interlaced)-1))/(16<<h->param.b_interlaced);
523     if( h->param.b_sliced_threads )
524         h->param.i_slice_count = x264_clip3( h->param.i_threads, 0, max_slices );
525     else
526     {
527         h->param.i_slice_count = x264_clip3( h->param.i_slice_count, 0, max_slices );
528         h->param.i_slice_max_size = X264_MAX( h->param.i_slice_max_size, 0 );
529         h->param.i_slice_max_mbs = X264_MAX( h->param.i_slice_max_mbs, 0 );
530         if( h->param.b_interlaced && h->param.i_slice_max_size )
531         {
532             x264_log( h, X264_LOG_WARNING, "interlaced + slice-max-size is not implemented\n" );
533             h->param.i_slice_max_size = 0;
534         }
535         if( h->param.b_interlaced && h->param.i_slice_max_mbs )
536         {
537             x264_log( h, X264_LOG_WARNING, "interlaced + slice-max-mbs is not implemented\n" );
538             h->param.i_slice_max_mbs = 0;
539         }
540         if( h->param.i_slice_max_mbs || h->param.i_slice_max_size )
541             h->param.i_slice_count = 0;
542     }
543
544     h->param.i_frame_reference = x264_clip3( h->param.i_frame_reference, 1, 16 );
545     if( h->param.i_keyint_max <= 0 )
546         h->param.i_keyint_max = 1;
547     if( h->param.i_scenecut_threshold < 0 )
548         h->param.i_scenecut_threshold = 0;
549     if( !h->param.analyse.i_subpel_refine && h->param.analyse.i_direct_mv_pred > X264_DIRECT_PRED_SPATIAL )
550     {
551         x264_log( h, X264_LOG_WARNING, "subme=0 + direct=temporal is not supported\n" );
552         h->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
553     }
554     h->param.i_bframe = x264_clip3( h->param.i_bframe, 0, X264_BFRAME_MAX );
555     if( h->param.i_keyint_max == 1 )
556     {
557         h->param.i_bframe = 0;
558         h->param.b_intra_refresh = 0;
559     }
560     h->param.i_bframe_bias = x264_clip3( h->param.i_bframe_bias, -90, 100 );
561     if( h->param.i_bframe <= 1 )
562         h->param.i_bframe_pyramid = X264_B_PYRAMID_NONE;
563     h->param.i_bframe_pyramid = x264_clip3( h->param.i_bframe_pyramid, X264_B_PYRAMID_NONE, X264_B_PYRAMID_NORMAL );
564     if( !h->param.i_bframe )
565     {
566         h->param.i_bframe_adaptive = X264_B_ADAPT_NONE;
567         h->param.analyse.i_direct_mv_pred = 0;
568         h->param.analyse.b_weighted_bipred = 0;
569     }
570     if( h->param.b_intra_refresh && h->param.i_bframe_pyramid == X264_B_PYRAMID_NORMAL )
571     {
572         x264_log( h, X264_LOG_WARNING, "b-pyramid normal + intra-refresh is not supported\n" );
573         h->param.i_bframe_pyramid = X264_B_PYRAMID_STRICT;
574     }
575     if( h->param.b_intra_refresh && h->param.i_frame_reference > 1 )
576     {
577         x264_log( h, X264_LOG_WARNING, "ref > 1 + intra-refresh is not supported\n" );
578         h->param.i_frame_reference = 1;
579     }
580     if( h->param.i_keyint_min == X264_KEYINT_MIN_AUTO )
581         h->param.i_keyint_min = h->param.i_keyint_max / 10;
582     h->param.i_keyint_min = x264_clip3( h->param.i_keyint_min, 1, h->param.i_keyint_max/2+1 );
583     h->param.rc.i_lookahead = x264_clip3( h->param.rc.i_lookahead, 0, X264_LOOKAHEAD_MAX );
584     {
585         int maxrate = X264_MAX( h->param.rc.i_vbv_max_bitrate, h->param.rc.i_bitrate );
586         float bufsize = maxrate ? (float)h->param.rc.i_vbv_buffer_size / maxrate : 0;
587         float fps = h->param.i_fps_num > 0 && h->param.i_fps_den > 0 ? (float) h->param.i_fps_num / h->param.i_fps_den : 25.0;
588         h->param.rc.i_lookahead = X264_MIN( h->param.rc.i_lookahead, X264_MAX( h->param.i_keyint_max, bufsize*fps ) );
589     }
590
591     if( !h->param.i_timebase_num || !h->param.i_timebase_den )
592     {
593         h->param.i_timebase_num = h->param.i_fps_den;
594         h->param.i_timebase_den = h->param.i_fps_num;
595     }
596
597     h->param.rc.f_qcompress = x264_clip3f( h->param.rc.f_qcompress, 0.0, 1.0 );
598     if( !h->param.rc.i_lookahead || h->param.i_keyint_max == 1 || h->param.rc.f_qcompress == 1 )
599         h->param.rc.b_mb_tree = 0;
600     if( h->param.rc.b_stat_read )
601         h->param.rc.i_lookahead = 0;
602 #ifdef HAVE_PTHREAD
603     if( h->param.i_sync_lookahead )
604         h->param.i_sync_lookahead = x264_clip3( h->param.i_sync_lookahead, h->i_thread_frames + h->param.i_bframe, X264_LOOKAHEAD_MAX );
605     if( h->param.rc.b_stat_read || h->i_thread_frames == 1 )
606         h->param.i_sync_lookahead = 0;
607 #else
608     h->param.i_sync_lookahead = 0;
609 #endif
610
611     h->param.i_deblocking_filter_alphac0 = x264_clip3( h->param.i_deblocking_filter_alphac0, -6, 6 );
612     h->param.i_deblocking_filter_beta    = x264_clip3( h->param.i_deblocking_filter_beta, -6, 6 );
613     h->param.analyse.i_luma_deadzone[0] = x264_clip3( h->param.analyse.i_luma_deadzone[0], 0, 32 );
614     h->param.analyse.i_luma_deadzone[1] = x264_clip3( h->param.analyse.i_luma_deadzone[1], 0, 32 );
615
616     h->param.i_cabac_init_idc = x264_clip3( h->param.i_cabac_init_idc, 0, 2 );
617
618     if( h->param.i_cqm_preset < X264_CQM_FLAT || h->param.i_cqm_preset > X264_CQM_CUSTOM )
619         h->param.i_cqm_preset = X264_CQM_FLAT;
620
621     if( h->param.analyse.i_me_method < X264_ME_DIA ||
622         h->param.analyse.i_me_method > X264_ME_TESA )
623         h->param.analyse.i_me_method = X264_ME_HEX;
624     if( h->param.analyse.i_me_range < 4 )
625         h->param.analyse.i_me_range = 4;
626     if( h->param.analyse.i_me_range > 16 && h->param.analyse.i_me_method <= X264_ME_HEX )
627         h->param.analyse.i_me_range = 16;
628     if( h->param.analyse.i_me_method == X264_ME_TESA &&
629         (h->mb.b_lossless || h->param.analyse.i_subpel_refine <= 1) )
630         h->param.analyse.i_me_method = X264_ME_ESA;
631     h->param.analyse.i_subpel_refine = x264_clip3( h->param.analyse.i_subpel_refine, 0, 10 );
632     h->param.analyse.b_mixed_references = h->param.analyse.b_mixed_references && h->param.i_frame_reference > 1;
633     h->param.analyse.inter &= X264_ANALYSE_PSUB16x16|X264_ANALYSE_PSUB8x8|X264_ANALYSE_BSUB16x16|
634                               X264_ANALYSE_I4x4|X264_ANALYSE_I8x8;
635     h->param.analyse.intra &= X264_ANALYSE_I4x4|X264_ANALYSE_I8x8;
636     if( !(h->param.analyse.inter & X264_ANALYSE_PSUB16x16) )
637         h->param.analyse.inter &= ~X264_ANALYSE_PSUB8x8;
638     if( !h->param.analyse.b_transform_8x8 )
639     {
640         h->param.analyse.inter &= ~X264_ANALYSE_I8x8;
641         h->param.analyse.intra &= ~X264_ANALYSE_I8x8;
642     }
643     h->param.analyse.i_chroma_qp_offset = x264_clip3(h->param.analyse.i_chroma_qp_offset, -12, 12);
644     if( !h->param.b_cabac )
645         h->param.analyse.i_trellis = 0;
646     h->param.analyse.i_trellis = x264_clip3( h->param.analyse.i_trellis, 0, 2 );
647     if( !h->param.analyse.b_psy )
648     {
649         h->param.analyse.f_psy_rd = 0;
650         h->param.analyse.f_psy_trellis = 0;
651     }
652     if( !h->param.analyse.i_trellis )
653         h->param.analyse.f_psy_trellis = 0;
654     h->param.analyse.f_psy_rd = x264_clip3f( h->param.analyse.f_psy_rd, 0, 10 );
655     h->param.analyse.f_psy_trellis = x264_clip3f( h->param.analyse.f_psy_trellis, 0, 10 );
656     if( h->param.analyse.i_subpel_refine < 6 )
657         h->param.analyse.f_psy_rd = 0;
658     h->mb.i_psy_rd = FIX8( h->param.analyse.f_psy_rd );
659     /* Psy RDO increases overall quantizers to improve the quality of luma--this indirectly hurts chroma quality */
660     /* so we lower the chroma QP offset to compensate */
661     /* This can be triggered repeatedly on multiple calls to parameter_validate, but since encoding
662      * uses the pps chroma qp offset not the param chroma qp offset, this is not a problem. */
663     if( h->mb.i_psy_rd )
664         h->param.analyse.i_chroma_qp_offset -= h->param.analyse.f_psy_rd < 0.25 ? 1 : 2;
665     h->mb.i_psy_trellis = FIX8( h->param.analyse.f_psy_trellis / 4 );
666     /* Psy trellis has a similar effect. */
667     if( h->mb.i_psy_trellis )
668         h->param.analyse.i_chroma_qp_offset -= h->param.analyse.f_psy_trellis < 0.25 ? 1 : 2;
669     h->param.analyse.i_chroma_qp_offset = x264_clip3(h->param.analyse.i_chroma_qp_offset, -12, 12);
670     h->param.rc.i_aq_mode = x264_clip3( h->param.rc.i_aq_mode, 0, 2 );
671     h->param.rc.f_aq_strength = x264_clip3f( h->param.rc.f_aq_strength, 0, 3 );
672     if( h->param.rc.f_aq_strength == 0 )
673         h->param.rc.i_aq_mode = 0;
674     /* MB-tree requires AQ to be on, even if the strength is zero. */
675     if( !h->param.rc.i_aq_mode && h->param.rc.b_mb_tree )
676     {
677         h->param.rc.i_aq_mode = 1;
678         h->param.rc.f_aq_strength = 0;
679     }
680     h->param.analyse.i_noise_reduction = x264_clip3( h->param.analyse.i_noise_reduction, 0, 1<<16 );
681     if( h->param.analyse.i_subpel_refine == 10 && (h->param.analyse.i_trellis != 2 || !h->param.rc.i_aq_mode) )
682         h->param.analyse.i_subpel_refine = 9;
683
684     {
685         const x264_level_t *l = x264_levels;
686         if( h->param.i_level_idc < 0 )
687         {
688             int maxrate_bak = h->param.rc.i_vbv_max_bitrate;
689             if( h->param.rc.i_rc_method == X264_RC_ABR && h->param.rc.i_vbv_buffer_size <= 0 )
690                 h->param.rc.i_vbv_max_bitrate = h->param.rc.i_bitrate * 2;
691             h->sps = h->sps_array;
692             x264_sps_init( h->sps, h->param.i_sps_id, &h->param );
693             do h->param.i_level_idc = l->level_idc;
694                 while( l[1].level_idc && x264_validate_levels( h, 0 ) && l++ );
695             h->param.rc.i_vbv_max_bitrate = maxrate_bak;
696         }
697         else
698         {
699             while( l->level_idc && l->level_idc != h->param.i_level_idc )
700                 l++;
701             if( l->level_idc == 0 )
702             {
703                 x264_log( h, X264_LOG_ERROR, "invalid level_idc: %d\n", h->param.i_level_idc );
704                 return -1;
705             }
706         }
707         if( h->param.analyse.i_mv_range <= 0 )
708             h->param.analyse.i_mv_range = l->mv_range >> h->param.b_interlaced;
709         else
710             h->param.analyse.i_mv_range = x264_clip3(h->param.analyse.i_mv_range, 32, 512 >> h->param.b_interlaced);
711     }
712
713     h->param.analyse.i_weighted_pred = x264_clip3( h->param.analyse.i_weighted_pred, 0, X264_WEIGHTP_SMART );
714     if( !h->param.analyse.i_weighted_pred && h->param.rc.b_mb_tree && h->param.analyse.b_psy && !h->param.b_interlaced )
715         h->param.analyse.i_weighted_pred = X264_WEIGHTP_FAKE;
716
717     if( h->i_thread_frames > 1 )
718     {
719         int r = h->param.analyse.i_mv_range_thread;
720         int r2;
721         if( r <= 0 )
722         {
723             // half of the available space is reserved and divided evenly among the threads,
724             // the rest is allocated to whichever thread is far enough ahead to use it.
725             // reserving more space increases quality for some videos, but costs more time
726             // in thread synchronization.
727             int max_range = (h->param.i_height + X264_THREAD_HEIGHT) / h->i_thread_frames - X264_THREAD_HEIGHT;
728             r = max_range / 2;
729         }
730         r = X264_MAX( r, h->param.analyse.i_me_range );
731         r = X264_MIN( r, h->param.analyse.i_mv_range );
732         // round up to use the whole mb row
733         r2 = (r & ~15) + ((-X264_THREAD_HEIGHT) & 15);
734         if( r2 < r )
735             r2 += 16;
736         x264_log( h, X264_LOG_DEBUG, "using mv_range_thread = %d\n", r2 );
737         h->param.analyse.i_mv_range_thread = r2;
738     }
739
740     if( h->param.rc.f_qblur < 0 )
741         h->param.rc.f_qblur = 0;
742     if( h->param.rc.f_complexity_blur < 0 )
743         h->param.rc.f_complexity_blur = 0;
744
745     h->param.i_sps_id &= 31;
746
747     if( h->param.i_log_level < X264_LOG_INFO )
748     {
749         h->param.analyse.b_psnr = 0;
750         h->param.analyse.b_ssim = 0;
751     }
752
753     if( h->param.b_interlaced )
754         h->param.b_pic_struct = 1;
755
756     if( h->param.i_nal_hrd && !h->param.rc.i_vbv_buffer_size )
757     {
758         x264_log( h, X264_LOG_WARNING, "NAL HRD parameters require VBV parameters\n" );
759         h->param.i_nal_hrd = X264_NAL_HRD_NONE;
760     }
761
762     if( h->param.i_nal_hrd == X264_NAL_HRD_CBR &&
763        (h->param.rc.i_bitrate != h->param.rc.i_vbv_max_bitrate || !h->param.rc.i_vbv_max_bitrate) )
764     {
765         x264_log( h, X264_LOG_WARNING, "CBR HRD requires constant bitrate\n" );
766         h->param.i_nal_hrd = X264_NAL_HRD_VBR;
767     }
768
769     /* ensure the booleans are 0 or 1 so they can be used in math */
770 #define BOOLIFY(x) h->param.x = !!h->param.x
771     BOOLIFY( b_cabac );
772     BOOLIFY( b_constrained_intra );
773     BOOLIFY( b_deblocking_filter );
774     BOOLIFY( b_deterministic );
775     BOOLIFY( b_sliced_threads );
776     BOOLIFY( b_interlaced );
777     BOOLIFY( b_intra_refresh );
778     BOOLIFY( b_visualize );
779     BOOLIFY( b_aud );
780     BOOLIFY( b_repeat_headers );
781     BOOLIFY( b_annexb );
782     BOOLIFY( b_vfr_input );
783     BOOLIFY( b_pic_struct );
784     BOOLIFY( analyse.b_transform_8x8 );
785     BOOLIFY( analyse.b_weighted_bipred );
786     BOOLIFY( analyse.b_chroma_me );
787     BOOLIFY( analyse.b_mixed_references );
788     BOOLIFY( analyse.b_fast_pskip );
789     BOOLIFY( analyse.b_dct_decimate );
790     BOOLIFY( analyse.b_psy );
791     BOOLIFY( analyse.b_psnr );
792     BOOLIFY( analyse.b_ssim );
793     BOOLIFY( rc.b_stat_write );
794     BOOLIFY( rc.b_stat_read );
795     BOOLIFY( rc.b_mb_tree );
796 #undef BOOLIFY
797
798     return 0;
799 }
800
801 static void mbcmp_init( x264_t *h )
802 {
803     int satd = !h->mb.b_lossless && h->param.analyse.i_subpel_refine > 1;
804     memcpy( h->pixf.mbcmp, satd ? h->pixf.satd : h->pixf.sad_aligned, sizeof(h->pixf.mbcmp) );
805     memcpy( h->pixf.mbcmp_unaligned, satd ? h->pixf.satd : h->pixf.sad, sizeof(h->pixf.mbcmp_unaligned) );
806     h->pixf.intra_mbcmp_x3_16x16 = satd ? h->pixf.intra_satd_x3_16x16 : h->pixf.intra_sad_x3_16x16;
807     h->pixf.intra_mbcmp_x3_8x8c = satd ? h->pixf.intra_satd_x3_8x8c : h->pixf.intra_sad_x3_8x8c;
808     h->pixf.intra_mbcmp_x3_4x4 = satd ? h->pixf.intra_satd_x3_4x4 : h->pixf.intra_sad_x3_4x4;
809     satd &= h->param.analyse.i_me_method == X264_ME_TESA;
810     memcpy( h->pixf.fpelcmp, satd ? h->pixf.satd : h->pixf.sad, sizeof(h->pixf.fpelcmp) );
811     memcpy( h->pixf.fpelcmp_x3, satd ? h->pixf.satd_x3 : h->pixf.sad_x3, sizeof(h->pixf.fpelcmp_x3) );
812     memcpy( h->pixf.fpelcmp_x4, satd ? h->pixf.satd_x4 : h->pixf.sad_x4, sizeof(h->pixf.fpelcmp_x4) );
813 }
814
815 static void x264_set_aspect_ratio( x264_t *h, x264_param_t *param, int initial )
816 {
817     /* VUI */
818     if( param->vui.i_sar_width > 0 && param->vui.i_sar_height > 0 )
819     {
820         int i_w = param->vui.i_sar_width;
821         int i_h = param->vui.i_sar_height;
822         int old_w = h->param.vui.i_sar_width;
823         int old_h = h->param.vui.i_sar_height;
824
825         x264_reduce_fraction( &i_w, &i_h );
826
827         while( i_w > 65535 || i_h > 65535 )
828         {
829             i_w /= 2;
830             i_h /= 2;
831         }
832
833         x264_reduce_fraction( &i_w, &i_h );
834
835         if( i_w != old_w || i_h != old_h || initial )
836         {
837             h->param.vui.i_sar_width = 0;
838             h->param.vui.i_sar_height = 0;
839             if( i_w == 0 || i_h == 0 )
840                 x264_log( h, X264_LOG_WARNING, "cannot create valid sample aspect ratio\n" );
841             else
842             {
843                 x264_log( h, initial?X264_LOG_INFO:X264_LOG_DEBUG, "using SAR=%d/%d\n", i_w, i_h );
844                 h->param.vui.i_sar_width = i_w;
845                 h->param.vui.i_sar_height = i_h;
846             }
847         }
848     }
849 }
850
851 /****************************************************************************
852  * x264_encoder_open:
853  ****************************************************************************/
854 x264_t *x264_encoder_open( x264_param_t *param )
855 {
856     x264_t *h;
857     char buf[1000], *p;
858     int qp, i_slicetype_length;
859
860     CHECKED_MALLOCZERO( h, sizeof(x264_t) );
861
862     /* Create a copy of param */
863     memcpy( &h->param, param, sizeof(x264_param_t) );
864
865     if( param->param_free )
866         param->param_free( param );
867
868     if( x264_validate_parameters( h ) < 0 )
869         goto fail;
870
871     if( h->param.psz_cqm_file )
872         if( x264_cqm_parse_file( h, h->param.psz_cqm_file ) < 0 )
873             goto fail;
874
875     if( h->param.rc.psz_stat_out )
876         h->param.rc.psz_stat_out = strdup( h->param.rc.psz_stat_out );
877     if( h->param.rc.psz_stat_in )
878         h->param.rc.psz_stat_in = strdup( h->param.rc.psz_stat_in );
879
880     x264_set_aspect_ratio( h, &h->param, 1 );
881
882     x264_reduce_fraction( &h->param.i_fps_num, &h->param.i_fps_den );
883     x264_reduce_fraction( &h->param.i_timebase_num, &h->param.i_timebase_den );
884
885     /* Init x264_t */
886     h->i_frame = -1;
887     h->i_frame_num = 0;
888     h->i_idr_pic_id = 0;
889     if( h->param.b_dts_compress )
890     {
891         /* h->i_dts_compress_multiplier == h->frames.i_bframe_delay + 1 */
892         h->i_dts_compress_multiplier = h->param.i_bframe ? (h->param.i_bframe_pyramid ? 3 : 2) : 1;
893         if( h->i_dts_compress_multiplier != 1 )
894         {
895             x264_log( h, X264_LOG_DEBUG, "DTS compresion changed timebase: %d/%d -> %d/%d\n",
896                       h->param.i_timebase_num, h->param.i_timebase_den,
897                       h->param.i_timebase_num, h->param.i_timebase_den * h->i_dts_compress_multiplier );
898             h->param.i_timebase_den *= h->i_dts_compress_multiplier;
899         }
900     }
901     else
902         h->i_dts_compress_multiplier = 1;
903
904     h->sps = &h->sps_array[0];
905     x264_sps_init( h->sps, h->param.i_sps_id, &h->param );
906
907     h->pps = &h->pps_array[0];
908     x264_pps_init( h->pps, h->param.i_sps_id, &h->param, h->sps );
909
910     x264_validate_levels( h, 1 );
911
912     h->chroma_qp_table = i_chroma_qp_table + 12 + h->pps->i_chroma_qp_index_offset;
913
914     if( x264_cqm_init( h ) < 0 )
915         goto fail;
916
917     h->mb.i_mb_count = h->sps->i_mb_width * h->sps->i_mb_height;
918
919     /* Init frames. */
920     if( h->param.i_bframe_adaptive == X264_B_ADAPT_TRELLIS )
921         h->frames.i_delay = X264_MAX(h->param.i_bframe,3)*4;
922     else
923         h->frames.i_delay = h->param.i_bframe;
924     if( h->param.rc.b_mb_tree || h->param.rc.i_vbv_buffer_size )
925         h->frames.i_delay = X264_MAX( h->frames.i_delay, h->param.rc.i_lookahead );
926     i_slicetype_length = h->frames.i_delay;
927     h->frames.i_delay += h->i_thread_frames - 1;
928     h->frames.i_delay = X264_MIN( h->frames.i_delay, X264_LOOKAHEAD_MAX );
929     h->frames.i_delay += h->param.i_sync_lookahead;
930     h->frames.i_delay += h->param.b_vfr_input && (h->param.rc.i_rc_method == X264_RC_ABR || h->param.rc.b_stat_write
931                                                  || h->param.rc.i_vbv_buffer_size);
932     h->frames.i_bframe_delay = h->param.i_bframe ? (h->param.i_bframe_pyramid ? 2 : 1) : 0;
933
934     h->frames.i_max_ref0 = h->param.i_frame_reference;
935     h->frames.i_max_ref1 = X264_MIN( h->sps->vui.i_num_reorder_frames, h->param.i_frame_reference );
936     h->frames.i_max_dpb  = h->sps->vui.i_max_dec_frame_buffering;
937     h->frames.b_have_lowres = !h->param.rc.b_stat_read
938         && ( h->param.rc.i_rc_method == X264_RC_ABR
939           || h->param.rc.i_rc_method == X264_RC_CRF
940           || h->param.i_bframe_adaptive
941           || h->param.i_scenecut_threshold
942           || h->param.rc.b_mb_tree
943           || h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART );
944     h->frames.b_have_lowres |= h->param.rc.b_stat_read && h->param.rc.i_vbv_buffer_size > 0;
945     h->frames.b_have_sub8x8_esa = !!(h->param.analyse.inter & X264_ANALYSE_PSUB8x8);
946
947     h->frames.i_last_keyframe = - h->param.i_keyint_max;
948     h->frames.i_input    = 0;
949     h->frames.i_largest_pts = h->frames.i_second_largest_pts = -1;
950
951     CHECKED_MALLOCZERO( h->frames.unused[0], (h->frames.i_delay + 3) * sizeof(x264_frame_t *) );
952     /* Allocate room for max refs plus a few extra just in case. */
953     CHECKED_MALLOCZERO( h->frames.unused[1], (h->i_thread_frames + 20) * sizeof(x264_frame_t *) );
954     CHECKED_MALLOCZERO( h->frames.current, (h->param.i_sync_lookahead + h->param.i_bframe
955                         + h->i_thread_frames + 3) * sizeof(x264_frame_t *) );
956     if( h->param.analyse.i_weighted_pred > 0 )
957         CHECKED_MALLOCZERO( h->frames.blank_unused, h->i_thread_frames * 4 * sizeof(x264_frame_t *) );
958     h->i_ref0 = 0;
959     h->i_ref1 = 0;
960     h->i_cpb_delay = h->i_coded_fields = h->i_disp_fields = h->i_prev_duration = 0;
961     h->i_disp_fields_last_frame = -1;
962     x264_rdo_init();
963
964     /* init CPU functions */
965     x264_predict_16x16_init( h->param.cpu, h->predict_16x16 );
966     x264_predict_8x8c_init( h->param.cpu, h->predict_8x8c );
967     x264_predict_8x8_init( h->param.cpu, h->predict_8x8, &h->predict_8x8_filter );
968     x264_predict_4x4_init( h->param.cpu, h->predict_4x4 );
969     if( !h->param.b_cabac )
970         x264_init_vlc_tables();
971     x264_pixel_init( h->param.cpu, &h->pixf );
972     x264_dct_init( h->param.cpu, &h->dctf );
973     x264_zigzag_init( h->param.cpu, &h->zigzagf, h->param.b_interlaced );
974     x264_mc_init( h->param.cpu, &h->mc );
975     x264_quant_init( h, h->param.cpu, &h->quantf );
976     x264_deblock_init( h->param.cpu, &h->loopf );
977     x264_dct_init_weights();
978
979     mbcmp_init( h );
980
981     p = buf + sprintf( buf, "using cpu capabilities:" );
982     for( int i = 0; x264_cpu_names[i].flags; i++ )
983     {
984         if( !strcmp(x264_cpu_names[i].name, "SSE2")
985             && h->param.cpu & (X264_CPU_SSE2_IS_FAST|X264_CPU_SSE2_IS_SLOW) )
986             continue;
987         if( !strcmp(x264_cpu_names[i].name, "SSE3")
988             && (h->param.cpu & X264_CPU_SSSE3 || !(h->param.cpu & X264_CPU_CACHELINE_64)) )
989             continue;
990         if( !strcmp(x264_cpu_names[i].name, "SSE4.1")
991             && (h->param.cpu & X264_CPU_SSE42) )
992             continue;
993         if( (h->param.cpu & x264_cpu_names[i].flags) == x264_cpu_names[i].flags
994             && (!i || x264_cpu_names[i].flags != x264_cpu_names[i-1].flags) )
995             p += sprintf( p, " %s", x264_cpu_names[i].name );
996     }
997     if( !h->param.cpu )
998         p += sprintf( p, " none!" );
999     x264_log( h, X264_LOG_INFO, "%s\n", buf );
1000
1001     for( qp = h->param.rc.i_qp_min; qp <= h->param.rc.i_qp_max; qp++ )
1002         if( x264_analyse_init_costs( h, qp ) )
1003             goto fail;
1004     if( x264_analyse_init_costs( h, X264_LOOKAHEAD_QP ) )
1005         goto fail;
1006
1007     /* Checks for known miscompilation issues. */
1008     if( h->cost_mv[1][2013] != 24 )
1009     {
1010         x264_log( h, X264_LOG_ERROR, "MV cost test failed: x264 has been miscompiled!\n" );
1011         goto fail;
1012     }
1013
1014     /* Must be volatile or else GCC will optimize it out. */
1015     volatile int temp = 392;
1016     if( x264_clz( temp ) != 23 )
1017     {
1018         x264_log( h, X264_LOG_ERROR, "CLZ test failed: x264 has been miscompiled!\n" );
1019 #if defined(ARCH_X86) || defined(ARCH_X86_64)
1020         x264_log( h, X264_LOG_ERROR, "Are you attempting to run an SSE4a-targeted build on a CPU that\n" );
1021         x264_log( h, X264_LOG_ERROR, "doesn't support it?\n" );
1022 #endif
1023         goto fail;
1024     }
1025
1026     h->out.i_nal = 0;
1027     h->out.i_bitstream = X264_MAX( 1000000, h->param.i_width * h->param.i_height * 4
1028         * ( h->param.rc.i_rc_method == X264_RC_ABR ? pow( 0.95, h->param.rc.i_qp_min )
1029           : pow( 0.95, h->param.rc.i_qp_constant ) * X264_MAX( 1, h->param.rc.f_ip_factor )));
1030
1031     CHECKED_MALLOC( h->nal_buffer, h->out.i_bitstream * 3/2 + 4 );
1032     h->nal_buffer_size = h->out.i_bitstream * 3/2 + 4;
1033
1034     h->thread[0] = h;
1035     for( int i = 1; i < h->param.i_threads + !!h->param.i_sync_lookahead; i++ )
1036         CHECKED_MALLOC( h->thread[i], sizeof(x264_t) );
1037
1038     if( x264_lookahead_init( h, i_slicetype_length ) )
1039         goto fail;
1040
1041     for( int i = 0; i < h->param.i_threads; i++ )
1042     {
1043         int init_nal_count = h->param.i_slice_count + 3;
1044         int allocate_threadlocal_data = !h->param.b_sliced_threads || !i;
1045         if( i > 0 )
1046             *h->thread[i] = *h;
1047
1048         if( allocate_threadlocal_data )
1049         {
1050             h->thread[i]->fdec = x264_frame_pop_unused( h, 1 );
1051             if( !h->thread[i]->fdec )
1052                 goto fail;
1053         }
1054         else
1055             h->thread[i]->fdec = h->thread[0]->fdec;
1056
1057         CHECKED_MALLOC( h->thread[i]->out.p_bitstream, h->out.i_bitstream );
1058         /* Start each thread with room for init_nal_count NAL units; it'll realloc later if needed. */
1059         CHECKED_MALLOC( h->thread[i]->out.nal, init_nal_count*sizeof(x264_nal_t) );
1060         h->thread[i]->out.i_nals_allocated = init_nal_count;
1061
1062         if( allocate_threadlocal_data && x264_macroblock_cache_init( h->thread[i] ) < 0 )
1063             goto fail;
1064     }
1065
1066     /* Allocate scratch buffer */
1067     for( int i = 0; i < h->param.i_threads + !!h->param.i_sync_lookahead; i++ )
1068     {
1069         int buf_hpel = (h->fdec->i_width[0]+48) * sizeof(int16_t);
1070         int buf_ssim = h->param.analyse.b_ssim * 8 * (h->param.i_width/4+3) * sizeof(int);
1071         int me_range = X264_MIN(h->param.analyse.i_me_range, h->param.analyse.i_mv_range);
1072         int buf_tesa = (h->param.analyse.i_me_method >= X264_ME_ESA) *
1073             ((me_range*2+18) * sizeof(int16_t) + (me_range+4) * (me_range+1) * 4 * sizeof(mvsad_t));
1074         int buf_mbtree = h->param.rc.b_mb_tree * ((h->sps->i_mb_width+3)&~3) * sizeof(int);
1075         int buf_nnz = !h->param.b_cabac * h->pps->b_transform_8x8_mode * (h->sps->i_mb_width * 4 * 16 * sizeof(uint8_t));
1076         int scratch_size = X264_MAX4( buf_hpel, buf_ssim, buf_tesa, X264_MAX( buf_mbtree, buf_nnz ) );
1077         CHECKED_MALLOC( h->thread[i]->scratch_buffer, scratch_size );
1078     }
1079
1080     if( x264_ratecontrol_new( h ) < 0 )
1081         goto fail;
1082
1083     if( h->param.i_nal_hrd )
1084     {
1085         x264_log( h, X264_LOG_DEBUG, "HRD bitrate: %i bits/sec\n", h->sps->vui.hrd.i_bit_rate_unscaled );
1086         x264_log( h, X264_LOG_DEBUG, "CPB size: %i bits\n", h->sps->vui.hrd.i_cpb_size_unscaled );
1087     }
1088
1089     if( h->param.psz_dump_yuv )
1090     {
1091         /* create or truncate the reconstructed video file */
1092         FILE *f = fopen( h->param.psz_dump_yuv, "w" );
1093         if( !f )
1094         {
1095             x264_log( h, X264_LOG_ERROR, "dump_yuv: can't write to %s\n", h->param.psz_dump_yuv );
1096             goto fail;
1097         }
1098         else if( !x264_is_regular_file( f ) )
1099         {
1100             x264_log( h, X264_LOG_ERROR, "dump_yuv: incompatible with non-regular file %s\n", h->param.psz_dump_yuv );
1101             goto fail;
1102         }
1103         fclose( f );
1104     }
1105
1106     x264_log( h, X264_LOG_INFO, "profile %s, level %d.%d\n",
1107         h->sps->i_profile_idc == PROFILE_BASELINE ? "Baseline" :
1108         h->sps->i_profile_idc == PROFILE_MAIN ? "Main" :
1109         h->sps->i_profile_idc == PROFILE_HIGH ? "High" :
1110         "High 4:4:4 Predictive", h->sps->i_level_idc/10, h->sps->i_level_idc%10 );
1111
1112     return h;
1113 fail:
1114     x264_free( h );
1115     return NULL;
1116 }
1117
1118 /****************************************************************************
1119  * x264_encoder_reconfig:
1120  ****************************************************************************/
1121 int x264_encoder_reconfig( x264_t *h, x264_param_t *param )
1122 {
1123     int rc_reconfig = 0;
1124     h = h->thread[h->thread[0]->i_thread_phase];
1125     x264_set_aspect_ratio( h, param, 0 );
1126 #define COPY(var) h->param.var = param->var
1127     COPY( i_frame_reference ); // but never uses more refs than initially specified
1128     COPY( i_bframe_bias );
1129     if( h->param.i_scenecut_threshold )
1130         COPY( i_scenecut_threshold ); // can't turn it on or off, only vary the threshold
1131     COPY( b_deblocking_filter );
1132     COPY( i_deblocking_filter_alphac0 );
1133     COPY( i_deblocking_filter_beta );
1134     COPY( analyse.inter );
1135     COPY( analyse.intra );
1136     COPY( analyse.i_direct_mv_pred );
1137     /* Scratch buffer prevents me_range from being increased for esa/tesa */
1138     if( h->param.analyse.i_me_method < X264_ME_ESA || param->analyse.i_me_range < h->param.analyse.i_me_range )
1139         COPY( analyse.i_me_range );
1140     COPY( analyse.i_noise_reduction );
1141     /* We can't switch out of subme=0 during encoding. */
1142     if( h->param.analyse.i_subpel_refine )
1143         COPY( analyse.i_subpel_refine );
1144     COPY( analyse.i_trellis );
1145     COPY( analyse.b_chroma_me );
1146     COPY( analyse.b_dct_decimate );
1147     COPY( analyse.b_fast_pskip );
1148     COPY( analyse.b_mixed_references );
1149     COPY( analyse.f_psy_rd );
1150     COPY( analyse.f_psy_trellis );
1151     // can only twiddle these if they were enabled to begin with:
1152     if( h->param.analyse.i_me_method >= X264_ME_ESA || param->analyse.i_me_method < X264_ME_ESA )
1153         COPY( analyse.i_me_method );
1154     if( h->param.analyse.i_me_method >= X264_ME_ESA && !h->frames.b_have_sub8x8_esa )
1155         h->param.analyse.inter &= ~X264_ANALYSE_PSUB8x8;
1156     if( h->pps->b_transform_8x8_mode )
1157         COPY( analyse.b_transform_8x8 );
1158     if( h->frames.i_max_ref1 > 1 )
1159         COPY( i_bframe_pyramid );
1160     COPY( i_slice_max_size );
1161     COPY( i_slice_max_mbs );
1162     COPY( i_slice_count );
1163
1164     /* VBV can't be turned on if it wasn't on to begin with */
1165     if( h->param.rc.i_vbv_max_bitrate > 0 && h->param.rc.i_vbv_buffer_size > 0 &&
1166           param->rc.i_vbv_max_bitrate > 0 &&   param->rc.i_vbv_buffer_size > 0 )
1167     {
1168         COPY( rc.i_vbv_max_bitrate );
1169         COPY( rc.i_vbv_buffer_size );
1170         COPY( rc.i_bitrate );
1171         rc_reconfig = 1;
1172     }
1173     if( h->param.rc.f_rf_constant != param->rc.f_rf_constant )
1174     {
1175         COPY( rc.f_rf_constant );
1176         rc_reconfig = 1;
1177     }
1178     if( h->param.rc.f_rf_constant_max != param->rc.f_rf_constant_max )
1179     {
1180         COPY( rc.f_rf_constant_max );
1181         rc_reconfig = 1;
1182     }
1183
1184 #undef COPY
1185
1186     mbcmp_init( h );
1187
1188     int ret = x264_validate_parameters( h );
1189
1190     /* Supported reconfiguration options (1-pass only):
1191      * vbv-maxrate
1192      * vbv-bufsize
1193      * crf
1194      * bitrate (CBR only) */
1195     if( !ret && rc_reconfig )
1196         x264_ratecontrol_init_reconfigurable( h, 0 );
1197
1198     return ret;
1199 }
1200
1201 /****************************************************************************
1202  * x264_encoder_parameters:
1203  ****************************************************************************/
1204 void x264_encoder_parameters( x264_t *h, x264_param_t *param )
1205 {
1206     memcpy( param, &h->thread[h->i_thread_phase]->param, sizeof(x264_param_t) );
1207 }
1208
1209 /* internal usage */
1210 static void x264_nal_start( x264_t *h, int i_type, int i_ref_idc )
1211 {
1212     x264_nal_t *nal = &h->out.nal[h->out.i_nal];
1213
1214     nal->i_ref_idc = i_ref_idc;
1215     nal->i_type    = i_type;
1216
1217     nal->i_payload= 0;
1218     nal->p_payload= &h->out.p_bitstream[bs_pos( &h->out.bs ) / 8];
1219 }
1220
1221 /* if number of allocated nals is not enough, re-allocate a larger one. */
1222 static int x264_nal_check_buffer( x264_t *h )
1223 {
1224     if( h->out.i_nal >= h->out.i_nals_allocated )
1225     {
1226         x264_nal_t *new_out = x264_malloc( sizeof(x264_nal_t) * (h->out.i_nals_allocated*2) );
1227         if( !new_out )
1228             return -1;
1229         memcpy( new_out, h->out.nal, sizeof(x264_nal_t) * (h->out.i_nals_allocated) );
1230         x264_free( h->out.nal );
1231         h->out.nal = new_out;
1232         h->out.i_nals_allocated *= 2;
1233     }
1234     return 0;
1235 }
1236
1237 static int x264_nal_end( x264_t *h )
1238 {
1239     x264_nal_t *nal = &h->out.nal[h->out.i_nal];
1240     nal->i_payload = &h->out.p_bitstream[bs_pos( &h->out.bs ) / 8] - nal->p_payload;
1241     h->out.i_nal++;
1242
1243     return x264_nal_check_buffer( h );
1244 }
1245
1246 static int x264_encoder_encapsulate_nals( x264_t *h, int start )
1247 {
1248     int nal_size = 0, previous_nal_size = 0;
1249
1250     for( int i = 0; i < start; i++ )
1251         previous_nal_size += h->out.nal[i].i_payload;
1252
1253     for( int i = start; i < h->out.i_nal; i++ )
1254         nal_size += h->out.nal[i].i_payload;
1255
1256     /* Worst-case NAL unit escaping: reallocate the buffer if it's too small. */
1257     if( h->nal_buffer_size < nal_size * 3/2 + h->out.i_nal * 4 )
1258     {
1259         uint8_t *buf = x264_malloc( nal_size * 2 + h->out.i_nal * 4 );
1260         if( !buf )
1261             return -1;
1262         if( previous_nal_size )
1263             memcpy( buf, h->nal_buffer, previous_nal_size );
1264         x264_free( h->nal_buffer );
1265         h->nal_buffer = buf;
1266     }
1267
1268     uint8_t *nal_buffer = h->nal_buffer + previous_nal_size;
1269
1270     for( int i = start; i < h->out.i_nal; i++ )
1271     {
1272         int long_startcode = !i || h->out.nal[i].i_type == NAL_SPS || h->out.nal[i].i_type == NAL_PPS;
1273         int size = x264_nal_encode( nal_buffer, &h->out.nal[i], h->param.b_annexb, long_startcode );
1274         h->out.nal[i].i_payload = size;
1275         h->out.nal[i].p_payload = nal_buffer;
1276         nal_buffer += size;
1277     }
1278
1279     return nal_buffer - (h->nal_buffer + previous_nal_size);
1280 }
1281
1282 /****************************************************************************
1283  * x264_encoder_headers:
1284  ****************************************************************************/
1285 int x264_encoder_headers( x264_t *h, x264_nal_t **pp_nal, int *pi_nal )
1286 {
1287     int frame_size = 0;
1288     /* init bitstream context */
1289     h->out.i_nal = 0;
1290     bs_init( &h->out.bs, h->out.p_bitstream, h->out.i_bitstream );
1291
1292     /* Write SEI, SPS and PPS. */
1293
1294     /* generate sequence parameters */
1295     x264_nal_start( h, NAL_SPS, NAL_PRIORITY_HIGHEST );
1296     x264_sps_write( &h->out.bs, h->sps );
1297     if( x264_nal_end( h ) )
1298         return -1;
1299
1300     /* generate picture parameters */
1301     x264_nal_start( h, NAL_PPS, NAL_PRIORITY_HIGHEST );
1302     x264_pps_write( &h->out.bs, h->pps );
1303     if( x264_nal_end( h ) )
1304         return -1;
1305
1306     /* identify ourselves */
1307     x264_nal_start( h, NAL_SEI, NAL_PRIORITY_DISPOSABLE );
1308     if( x264_sei_version_write( h, &h->out.bs ) )
1309         return -1;
1310     if( x264_nal_end( h ) )
1311         return -1;
1312
1313     frame_size = x264_encoder_encapsulate_nals( h, 0 );
1314
1315     /* now set output*/
1316     *pi_nal = h->out.i_nal;
1317     *pp_nal = &h->out.nal[0];
1318     h->out.i_nal = 0;
1319
1320     return frame_size;
1321 }
1322
1323 /* Check to see whether we have chosen a reference list ordering different
1324  * from the standard's default. */
1325 static inline void x264_reference_check_reorder( x264_t *h )
1326 {
1327     for( int i = 0; i < h->i_ref0 - 1; i++ )
1328         /* P and B-frames use different default orders. */
1329         if( h->sh.i_type == SLICE_TYPE_P ? h->fref0[i]->i_frame_num < h->fref0[i+1]->i_frame_num
1330                                          : h->fref0[i]->i_poc < h->fref0[i+1]->i_poc )
1331         {
1332             h->b_ref_reorder[0] = 1;
1333             break;
1334         }
1335 }
1336
1337 /* return -1 on failure, else return the index of the new reference frame */
1338 int x264_weighted_reference_duplicate( x264_t *h, int i_ref, const x264_weight_t *w )
1339 {
1340     int i = h->i_ref0;
1341     int j;
1342     x264_frame_t *newframe;
1343     if( i <= 1 ) /* empty list, definitely can't duplicate frame */
1344         return -1;
1345
1346     /* Find a place to insert the duplicate in the reference list. */
1347     for( j = 0; j < i; j++ )
1348         if( h->fref0[i_ref]->i_frame != h->fref0[j]->i_frame )
1349         {
1350             /* found a place, after j, make sure there is not already a duplicate there */
1351             if( j == i-1 || ( h->fref0[j+1] && h->fref0[i_ref]->i_frame != h->fref0[j+1]->i_frame ) )
1352                 break;
1353         }
1354
1355     if( j == i ) /* No room in the reference list for the duplicate. */
1356         return -1;
1357     j++;
1358
1359     newframe = x264_frame_pop_blank_unused( h );
1360
1361     //FIXME: probably don't need to copy everything
1362     *newframe = *h->fref0[i_ref];
1363     newframe->i_reference_count = 1;
1364     newframe->orig = h->fref0[i_ref];
1365     newframe->b_duplicate = 1;
1366     memcpy( h->fenc->weight[j], w, sizeof(h->fenc->weight[i]) );
1367
1368     /* shift the frames to make space for the dupe. */
1369     h->b_ref_reorder[0] = 1;
1370     if( h->i_ref0 < 16 )
1371         ++h->i_ref0;
1372     h->fref0[15] = NULL;
1373     x264_frame_unshift( &h->fref0[j], newframe );
1374
1375     return j;
1376 }
1377
1378 static void x264_weighted_pred_init( x264_t *h )
1379 {
1380     /* for now no analysis and set all weights to nothing */
1381     for( int i_ref = 0; i_ref < h->i_ref0; i_ref++ )
1382         h->fenc->weighted[i_ref] = h->fref0[i_ref]->filtered[0];
1383
1384     // FIXME: This only supports weighting of one reference frame
1385     // and duplicates of that frame.
1386     h->fenc->i_lines_weighted = 0;
1387
1388     for( int i_ref = 0; i_ref < (h->i_ref0 << h->sh.b_mbaff); i_ref++ )
1389         for( int i = 0; i < 3; i++ )
1390             h->sh.weight[i_ref][i].weightfn = NULL;
1391
1392
1393     if( h->sh.i_type != SLICE_TYPE_P || h->param.analyse.i_weighted_pred <= 0 )
1394         return;
1395
1396     int i_padv = PADV << h->param.b_interlaced;
1397     int denom = -1;
1398     int weightluma = 0;
1399     int buffer_next = 0;
1400     //FIXME: when chroma support is added, move this into loop
1401     h->sh.weight[0][1].weightfn = h->sh.weight[0][2].weightfn = NULL;
1402     h->sh.weight[0][1].i_denom = h->sh.weight[0][2].i_denom = 0;
1403     for( int j = 0; j < h->i_ref0; j++ )
1404     {
1405         if( h->fenc->weight[j][0].weightfn )
1406         {
1407             h->sh.weight[j][0] = h->fenc->weight[j][0];
1408             // if weight is useless, don't write it to stream
1409             if( h->sh.weight[j][0].i_scale == 1<<h->sh.weight[j][0].i_denom && h->sh.weight[j][0].i_offset == 0 )
1410                 h->sh.weight[j][0].weightfn = NULL;
1411             else
1412             {
1413                 if( !weightluma )
1414                 {
1415                     weightluma = 1;
1416                     h->sh.weight[0][0].i_denom = denom = h->sh.weight[j][0].i_denom;
1417                     assert( x264_clip3( denom, 0, 7 ) == denom );
1418                 }
1419                 assert( h->sh.weight[j][0].i_denom == denom );
1420                 assert( x264_clip3( h->sh.weight[j][0].i_scale, 0, 127 ) == h->sh.weight[j][0].i_scale );
1421                 assert( x264_clip3( h->sh.weight[j][0].i_offset, -128, 127 ) == h->sh.weight[j][0].i_offset );
1422                 h->fenc->weighted[j] = h->mb.p_weight_buf[buffer_next++] +
1423                     h->fenc->i_stride[0] * i_padv + PADH;
1424             }
1425         }
1426
1427         //scale full resolution frame
1428         if( h->sh.weight[j][0].weightfn && h->param.i_threads == 1 )
1429         {
1430             uint8_t *src = h->fref0[j]->filtered[0] - h->fref0[j]->i_stride[0]*i_padv - PADH;
1431             uint8_t *dst = h->fenc->weighted[j] - h->fenc->i_stride[0]*i_padv - PADH;
1432             int stride = h->fenc->i_stride[0];
1433             int width = h->fenc->i_width[0] + PADH*2;
1434             int height = h->fenc->i_lines[0] + i_padv*2;
1435             x264_weight_scale_plane( h, dst, stride, src, stride, width, height, &h->sh.weight[j][0] );
1436             h->fenc->i_lines_weighted = height;
1437         }
1438     }
1439     if( !weightluma )
1440         h->sh.weight[0][0].i_denom = 0;
1441 }
1442
1443 static inline void x264_reference_build_list( x264_t *h, int i_poc )
1444 {
1445     int b_ok;
1446
1447     /* build ref list 0/1 */
1448     h->mb.pic.i_fref[0] = h->i_ref0 = 0;
1449     h->mb.pic.i_fref[1] = h->i_ref1 = 0;
1450     if( h->sh.i_type == SLICE_TYPE_I )
1451         return;
1452
1453     for( int i = 0; h->frames.reference[i]; i++ )
1454     {
1455         if( h->frames.reference[i]->i_poc < i_poc )
1456             h->fref0[h->i_ref0++] = h->frames.reference[i];
1457         else if( h->frames.reference[i]->i_poc > i_poc )
1458             h->fref1[h->i_ref1++] = h->frames.reference[i];
1459     }
1460
1461     /* Order ref0 from higher to lower poc */
1462     do
1463     {
1464         b_ok = 1;
1465         for( int i = 0; i < h->i_ref0 - 1; i++ )
1466         {
1467             if( h->fref0[i]->i_poc < h->fref0[i+1]->i_poc )
1468             {
1469                 XCHG( x264_frame_t*, h->fref0[i], h->fref0[i+1] );
1470                 b_ok = 0;
1471                 break;
1472             }
1473         }
1474     } while( !b_ok );
1475
1476     if( h->sh.i_mmco_remove_from_end )
1477         for( int i = h->i_ref0-1; i >= h->i_ref0 - h->sh.i_mmco_remove_from_end; i-- )
1478         {
1479             int diff = h->i_frame_num - h->fref0[i]->i_frame_num;
1480             h->sh.mmco[h->sh.i_mmco_command_count].i_poc = h->fref0[i]->i_poc;
1481             h->sh.mmco[h->sh.i_mmco_command_count++].i_difference_of_pic_nums = diff;
1482         }
1483
1484     /* Order ref1 from lower to higher poc (bubble sort) for B-frame */
1485     do
1486     {
1487         b_ok = 1;
1488         for( int i = 0; i < h->i_ref1 - 1; i++ )
1489         {
1490             if( h->fref1[i]->i_poc > h->fref1[i+1]->i_poc )
1491             {
1492                 XCHG( x264_frame_t*, h->fref1[i], h->fref1[i+1] );
1493                 b_ok = 0;
1494                 break;
1495             }
1496         }
1497     } while( !b_ok );
1498
1499     x264_reference_check_reorder( h );
1500
1501     h->i_ref1 = X264_MIN( h->i_ref1, h->frames.i_max_ref1 );
1502     h->i_ref0 = X264_MIN( h->i_ref0, h->frames.i_max_ref0 );
1503     h->i_ref0 = X264_MIN( h->i_ref0, h->param.i_frame_reference ); // if reconfig() has lowered the limit
1504
1505     /* add duplicates */
1506     if( h->fenc->i_type == X264_TYPE_P )
1507     {
1508         int idx = -1;
1509         if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
1510         {
1511             x264_weight_t w[3];
1512             w[1].weightfn = w[2].weightfn = NULL;
1513             if( h->param.rc.b_stat_read )
1514                 x264_ratecontrol_set_weights( h, h->fenc );
1515
1516             if( !h->fenc->weight[0][0].weightfn )
1517             {
1518                 h->fenc->weight[0][0].i_denom = 0;
1519                 SET_WEIGHT( w[0], 1, 1, 0, -1 );
1520                 idx = x264_weighted_reference_duplicate( h, 0, w );
1521             }
1522             else
1523             {
1524                 if( h->fenc->weight[0][0].i_scale == 1<<h->fenc->weight[0][0].i_denom )
1525                 {
1526                     SET_WEIGHT( h->fenc->weight[0][0], 1, 1, 0, h->fenc->weight[0][0].i_offset );
1527                 }
1528                 x264_weighted_reference_duplicate( h, 0, weight_none );
1529                 if( h->fenc->weight[0][0].i_offset > -128 )
1530                 {
1531                     w[0] = h->fenc->weight[0][0];
1532                     w[0].i_offset--;
1533                     h->mc.weight_cache( h, &w[0] );
1534                     idx = x264_weighted_reference_duplicate( h, 0, w );
1535                 }
1536             }
1537         }
1538         else if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_BLIND )
1539         {
1540             //weighted offset=-1
1541             x264_weight_t w[3];
1542             SET_WEIGHT( w[0], 1, 1, 0, -1 );
1543             h->fenc->weight[0][0].i_denom = 0;
1544             w[1].weightfn = w[2].weightfn = NULL;
1545             idx = x264_weighted_reference_duplicate( h, 0, w );
1546         }
1547         h->mb.ref_blind_dupe = idx;
1548     }
1549
1550     assert( h->i_ref0 + h->i_ref1 <= 16 );
1551     h->mb.pic.i_fref[0] = h->i_ref0;
1552     h->mb.pic.i_fref[1] = h->i_ref1;
1553 }
1554
1555 static void x264_fdec_filter_row( x264_t *h, int mb_y )
1556 {
1557     /* mb_y is the mb to be encoded next, not the mb to be filtered here */
1558     int b_hpel = h->fdec->b_kept_as_ref;
1559     int b_deblock = !h->sh.i_disable_deblocking_filter_idc;
1560     int b_end = mb_y == h->sps->i_mb_height;
1561     int min_y = mb_y - (1 << h->sh.b_mbaff);
1562     int max_y = b_end ? h->sps->i_mb_height : mb_y;
1563     b_deblock &= b_hpel || h->param.psz_dump_yuv;
1564     if( mb_y & h->sh.b_mbaff )
1565         return;
1566     if( min_y < 0 )
1567         return;
1568
1569     if( !b_end && !h->param.b_sliced_threads )
1570         for( int j = 0; j <= h->sh.b_mbaff; j++ )
1571             for( int i = 0; i < 3; i++ )
1572             {
1573                 memcpy( h->mb.intra_border_backup[j][i],
1574                         h->fdec->plane[i] + ((mb_y*16 >> !!i) + j - 1 - h->sh.b_mbaff) * h->fdec->i_stride[i],
1575                         h->sps->i_mb_width*16 >> !!i );
1576             }
1577
1578     if( b_deblock )
1579         for( int y = min_y; y < max_y; y += (1 << h->sh.b_mbaff) )
1580             x264_frame_deblock_row( h, y );
1581
1582     if( b_hpel )
1583     {
1584         x264_frame_expand_border( h, h->fdec, min_y, b_end );
1585         if( h->param.analyse.i_subpel_refine )
1586         {
1587             x264_frame_filter( h, h->fdec, min_y, b_end );
1588             x264_frame_expand_border_filtered( h, h->fdec, min_y, b_end );
1589         }
1590     }
1591
1592     if( h->i_thread_frames > 1 && h->fdec->b_kept_as_ref )
1593         x264_frame_cond_broadcast( h->fdec, mb_y*16 + (b_end ? 10000 : -(X264_THREAD_HEIGHT << h->sh.b_mbaff)) );
1594
1595     min_y = X264_MAX( min_y*16-8, 0 );
1596     max_y = b_end ? h->param.i_height : mb_y*16-8;
1597
1598     if( h->param.analyse.b_psnr )
1599         for( int i = 0; i < 3; i++ )
1600             h->stat.frame.i_ssd[i] +=
1601                 x264_pixel_ssd_wxh( &h->pixf,
1602                     h->fdec->plane[i] + (min_y>>!!i) * h->fdec->i_stride[i], h->fdec->i_stride[i],
1603                     h->fenc->plane[i] + (min_y>>!!i) * h->fenc->i_stride[i], h->fenc->i_stride[i],
1604                     h->param.i_width >> !!i, (max_y-min_y) >> !!i );
1605
1606     if( h->param.analyse.b_ssim )
1607     {
1608         x264_emms();
1609         /* offset by 2 pixels to avoid alignment of ssim blocks with dct blocks,
1610          * and overlap by 4 */
1611         min_y += min_y == 0 ? 2 : -6;
1612         h->stat.frame.f_ssim +=
1613             x264_pixel_ssim_wxh( &h->pixf,
1614                 h->fdec->plane[0] + 2+min_y*h->fdec->i_stride[0], h->fdec->i_stride[0],
1615                 h->fenc->plane[0] + 2+min_y*h->fenc->i_stride[0], h->fenc->i_stride[0],
1616                 h->param.i_width-2, max_y-min_y, h->scratch_buffer );
1617     }
1618 }
1619
1620 static inline int x264_reference_update( x264_t *h )
1621 {
1622     if( !h->fdec->b_kept_as_ref )
1623     {
1624         if( h->i_thread_frames > 1 )
1625         {
1626             x264_frame_push_unused( h, h->fdec );
1627             h->fdec = x264_frame_pop_unused( h, 1 );
1628             if( !h->fdec )
1629                 return -1;
1630         }
1631         return 0;
1632     }
1633
1634     /* apply mmco from previous frame. */
1635     for( int i = 0; i < h->sh.i_mmco_command_count; i++ )
1636         for( int j = 0; h->frames.reference[j]; j++ )
1637             if( h->frames.reference[j]->i_poc == h->sh.mmco[i].i_poc )
1638                 x264_frame_push_unused( h, x264_frame_shift( &h->frames.reference[j] ) );
1639
1640     /* move frame in the buffer */
1641     x264_frame_push( h->frames.reference, h->fdec );
1642     if( h->frames.reference[h->sps->i_num_ref_frames] )
1643         x264_frame_push_unused( h, x264_frame_shift( h->frames.reference ) );
1644     h->fdec = x264_frame_pop_unused( h, 1 );
1645     if( !h->fdec )
1646         return -1;
1647     return 0;
1648 }
1649
1650 static inline void x264_reference_reset( x264_t *h )
1651 {
1652     while( h->frames.reference[0] )
1653         x264_frame_push_unused( h, x264_frame_pop( h->frames.reference ) );
1654     h->fdec->i_poc =
1655     h->fenc->i_poc = 0;
1656 }
1657
1658 static inline void x264_reference_hierarchy_reset( x264_t *h )
1659 {
1660     int ref;
1661     int b_hasdelayframe = 0;
1662     if( !h->param.i_bframe_pyramid )
1663         return;
1664
1665     /* look for delay frames -- chain must only contain frames that are disposable */
1666     for( int i = 0; h->frames.current[i] && IS_DISPOSABLE( h->frames.current[i]->i_type ); i++ )
1667         b_hasdelayframe |= h->frames.current[i]->i_coded
1668                         != h->frames.current[i]->i_frame + h->sps->vui.i_num_reorder_frames;
1669
1670     if( h->param.i_bframe_pyramid != X264_B_PYRAMID_STRICT && !b_hasdelayframe )
1671         return;
1672
1673     /* Remove last BREF. There will never be old BREFs in the
1674      * dpb during a BREF decode when pyramid == STRICT */
1675     for( ref = 0; h->frames.reference[ref]; ref++ )
1676     {
1677         if( h->param.i_bframe_pyramid == X264_B_PYRAMID_STRICT
1678             && h->frames.reference[ref]->i_type == X264_TYPE_BREF )
1679         {
1680             int diff = h->i_frame_num - h->frames.reference[ref]->i_frame_num;
1681             h->sh.mmco[h->sh.i_mmco_command_count].i_difference_of_pic_nums = diff;
1682             h->sh.mmco[h->sh.i_mmco_command_count++].i_poc = h->frames.reference[ref]->i_poc;
1683             x264_frame_push_unused( h, x264_frame_pop( h->frames.reference ) );
1684             h->b_ref_reorder[0] = 1;
1685             break;
1686         }
1687     }
1688
1689     /* Prepare to room in the dpb for the delayed display time of the later b-frame's */
1690     h->sh.i_mmco_remove_from_end = X264_MAX( ref + 2 - h->frames.i_max_dpb, 0 );
1691 }
1692
1693 static inline void x264_slice_init( x264_t *h, int i_nal_type, int i_global_qp )
1694 {
1695     /* ------------------------ Create slice header  ----------------------- */
1696     if( i_nal_type == NAL_SLICE_IDR )
1697     {
1698         x264_slice_header_init( h, &h->sh, h->sps, h->pps, h->i_idr_pic_id, h->i_frame_num, i_global_qp );
1699
1700         /* increment id */
1701         h->i_idr_pic_id = ( h->i_idr_pic_id + 1 ) % 65536;
1702     }
1703     else
1704     {
1705         x264_slice_header_init( h, &h->sh, h->sps, h->pps, -1, h->i_frame_num, i_global_qp );
1706
1707         h->sh.i_num_ref_idx_l0_active = h->i_ref0 <= 0 ? 1 : h->i_ref0;
1708         h->sh.i_num_ref_idx_l1_active = h->i_ref1 <= 0 ? 1 : h->i_ref1;
1709         if( h->sh.i_num_ref_idx_l0_active != h->pps->i_num_ref_idx_l0_default_active ||
1710             (h->sh.i_type == SLICE_TYPE_B && h->sh.i_num_ref_idx_l1_active != h->pps->i_num_ref_idx_l1_default_active) )
1711         {
1712             h->sh.b_num_ref_idx_override = 1;
1713         }
1714     }
1715
1716     h->fdec->i_frame_num = h->sh.i_frame_num;
1717
1718     if( h->sps->i_poc_type == 0 )
1719     {
1720         h->sh.i_poc = h->fdec->i_poc;
1721         if( h->param.b_interlaced )
1722         {
1723             h->sh.i_delta_poc_bottom = h->param.b_tff ? 1 : -1;
1724             if( h->sh.i_delta_poc_bottom == -1 )
1725                 h->sh.i_poc = h->fdec->i_poc + 1;
1726         }
1727         else
1728             h->sh.i_delta_poc_bottom = 0;
1729     }
1730     else if( h->sps->i_poc_type == 1 )
1731     {
1732         /* FIXME TODO FIXME */
1733     }
1734     else
1735     {
1736         /* Nothing to do ? */
1737     }
1738
1739     x264_macroblock_slice_init( h );
1740 }
1741
1742 static int x264_slice_write( x264_t *h )
1743 {
1744     int i_skip;
1745     int mb_xy, i_mb_x, i_mb_y;
1746     int i_skip_bak = 0; /* Shut up GCC. */
1747     bs_t bs_bak;
1748     x264_cabac_t cabac_bak;
1749     uint8_t cabac_prevbyte_bak = 0; /* Shut up GCC. */
1750     /* Assume no more than 3 bytes of NALU escaping.
1751      * NALUs other than the first use a 3-byte startcode. */
1752     int overhead_guess = (NALU_OVERHEAD - (h->param.b_annexb && h->out.i_nal)) + 3;
1753     int slice_max_size = h->param.i_slice_max_size > 0 ? (h->param.i_slice_max_size-overhead_guess)*8 : INT_MAX;
1754     int starting_bits = bs_pos(&h->out.bs);
1755     bs_realign( &h->out.bs );
1756
1757     /* Slice */
1758     x264_nal_start( h, h->i_nal_type, h->i_nal_ref_idc );
1759
1760     /* Slice header */
1761     x264_macroblock_thread_init( h );
1762
1763     /* If this isn't the first slice in the threadslice, set the slice QP
1764      * equal to the last QP in the previous slice for more accurate
1765      * CABAC initialization. */
1766     if( h->sh.i_first_mb != h->i_threadslice_start * h->sps->i_mb_width )
1767     {
1768         h->sh.i_qp = h->mb.i_last_qp;
1769         h->sh.i_qp_delta = h->sh.i_qp - h->pps->i_pic_init_qp;
1770     }
1771
1772     x264_slice_header_write( &h->out.bs, &h->sh, h->i_nal_ref_idc );
1773     if( h->param.b_cabac )
1774     {
1775         /* alignment needed */
1776         bs_align_1( &h->out.bs );
1777
1778         /* init cabac */
1779         x264_cabac_context_init( &h->cabac, h->sh.i_type, h->sh.i_qp, h->sh.i_cabac_init_idc );
1780         x264_cabac_encode_init ( &h->cabac, h->out.bs.p, h->out.bs.p_end );
1781     }
1782     h->mb.i_last_qp = h->sh.i_qp;
1783     h->mb.i_last_dqp = 0;
1784
1785     i_mb_y = h->sh.i_first_mb / h->sps->i_mb_width;
1786     i_mb_x = h->sh.i_first_mb % h->sps->i_mb_width;
1787     i_skip = 0;
1788
1789     while( (mb_xy = i_mb_x + i_mb_y * h->sps->i_mb_width) <= h->sh.i_last_mb )
1790     {
1791         int mb_spos = bs_pos(&h->out.bs) + x264_cabac_pos(&h->cabac);
1792         if( h->param.i_slice_max_size > 0 )
1793         {
1794             /* We don't need the contexts because flushing the CABAC encoder has no context
1795              * dependency and macroblocks are only re-encoded in the case where a slice is
1796              * ended (and thus the content of all contexts are thrown away). */
1797             if( h->param.b_cabac )
1798             {
1799                 memcpy( &cabac_bak, &h->cabac, offsetof(x264_cabac_t, f8_bits_encoded) );
1800                 /* x264's CABAC writer modifies the previous byte during carry, so it has to be
1801                  * backed up. */
1802                 cabac_prevbyte_bak = h->cabac.p[-1];
1803             }
1804             else
1805             {
1806                 bs_bak = h->out.bs;
1807                 i_skip_bak = i_skip;
1808             }
1809         }
1810
1811         if( i_mb_x == 0 && !h->mb.b_reencode_mb && !h->param.b_sliced_threads )
1812             x264_fdec_filter_row( h, i_mb_y );
1813
1814         /* load cache */
1815         x264_macroblock_cache_load( h, i_mb_x, i_mb_y );
1816
1817         x264_macroblock_analyse( h );
1818
1819         /* encode this macroblock -> be careful it can change the mb type to P_SKIP if needed */
1820         x264_macroblock_encode( h );
1821
1822         if( x264_bitstream_check_buffer( h ) )
1823             return -1;
1824
1825         if( h->param.b_cabac )
1826         {
1827             if( mb_xy > h->sh.i_first_mb && !(h->sh.b_mbaff && (i_mb_y&1)) )
1828                 x264_cabac_encode_terminal( &h->cabac );
1829
1830             if( IS_SKIP( h->mb.i_type ) )
1831                 x264_cabac_mb_skip( h, 1 );
1832             else
1833             {
1834                 if( h->sh.i_type != SLICE_TYPE_I )
1835                     x264_cabac_mb_skip( h, 0 );
1836                 x264_macroblock_write_cabac( h, &h->cabac );
1837             }
1838         }
1839         else
1840         {
1841             if( IS_SKIP( h->mb.i_type ) )
1842                 i_skip++;
1843             else
1844             {
1845                 if( h->sh.i_type != SLICE_TYPE_I )
1846                 {
1847                     bs_write_ue( &h->out.bs, i_skip );  /* skip run */
1848                     i_skip = 0;
1849                 }
1850                 x264_macroblock_write_cavlc( h );
1851             }
1852         }
1853
1854         int total_bits = bs_pos(&h->out.bs) + x264_cabac_pos(&h->cabac);
1855         int mb_size = total_bits - mb_spos;
1856
1857         /* We'll just re-encode this last macroblock if we go over the max slice size. */
1858         if( total_bits - starting_bits > slice_max_size && !h->mb.b_reencode_mb )
1859         {
1860             if( mb_xy != h->sh.i_first_mb )
1861             {
1862                 if( h->param.b_cabac )
1863                 {
1864                     memcpy( &h->cabac, &cabac_bak, offsetof(x264_cabac_t, f8_bits_encoded) );
1865                     h->cabac.p[-1] = cabac_prevbyte_bak;
1866                 }
1867                 else
1868                 {
1869                     h->out.bs = bs_bak;
1870                     i_skip = i_skip_bak;
1871                 }
1872                 h->mb.b_reencode_mb = 1;
1873                 h->sh.i_last_mb = mb_xy-1;
1874                 break;
1875             }
1876             else
1877             {
1878                 h->sh.i_last_mb = mb_xy;
1879                 h->mb.b_reencode_mb = 0;
1880             }
1881         }
1882         else
1883             h->mb.b_reencode_mb = 0;
1884
1885 #ifdef HAVE_VISUALIZE
1886         if( h->param.b_visualize )
1887             x264_visualize_mb( h );
1888 #endif
1889
1890         /* save cache */
1891         x264_macroblock_cache_save( h );
1892
1893         /* accumulate mb stats */
1894         h->stat.frame.i_mb_count[h->mb.i_type]++;
1895
1896         if( !IS_INTRA(h->mb.i_type) && !IS_SKIP(h->mb.i_type) && !IS_DIRECT(h->mb.i_type) )
1897         {
1898             if( h->mb.i_partition != D_8x8 )
1899                     h->stat.frame.i_mb_partition[h->mb.i_partition] += 4;
1900                 else
1901                     for( int i = 0; i < 4; i++ )
1902                         h->stat.frame.i_mb_partition[h->mb.i_sub_partition[i]] ++;
1903             if( h->param.i_frame_reference > 1 )
1904                 for( int i_list = 0; i_list <= (h->sh.i_type == SLICE_TYPE_B); i_list++ )
1905                     for( int i = 0; i < 4; i++ )
1906                     {
1907                         int i_ref = h->mb.cache.ref[i_list][ x264_scan8[4*i] ];
1908                         if( i_ref >= 0 )
1909                             h->stat.frame.i_mb_count_ref[i_list][i_ref] ++;
1910                     }
1911         }
1912
1913         if( h->param.i_log_level >= X264_LOG_INFO )
1914         {
1915             if( h->mb.i_cbp_luma || h->mb.i_cbp_chroma )
1916             {
1917                 int cbpsum = (h->mb.i_cbp_luma&1) + ((h->mb.i_cbp_luma>>1)&1)
1918                            + ((h->mb.i_cbp_luma>>2)&1) + (h->mb.i_cbp_luma>>3);
1919                 int b_intra = IS_INTRA(h->mb.i_type);
1920                 h->stat.frame.i_mb_cbp[!b_intra + 0] += cbpsum;
1921                 h->stat.frame.i_mb_cbp[!b_intra + 2] += h->mb.i_cbp_chroma >= 1;
1922                 h->stat.frame.i_mb_cbp[!b_intra + 4] += h->mb.i_cbp_chroma == 2;
1923             }
1924             if( h->mb.i_cbp_luma && !IS_INTRA(h->mb.i_type) )
1925             {
1926                 h->stat.frame.i_mb_count_8x8dct[0] ++;
1927                 h->stat.frame.i_mb_count_8x8dct[1] += h->mb.b_transform_8x8;
1928             }
1929             if( IS_INTRA(h->mb.i_type) && h->mb.i_type != I_PCM )
1930             {
1931                 if( h->mb.i_type == I_16x16 )
1932                     h->stat.frame.i_mb_pred_mode[0][h->mb.i_intra16x16_pred_mode]++;
1933                 else if( h->mb.i_type == I_8x8 )
1934                     for( int i = 0; i < 16; i += 4 )
1935                         h->stat.frame.i_mb_pred_mode[1][h->mb.cache.intra4x4_pred_mode[x264_scan8[i]]]++;
1936                 else //if( h->mb.i_type == I_4x4 )
1937                     for( int i = 0; i < 16; i++ )
1938                         h->stat.frame.i_mb_pred_mode[2][h->mb.cache.intra4x4_pred_mode[x264_scan8[i]]]++;
1939             }
1940         }
1941
1942         x264_ratecontrol_mb( h, mb_size );
1943
1944         if( h->sh.b_mbaff )
1945         {
1946             i_mb_x += i_mb_y & 1;
1947             i_mb_y ^= i_mb_x < h->sps->i_mb_width;
1948         }
1949         else
1950             i_mb_x++;
1951         if( i_mb_x == h->sps->i_mb_width )
1952         {
1953             i_mb_y++;
1954             i_mb_x = 0;
1955         }
1956     }
1957
1958     if( h->param.b_cabac )
1959     {
1960         x264_cabac_encode_flush( h, &h->cabac );
1961         h->out.bs.p = h->cabac.p;
1962     }
1963     else
1964     {
1965         if( i_skip > 0 )
1966             bs_write_ue( &h->out.bs, i_skip );  /* last skip run */
1967         /* rbsp_slice_trailing_bits */
1968         bs_rbsp_trailing( &h->out.bs );
1969         bs_flush( &h->out.bs );
1970     }
1971     if( x264_nal_end( h ) )
1972         return -1;
1973
1974     if( h->sh.i_last_mb == h->mb.i_mb_count-1 )
1975     {
1976         h->stat.frame.i_misc_bits = bs_pos( &h->out.bs )
1977                                   + (h->out.i_nal*NALU_OVERHEAD * 8)
1978                                   - h->stat.frame.i_tex_bits
1979                                   - h->stat.frame.i_mv_bits;
1980         if( !h->param.b_sliced_threads )
1981             x264_fdec_filter_row( h, h->sps->i_mb_height );
1982     }
1983
1984     return 0;
1985 }
1986
1987 static void x264_thread_sync_context( x264_t *dst, x264_t *src )
1988 {
1989     if( dst == src )
1990         return;
1991
1992     // reference counting
1993     for( x264_frame_t **f = src->frames.reference; *f; f++ )
1994         (*f)->i_reference_count++;
1995     for( x264_frame_t **f = dst->frames.reference; *f; f++ )
1996         x264_frame_push_unused( src, *f );
1997     src->fdec->i_reference_count++;
1998     x264_frame_push_unused( src, dst->fdec );
1999
2000     // copy everything except the per-thread pointers and the constants.
2001     memcpy( &dst->i_frame, &src->i_frame, offsetof(x264_t, mb.type) - offsetof(x264_t, i_frame) );
2002     dst->param = src->param;
2003     dst->stat = src->stat;
2004 }
2005
2006 static void x264_thread_sync_stat( x264_t *dst, x264_t *src )
2007 {
2008     if( dst == src )
2009         return;
2010     memcpy( &dst->stat.i_frame_count, &src->stat.i_frame_count, sizeof(dst->stat) - sizeof(dst->stat.frame) );
2011 }
2012
2013 static void *x264_slices_write( x264_t *h )
2014 {
2015     int i_slice_num = 0;
2016     int last_thread_mb = h->sh.i_last_mb;
2017     if( h->param.i_sync_lookahead )
2018         x264_lower_thread_priority( 10 );
2019
2020 #ifdef HAVE_MMX
2021     /* Misalign mask has to be set separately for each thread. */
2022     if( h->param.cpu&X264_CPU_SSE_MISALIGN )
2023         x264_cpu_mask_misalign_sse();
2024 #endif
2025
2026 #ifdef HAVE_VISUALIZE
2027     if( h->param.b_visualize )
2028         if( x264_visualize_init( h ) )
2029             return (void *)-1;
2030 #endif
2031
2032     /* init stats */
2033     memset( &h->stat.frame, 0, sizeof(h->stat.frame) );
2034     h->mb.b_reencode_mb = 0;
2035     while( h->sh.i_first_mb <= last_thread_mb )
2036     {
2037         h->sh.i_last_mb = last_thread_mb;
2038         if( h->param.i_slice_max_mbs )
2039             h->sh.i_last_mb = h->sh.i_first_mb + h->param.i_slice_max_mbs - 1;
2040         else if( h->param.i_slice_count && !h->param.b_sliced_threads )
2041         {
2042             int height = h->sps->i_mb_height >> h->param.b_interlaced;
2043             int width = h->sps->i_mb_width << h->param.b_interlaced;
2044             i_slice_num++;
2045             h->sh.i_last_mb = (height * i_slice_num + h->param.i_slice_count/2) / h->param.i_slice_count * width - 1;
2046         }
2047         h->sh.i_last_mb = X264_MIN( h->sh.i_last_mb, last_thread_mb );
2048         if( x264_stack_align( x264_slice_write, h ) )
2049             return (void *)-1;
2050         h->sh.i_first_mb = h->sh.i_last_mb + 1;
2051     }
2052
2053 #ifdef HAVE_VISUALIZE
2054     if( h->param.b_visualize )
2055     {
2056         x264_visualize_show( h );
2057         x264_visualize_close( h );
2058     }
2059 #endif
2060
2061     return (void *)0;
2062 }
2063
2064 static int x264_threaded_slices_write( x264_t *h )
2065 {
2066     void *ret = NULL;
2067     /* set first/last mb and sync contexts */
2068     for( int i = 0; i < h->param.i_threads; i++ )
2069     {
2070         x264_t *t = h->thread[i];
2071         if( i )
2072         {
2073             t->param = h->param;
2074             memcpy( &t->i_frame, &h->i_frame, offsetof(x264_t, rc) - offsetof(x264_t, i_frame) );
2075         }
2076         int height = h->sps->i_mb_height >> h->param.b_interlaced;
2077         t->i_threadslice_start = ((height *  i    + h->param.i_slice_count/2) / h->param.i_threads) << h->param.b_interlaced;
2078         t->i_threadslice_end   = ((height * (i+1) + h->param.i_slice_count/2) / h->param.i_threads) << h->param.b_interlaced;
2079         t->sh.i_first_mb = t->i_threadslice_start * h->sps->i_mb_width;
2080         t->sh.i_last_mb  =   t->i_threadslice_end * h->sps->i_mb_width - 1;
2081     }
2082
2083     x264_stack_align( x264_analyse_weight_frame, h, h->sps->i_mb_height*16 + 16 );
2084
2085     x264_threads_distribute_ratecontrol( h );
2086
2087     /* dispatch */
2088     for( int i = 0; i < h->param.i_threads; i++ )
2089     {
2090         if( x264_pthread_create( &h->thread[i]->thread_handle, NULL, (void*)x264_slices_write, (void*)h->thread[i] ) )
2091             return -1;
2092         h->thread[i]->b_thread_active = 1;
2093     }
2094     for( int i = 0; i < h->param.i_threads; i++ )
2095     {
2096         x264_pthread_join( h->thread[i]->thread_handle, &ret );
2097         h->thread[i]->b_thread_active = 0;
2098         if( (intptr_t)ret )
2099             return (intptr_t)ret;
2100     }
2101
2102     /* deblocking and hpel filtering */
2103     for( int i = 0; i <= h->sps->i_mb_height; i++ )
2104         x264_stack_align( x264_fdec_filter_row, h, i );
2105
2106     x264_threads_merge_ratecontrol( h );
2107
2108     for( int i = 1; i < h->param.i_threads; i++ )
2109     {
2110         x264_t *t = h->thread[i];
2111         for( int j = 0; j < t->out.i_nal; j++ )
2112         {
2113             h->out.nal[h->out.i_nal] = t->out.nal[j];
2114             h->out.i_nal++;
2115             x264_nal_check_buffer( h );
2116         }
2117         /* All entries in stat.frame are ints except for ssd/ssim,
2118          * which are only calculated in the main thread. */
2119         for( int j = 0; j < (offsetof(x264_t,stat.frame.i_ssd) - offsetof(x264_t,stat.frame.i_mv_bits)) / sizeof(int); j++ )
2120             ((int*)&h->stat.frame)[j] += ((int*)&t->stat.frame)[j];
2121     }
2122
2123     return 0;
2124 }
2125
2126 /****************************************************************************
2127  * x264_encoder_encode:
2128  *  XXX: i_poc   : is the poc of the current given picture
2129  *       i_frame : is the number of the frame being coded
2130  *  ex:  type frame poc
2131  *       I      0   2*0
2132  *       P      1   2*3
2133  *       B      2   2*1
2134  *       B      3   2*2
2135  *       P      4   2*6
2136  *       B      5   2*4
2137  *       B      6   2*5
2138  ****************************************************************************/
2139 int     x264_encoder_encode( x264_t *h,
2140                              x264_nal_t **pp_nal, int *pi_nal,
2141                              x264_picture_t *pic_in,
2142                              x264_picture_t *pic_out )
2143 {
2144     x264_t *thread_current, *thread_prev, *thread_oldest;
2145     int i_nal_type, i_nal_ref_idc, i_global_qp;
2146     int overhead = NALU_OVERHEAD;
2147
2148     if( h->i_thread_frames > 1 )
2149     {
2150         thread_prev    = h->thread[ h->i_thread_phase ];
2151         h->i_thread_phase = (h->i_thread_phase + 1) % h->i_thread_frames;
2152         thread_current = h->thread[ h->i_thread_phase ];
2153         thread_oldest  = h->thread[ (h->i_thread_phase + 1) % h->i_thread_frames ];
2154         x264_thread_sync_context( thread_current, thread_prev );
2155         x264_thread_sync_ratecontrol( thread_current, thread_prev, thread_oldest );
2156         h = thread_current;
2157     }
2158     else
2159     {
2160         thread_current =
2161         thread_oldest  = h;
2162     }
2163
2164     // ok to call this before encoding any frames, since the initial values of fdec have b_kept_as_ref=0
2165     if( x264_reference_update( h ) )
2166         return -1;
2167     h->fdec->i_lines_completed = -1;
2168
2169     /* no data out */
2170     *pi_nal = 0;
2171     *pp_nal = NULL;
2172
2173     /* ------------------- Setup new frame from picture -------------------- */
2174     if( pic_in != NULL )
2175     {
2176         /* 1: Copy the picture to a frame and move it to a buffer */
2177         x264_frame_t *fenc = x264_frame_pop_unused( h, 0 );
2178         if( !fenc )
2179             return -1;
2180
2181         if( x264_frame_copy_picture( h, fenc, pic_in ) < 0 )
2182             return -1;
2183
2184         if( h->param.i_width != 16 * h->sps->i_mb_width ||
2185             h->param.i_height != 16 * h->sps->i_mb_height )
2186             x264_frame_expand_border_mod16( h, fenc );
2187
2188         fenc->i_frame = h->frames.i_input++;
2189
2190         if( h->frames.i_bframe_delay && fenc->i_frame == h->frames.i_bframe_delay )
2191             h->frames.i_bframe_delay_time = fenc->i_pts;
2192
2193         if( h->param.b_vfr_input && fenc->i_pts <= h->frames.i_largest_pts )
2194             x264_log( h, X264_LOG_WARNING, "non-strictly-monotonic PTS\n" );
2195
2196         h->frames.i_second_largest_pts = h->frames.i_largest_pts;
2197         h->frames.i_largest_pts = fenc->i_pts;
2198
2199         if( (fenc->i_pic_struct < PIC_STRUCT_AUTO) || (fenc->i_pic_struct > PIC_STRUCT_TRIPLE) )
2200             fenc->i_pic_struct = PIC_STRUCT_AUTO;
2201
2202         if( fenc->i_pic_struct == PIC_STRUCT_AUTO )
2203         {
2204             int b_interlaced = fenc->param ? fenc->param->b_interlaced : h->param.b_interlaced;
2205             if( b_interlaced )
2206             {
2207                 int b_tff = fenc->param ? fenc->param->b_tff : h->param.b_tff;
2208                 fenc->i_pic_struct = b_tff ? PIC_STRUCT_TOP_BOTTOM : PIC_STRUCT_BOTTOM_TOP;
2209             }
2210             else
2211                 fenc->i_pic_struct = PIC_STRUCT_PROGRESSIVE;
2212         }
2213
2214         if( h->frames.b_have_lowres )
2215         {
2216             if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_FAKE || h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
2217                 x264_weight_plane_analyse( h, fenc );
2218             x264_frame_init_lowres( h, fenc );
2219         }
2220
2221         if( h->param.rc.b_mb_tree && h->param.rc.b_stat_read )
2222         {
2223             if( x264_macroblock_tree_read( h, fenc ) )
2224                 return -1;
2225         }
2226         else if( h->param.rc.i_aq_mode )
2227             x264_adaptive_quant_frame( h, fenc );
2228
2229         /* 2: Place the frame into the queue for its slice type decision */
2230         x264_lookahead_put_frame( h, fenc );
2231
2232         if( h->frames.i_input <= h->frames.i_delay + 1 - h->i_thread_frames )
2233         {
2234             /* Nothing yet to encode, waiting for filling of buffers */
2235             pic_out->i_type = X264_TYPE_AUTO;
2236             return 0;
2237         }
2238     }
2239     else
2240     {
2241         /* signal kills for lookahead thread */
2242         x264_pthread_mutex_lock( &h->lookahead->ifbuf.mutex );
2243         h->lookahead->b_exit_thread = 1;
2244         x264_pthread_cond_broadcast( &h->lookahead->ifbuf.cv_fill );
2245         x264_pthread_mutex_unlock( &h->lookahead->ifbuf.mutex );
2246     }
2247
2248     h->i_frame++;
2249     /* 3: The picture is analyzed in the lookahead */
2250     if( !h->frames.current[0] )
2251         x264_lookahead_get_frames( h );
2252
2253     if( !h->frames.current[0] && x264_lookahead_is_empty( h ) )
2254         return x264_encoder_frame_end( thread_oldest, thread_current, pp_nal, pi_nal, pic_out );
2255
2256     /* ------------------- Get frame to be encoded ------------------------- */
2257     /* 4: get picture to encode */
2258     h->fenc = x264_frame_shift( h->frames.current );
2259     if( h->i_frame == 0 )
2260         h->first_pts = h->fenc->i_reordered_pts;
2261     if( h->fenc->param )
2262     {
2263         x264_encoder_reconfig( h, h->fenc->param );
2264         if( h->fenc->param->param_free )
2265             h->fenc->param->param_free( h->fenc->param );
2266     }
2267
2268     if( h->fenc->b_keyframe )
2269     {
2270         h->frames.i_last_keyframe = h->fenc->i_frame;
2271         if( h->fenc->i_type == X264_TYPE_IDR )
2272             h->i_frame_num = 0;
2273     }
2274     h->sh.i_mmco_command_count =
2275     h->sh.i_mmco_remove_from_end = 0;
2276     h->b_ref_reorder[0] =
2277     h->b_ref_reorder[1] = 0;
2278
2279     /* ------------------- Setup frame context ----------------------------- */
2280     /* 5: Init data dependent of frame type */
2281     if( h->fenc->i_type == X264_TYPE_IDR )
2282     {
2283         /* reset ref pictures */
2284         i_nal_type    = NAL_SLICE_IDR;
2285         i_nal_ref_idc = NAL_PRIORITY_HIGHEST;
2286         h->sh.i_type = SLICE_TYPE_I;
2287         x264_reference_reset( h );
2288     }
2289     else if( h->fenc->i_type == X264_TYPE_I )
2290     {
2291         i_nal_type    = NAL_SLICE;
2292         i_nal_ref_idc = NAL_PRIORITY_HIGH; /* Not completely true but for now it is (as all I/P are kept as ref)*/
2293         h->sh.i_type = SLICE_TYPE_I;
2294         x264_reference_hierarchy_reset( h );
2295     }
2296     else if( h->fenc->i_type == X264_TYPE_P )
2297     {
2298         i_nal_type    = NAL_SLICE;
2299         i_nal_ref_idc = NAL_PRIORITY_HIGH; /* Not completely true but for now it is (as all I/P are kept as ref)*/
2300         h->sh.i_type = SLICE_TYPE_P;
2301         x264_reference_hierarchy_reset( h );
2302     }
2303     else if( h->fenc->i_type == X264_TYPE_BREF )
2304     {
2305         i_nal_type    = NAL_SLICE;
2306         i_nal_ref_idc = h->param.i_bframe_pyramid == X264_B_PYRAMID_STRICT ? NAL_PRIORITY_LOW : NAL_PRIORITY_HIGH;
2307         h->sh.i_type = SLICE_TYPE_B;
2308         x264_reference_hierarchy_reset( h );
2309     }
2310     else    /* B frame */
2311     {
2312         i_nal_type    = NAL_SLICE;
2313         i_nal_ref_idc = NAL_PRIORITY_DISPOSABLE;
2314         h->sh.i_type = SLICE_TYPE_B;
2315     }
2316
2317     h->fdec->i_poc =
2318     h->fenc->i_poc = 2 * (h->fenc->i_frame - h->frames.i_last_keyframe);
2319     h->fdec->i_type = h->fenc->i_type;
2320     h->fdec->i_frame = h->fenc->i_frame;
2321     h->fenc->b_kept_as_ref =
2322     h->fdec->b_kept_as_ref = i_nal_ref_idc != NAL_PRIORITY_DISPOSABLE && h->param.i_keyint_max > 1;
2323
2324
2325
2326     /* ------------------- Init                ----------------------------- */
2327     /* build ref list 0/1 */
2328     x264_reference_build_list( h, h->fdec->i_poc );
2329
2330     /* ---------------------- Write the bitstream -------------------------- */
2331     /* Init bitstream context */
2332     if( h->param.b_sliced_threads )
2333     {
2334         for( int i = 0; i < h->param.i_threads; i++ )
2335         {
2336             bs_init( &h->thread[i]->out.bs, h->thread[i]->out.p_bitstream, h->thread[i]->out.i_bitstream );
2337             h->thread[i]->out.i_nal = 0;
2338         }
2339     }
2340     else
2341     {
2342         bs_init( &h->out.bs, h->out.p_bitstream, h->out.i_bitstream );
2343         h->out.i_nal = 0;
2344     }
2345
2346     if( h->param.b_aud )
2347     {
2348         int pic_type;
2349
2350         if( h->sh.i_type == SLICE_TYPE_I )
2351             pic_type = 0;
2352         else if( h->sh.i_type == SLICE_TYPE_P )
2353             pic_type = 1;
2354         else if( h->sh.i_type == SLICE_TYPE_B )
2355             pic_type = 2;
2356         else
2357             pic_type = 7;
2358
2359         x264_nal_start( h, NAL_AUD, NAL_PRIORITY_DISPOSABLE );
2360         bs_write( &h->out.bs, 3, pic_type );
2361         bs_rbsp_trailing( &h->out.bs );
2362         if( x264_nal_end( h ) )
2363             return -1;
2364         overhead += h->out.nal[h->out.i_nal-1].i_payload + NALU_OVERHEAD - (h->param.b_annexb && h->out.i_nal-1);
2365     }
2366
2367     h->i_nal_type = i_nal_type;
2368     h->i_nal_ref_idc = i_nal_ref_idc;
2369
2370     if( h->param.b_intra_refresh && h->fenc->i_type == X264_TYPE_P )
2371     {
2372         int pocdiff = (h->fdec->i_poc - h->fref0[0]->i_poc)/2;
2373         float increment = X264_MAX( ((float)h->sps->i_mb_width-1) / h->param.i_keyint_max, 1 );
2374         int max_position = (int)(increment * h->param.i_keyint_max);
2375         if( IS_X264_TYPE_I( h->fref0[0]->i_type ) )
2376             h->fdec->f_pir_position = 0;
2377         else
2378         {
2379             h->fdec->f_pir_position = h->fref0[0]->f_pir_position;
2380             if( h->fdec->f_pir_position+0.5 >= max_position )
2381             {
2382                 h->fdec->f_pir_position = 0;
2383                 h->fenc->b_keyframe = 1;
2384             }
2385         }
2386         h->fdec->i_pir_start_col = h->fdec->f_pir_position+0.5;
2387         h->fdec->f_pir_position += increment * pocdiff;
2388         h->fdec->i_pir_end_col = h->fdec->f_pir_position+0.5;
2389     }
2390
2391     if( h->fenc->b_keyframe )
2392     {
2393         /* Write SPS and PPS */
2394         if( h->param.b_repeat_headers )
2395         {
2396             /* generate sequence parameters */
2397             x264_nal_start( h, NAL_SPS, NAL_PRIORITY_HIGHEST );
2398             x264_sps_write( &h->out.bs, h->sps );
2399             if( x264_nal_end( h ) )
2400                 return -1;
2401             overhead += h->out.nal[h->out.i_nal-1].i_payload + NALU_OVERHEAD;
2402
2403             /* generate picture parameters */
2404             x264_nal_start( h, NAL_PPS, NAL_PRIORITY_HIGHEST );
2405             x264_pps_write( &h->out.bs, h->pps );
2406             if( x264_nal_end( h ) )
2407                 return -1;
2408             overhead += h->out.nal[h->out.i_nal-1].i_payload + NALU_OVERHEAD;
2409         }
2410
2411         /* buffering period sei is written in x264_encoder_frame_end */
2412
2413         if( h->param.b_repeat_headers && h->fenc->i_frame == 0 )
2414         {
2415             /* identify ourself */
2416             x264_nal_start( h, NAL_SEI, NAL_PRIORITY_DISPOSABLE );
2417             if( x264_sei_version_write( h, &h->out.bs ) )
2418                 return -1;
2419             if( x264_nal_end( h ) )
2420                 return -1;
2421             overhead += h->out.nal[h->out.i_nal-1].i_payload + NALU_OVERHEAD - (h->param.b_annexb && h->out.i_nal-1);
2422         }
2423
2424         if( h->fenc->i_type != X264_TYPE_IDR )
2425         {
2426             int time_to_recovery = X264_MIN( h->sps->i_mb_width - 1, h->param.i_keyint_max ) + h->param.i_bframe;
2427             x264_nal_start( h, NAL_SEI, NAL_PRIORITY_DISPOSABLE );
2428             x264_sei_recovery_point_write( h, &h->out.bs, time_to_recovery );
2429             x264_nal_end( h );
2430             overhead += h->out.nal[h->out.i_nal-1].i_payload + NALU_OVERHEAD - (h->param.b_annexb && h->out.i_nal-1);
2431         }
2432     }
2433
2434     /* generate sei pic timing */
2435     if( h->sps->vui.b_pic_struct_present || h->sps->vui.b_nal_hrd_parameters_present )
2436     {
2437         x264_nal_start( h, NAL_SEI, NAL_PRIORITY_DISPOSABLE );
2438         x264_sei_pic_timing_write( h, &h->out.bs );
2439         if( x264_nal_end( h ) )
2440             return -1;
2441         overhead += h->out.nal[h->out.i_nal-1].i_payload + NALU_OVERHEAD - (h->param.b_annexb && h->out.i_nal-1);
2442     }
2443
2444     /* Init the rate control */
2445     /* FIXME: Include slice header bit cost. */
2446     x264_ratecontrol_start( h, h->fenc->i_qpplus1, overhead*8 );
2447     i_global_qp = x264_ratecontrol_qp( h );
2448
2449     pic_out->i_qpplus1 =
2450     h->fdec->i_qpplus1 = i_global_qp + 1;
2451
2452     if( h->param.rc.b_stat_read && h->sh.i_type != SLICE_TYPE_I )
2453     {
2454         x264_reference_build_list_optimal( h );
2455         x264_reference_check_reorder( h );
2456     }
2457
2458     if( h->i_ref0 )
2459         h->fdec->i_poc_l0ref0 = h->fref0[0]->i_poc;
2460
2461     if( h->sh.i_type == SLICE_TYPE_B )
2462         x264_macroblock_bipred_init( h );
2463
2464     /*------------------------- Weights -------------------------------------*/
2465     x264_weighted_pred_init( h );
2466
2467     /* ------------------------ Create slice header  ----------------------- */
2468     x264_slice_init( h, i_nal_type, i_global_qp );
2469
2470     if( i_nal_ref_idc != NAL_PRIORITY_DISPOSABLE )
2471         h->i_frame_num++;
2472
2473     /* Write frame */
2474     h->i_threadslice_start = 0;
2475     h->i_threadslice_end = h->sps->i_mb_height;
2476     if( h->i_thread_frames > 1 )
2477     {
2478         if( x264_pthread_create( &h->thread_handle, NULL, (void*)x264_slices_write, h ) )
2479             return -1;
2480         h->b_thread_active = 1;
2481     }
2482     else if( h->param.b_sliced_threads )
2483     {
2484         if( x264_threaded_slices_write( h ) )
2485             return -1;
2486     }
2487     else
2488         if( (intptr_t)x264_slices_write( h ) )
2489             return -1;
2490
2491     return x264_encoder_frame_end( thread_oldest, thread_current, pp_nal, pi_nal, pic_out );
2492 }
2493
2494 static int x264_encoder_frame_end( x264_t *h, x264_t *thread_current,
2495                                    x264_nal_t **pp_nal, int *pi_nal,
2496                                    x264_picture_t *pic_out )
2497 {
2498     char psz_message[80];
2499
2500     if( h->b_thread_active )
2501     {
2502         void *ret = NULL;
2503         x264_pthread_join( h->thread_handle, &ret );
2504         h->b_thread_active = 0;
2505         if( (intptr_t)ret )
2506             return (intptr_t)ret;
2507     }
2508     if( !h->out.i_nal )
2509     {
2510         pic_out->i_type = X264_TYPE_AUTO;
2511         return 0;
2512     }
2513
2514     x264_emms();
2515     /* generate sei buffering period and insert it into place */
2516     if( h->fenc->b_keyframe && h->sps->vui.b_nal_hrd_parameters_present )
2517     {
2518         h->initial_cpb_removal_delay = x264_hrd_fullness( h );
2519
2520         x264_nal_start( h, NAL_SEI, NAL_PRIORITY_DISPOSABLE );
2521         x264_sei_buffering_period_write( h, &h->out.bs );
2522         if( x264_nal_end( h ) )
2523            return -1;
2524         /* buffering period sei must follow AUD, SPS and PPS and precede all other SEIs */
2525         int idx = 0;
2526         while( h->out.nal[idx].i_type == NAL_AUD ||
2527                h->out.nal[idx].i_type == NAL_SPS ||
2528                h->out.nal[idx].i_type == NAL_PPS )
2529             idx++;
2530         x264_nal_t nal_tmp = h->out.nal[h->out.i_nal-1];
2531         memmove( &h->out.nal[idx+1], &h->out.nal[idx], (h->out.i_nal-idx-1)*sizeof(x264_nal_t) );
2532         h->out.nal[idx] = nal_tmp;
2533     }
2534
2535     int frame_size = x264_encoder_encapsulate_nals( h, 0 );
2536
2537     /* Set output picture properties */
2538     pic_out->i_type = h->fenc->i_type;
2539
2540     pic_out->b_keyframe = h->fenc->b_keyframe;
2541
2542     pic_out->i_pts = h->fenc->i_pts *= h->i_dts_compress_multiplier;
2543     if( h->frames.i_bframe_delay )
2544     {
2545         int64_t *prev_reordered_pts = thread_current->frames.i_prev_reordered_pts;
2546         if( h->i_frame <= h->frames.i_bframe_delay )
2547         {
2548             if( h->i_dts_compress_multiplier == 1 )
2549                 pic_out->i_dts = h->fenc->i_reordered_pts - h->frames.i_bframe_delay_time;
2550             else
2551             {
2552                 /* DTS compression */
2553                 if( h->i_frame == 1 )
2554                     thread_current->frames.i_init_delta = h->fenc->i_reordered_pts * h->i_dts_compress_multiplier;
2555                 pic_out->i_dts = h->i_frame * thread_current->frames.i_init_delta / h->i_dts_compress_multiplier;
2556             }
2557         }
2558         else
2559             pic_out->i_dts = prev_reordered_pts[ (h->i_frame - h->frames.i_bframe_delay) % h->frames.i_bframe_delay ];
2560         prev_reordered_pts[ h->i_frame % h->frames.i_bframe_delay ] = h->fenc->i_reordered_pts * h->i_dts_compress_multiplier;
2561     }
2562     else
2563         pic_out->i_dts = h->fenc->i_reordered_pts;
2564     if( pic_out->i_pts < pic_out->i_dts )
2565         x264_log( h, X264_LOG_WARNING, "invalid DTS: PTS is less than DTS\n" );
2566
2567     pic_out->img.i_plane = h->fdec->i_plane;
2568     for( int i = 0; i < 3; i++ )
2569     {
2570         pic_out->img.i_stride[i] = h->fdec->i_stride[i];
2571         pic_out->img.plane[i] = h->fdec->plane[i];
2572     }
2573
2574     x264_frame_push_unused( thread_current, h->fenc );
2575
2576     /* ---------------------- Update encoder state ------------------------- */
2577
2578     /* update rc */
2579     int filler = 0;
2580     if( x264_ratecontrol_end( h, frame_size * 8, &filler ) < 0 )
2581         return -1;
2582
2583     pic_out->hrd_timing = h->fenc->hrd_timing;
2584
2585     while( filler > 0 )
2586     {
2587         int f, overhead;
2588         overhead = (FILLER_OVERHEAD - h->param.b_annexb);
2589         if( h->param.i_slice_max_size && filler > h->param.i_slice_max_size )
2590         {
2591             int next_size = filler - h->param.i_slice_max_size;
2592             int overflow = X264_MAX( overhead - next_size, 0 );
2593             f = h->param.i_slice_max_size - overhead - overflow;
2594         }
2595         else
2596             f = X264_MAX( 0, filler - overhead );
2597
2598         x264_nal_start( h, NAL_FILLER, NAL_PRIORITY_DISPOSABLE );
2599         x264_filler_write( h, &h->out.bs, f );
2600         if( x264_nal_end( h ) )
2601             return -1;
2602         int total_size = x264_encoder_encapsulate_nals( h, h->out.i_nal-1 );
2603         frame_size += total_size;
2604         filler -= total_size;
2605     }
2606
2607     /* End bitstream, set output  */
2608     *pi_nal = h->out.i_nal;
2609     *pp_nal = h->out.nal;
2610
2611     h->out.i_nal = 0;
2612
2613     x264_noise_reduction_update( h );
2614
2615     /* ---------------------- Compute/Print statistics --------------------- */
2616     x264_thread_sync_stat( h, h->thread[0] );
2617
2618     /* Slice stat */
2619     h->stat.i_frame_count[h->sh.i_type]++;
2620     h->stat.i_frame_size[h->sh.i_type] += frame_size;
2621     h->stat.f_frame_qp[h->sh.i_type] += h->fdec->f_qp_avg_aq;
2622
2623     for( int i = 0; i < X264_MBTYPE_MAX; i++ )
2624         h->stat.i_mb_count[h->sh.i_type][i] += h->stat.frame.i_mb_count[i];
2625     for( int i = 0; i < X264_PARTTYPE_MAX; i++ )
2626         h->stat.i_mb_partition[h->sh.i_type][i] += h->stat.frame.i_mb_partition[i];
2627     for( int i = 0; i < 2; i++ )
2628         h->stat.i_mb_count_8x8dct[i] += h->stat.frame.i_mb_count_8x8dct[i];
2629     for( int i = 0; i < 6; i++ )
2630         h->stat.i_mb_cbp[i] += h->stat.frame.i_mb_cbp[i];
2631     for( int i = 0; i < 3; i++ )
2632         for( int j = 0; j < 13; j++ )
2633             h->stat.i_mb_pred_mode[i][j] += h->stat.frame.i_mb_pred_mode[i][j];
2634     if( h->sh.i_type != SLICE_TYPE_I )
2635         for( int i_list = 0; i_list < 2; i_list++ )
2636             for( int i = 0; i < 32; i++ )
2637                 h->stat.i_mb_count_ref[h->sh.i_type][i_list][i] += h->stat.frame.i_mb_count_ref[i_list][i];
2638     if( h->sh.i_type == SLICE_TYPE_P )
2639     {
2640         h->stat.i_consecutive_bframes[h->fdec->i_frame - h->fref0[0]->i_frame - 1]++;
2641         if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
2642             for( int i = 0; i < 3; i++ )
2643                 for( int j = 0; j < h->i_ref0; j++ )
2644                     if( h->sh.weight[0][i].i_denom != 0 )
2645                     {
2646                         h->stat.i_wpred[i]++;
2647                         break;
2648                     }
2649     }
2650     if( h->sh.i_type == SLICE_TYPE_B )
2651     {
2652         h->stat.i_direct_frames[ h->sh.b_direct_spatial_mv_pred ] ++;
2653         if( h->mb.b_direct_auto_write )
2654         {
2655             //FIXME somewhat arbitrary time constants
2656             if( h->stat.i_direct_score[0] + h->stat.i_direct_score[1] > h->mb.i_mb_count )
2657                 for( int i = 0; i < 2; i++ )
2658                     h->stat.i_direct_score[i] = h->stat.i_direct_score[i] * 9/10;
2659             for( int i = 0; i < 2; i++ )
2660                 h->stat.i_direct_score[i] += h->stat.frame.i_direct_score[i];
2661         }
2662     }
2663
2664     psz_message[0] = '\0';
2665     if( h->param.analyse.b_psnr )
2666     {
2667         int64_t ssd[3] = {
2668             h->stat.frame.i_ssd[0],
2669             h->stat.frame.i_ssd[1],
2670             h->stat.frame.i_ssd[2],
2671         };
2672
2673         h->stat.i_ssd_global[h->sh.i_type] += ssd[0] + ssd[1] + ssd[2];
2674         h->stat.f_psnr_average[h->sh.i_type] += x264_psnr( ssd[0] + ssd[1] + ssd[2], 3 * h->param.i_width * h->param.i_height / 2 );
2675         h->stat.f_psnr_mean_y[h->sh.i_type] += x264_psnr( ssd[0], h->param.i_width * h->param.i_height );
2676         h->stat.f_psnr_mean_u[h->sh.i_type] += x264_psnr( ssd[1], h->param.i_width * h->param.i_height / 4 );
2677         h->stat.f_psnr_mean_v[h->sh.i_type] += x264_psnr( ssd[2], h->param.i_width * h->param.i_height / 4 );
2678
2679         snprintf( psz_message, 80, " PSNR Y:%5.2f U:%5.2f V:%5.2f",
2680                   x264_psnr( ssd[0], h->param.i_width * h->param.i_height ),
2681                   x264_psnr( ssd[1], h->param.i_width * h->param.i_height / 4),
2682                   x264_psnr( ssd[2], h->param.i_width * h->param.i_height / 4) );
2683     }
2684
2685     if( h->param.analyse.b_ssim )
2686     {
2687         double ssim_y = h->stat.frame.f_ssim
2688                       / (((h->param.i_width-6)>>2) * ((h->param.i_height-6)>>2));
2689         h->stat.f_ssim_mean_y[h->sh.i_type] += ssim_y;
2690         snprintf( psz_message + strlen(psz_message), 80 - strlen(psz_message),
2691                   " SSIM Y:%.5f", ssim_y );
2692     }
2693     psz_message[79] = '\0';
2694
2695     x264_log( h, X264_LOG_DEBUG,
2696                   "frame=%4d QP=%.2f NAL=%d Slice:%c Poc:%-3d I:%-4d P:%-4d SKIP:%-4d size=%d bytes%s\n",
2697               h->i_frame,
2698               h->fdec->f_qp_avg_aq,
2699               h->i_nal_ref_idc,
2700               h->sh.i_type == SLICE_TYPE_I ? 'I' : (h->sh.i_type == SLICE_TYPE_P ? 'P' : 'B' ),
2701               h->fdec->i_poc,
2702               h->stat.frame.i_mb_count_i,
2703               h->stat.frame.i_mb_count_p,
2704               h->stat.frame.i_mb_count_skip,
2705               frame_size,
2706               psz_message );
2707
2708     // keep stats all in one place
2709     x264_thread_sync_stat( h->thread[0], h );
2710     // for the use of the next frame
2711     x264_thread_sync_stat( thread_current, h );
2712
2713 #ifdef DEBUG_MB_TYPE
2714 {
2715     static const char mb_chars[] = { 'i', 'i', 'I', 'C', 'P', '8', 'S',
2716         'D', '<', 'X', 'B', 'X', '>', 'B', 'B', 'B', 'B', '8', 'S' };
2717     for( int mb_xy = 0; mb_xy < h->sps->i_mb_width * h->sps->i_mb_height; mb_xy++ )
2718     {
2719         if( h->mb.type[mb_xy] < X264_MBTYPE_MAX && h->mb.type[mb_xy] >= 0 )
2720             fprintf( stderr, "%c ", mb_chars[ h->mb.type[mb_xy] ] );
2721         else
2722             fprintf( stderr, "? " );
2723
2724         if( (mb_xy+1) % h->sps->i_mb_width == 0 )
2725             fprintf( stderr, "\n" );
2726     }
2727 }
2728 #endif
2729
2730     /* Remove duplicates, must be done near the end as breaks h->fref0 array
2731      * by freeing some of its pointers. */
2732      for( int i = 0; i < h->i_ref0; i++ )
2733          if( h->fref0[i] && h->fref0[i]->b_duplicate )
2734          {
2735              x264_frame_push_blank_unused( h, h->fref0[i] );
2736              h->fref0[i] = 0;
2737          }
2738
2739     if( h->param.psz_dump_yuv )
2740         x264_frame_dump( h );
2741
2742     return frame_size;
2743 }
2744
2745 static void x264_print_intra( int64_t *i_mb_count, double i_count, int b_print_pcm, char *intra )
2746 {
2747     intra += sprintf( intra, "I16..4%s: %4.1f%% %4.1f%% %4.1f%%",
2748         b_print_pcm ? "..PCM" : "",
2749         i_mb_count[I_16x16]/ i_count,
2750         i_mb_count[I_8x8]  / i_count,
2751         i_mb_count[I_4x4]  / i_count );
2752     if( b_print_pcm )
2753         sprintf( intra, " %4.1f%%", i_mb_count[I_PCM]  / i_count );
2754 }
2755
2756 /****************************************************************************
2757  * x264_encoder_close:
2758  ****************************************************************************/
2759 void    x264_encoder_close  ( x264_t *h )
2760 {
2761     int64_t i_yuv_size = 3 * h->param.i_width * h->param.i_height / 2;
2762     int64_t i_mb_count_size[2][7] = {{0}};
2763     char buf[200];
2764     int b_print_pcm = h->stat.i_mb_count[SLICE_TYPE_I][I_PCM]
2765                    || h->stat.i_mb_count[SLICE_TYPE_P][I_PCM]
2766                    || h->stat.i_mb_count[SLICE_TYPE_B][I_PCM];
2767
2768     x264_lookahead_delete( h );
2769
2770     if( h->param.i_threads > 1 )
2771     {
2772         // don't strictly have to wait for the other threads, but it's simpler than canceling them
2773         for( int i = 0; i < h->param.i_threads; i++ )
2774             if( h->thread[i]->b_thread_active )
2775                 x264_pthread_join( h->thread[i]->thread_handle, NULL );
2776         if( h->i_thread_frames > 1 )
2777         {
2778             for( int i = 0; i < h->i_thread_frames; i++ )
2779                 if( h->thread[i]->b_thread_active )
2780                 {
2781                     assert( h->thread[i]->fenc->i_reference_count == 1 );
2782                     x264_frame_delete( h->thread[i]->fenc );
2783                 }
2784
2785             x264_t *thread_prev = h->thread[h->i_thread_phase];
2786             x264_thread_sync_ratecontrol( h, thread_prev, h );
2787             x264_thread_sync_ratecontrol( thread_prev, thread_prev, h );
2788             h->i_frame = thread_prev->i_frame + 1 - h->i_thread_frames;
2789         }
2790     }
2791     h->i_frame++;
2792
2793     /* Slices used and PSNR */
2794     for( int i = 0; i < 5; i++ )
2795     {
2796         static const int slice_order[] = { SLICE_TYPE_I, SLICE_TYPE_SI, SLICE_TYPE_P, SLICE_TYPE_SP, SLICE_TYPE_B };
2797         static const char *slice_name[] = { "P", "B", "I", "SP", "SI" };
2798         int i_slice = slice_order[i];
2799
2800         if( h->stat.i_frame_count[i_slice] > 0 )
2801         {
2802             const int i_count = h->stat.i_frame_count[i_slice];
2803             if( h->param.analyse.b_psnr )
2804             {
2805                 x264_log( h, X264_LOG_INFO,
2806                           "frame %s:%-5d Avg QP:%5.2f  size:%6.0f  PSNR Mean Y:%5.2f U:%5.2f V:%5.2f Avg:%5.2f Global:%5.2f\n",
2807                           slice_name[i_slice],
2808                           i_count,
2809                           h->stat.f_frame_qp[i_slice] / i_count,
2810                           (double)h->stat.i_frame_size[i_slice] / i_count,
2811                           h->stat.f_psnr_mean_y[i_slice] / i_count, h->stat.f_psnr_mean_u[i_slice] / i_count, h->stat.f_psnr_mean_v[i_slice] / i_count,
2812                           h->stat.f_psnr_average[i_slice] / i_count,
2813                           x264_psnr( h->stat.i_ssd_global[i_slice], i_count * i_yuv_size ) );
2814             }
2815             else
2816             {
2817                 x264_log( h, X264_LOG_INFO,
2818                           "frame %s:%-5d Avg QP:%5.2f  size:%6.0f\n",
2819                           slice_name[i_slice],
2820                           i_count,
2821                           h->stat.f_frame_qp[i_slice] / i_count,
2822                           (double)h->stat.i_frame_size[i_slice] / i_count );
2823             }
2824         }
2825     }
2826     if( h->param.i_bframe && h->stat.i_frame_count[SLICE_TYPE_P] )
2827     {
2828         char *p = buf;
2829         int den = 0;
2830         // weight by number of frames (including the P-frame) that are in a sequence of N B-frames
2831         for( int i = 0; i <= h->param.i_bframe; i++ )
2832             den += (i+1) * h->stat.i_consecutive_bframes[i];
2833         for( int i = 0; i <= h->param.i_bframe; i++ )
2834             p += sprintf( p, " %4.1f%%", 100. * (i+1) * h->stat.i_consecutive_bframes[i] / den );
2835         x264_log( h, X264_LOG_INFO, "consecutive B-frames:%s\n", buf );
2836     }
2837
2838     for( int i_type = 0; i_type < 2; i_type++ )
2839         for( int i = 0; i < X264_PARTTYPE_MAX; i++ )
2840         {
2841             if( i == D_DIRECT_8x8 ) continue; /* direct is counted as its own type */
2842             i_mb_count_size[i_type][x264_mb_partition_pixel_table[i]] += h->stat.i_mb_partition[i_type][i];
2843         }
2844
2845     /* MB types used */
2846     if( h->stat.i_frame_count[SLICE_TYPE_I] > 0 )
2847     {
2848         int64_t *i_mb_count = h->stat.i_mb_count[SLICE_TYPE_I];
2849         double i_count = h->stat.i_frame_count[SLICE_TYPE_I] * h->mb.i_mb_count / 100.0;
2850         x264_print_intra( i_mb_count, i_count, b_print_pcm, buf );
2851         x264_log( h, X264_LOG_INFO, "mb I  %s\n", buf );
2852     }
2853     if( h->stat.i_frame_count[SLICE_TYPE_P] > 0 )
2854     {
2855         int64_t *i_mb_count = h->stat.i_mb_count[SLICE_TYPE_P];
2856         double i_count = h->stat.i_frame_count[SLICE_TYPE_P] * h->mb.i_mb_count / 100.0;
2857         int64_t *i_mb_size = i_mb_count_size[SLICE_TYPE_P];
2858         x264_print_intra( i_mb_count, i_count, b_print_pcm, buf );
2859         x264_log( h, X264_LOG_INFO,
2860                   "mb P  %s  P16..4: %4.1f%% %4.1f%% %4.1f%% %4.1f%% %4.1f%%    skip:%4.1f%%\n",
2861                   buf,
2862                   i_mb_size[PIXEL_16x16] / (i_count*4),
2863                   (i_mb_size[PIXEL_16x8] + i_mb_size[PIXEL_8x16]) / (i_count*4),
2864                   i_mb_size[PIXEL_8x8] / (i_count*4),
2865                   (i_mb_size[PIXEL_8x4] + i_mb_size[PIXEL_4x8]) / (i_count*4),
2866                   i_mb_size[PIXEL_4x4] / (i_count*4),
2867                   i_mb_count[P_SKIP] / i_count );
2868     }
2869     if( h->stat.i_frame_count[SLICE_TYPE_B] > 0 )
2870     {
2871         int64_t *i_mb_count = h->stat.i_mb_count[SLICE_TYPE_B];
2872         double i_count = h->stat.i_frame_count[SLICE_TYPE_B] * h->mb.i_mb_count / 100.0;
2873         double i_mb_list_count;
2874         int64_t *i_mb_size = i_mb_count_size[SLICE_TYPE_B];
2875         int64_t list_count[3] = {0}; /* 0 == L0, 1 == L1, 2 == BI */
2876         x264_print_intra( i_mb_count, i_count, b_print_pcm, buf );
2877         for( int i = 0; i < X264_PARTTYPE_MAX; i++ )
2878             for( int j = 0; j < 2; j++ )
2879             {
2880                 int l0 = x264_mb_type_list_table[i][0][j];
2881                 int l1 = x264_mb_type_list_table[i][1][j];
2882                 if( l0 || l1 )
2883                     list_count[l1+l0*l1] += h->stat.i_mb_count[SLICE_TYPE_B][i] * 2;
2884             }
2885         list_count[0] += h->stat.i_mb_partition[SLICE_TYPE_B][D_L0_8x8];
2886         list_count[1] += h->stat.i_mb_partition[SLICE_TYPE_B][D_L1_8x8];
2887         list_count[2] += h->stat.i_mb_partition[SLICE_TYPE_B][D_BI_8x8];
2888         i_mb_count[B_DIRECT] += (h->stat.i_mb_partition[SLICE_TYPE_B][D_DIRECT_8x8]+2)/4;
2889         i_mb_list_count = (list_count[0] + list_count[1] + list_count[2]) / 100.0;
2890         x264_log( h, X264_LOG_INFO,
2891                   "mb B  %s  B16..8: %4.1f%% %4.1f%% %4.1f%%  direct:%4.1f%%  skip:%4.1f%%  L0:%4.1f%% L1:%4.1f%% BI:%4.1f%%\n",
2892                   buf,
2893                   i_mb_size[PIXEL_16x16] / (i_count*4),
2894                   (i_mb_size[PIXEL_16x8] + i_mb_size[PIXEL_8x16]) / (i_count*4),
2895                   i_mb_size[PIXEL_8x8] / (i_count*4),
2896                   i_mb_count[B_DIRECT] / i_count,
2897                   i_mb_count[B_SKIP]   / i_count,
2898                   list_count[0] / i_mb_list_count,
2899                   list_count[1] / i_mb_list_count,
2900                   list_count[2] / i_mb_list_count );
2901     }
2902
2903     x264_ratecontrol_summary( h );
2904
2905     if( h->stat.i_frame_count[SLICE_TYPE_I] + h->stat.i_frame_count[SLICE_TYPE_P] + h->stat.i_frame_count[SLICE_TYPE_B] > 0 )
2906     {
2907 #define SUM3(p) (p[SLICE_TYPE_I] + p[SLICE_TYPE_P] + p[SLICE_TYPE_B])
2908 #define SUM3b(p,o) (p[SLICE_TYPE_I][o] + p[SLICE_TYPE_P][o] + p[SLICE_TYPE_B][o])
2909         int64_t i_i8x8 = SUM3b( h->stat.i_mb_count, I_8x8 );
2910         int64_t i_intra = i_i8x8 + SUM3b( h->stat.i_mb_count, I_4x4 )
2911                                  + SUM3b( h->stat.i_mb_count, I_16x16 );
2912         int64_t i_all_intra = i_intra + SUM3b( h->stat.i_mb_count, I_PCM);
2913         const int i_count = h->stat.i_frame_count[SLICE_TYPE_I] +
2914                             h->stat.i_frame_count[SLICE_TYPE_P] +
2915                             h->stat.i_frame_count[SLICE_TYPE_B];
2916         int64_t i_mb_count = i_count * h->mb.i_mb_count;
2917         float fps = (float) h->param.i_fps_num / h->param.i_fps_den;
2918         float f_bitrate;
2919         /* duration algorithm fails with one frame */
2920         if( i_count == 1 )
2921             f_bitrate = fps * SUM3(h->stat.i_frame_size) / i_count / 125;
2922         else
2923         {
2924             float duration = (float)(2 * h->frames.i_largest_pts - h->frames.i_second_largest_pts) * h->param.i_timebase_num / h->param.i_timebase_den;
2925             f_bitrate = SUM3(h->stat.i_frame_size) / duration / 125;
2926         }
2927
2928         if( h->pps->b_transform_8x8_mode )
2929         {
2930             buf[0] = 0;
2931             if( h->stat.i_mb_count_8x8dct[0] )
2932                 sprintf( buf, " inter:%.1f%%", 100. * h->stat.i_mb_count_8x8dct[1] / h->stat.i_mb_count_8x8dct[0] );
2933             x264_log( h, X264_LOG_INFO, "8x8 transform intra:%.1f%%%s\n", 100. * i_i8x8 / i_intra, buf );
2934         }
2935
2936         if( (h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO ||
2937             (h->stat.i_direct_frames[0] && h->stat.i_direct_frames[1]))
2938             && h->stat.i_frame_count[SLICE_TYPE_B] )
2939         {
2940             x264_log( h, X264_LOG_INFO, "direct mvs  spatial:%.1f%% temporal:%.1f%%\n",
2941                       h->stat.i_direct_frames[1] * 100. / h->stat.i_frame_count[SLICE_TYPE_B],
2942                       h->stat.i_direct_frames[0] * 100. / h->stat.i_frame_count[SLICE_TYPE_B] );
2943         }
2944
2945         buf[0] = 0;
2946         if( i_mb_count != i_all_intra )
2947             sprintf( buf, " inter: %.1f%% %.1f%% %.1f%%",
2948                      h->stat.i_mb_cbp[1] * 100.0 / ((i_mb_count - i_all_intra)*4),
2949                      h->stat.i_mb_cbp[3] * 100.0 / ((i_mb_count - i_all_intra)  ),
2950                      h->stat.i_mb_cbp[5] * 100.0 / ((i_mb_count - i_all_intra)) );
2951         x264_log( h, X264_LOG_INFO, "coded y,uvDC,uvAC intra: %.1f%% %.1f%% %.1f%%%s\n",
2952                   h->stat.i_mb_cbp[0] * 100.0 / (i_all_intra*4),
2953                   h->stat.i_mb_cbp[2] * 100.0 / (i_all_intra  ),
2954                   h->stat.i_mb_cbp[4] * 100.0 / (i_all_intra  ), buf );
2955
2956         int64_t fixed_pred_modes[3][9] = {{0}};
2957         int64_t sum_pred_modes[3] = {0};
2958         for( int i = 0; i <= I_PRED_16x16_DC_128; i++ )
2959         {
2960             fixed_pred_modes[0][x264_mb_pred_mode16x16_fix[i]] += h->stat.i_mb_pred_mode[0][i];
2961             sum_pred_modes[0] += h->stat.i_mb_pred_mode[0][i];
2962         }
2963         if( sum_pred_modes[0] )
2964             x264_log( h, X264_LOG_INFO, "i16 v,h,dc,p: %2.0f%% %2.0f%% %2.0f%% %2.0f%%\n",
2965                       fixed_pred_modes[0][0] * 100.0 / sum_pred_modes[0],
2966                       fixed_pred_modes[0][1] * 100.0 / sum_pred_modes[0],
2967                       fixed_pred_modes[0][2] * 100.0 / sum_pred_modes[0],
2968                       fixed_pred_modes[0][3] * 100.0 / sum_pred_modes[0] );
2969         for( int i = 1; i <= 2; i++ )
2970         {
2971             for( int j = 0; j <= I_PRED_8x8_DC_128; j++ )
2972             {
2973                 fixed_pred_modes[i][x264_mb_pred_mode4x4_fix(j)] += h->stat.i_mb_pred_mode[i][j];
2974                 sum_pred_modes[i] += h->stat.i_mb_pred_mode[i][j];
2975             }
2976             if( sum_pred_modes[i] )
2977                 x264_log( h, X264_LOG_INFO, "i%d v,h,dc,ddl,ddr,vr,hd,vl,hu: %2.0f%% %2.0f%% %2.0f%% %2.0f%% %2.0f%% %2.0f%% %2.0f%% %2.0f%% %2.0f%%\n", (3-i)*4,
2978                           fixed_pred_modes[i][0] * 100.0 / sum_pred_modes[i],
2979                           fixed_pred_modes[i][1] * 100.0 / sum_pred_modes[i],
2980                           fixed_pred_modes[i][2] * 100.0 / sum_pred_modes[i],
2981                           fixed_pred_modes[i][3] * 100.0 / sum_pred_modes[i],
2982                           fixed_pred_modes[i][4] * 100.0 / sum_pred_modes[i],
2983                           fixed_pred_modes[i][5] * 100.0 / sum_pred_modes[i],
2984                           fixed_pred_modes[i][6] * 100.0 / sum_pred_modes[i],
2985                           fixed_pred_modes[i][7] * 100.0 / sum_pred_modes[i],
2986                           fixed_pred_modes[i][8] * 100.0 / sum_pred_modes[i] );
2987         }
2988
2989         if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART && h->stat.i_frame_count[SLICE_TYPE_P] > 0 )
2990             x264_log( h, X264_LOG_INFO, "Weighted P-Frames: Y:%.1f%%\n",
2991                       h->stat.i_wpred[0] * 100.0 / h->stat.i_frame_count[SLICE_TYPE_P] );
2992
2993         for( int i_list = 0; i_list < 2; i_list++ )
2994             for( int i_slice = 0; i_slice < 2; i_slice++ )
2995             {
2996                 char *p = buf;
2997                 int64_t i_den = 0;
2998                 int i_max = 0;
2999                 for( int i = 0; i < 32; i++ )
3000                     if( h->stat.i_mb_count_ref[i_slice][i_list][i] )
3001                     {
3002                         i_den += h->stat.i_mb_count_ref[i_slice][i_list][i];
3003                         i_max = i;
3004                     }
3005                 if( i_max == 0 )
3006                     continue;
3007                 for( int i = 0; i <= i_max; i++ )
3008                     p += sprintf( p, " %4.1f%%", 100. * h->stat.i_mb_count_ref[i_slice][i_list][i] / i_den );
3009                 x264_log( h, X264_LOG_INFO, "ref %c L%d:%s\n", "PB"[i_slice], i_list, buf );
3010             }
3011
3012         if( h->param.analyse.b_ssim )
3013         {
3014             x264_log( h, X264_LOG_INFO,
3015                       "SSIM Mean Y:%.7f\n",
3016                       SUM3( h->stat.f_ssim_mean_y ) / i_count );
3017         }
3018         if( h->param.analyse.b_psnr )
3019         {
3020             x264_log( h, X264_LOG_INFO,
3021                       "PSNR Mean Y:%6.3f U:%6.3f V:%6.3f Avg:%6.3f Global:%6.3f kb/s:%.2f\n",
3022                       SUM3( h->stat.f_psnr_mean_y ) / i_count,
3023                       SUM3( h->stat.f_psnr_mean_u ) / i_count,
3024                       SUM3( h->stat.f_psnr_mean_v ) / i_count,
3025                       SUM3( h->stat.f_psnr_average ) / i_count,
3026                       x264_psnr( SUM3( h->stat.i_ssd_global ), i_count * i_yuv_size ),
3027                       f_bitrate );
3028         }
3029         else
3030             x264_log( h, X264_LOG_INFO, "kb/s:%.2f\n", f_bitrate );
3031     }
3032
3033     /* rc */
3034     x264_ratecontrol_delete( h );
3035
3036     /* param */
3037     if( h->param.rc.psz_stat_out )
3038         free( h->param.rc.psz_stat_out );
3039     if( h->param.rc.psz_stat_in )
3040         free( h->param.rc.psz_stat_in );
3041
3042     x264_cqm_delete( h );
3043     x264_free( h->nal_buffer );
3044     x264_analyse_free_costs( h );
3045
3046     if( h->i_thread_frames > 1)
3047         h = h->thread[h->i_thread_phase];
3048
3049     /* frames */
3050     x264_frame_delete_list( h->frames.unused[0] );
3051     x264_frame_delete_list( h->frames.unused[1] );
3052     x264_frame_delete_list( h->frames.current );
3053     x264_frame_delete_list( h->frames.blank_unused );
3054
3055     h = h->thread[0];
3056
3057     for( int i = h->param.i_threads - 1; i >= 0; i-- )
3058     {
3059         x264_frame_t **frame;
3060
3061         if( !h->param.b_sliced_threads || i == 0 )
3062         {
3063             for( frame = h->thread[i]->frames.reference; *frame; frame++ )
3064             {
3065                 assert( (*frame)->i_reference_count > 0 );
3066                 (*frame)->i_reference_count--;
3067                 if( (*frame)->i_reference_count == 0 )
3068                     x264_frame_delete( *frame );
3069             }
3070             frame = &h->thread[i]->fdec;
3071             assert( (*frame)->i_reference_count > 0 );
3072             (*frame)->i_reference_count--;
3073             if( (*frame)->i_reference_count == 0 )
3074                 x264_frame_delete( *frame );
3075             x264_macroblock_cache_end( h->thread[i] );
3076         }
3077         x264_free( h->thread[i]->scratch_buffer );
3078         x264_free( h->thread[i]->out.p_bitstream );
3079         x264_free( h->thread[i]->out.nal);
3080         x264_free( h->thread[i] );
3081     }
3082 }
3083
3084 /****************************************************************************
3085  * x264_encoder_delayed_frames:
3086  ****************************************************************************/
3087 int x264_encoder_delayed_frames( x264_t *h )
3088 {
3089     int delayed_frames = 0;
3090     if( h->i_thread_frames > 1 )
3091     {
3092         for( int i = 0; i < h->i_thread_frames; i++ )
3093             delayed_frames += h->thread[i]->b_thread_active;
3094         h = h->thread[h->i_thread_phase];
3095     }
3096     for( int i = 0; h->frames.current[i]; i++ )
3097         delayed_frames++;
3098     x264_pthread_mutex_lock( &h->lookahead->ofbuf.mutex );
3099     x264_pthread_mutex_lock( &h->lookahead->ifbuf.mutex );
3100     x264_pthread_mutex_lock( &h->lookahead->next.mutex );
3101     delayed_frames += h->lookahead->ifbuf.i_size + h->lookahead->next.i_size + h->lookahead->ofbuf.i_size;
3102     x264_pthread_mutex_unlock( &h->lookahead->next.mutex );
3103     x264_pthread_mutex_unlock( &h->lookahead->ifbuf.mutex );
3104     x264_pthread_mutex_unlock( &h->lookahead->ofbuf.mutex );
3105     return delayed_frames;
3106 }