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