]> git.sesse.net Git - x264/blob - encoder/encoder.c
Make MV costs global instead of static
[x264] / encoder / encoder.c
1 /*****************************************************************************
2  * x264: h264 encoder
3  *****************************************************************************
4  * Copyright (C) 2003-2008 x264 project
5  *
6  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7  *          Loren Merritt <lorenm@u.washington.edu>
8  *          Fiona Glaser <fiona@x264.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include <math.h>
26
27 #include "common/common.h"
28 #include "common/cpu.h"
29
30 #include "set.h"
31 #include "analyse.h"
32 #include "ratecontrol.h"
33 #include "macroblock.h"
34
35 #if VISUALIZE
36 #include "common/visualize.h"
37 #endif
38
39 //#define DEBUG_MB_TYPE
40
41 #define NALU_OVERHEAD 5 // startcode + NAL type costs 5 bytes per frame
42
43 #define bs_write_ue bs_write_ue_big
44
45 static int x264_encoder_frame_end( x264_t *h, x264_t *thread_current,
46                                    x264_nal_t **pp_nal, int *pi_nal,
47                                    x264_picture_t *pic_out );
48
49 /****************************************************************************
50  *
51  ******************************* x264 libs **********************************
52  *
53  ****************************************************************************/
54 static float x264_psnr( int64_t i_sqe, int64_t i_size )
55 {
56     double f_mse = (double)i_sqe / ((double)65025.0 * (double)i_size);
57     if( f_mse <= 0.0000000001 ) /* Max 100dB */
58         return 100;
59
60     return (float)(-10.0 * log( f_mse ) / log( 10.0 ));
61 }
62
63 static void x264_frame_dump( x264_t *h )
64 {
65     FILE *f = fopen( h->param.psz_dump_yuv, "r+b" );
66     int i, y;
67     if( !f )
68         return;
69     /* Write the frame in display order */
70     fseek( f, h->fdec->i_frame * h->param.i_height * h->param.i_width * 3/2, SEEK_SET );
71     for( i = 0; i < h->fdec->i_plane; i++ )
72         for( y = 0; y < h->param.i_height >> !!i; y++ )
73             fwrite( &h->fdec->plane[i][y*h->fdec->i_stride[i]], 1, h->param.i_width >> !!i, f );
74     fclose( f );
75 }
76
77
78 /* Fill "default" values */
79 static void x264_slice_header_init( x264_t *h, x264_slice_header_t *sh,
80                                     x264_sps_t *sps, x264_pps_t *pps,
81                                     int i_idr_pic_id, int i_frame, int i_qp )
82 {
83     x264_param_t *param = &h->param;
84     int i;
85
86     /* First we fill all field */
87     sh->sps = sps;
88     sh->pps = pps;
89
90     sh->i_first_mb  = 0;
91     sh->i_last_mb   = h->mb.i_mb_count - 1;
92     sh->i_pps_id    = pps->i_id;
93
94     sh->i_frame_num = i_frame;
95
96     sh->b_mbaff = h->param.b_interlaced;
97     sh->b_field_pic = 0;    /* no field support for now */
98     sh->b_bottom_field = 0; /* not yet used */
99
100     sh->i_idr_pic_id = i_idr_pic_id;
101
102     /* poc stuff, fixed later */
103     sh->i_poc_lsb = 0;
104     sh->i_delta_poc_bottom = 0;
105     sh->i_delta_poc[0] = 0;
106     sh->i_delta_poc[1] = 0;
107
108     sh->i_redundant_pic_cnt = 0;
109
110     if( !h->mb.b_direct_auto_read )
111     {
112         if( h->mb.b_direct_auto_write )
113             sh->b_direct_spatial_mv_pred = ( h->stat.i_direct_score[1] > h->stat.i_direct_score[0] );
114         else
115             sh->b_direct_spatial_mv_pred = ( param->analyse.i_direct_mv_pred == X264_DIRECT_PRED_SPATIAL );
116     }
117     /* else b_direct_spatial_mv_pred was read from the 2pass statsfile */
118
119     sh->b_num_ref_idx_override = 0;
120     sh->i_num_ref_idx_l0_active = 1;
121     sh->i_num_ref_idx_l1_active = 1;
122
123     sh->b_ref_pic_list_reordering_l0 = h->b_ref_reorder[0];
124     sh->b_ref_pic_list_reordering_l1 = h->b_ref_reorder[1];
125
126     /* If the ref list isn't in the default order, construct reordering header */
127     /* List1 reordering isn't needed yet */
128     if( sh->b_ref_pic_list_reordering_l0 )
129     {
130         int pred_frame_num = i_frame;
131         for( i = 0; i < h->i_ref0; i++ )
132         {
133             int diff = h->fref0[i]->i_frame_num - pred_frame_num;
134             if( diff == 0 )
135                 x264_log( h, X264_LOG_ERROR, "diff frame num == 0\n" );
136             sh->ref_pic_list_order[0][i].idc = ( diff > 0 );
137             sh->ref_pic_list_order[0][i].arg = abs( diff ) - 1;
138             pred_frame_num = h->fref0[i]->i_frame_num;
139         }
140     }
141
142     sh->i_cabac_init_idc = param->i_cabac_init_idc;
143
144     sh->i_qp = i_qp;
145     sh->i_qp_delta = i_qp - pps->i_pic_init_qp;
146     sh->b_sp_for_swidth = 0;
147     sh->i_qs_delta = 0;
148
149     /* If effective qp <= 15, deblocking would have no effect anyway */
150     if( param->b_deblocking_filter
151         && ( h->mb.b_variable_qp
152         || 15 < i_qp + 2 * X264_MIN(param->i_deblocking_filter_alphac0, param->i_deblocking_filter_beta) ) )
153     {
154         sh->i_disable_deblocking_filter_idc = 0;
155     }
156     else
157     {
158         sh->i_disable_deblocking_filter_idc = 1;
159     }
160     sh->i_alpha_c0_offset = param->i_deblocking_filter_alphac0 << 1;
161     sh->i_beta_offset = param->i_deblocking_filter_beta << 1;
162 }
163
164 static void x264_slice_header_write( bs_t *s, x264_slice_header_t *sh, int i_nal_ref_idc )
165 {
166     int i;
167
168     if( sh->b_mbaff )
169     {
170         assert( sh->i_first_mb % (2*sh->sps->i_mb_width) == 0 );
171         bs_write_ue( s, sh->i_first_mb >> 1 );
172     }
173     else
174         bs_write_ue( s, sh->i_first_mb );
175
176     bs_write_ue( s, sh->i_type + 5 );   /* same type things */
177     bs_write_ue( s, sh->i_pps_id );
178     bs_write( s, sh->sps->i_log2_max_frame_num, sh->i_frame_num );
179
180     if( !sh->sps->b_frame_mbs_only )
181     {
182         bs_write1( s, sh->b_field_pic );
183         if( sh->b_field_pic )
184             bs_write1( s, sh->b_bottom_field );
185     }
186
187     if( sh->i_idr_pic_id >= 0 ) /* NAL IDR */
188     {
189         bs_write_ue( s, sh->i_idr_pic_id );
190     }
191
192     if( sh->sps->i_poc_type == 0 )
193     {
194         bs_write( s, sh->sps->i_log2_max_poc_lsb, sh->i_poc_lsb );
195         if( sh->pps->b_pic_order && !sh->b_field_pic )
196         {
197             bs_write_se( s, sh->i_delta_poc_bottom );
198         }
199     }
200     else if( sh->sps->i_poc_type == 1 && !sh->sps->b_delta_pic_order_always_zero )
201     {
202         bs_write_se( s, sh->i_delta_poc[0] );
203         if( sh->pps->b_pic_order && !sh->b_field_pic )
204         {
205             bs_write_se( s, sh->i_delta_poc[1] );
206         }
207     }
208
209     if( sh->pps->b_redundant_pic_cnt )
210     {
211         bs_write_ue( s, sh->i_redundant_pic_cnt );
212     }
213
214     if( sh->i_type == SLICE_TYPE_B )
215     {
216         bs_write1( s, sh->b_direct_spatial_mv_pred );
217     }
218     if( sh->i_type == SLICE_TYPE_P || sh->i_type == SLICE_TYPE_SP || sh->i_type == SLICE_TYPE_B )
219     {
220         bs_write1( s, sh->b_num_ref_idx_override );
221         if( sh->b_num_ref_idx_override )
222         {
223             bs_write_ue( s, sh->i_num_ref_idx_l0_active - 1 );
224             if( sh->i_type == SLICE_TYPE_B )
225             {
226                 bs_write_ue( s, sh->i_num_ref_idx_l1_active - 1 );
227             }
228         }
229     }
230
231     /* ref pic list reordering */
232     if( sh->i_type != SLICE_TYPE_I )
233     {
234         bs_write1( s, sh->b_ref_pic_list_reordering_l0 );
235         if( sh->b_ref_pic_list_reordering_l0 )
236         {
237             for( i = 0; i < sh->i_num_ref_idx_l0_active; i++ )
238             {
239                 bs_write_ue( s, sh->ref_pic_list_order[0][i].idc );
240                 bs_write_ue( s, sh->ref_pic_list_order[0][i].arg );
241
242             }
243             bs_write_ue( s, 3 );
244         }
245     }
246     if( sh->i_type == SLICE_TYPE_B )
247     {
248         bs_write1( s, sh->b_ref_pic_list_reordering_l1 );
249         if( sh->b_ref_pic_list_reordering_l1 )
250         {
251             for( i = 0; i < sh->i_num_ref_idx_l1_active; i++ )
252             {
253                 bs_write_ue( s, sh->ref_pic_list_order[1][i].idc );
254                 bs_write_ue( s, sh->ref_pic_list_order[1][i].arg );
255             }
256             bs_write_ue( s, 3 );
257         }
258     }
259
260     if( ( sh->pps->b_weighted_pred && ( sh->i_type == SLICE_TYPE_P || sh->i_type == SLICE_TYPE_SP ) ) ||
261         ( sh->pps->b_weighted_bipred == 1 && sh->i_type == SLICE_TYPE_B ) )
262     {
263         /* FIXME */
264     }
265
266     if( i_nal_ref_idc != 0 )
267     {
268         if( sh->i_idr_pic_id >= 0 )
269         {
270             bs_write1( s, 0 );  /* no output of prior pics flag */
271             bs_write1( s, 0 );  /* long term reference flag */
272         }
273         else
274         {
275             bs_write1( s, 0 );  /* adaptive_ref_pic_marking_mode_flag */
276         }
277     }
278
279     if( sh->pps->b_cabac && sh->i_type != SLICE_TYPE_I )
280     {
281         bs_write_ue( s, sh->i_cabac_init_idc );
282     }
283     bs_write_se( s, sh->i_qp_delta );      /* slice qp delta */
284
285     if( sh->pps->b_deblocking_filter_control )
286     {
287         bs_write_ue( s, sh->i_disable_deblocking_filter_idc );
288         if( sh->i_disable_deblocking_filter_idc != 1 )
289         {
290             bs_write_se( s, sh->i_alpha_c0_offset >> 1 );
291             bs_write_se( s, sh->i_beta_offset >> 1 );
292         }
293     }
294 }
295
296 /* If we are within a reasonable distance of the end of the memory allocated for the bitstream, */
297 /* reallocate, adding an arbitrary amount of space (100 kilobytes). */
298 static int x264_bitstream_check_buffer( x264_t *h )
299 {
300     uint8_t *bs_bak = h->out.p_bitstream;
301     if( ( h->param.b_cabac && (h->cabac.p_end - h->cabac.p < 2500) )
302      || ( h->out.bs.p_end - h->out.bs.p < 2500 ) )
303     {
304         intptr_t delta;
305         int i;
306
307         h->out.i_bitstream += 100000;
308         CHECKED_MALLOC( h->out.p_bitstream, h->out.i_bitstream );
309         h->mc.memcpy_aligned( h->out.p_bitstream, bs_bak, (h->out.i_bitstream - 100000) & ~15 );
310         delta = h->out.p_bitstream - bs_bak;
311
312         h->out.bs.p_start += delta;
313         h->out.bs.p += delta;
314         h->out.bs.p_end = h->out.p_bitstream + h->out.i_bitstream;
315
316         h->cabac.p_start += delta;
317         h->cabac.p += delta;
318         h->cabac.p_end = h->out.p_bitstream + h->out.i_bitstream;
319
320         for( i = 0; i <= h->out.i_nal; i++ )
321             h->out.nal[i].p_payload += delta;
322         x264_free( bs_bak );
323     }
324     return 0;
325 fail:
326     x264_free( bs_bak );
327     return -1;
328 }
329
330 /****************************************************************************
331  *
332  ****************************************************************************
333  ****************************** External API*********************************
334  ****************************************************************************
335  *
336  ****************************************************************************/
337
338 static int x264_validate_parameters( x264_t *h )
339 {
340 #ifdef HAVE_MMX
341     if( !(x264_cpu_detect() & X264_CPU_SSE) )
342     {
343         x264_log( h, X264_LOG_ERROR, "your cpu does not support SSE1, but x264 was compiled with asm support\n");
344         x264_log( h, X264_LOG_ERROR, "to run x264, recompile without asm support (configure --disable-asm)\n");
345         return -1;
346     }
347 #endif
348     if( h->param.i_width <= 0 || h->param.i_height <= 0 )
349     {
350         x264_log( h, X264_LOG_ERROR, "invalid width x height (%dx%d)\n",
351                   h->param.i_width, h->param.i_height );
352         return -1;
353     }
354
355     if( h->param.i_width % 2 || h->param.i_height % 2 )
356     {
357         x264_log( h, X264_LOG_ERROR, "width or height not divisible by 2 (%dx%d)\n",
358                   h->param.i_width, h->param.i_height );
359         return -1;
360     }
361     if( h->param.i_csp != X264_CSP_I420 )
362     {
363         x264_log( h, X264_LOG_ERROR, "invalid CSP (only I420 supported)\n" );
364         return -1;
365     }
366
367     if( h->param.i_threads == X264_THREADS_AUTO )
368         h->param.i_threads = x264_cpu_num_processors() * 3/2;
369     h->param.i_threads = x264_clip3( h->param.i_threads, 1, X264_THREAD_MAX );
370     if( h->param.i_threads > 1 )
371     {
372 #ifndef HAVE_PTHREAD
373         x264_log( h, X264_LOG_WARNING, "not compiled with pthread support!\n");
374         h->param.i_threads = 1;
375 #endif
376     }
377
378     if( h->param.b_interlaced )
379     {
380         if( h->param.analyse.i_me_method >= X264_ME_ESA )
381         {
382             x264_log( h, X264_LOG_WARNING, "interlace + me=esa is not implemented\n" );
383             h->param.analyse.i_me_method = X264_ME_UMH;
384         }
385         if( h->param.analyse.i_direct_mv_pred > X264_DIRECT_PRED_SPATIAL )
386         {
387             x264_log( h, X264_LOG_WARNING, "interlace + direct=temporal is not implemented\n" );
388             h->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
389         }
390     }
391
392     /* Detect default ffmpeg settings and terminate with an error. */
393     {
394         int score = 0;
395         score += h->param.analyse.i_me_range == 0;
396         score += h->param.rc.i_qp_step == 3;
397         score += h->param.i_keyint_max == 12;
398         score += h->param.rc.i_qp_min == 2;
399         score += h->param.rc.i_qp_max == 31;
400         score += h->param.rc.f_qcompress == 0.5;
401         score += fabs(h->param.rc.f_ip_factor - 1.25) < 0.01;
402         score += fabs(h->param.rc.f_pb_factor - 1.25) < 0.01;
403         score += h->param.analyse.inter == 0 && h->param.analyse.i_subpel_refine == 8;
404         if( score >= 5 )
405         {
406             x264_log( h, X264_LOG_ERROR, "broken ffmpeg default settings detected\n" );
407             x264_log( h, X264_LOG_ERROR, "use an encoding preset (vpre)\n" );
408             return -1;
409         }
410     }
411
412     if( h->param.rc.i_rc_method < 0 || h->param.rc.i_rc_method > 2 )
413     {
414         x264_log( h, X264_LOG_ERROR, "no ratecontrol method specified\n" );
415         return -1;
416     }
417     h->param.rc.f_rf_constant = x264_clip3f( h->param.rc.f_rf_constant, 0, 51 );
418     h->param.rc.i_qp_constant = x264_clip3( h->param.rc.i_qp_constant, 0, 51 );
419     if( h->param.rc.i_rc_method == X264_RC_CRF )
420     {
421         h->param.rc.i_qp_constant = h->param.rc.f_rf_constant;
422         h->param.rc.i_bitrate = 0;
423     }
424     if( (h->param.rc.i_rc_method == X264_RC_CQP || h->param.rc.i_rc_method == X264_RC_CRF)
425         && h->param.rc.i_qp_constant == 0 )
426     {
427         h->mb.b_lossless = 1;
428         h->param.i_cqm_preset = X264_CQM_FLAT;
429         h->param.psz_cqm_file = NULL;
430         h->param.rc.i_rc_method = X264_RC_CQP;
431         h->param.rc.f_ip_factor = 1;
432         h->param.rc.f_pb_factor = 1;
433         h->param.analyse.b_psnr = 0;
434         h->param.analyse.b_ssim = 0;
435         h->param.analyse.i_chroma_qp_offset = 0;
436         h->param.analyse.i_trellis = 0;
437         h->param.analyse.b_fast_pskip = 0;
438         h->param.analyse.i_noise_reduction = 0;
439         h->param.analyse.f_psy_rd = 0;
440         h->param.i_bframe = 0;
441         /* 8x8dct is not useful at all in CAVLC lossless */
442         if( !h->param.b_cabac )
443             h->param.analyse.b_transform_8x8 = 0;
444     }
445     if( h->param.rc.i_rc_method == X264_RC_CQP )
446     {
447         float qp_p = h->param.rc.i_qp_constant;
448         float qp_i = qp_p - 6*log(h->param.rc.f_ip_factor)/log(2);
449         float qp_b = qp_p + 6*log(h->param.rc.f_pb_factor)/log(2);
450         h->param.rc.i_qp_min = x264_clip3( (int)(X264_MIN3( qp_p, qp_i, qp_b )), 0, 51 );
451         h->param.rc.i_qp_max = x264_clip3( (int)(X264_MAX3( qp_p, qp_i, qp_b ) + .999), 0, 51 );
452         h->param.rc.i_aq_mode = 0;
453         h->param.rc.b_mb_tree = 0;
454     }
455     h->param.rc.i_qp_max = x264_clip3( h->param.rc.i_qp_max, 0, 51 );
456     h->param.rc.i_qp_min = x264_clip3( h->param.rc.i_qp_min, 0, h->param.rc.i_qp_max );
457
458     if( ( h->param.i_width % 16 || h->param.i_height % 16 )
459         && h->param.i_height != 1080 && !h->mb.b_lossless )
460     {
461         // There's nothing special about 1080 in that the warning still applies to it,
462         // but chances are the user can't help it if his content is already 1080p,
463         // so there's no point in warning in that case.
464         x264_log( h, X264_LOG_WARNING,
465                   "width or height not divisible by 16 (%dx%d), compression will suffer.\n",
466                   h->param.i_width, h->param.i_height );
467     }
468
469     int max_slices = (h->param.i_height+((16<<h->param.b_interlaced)-1))/(16<<h->param.b_interlaced);
470     h->param.i_slice_count = x264_clip3( h->param.i_slice_count, 0, max_slices );
471     h->param.i_slice_max_size = X264_MAX( h->param.i_slice_max_size, 0 );
472     h->param.i_slice_max_mbs = X264_MAX( h->param.i_slice_max_mbs, 0 );
473     if( h->param.b_interlaced && h->param.i_slice_max_size )
474     {
475         x264_log( h, X264_LOG_WARNING, "interlaced + slice-max-size is not implemented\n" );
476         h->param.i_slice_max_size = 0;
477     }
478     if( h->param.b_interlaced && h->param.i_slice_max_mbs )
479     {
480         x264_log( h, X264_LOG_WARNING, "interlaced + slice-max-mbs is not implemented\n" );
481         h->param.i_slice_max_mbs = 0;
482     }
483     if( h->param.i_slice_max_mbs || h->param.i_slice_max_size )
484         h->param.i_slice_count = 0;
485
486     h->param.i_frame_reference = x264_clip3( h->param.i_frame_reference, 1, 16 );
487     if( h->param.i_keyint_max <= 0 )
488         h->param.i_keyint_max = 1;
489     if( h->param.i_scenecut_threshold < 0 )
490         h->param.i_scenecut_threshold = 0;
491     h->param.i_keyint_min = x264_clip3( h->param.i_keyint_min, 1, h->param.i_keyint_max/2+1 );
492     if( !h->param.analyse.i_subpel_refine && h->param.analyse.i_direct_mv_pred > X264_DIRECT_PRED_SPATIAL )
493     {
494         x264_log( h, X264_LOG_WARNING, "subme=0 + direct=temporal is not supported\n" );
495         h->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
496     }
497     h->param.i_bframe = x264_clip3( h->param.i_bframe, 0, X264_BFRAME_MAX );
498     if( h->param.i_keyint_max == 1 )
499         h->param.i_bframe = 0;
500     h->param.i_bframe_bias = x264_clip3( h->param.i_bframe_bias, -90, 100 );
501     h->param.b_bframe_pyramid = h->param.b_bframe_pyramid && h->param.i_bframe > 1;
502     if( !h->param.i_bframe )
503     {
504         h->param.i_bframe_adaptive = X264_B_ADAPT_NONE;
505         h->param.analyse.i_direct_mv_pred = 0;
506         h->param.analyse.b_weighted_bipred = 0;
507     }
508     h->param.rc.i_lookahead = x264_clip3( h->param.rc.i_lookahead, 0, X264_LOOKAHEAD_MAX );
509     {
510         int maxrate = X264_MAX( h->param.rc.i_vbv_max_bitrate, h->param.rc.i_bitrate );
511         float bufsize = maxrate ? (float)h->param.rc.i_vbv_buffer_size / maxrate : 0;
512         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;
513         h->param.rc.i_lookahead = X264_MIN( h->param.rc.i_lookahead, X264_MAX( h->param.i_keyint_max, bufsize*fps ) );
514     }
515
516     if( h->param.rc.b_stat_read )
517         h->param.rc.i_lookahead = 0;
518     else if( !h->param.rc.i_lookahead || h->param.i_keyint_max == 1 )
519         h->param.rc.b_mb_tree = 0;
520     if( h->param.rc.f_qcompress == 1 )
521         h->param.rc.b_mb_tree = 0;
522 #ifdef HAVE_PTHREAD
523     if( h->param.i_sync_lookahead )
524         h->param.i_sync_lookahead = x264_clip3( h->param.i_sync_lookahead, h->param.i_threads + h->param.i_bframe, X264_LOOKAHEAD_MAX );
525     if( h->param.rc.b_stat_read || h->param.i_threads == 1 )
526         h->param.i_sync_lookahead = 0;
527 #else
528     h->param.i_sync_lookahead = 0;
529 #endif
530
531     h->mb.b_direct_auto_write = h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO
532                                 && h->param.i_bframe
533                                 && ( h->param.rc.b_stat_write || !h->param.rc.b_stat_read );
534
535     h->param.i_deblocking_filter_alphac0 = x264_clip3( h->param.i_deblocking_filter_alphac0, -6, 6 );
536     h->param.i_deblocking_filter_beta    = x264_clip3( h->param.i_deblocking_filter_beta, -6, 6 );
537     h->param.analyse.i_luma_deadzone[0] = x264_clip3( h->param.analyse.i_luma_deadzone[0], 0, 32 );
538     h->param.analyse.i_luma_deadzone[1] = x264_clip3( h->param.analyse.i_luma_deadzone[1], 0, 32 );
539
540     h->param.i_cabac_init_idc = x264_clip3( h->param.i_cabac_init_idc, 0, 2 );
541
542     if( h->param.i_cqm_preset < X264_CQM_FLAT || h->param.i_cqm_preset > X264_CQM_CUSTOM )
543         h->param.i_cqm_preset = X264_CQM_FLAT;
544
545     if( h->param.analyse.i_me_method < X264_ME_DIA ||
546         h->param.analyse.i_me_method > X264_ME_TESA )
547         h->param.analyse.i_me_method = X264_ME_HEX;
548     if( h->param.analyse.i_me_range < 4 )
549         h->param.analyse.i_me_range = 4;
550     if( h->param.analyse.i_me_range > 16 && h->param.analyse.i_me_method <= X264_ME_HEX )
551         h->param.analyse.i_me_range = 16;
552     if( h->param.analyse.i_me_method == X264_ME_TESA &&
553         (h->mb.b_lossless || h->param.analyse.i_subpel_refine <= 1) )
554         h->param.analyse.i_me_method = X264_ME_ESA;
555     h->param.analyse.i_subpel_refine = x264_clip3( h->param.analyse.i_subpel_refine, 0, 10 );
556     h->param.analyse.b_mixed_references = h->param.analyse.b_mixed_references && h->param.i_frame_reference > 1;
557     h->param.analyse.inter &= X264_ANALYSE_PSUB16x16|X264_ANALYSE_PSUB8x8|X264_ANALYSE_BSUB16x16|
558                               X264_ANALYSE_I4x4|X264_ANALYSE_I8x8;
559     h->param.analyse.intra &= X264_ANALYSE_I4x4|X264_ANALYSE_I8x8;
560     if( !(h->param.analyse.inter & X264_ANALYSE_PSUB16x16) )
561         h->param.analyse.inter &= ~X264_ANALYSE_PSUB8x8;
562     if( !h->param.analyse.b_transform_8x8 )
563     {
564         h->param.analyse.inter &= ~X264_ANALYSE_I8x8;
565         h->param.analyse.intra &= ~X264_ANALYSE_I8x8;
566     }
567     h->param.analyse.i_chroma_qp_offset = x264_clip3(h->param.analyse.i_chroma_qp_offset, -12, 12);
568     if( !h->param.b_cabac )
569         h->param.analyse.i_trellis = 0;
570     h->param.analyse.i_trellis = x264_clip3( h->param.analyse.i_trellis, 0, 2 );
571     if( !h->param.analyse.b_psy )
572     {
573         h->param.analyse.f_psy_rd = 0;
574         h->param.analyse.f_psy_trellis = 0;
575     }
576     if( !h->param.analyse.i_trellis )
577         h->param.analyse.f_psy_trellis = 0;
578     h->param.analyse.f_psy_rd = x264_clip3f( h->param.analyse.f_psy_rd, 0, 10 );
579     h->param.analyse.f_psy_trellis = x264_clip3f( h->param.analyse.f_psy_trellis, 0, 10 );
580     if( h->param.analyse.i_subpel_refine < 6 )
581         h->param.analyse.f_psy_rd = 0;
582     h->mb.i_psy_rd = FIX8( h->param.analyse.f_psy_rd );
583     /* Psy RDO increases overall quantizers to improve the quality of luma--this indirectly hurts chroma quality */
584     /* so we lower the chroma QP offset to compensate */
585     /* This can be triggered repeatedly on multiple calls to parameter_validate, but since encoding
586      * uses the pps chroma qp offset not the param chroma qp offset, this is not a problem. */
587     if( h->mb.i_psy_rd )
588         h->param.analyse.i_chroma_qp_offset -= h->param.analyse.f_psy_rd < 0.25 ? 1 : 2;
589     h->mb.i_psy_trellis = FIX8( h->param.analyse.f_psy_trellis / 4 );
590     /* Psy trellis has a similar effect. */
591     if( h->mb.i_psy_trellis )
592         h->param.analyse.i_chroma_qp_offset -= h->param.analyse.f_psy_trellis < 0.25 ? 1 : 2;
593     else
594         h->mb.i_psy_trellis = 0;
595     h->param.analyse.i_chroma_qp_offset = x264_clip3(h->param.analyse.i_chroma_qp_offset, -12, 12);
596     h->param.rc.i_aq_mode = x264_clip3( h->param.rc.i_aq_mode, 0, 2 );
597     h->param.rc.f_aq_strength = x264_clip3f( h->param.rc.f_aq_strength, 0, 3 );
598     if( h->param.rc.f_aq_strength == 0 )
599         h->param.rc.i_aq_mode = 0;
600     /* MB-tree requires AQ to be on, even if the strength is zero. */
601     if( !h->param.rc.i_aq_mode && h->param.rc.b_mb_tree )
602     {
603         h->param.rc.i_aq_mode = 1;
604         h->param.rc.f_aq_strength = 0;
605     }
606     if( h->param.rc.b_mb_tree && h->param.b_bframe_pyramid )
607     {
608         x264_log( h, X264_LOG_WARNING, "b-pyramid + mb-tree is not supported\n" );
609         h->param.b_bframe_pyramid = 0;
610     }
611     h->param.analyse.i_noise_reduction = x264_clip3( h->param.analyse.i_noise_reduction, 0, 1<<16 );
612     if( h->param.analyse.i_subpel_refine == 10 && (h->param.analyse.i_trellis != 2 || !h->param.rc.i_aq_mode) )
613         h->param.analyse.i_subpel_refine = 9;
614
615     {
616         const x264_level_t *l = x264_levels;
617         if( h->param.i_level_idc < 0 )
618         {
619             int maxrate_bak = h->param.rc.i_vbv_max_bitrate;
620             if( h->param.rc.i_rc_method == X264_RC_ABR && h->param.rc.i_vbv_buffer_size <= 0 )
621                 h->param.rc.i_vbv_max_bitrate = h->param.rc.i_bitrate * 2;
622             h->sps = h->sps_array;
623             x264_sps_init( h->sps, h->param.i_sps_id, &h->param );
624             do h->param.i_level_idc = l->level_idc;
625                 while( l[1].level_idc && x264_validate_levels( h, 0 ) && l++ );
626             h->param.rc.i_vbv_max_bitrate = maxrate_bak;
627         }
628         else
629         {
630             while( l->level_idc && l->level_idc != h->param.i_level_idc )
631                 l++;
632             if( l->level_idc == 0 )
633             {
634                 x264_log( h, X264_LOG_ERROR, "invalid level_idc: %d\n", h->param.i_level_idc );
635                 return -1;
636             }
637         }
638         if( h->param.analyse.i_mv_range <= 0 )
639             h->param.analyse.i_mv_range = l->mv_range >> h->param.b_interlaced;
640         else
641             h->param.analyse.i_mv_range = x264_clip3(h->param.analyse.i_mv_range, 32, 512 >> h->param.b_interlaced);
642     }
643
644     if( h->param.i_threads > 1 )
645     {
646         int r = h->param.analyse.i_mv_range_thread;
647         int r2;
648         if( r <= 0 )
649         {
650             // half of the available space is reserved and divided evenly among the threads,
651             // the rest is allocated to whichever thread is far enough ahead to use it.
652             // reserving more space increases quality for some videos, but costs more time
653             // in thread synchronization.
654             int max_range = (h->param.i_height + X264_THREAD_HEIGHT) / h->param.i_threads - X264_THREAD_HEIGHT;
655             r = max_range / 2;
656         }
657         r = X264_MAX( r, h->param.analyse.i_me_range );
658         r = X264_MIN( r, h->param.analyse.i_mv_range );
659         // round up to use the whole mb row
660         r2 = (r & ~15) + ((-X264_THREAD_HEIGHT) & 15);
661         if( r2 < r )
662             r2 += 16;
663         x264_log( h, X264_LOG_DEBUG, "using mv_range_thread = %d\n", r2 );
664         h->param.analyse.i_mv_range_thread = r2;
665     }
666
667     if( h->param.rc.f_qblur < 0 )
668         h->param.rc.f_qblur = 0;
669     if( h->param.rc.f_complexity_blur < 0 )
670         h->param.rc.f_complexity_blur = 0;
671
672     h->param.i_sps_id &= 31;
673
674     if( h->param.i_log_level < X264_LOG_INFO )
675     {
676         h->param.analyse.b_psnr = 0;
677         h->param.analyse.b_ssim = 0;
678     }
679
680     /* ensure the booleans are 0 or 1 so they can be used in math */
681 #define BOOLIFY(x) h->param.x = !!h->param.x
682     BOOLIFY( b_cabac );
683     BOOLIFY( b_deblocking_filter );
684     BOOLIFY( b_interlaced );
685     BOOLIFY( analyse.b_transform_8x8 );
686     BOOLIFY( analyse.b_chroma_me );
687     BOOLIFY( analyse.b_fast_pskip );
688     BOOLIFY( rc.b_stat_write );
689     BOOLIFY( rc.b_stat_read );
690     BOOLIFY( rc.b_mb_tree );
691 #undef BOOLIFY
692
693     return 0;
694 }
695
696 static void mbcmp_init( x264_t *h )
697 {
698     int satd = !h->mb.b_lossless && h->param.analyse.i_subpel_refine > 1;
699     memcpy( h->pixf.mbcmp, satd ? h->pixf.satd : h->pixf.sad_aligned, sizeof(h->pixf.mbcmp) );
700     memcpy( h->pixf.mbcmp_unaligned, satd ? h->pixf.satd : h->pixf.sad, sizeof(h->pixf.mbcmp_unaligned) );
701     h->pixf.intra_mbcmp_x3_16x16 = satd ? h->pixf.intra_satd_x3_16x16 : h->pixf.intra_sad_x3_16x16;
702     h->pixf.intra_mbcmp_x3_8x8c = satd ? h->pixf.intra_satd_x3_8x8c : h->pixf.intra_sad_x3_8x8c;
703     h->pixf.intra_mbcmp_x3_4x4 = satd ? h->pixf.intra_satd_x3_4x4 : h->pixf.intra_sad_x3_4x4;
704     satd &= h->param.analyse.i_me_method == X264_ME_TESA;
705     memcpy( h->pixf.fpelcmp, satd ? h->pixf.satd : h->pixf.sad, sizeof(h->pixf.fpelcmp) );
706     memcpy( h->pixf.fpelcmp_x3, satd ? h->pixf.satd_x3 : h->pixf.sad_x3, sizeof(h->pixf.fpelcmp_x3) );
707     memcpy( h->pixf.fpelcmp_x4, satd ? h->pixf.satd_x4 : h->pixf.sad_x4, sizeof(h->pixf.fpelcmp_x4) );
708 }
709
710 static void x264_set_aspect_ratio( x264_t *h, x264_param_t *param, int initial )
711 {
712     /* VUI */
713     if( param->vui.i_sar_width > 0 && param->vui.i_sar_height > 0 )
714     {
715         int i_w = param->vui.i_sar_width;
716         int i_h = param->vui.i_sar_height;
717         int old_w = h->param.vui.i_sar_width;
718         int old_h = h->param.vui.i_sar_height;
719
720         x264_reduce_fraction( &i_w, &i_h );
721
722         while( i_w > 65535 || i_h > 65535 )
723         {
724             i_w /= 2;
725             i_h /= 2;
726         }
727
728         if( i_w != old_w || i_h != old_h || initial )
729         {
730             h->param.vui.i_sar_width = 0;
731             h->param.vui.i_sar_height = 0;
732             if( i_w == 0 || i_h == 0 )
733                 x264_log( h, X264_LOG_WARNING, "cannot create valid sample aspect ratio\n" );
734             else
735             {
736                 x264_log( h, initial?X264_LOG_INFO:X264_LOG_DEBUG, "using SAR=%d/%d\n", i_w, i_h );
737                 h->param.vui.i_sar_width = i_w;
738                 h->param.vui.i_sar_height = i_h;
739             }
740         }
741     }
742 }
743
744 /****************************************************************************
745  * x264_encoder_open:
746  ****************************************************************************/
747 x264_t *x264_encoder_open( x264_param_t *param )
748 {
749     x264_t *h;
750     char buf[1000], *p;
751     int i, qp, i_slicetype_length;
752
753     CHECKED_MALLOCZERO( h, sizeof(x264_t) );
754
755     /* Create a copy of param */
756     memcpy( &h->param, param, sizeof(x264_param_t) );
757
758     if( param->param_free )
759         param->param_free( param );
760
761     if( x264_validate_parameters( h ) < 0 )
762         goto fail;
763
764     if( h->param.psz_cqm_file )
765         if( x264_cqm_parse_file( h, h->param.psz_cqm_file ) < 0 )
766             goto fail;
767
768     if( h->param.rc.psz_stat_out )
769         h->param.rc.psz_stat_out = strdup( h->param.rc.psz_stat_out );
770     if( h->param.rc.psz_stat_in )
771         h->param.rc.psz_stat_in = strdup( h->param.rc.psz_stat_in );
772
773     x264_set_aspect_ratio( h, param, 1 );
774
775     x264_reduce_fraction( &h->param.i_fps_num, &h->param.i_fps_den );
776
777     /* Init x264_t */
778     h->i_frame = 0;
779     h->i_frame_num = 0;
780     h->i_idr_pic_id = 0;
781
782     h->sps = &h->sps_array[0];
783     x264_sps_init( h->sps, h->param.i_sps_id, &h->param );
784
785     h->pps = &h->pps_array[0];
786     x264_pps_init( h->pps, h->param.i_sps_id, &h->param, h->sps);
787
788     x264_validate_levels( h, 1 );
789
790     h->chroma_qp_table = i_chroma_qp_table + 12 + h->pps->i_chroma_qp_index_offset;
791
792     if( x264_cqm_init( h ) < 0 )
793         goto fail;
794
795     h->mb.i_mb_count = h->sps->i_mb_width * h->sps->i_mb_height;
796
797     /* Init frames. */
798     if( h->param.i_bframe_adaptive == X264_B_ADAPT_TRELLIS )
799         h->frames.i_delay = X264_MAX(h->param.i_bframe,3)*4;
800     else
801         h->frames.i_delay = h->param.i_bframe;
802     if( h->param.rc.b_mb_tree || h->param.rc.i_vbv_buffer_size )
803         h->frames.i_delay = X264_MAX( h->frames.i_delay, h->param.rc.i_lookahead );
804     i_slicetype_length = h->frames.i_delay;
805     h->frames.i_delay += h->param.i_threads - 1;
806     h->frames.i_delay = X264_MIN( h->frames.i_delay, X264_LOOKAHEAD_MAX );
807     h->frames.i_delay += h->param.i_sync_lookahead;
808
809     h->frames.i_max_ref0 = h->param.i_frame_reference;
810     h->frames.i_max_ref1 = h->sps->vui.i_num_reorder_frames;
811     h->frames.i_max_dpb  = h->sps->vui.i_max_dec_frame_buffering;
812     h->frames.b_have_lowres = !h->param.rc.b_stat_read
813         && ( h->param.rc.i_rc_method == X264_RC_ABR
814           || h->param.rc.i_rc_method == X264_RC_CRF
815           || h->param.i_bframe_adaptive
816           || h->param.i_scenecut_threshold
817           || h->param.rc.b_mb_tree );
818     h->frames.b_have_lowres |= (h->param.rc.b_stat_read && h->param.rc.i_vbv_buffer_size > 0);
819     h->frames.b_have_sub8x8_esa = !!(h->param.analyse.inter & X264_ANALYSE_PSUB8x8);
820
821     h->frames.i_last_idr = - h->param.i_keyint_max;
822     h->frames.i_input    = 0;
823
824     CHECKED_MALLOCZERO( h->frames.unused[0], (h->frames.i_delay + 3) * sizeof(x264_frame_t *) );
825     /* Allocate room for max refs plus a few extra just in case. */
826     CHECKED_MALLOCZERO( h->frames.unused[1], (h->param.i_threads + 20) * sizeof(x264_frame_t *) );
827     CHECKED_MALLOCZERO( h->frames.current, (h->param.i_sync_lookahead + h->param.i_bframe
828                         + h->param.i_threads + 3) * sizeof(x264_frame_t *) );
829
830     h->i_ref0 = 0;
831     h->i_ref1 = 0;
832
833     x264_rdo_init( );
834
835     /* init CPU functions */
836     x264_predict_16x16_init( h->param.cpu, h->predict_16x16 );
837     x264_predict_8x8c_init( h->param.cpu, h->predict_8x8c );
838     x264_predict_8x8_init( h->param.cpu, h->predict_8x8, &h->predict_8x8_filter );
839     x264_predict_4x4_init( h->param.cpu, h->predict_4x4 );
840     if( !h->param.b_cabac )
841         x264_init_vlc_tables();
842     x264_pixel_init( h->param.cpu, &h->pixf );
843     x264_dct_init( h->param.cpu, &h->dctf );
844     x264_zigzag_init( h->param.cpu, &h->zigzagf, h->param.b_interlaced );
845     x264_mc_init( h->param.cpu, &h->mc );
846     x264_quant_init( h, h->param.cpu, &h->quantf );
847     x264_deblock_init( h->param.cpu, &h->loopf );
848     x264_dct_init_weights();
849
850     mbcmp_init( h );
851
852     p = buf + sprintf( buf, "using cpu capabilities:" );
853     for( i=0; x264_cpu_names[i].flags; i++ )
854     {
855         if( !strcmp(x264_cpu_names[i].name, "SSE2")
856             && param->cpu & (X264_CPU_SSE2_IS_FAST|X264_CPU_SSE2_IS_SLOW) )
857             continue;
858         if( !strcmp(x264_cpu_names[i].name, "SSE3")
859             && (param->cpu & X264_CPU_SSSE3 || !(param->cpu & X264_CPU_CACHELINE_64)) )
860             continue;
861         if( !strcmp(x264_cpu_names[i].name, "SSE4.1")
862             && (param->cpu & X264_CPU_SSE42) )
863             continue;
864         if( (param->cpu & x264_cpu_names[i].flags) == x264_cpu_names[i].flags
865             && (!i || x264_cpu_names[i].flags != x264_cpu_names[i-1].flags) )
866             p += sprintf( p, " %s", x264_cpu_names[i].name );
867     }
868     if( !param->cpu )
869         p += sprintf( p, " none!" );
870     x264_log( h, X264_LOG_INFO, "%s\n", buf );
871
872     for( qp = h->param.rc.i_qp_min; qp <= h->param.rc.i_qp_max; qp++ )
873         if( x264_analyse_init_costs( h, qp ) )
874             goto fail;
875     if( x264_analyse_init_costs( h, X264_LOOKAHEAD_QP ) )
876         goto fail;
877
878     h->out.i_nal = 0;
879     h->out.i_bitstream = X264_MAX( 1000000, h->param.i_width * h->param.i_height * 4
880         * ( h->param.rc.i_rc_method == X264_RC_ABR ? pow( 0.95, h->param.rc.i_qp_min )
881           : pow( 0.95, h->param.rc.i_qp_constant ) * X264_MAX( 1, h->param.rc.f_ip_factor )));
882
883     h->thread[0] = h;
884     h->i_thread_num = 0;
885     for( i = 1; i < h->param.i_threads + !!h->param.i_sync_lookahead; i++ )
886         CHECKED_MALLOC( h->thread[i], sizeof(x264_t) );
887
888     for( i = 0; i < h->param.i_threads; i++ )
889     {
890         if( i > 0 )
891             *h->thread[i] = *h;
892         h->thread[i]->fdec = x264_frame_pop_unused( h, 1 );
893         if( !h->thread[i]->fdec )
894             goto fail;
895         CHECKED_MALLOC( h->thread[i]->out.p_bitstream, h->out.i_bitstream );
896         /* Start each thread with room for 8 NAL units; it'll realloc later if needed. */
897         CHECKED_MALLOC( h->thread[i]->out.nal, 8*sizeof(x264_nal_t) );
898         h->thread[i]->out.i_nals_allocated = 8;
899         if( x264_macroblock_cache_init( h->thread[i] ) < 0 )
900             goto fail;
901     }
902
903     if( x264_lookahead_init( h, i_slicetype_length ) )
904         goto fail;
905
906     if( x264_ratecontrol_new( h ) < 0 )
907         goto fail;
908
909     if( h->param.psz_dump_yuv )
910     {
911         /* create or truncate the reconstructed video file */
912         FILE *f = fopen( h->param.psz_dump_yuv, "w" );
913         if( f )
914             fclose( f );
915         else
916         {
917             x264_log( h, X264_LOG_ERROR, "can't write to fdec.yuv\n" );
918             goto fail;
919         }
920     }
921
922     x264_log( h, X264_LOG_INFO, "profile %s, level %d.%d\n",
923         h->sps->i_profile_idc == PROFILE_BASELINE ? "Baseline" :
924         h->sps->i_profile_idc == PROFILE_MAIN ? "Main" :
925         h->sps->i_profile_idc == PROFILE_HIGH ? "High" :
926         "High 4:4:4 Predictive", h->sps->i_level_idc/10, h->sps->i_level_idc%10 );
927
928     return h;
929 fail:
930     x264_free( h );
931     return NULL;
932 }
933
934 /****************************************************************************
935  * x264_encoder_reconfig:
936  ****************************************************************************/
937 int x264_encoder_reconfig( x264_t *h, x264_param_t *param )
938 {
939     h = h->thread[h->i_thread_phase%h->param.i_threads];
940     x264_set_aspect_ratio( h, param, 0 );
941 #define COPY(var) h->param.var = param->var
942     COPY( i_frame_reference ); // but never uses more refs than initially specified
943     COPY( i_bframe_bias );
944     if( h->param.i_scenecut_threshold )
945         COPY( i_scenecut_threshold ); // can't turn it on or off, only vary the threshold
946     COPY( b_deblocking_filter );
947     COPY( i_deblocking_filter_alphac0 );
948     COPY( i_deblocking_filter_beta );
949     COPY( analyse.intra );
950     COPY( analyse.inter );
951     COPY( analyse.i_direct_mv_pred );
952     /* Scratch buffer prevents me_range from being increased for esa/tesa */
953     if( h->param.analyse.i_me_method < X264_ME_ESA || param->analyse.i_me_range < h->param.analyse.i_me_range )
954         COPY( analyse.i_me_range );
955     COPY( analyse.i_noise_reduction );
956     /* We can't switch out of subme=0 during encoding. */
957     if( h->param.analyse.i_subpel_refine )
958         COPY( analyse.i_subpel_refine );
959     COPY( analyse.i_trellis );
960     COPY( analyse.b_chroma_me );
961     COPY( analyse.b_dct_decimate );
962     COPY( analyse.b_fast_pskip );
963     COPY( analyse.b_mixed_references );
964     COPY( analyse.f_psy_rd );
965     COPY( analyse.f_psy_trellis );
966     // can only twiddle these if they were enabled to begin with:
967     if( h->param.analyse.i_me_method >= X264_ME_ESA || param->analyse.i_me_method < X264_ME_ESA )
968         COPY( analyse.i_me_method );
969     if( h->param.analyse.i_me_method >= X264_ME_ESA && !h->frames.b_have_sub8x8_esa )
970         h->param.analyse.inter &= ~X264_ANALYSE_PSUB8x8;
971     if( h->pps->b_transform_8x8_mode )
972         COPY( analyse.b_transform_8x8 );
973     if( h->frames.i_max_ref1 > 1 )
974         COPY( b_bframe_pyramid );
975     COPY( i_slice_max_size );
976     COPY( i_slice_max_mbs );
977     COPY( i_slice_count );
978 #undef COPY
979
980     mbcmp_init( h );
981
982     return x264_validate_parameters( h );
983 }
984
985 /* internal usage */
986 static void x264_nal_start( x264_t *h, int i_type, int i_ref_idc )
987 {
988     x264_nal_t *nal = &h->out.nal[h->out.i_nal];
989
990     nal->i_ref_idc = i_ref_idc;
991     nal->i_type    = i_type;
992
993     nal->i_payload= 0;
994     nal->p_payload= &h->out.p_bitstream[bs_pos( &h->out.bs ) / 8];
995 }
996 static int x264_nal_end( x264_t *h )
997 {
998     x264_nal_t *nal = &h->out.nal[h->out.i_nal];
999     nal->i_payload = &h->out.p_bitstream[bs_pos( &h->out.bs ) / 8] - nal->p_payload;
1000     h->out.i_nal++;
1001
1002     /* if number of allocated nals is not enough, re-allocate a larger one. */
1003     if( h->out.i_nal >= h->out.i_nals_allocated )
1004     {
1005         x264_nal_t *new_out = x264_malloc( sizeof(x264_nal_t) * (h->out.i_nals_allocated*2) );
1006         if( !new_out )
1007             return -1;
1008         memcpy( new_out, h->out.nal, sizeof(x264_nal_t) * (h->out.i_nals_allocated) );
1009         x264_free( h->out.nal );
1010         h->out.nal = new_out;
1011         h->out.i_nals_allocated *= 2;
1012     }
1013     return 0;
1014 }
1015
1016 /****************************************************************************
1017  * x264_encoder_headers:
1018  ****************************************************************************/
1019 int x264_encoder_headers( x264_t *h, x264_nal_t **pp_nal, int *pi_nal )
1020 {
1021     /* init bitstream context */
1022     h->out.i_nal = 0;
1023     bs_init( &h->out.bs, h->out.p_bitstream, h->out.i_bitstream );
1024
1025     /* Put SPS and PPS */
1026     if( h->i_frame == 0 )
1027     {
1028         /* identify ourself */
1029         x264_nal_start( h, NAL_SEI, NAL_PRIORITY_DISPOSABLE );
1030         if( x264_sei_version_write( h, &h->out.bs ) )
1031             return -1;
1032         if( x264_nal_end( h ) )
1033             return -1;
1034
1035         /* generate sequence parameters */
1036         x264_nal_start( h, NAL_SPS, NAL_PRIORITY_HIGHEST );
1037         x264_sps_write( &h->out.bs, h->sps );
1038         if( x264_nal_end( h ) )
1039             return -1;
1040
1041         /* generate picture parameters */
1042         x264_nal_start( h, NAL_PPS, NAL_PRIORITY_HIGHEST );
1043         x264_pps_write( &h->out.bs, h->pps );
1044         if( x264_nal_end( h ) )
1045             return -1;
1046         bs_flush( &h->out.bs );
1047     }
1048     /* now set output*/
1049     *pi_nal = h->out.i_nal;
1050     *pp_nal = &h->out.nal[0];
1051     h->out.i_nal = 0;
1052
1053     return 0;
1054 }
1055
1056 static inline void x264_reference_build_list( x264_t *h, int i_poc )
1057 {
1058     int i;
1059     int b_ok;
1060
1061     /* build ref list 0/1 */
1062     h->i_ref0 = 0;
1063     h->i_ref1 = 0;
1064     for( i = 0; h->frames.reference[i]; i++ )
1065     {
1066         if( h->frames.reference[i]->i_poc < i_poc )
1067         {
1068             h->fref0[h->i_ref0++] = h->frames.reference[i];
1069         }
1070         else if( h->frames.reference[i]->i_poc > i_poc )
1071         {
1072             h->fref1[h->i_ref1++] = h->frames.reference[i];
1073         }
1074     }
1075
1076     /* Order ref0 from higher to lower poc */
1077     do
1078     {
1079         b_ok = 1;
1080         for( i = 0; i < h->i_ref0 - 1; i++ )
1081         {
1082             if( h->fref0[i]->i_poc < h->fref0[i+1]->i_poc )
1083             {
1084                 XCHG( x264_frame_t*, h->fref0[i], h->fref0[i+1] );
1085                 b_ok = 0;
1086                 break;
1087             }
1088         }
1089     } while( !b_ok );
1090     /* Order ref1 from lower to higher poc (bubble sort) for B-frame */
1091     do
1092     {
1093         b_ok = 1;
1094         for( i = 0; i < h->i_ref1 - 1; i++ )
1095         {
1096             if( h->fref1[i]->i_poc > h->fref1[i+1]->i_poc )
1097             {
1098                 XCHG( x264_frame_t*, h->fref1[i], h->fref1[i+1] );
1099                 b_ok = 0;
1100                 break;
1101             }
1102         }
1103     } while( !b_ok );
1104
1105     /* In the standard, a P-frame's ref list is sorted by frame_num.
1106      * We use POC, but check whether explicit reordering is needed */
1107     h->b_ref_reorder[0] =
1108     h->b_ref_reorder[1] = 0;
1109     if( h->sh.i_type == SLICE_TYPE_P )
1110     {
1111         for( i = 0; i < h->i_ref0 - 1; i++ )
1112             if( h->fref0[i]->i_frame_num < h->fref0[i+1]->i_frame_num )
1113             {
1114                 h->b_ref_reorder[0] = 1;
1115                 break;
1116             }
1117     }
1118
1119     h->i_ref1 = X264_MIN( h->i_ref1, h->frames.i_max_ref1 );
1120     h->i_ref0 = X264_MIN( h->i_ref0, h->frames.i_max_ref0 );
1121     h->i_ref0 = X264_MIN( h->i_ref0, h->param.i_frame_reference ); // if reconfig() has lowered the limit
1122     assert( h->i_ref0 + h->i_ref1 <= 16 );
1123     h->mb.pic.i_fref[0] = h->i_ref0;
1124     h->mb.pic.i_fref[1] = h->i_ref1;
1125 }
1126
1127 static void x264_fdec_filter_row( x264_t *h, int mb_y )
1128 {
1129     /* mb_y is the mb to be encoded next, not the mb to be filtered here */
1130     int b_hpel = h->fdec->b_kept_as_ref;
1131     int b_deblock = !h->sh.i_disable_deblocking_filter_idc;
1132     int b_end = mb_y == h->sps->i_mb_height;
1133     int min_y = mb_y - (1 << h->sh.b_mbaff);
1134     int max_y = b_end ? h->sps->i_mb_height : mb_y;
1135     b_deblock &= b_hpel || h->param.psz_dump_yuv;
1136     if( mb_y & h->sh.b_mbaff )
1137         return;
1138     if( min_y < 0 )
1139         return;
1140
1141     if( !b_end )
1142     {
1143         int i, j;
1144         for( j=0; j<=h->sh.b_mbaff; j++ )
1145             for( i=0; i<3; i++ )
1146             {
1147                 memcpy( h->mb.intra_border_backup[j][i],
1148                         h->fdec->plane[i] + ((mb_y*16 >> !!i) + j - 1 - h->sh.b_mbaff) * h->fdec->i_stride[i],
1149                         h->sps->i_mb_width*16 >> !!i );
1150             }
1151     }
1152
1153     if( b_deblock )
1154     {
1155         int y;
1156         for( y = min_y; y < max_y; y += (1 << h->sh.b_mbaff) )
1157             x264_frame_deblock_row( h, y );
1158     }
1159
1160     if( b_hpel )
1161     {
1162         x264_frame_expand_border( h, h->fdec, min_y, b_end );
1163         if( h->param.analyse.i_subpel_refine )
1164         {
1165             x264_frame_filter( h, h->fdec, min_y, b_end );
1166             x264_frame_expand_border_filtered( h, h->fdec, min_y, b_end );
1167         }
1168     }
1169
1170     if( h->param.i_threads > 1 && h->fdec->b_kept_as_ref )
1171     {
1172         x264_frame_cond_broadcast( h->fdec, mb_y*16 + (b_end ? 10000 : -(X264_THREAD_HEIGHT << h->sh.b_mbaff)) );
1173     }
1174
1175     min_y = X264_MAX( min_y*16-8, 0 );
1176     max_y = b_end ? h->param.i_height : mb_y*16-8;
1177
1178     if( h->param.analyse.b_psnr )
1179     {
1180         int i;
1181         for( i=0; i<3; i++ )
1182             h->stat.frame.i_ssd[i] +=
1183                 x264_pixel_ssd_wxh( &h->pixf,
1184                     h->fdec->plane[i] + (min_y>>!!i) * h->fdec->i_stride[i], h->fdec->i_stride[i],
1185                     h->fenc->plane[i] + (min_y>>!!i) * h->fenc->i_stride[i], h->fenc->i_stride[i],
1186                     h->param.i_width >> !!i, (max_y-min_y) >> !!i );
1187     }
1188
1189     if( h->param.analyse.b_ssim )
1190     {
1191         x264_emms();
1192         /* offset by 2 pixels to avoid alignment of ssim blocks with dct blocks,
1193          * and overlap by 4 */
1194         min_y += min_y == 0 ? 2 : -6;
1195         h->stat.frame.f_ssim +=
1196             x264_pixel_ssim_wxh( &h->pixf,
1197                 h->fdec->plane[0] + 2+min_y*h->fdec->i_stride[0], h->fdec->i_stride[0],
1198                 h->fenc->plane[0] + 2+min_y*h->fenc->i_stride[0], h->fenc->i_stride[0],
1199                 h->param.i_width-2, max_y-min_y, h->scratch_buffer );
1200     }
1201 }
1202
1203 static inline int x264_reference_update( x264_t *h )
1204 {
1205     if( h->fdec->i_frame >= 0 )
1206         h->i_frame++;
1207
1208     if( !h->fdec->b_kept_as_ref )
1209     {
1210         if( h->param.i_threads > 1 )
1211         {
1212             x264_frame_push_unused( h, h->fdec );
1213             h->fdec = x264_frame_pop_unused( h, 1 );
1214             if( !h->fdec )
1215                 return -1;
1216         }
1217         return 0;
1218     }
1219
1220     /* move frame in the buffer */
1221     x264_frame_push( h->frames.reference, h->fdec );
1222     if( h->frames.reference[h->frames.i_max_dpb] )
1223         x264_frame_push_unused( h, x264_frame_shift( h->frames.reference ) );
1224     h->fdec = x264_frame_pop_unused( h, 1 );
1225     if( !h->fdec )
1226         return -1;
1227     return 0;
1228 }
1229
1230 static inline void x264_reference_reset( x264_t *h )
1231 {
1232     while( h->frames.reference[0] )
1233         x264_frame_push_unused( h, x264_frame_pop( h->frames.reference ) );
1234     h->fdec->i_poc =
1235     h->fenc->i_poc = 0;
1236 }
1237
1238 static inline void x264_slice_init( x264_t *h, int i_nal_type, int i_global_qp )
1239 {
1240     /* ------------------------ Create slice header  ----------------------- */
1241     if( i_nal_type == NAL_SLICE_IDR )
1242     {
1243         x264_slice_header_init( h, &h->sh, h->sps, h->pps, h->i_idr_pic_id, h->i_frame_num, i_global_qp );
1244
1245         /* increment id */
1246         h->i_idr_pic_id = ( h->i_idr_pic_id + 1 ) % 65536;
1247     }
1248     else
1249     {
1250         x264_slice_header_init( h, &h->sh, h->sps, h->pps, -1, h->i_frame_num, i_global_qp );
1251
1252         /* always set the real higher num of ref frame used */
1253         h->sh.b_num_ref_idx_override = 1;
1254         h->sh.i_num_ref_idx_l0_active = h->i_ref0 <= 0 ? 1 : h->i_ref0;
1255         h->sh.i_num_ref_idx_l1_active = h->i_ref1 <= 0 ? 1 : h->i_ref1;
1256     }
1257
1258     h->fdec->i_frame_num = h->sh.i_frame_num;
1259
1260     if( h->sps->i_poc_type == 0 )
1261     {
1262         h->sh.i_poc_lsb = h->fdec->i_poc & ( (1 << h->sps->i_log2_max_poc_lsb) - 1 );
1263         h->sh.i_delta_poc_bottom = 0;   /* XXX won't work for field */
1264     }
1265     else if( h->sps->i_poc_type == 1 )
1266     {
1267         /* FIXME TODO FIXME */
1268     }
1269     else
1270     {
1271         /* Nothing to do ? */
1272     }
1273
1274     x264_macroblock_slice_init( h );
1275 }
1276
1277 static int x264_slice_write( x264_t *h )
1278 {
1279     int i_skip;
1280     int mb_xy, i_mb_x, i_mb_y;
1281     int i, i_list, i_ref, i_skip_bak = 0; /* Shut up GCC. */
1282     bs_t bs_bak;
1283     x264_cabac_t cabac_bak;
1284     uint8_t cabac_prevbyte_bak = 0; /* Shut up GCC. */
1285     /* Assume no more than 3 bytes of NALU escaping. */
1286     int slice_max_size = h->param.i_slice_max_size > 0 ? (h->param.i_slice_max_size-3-NALU_OVERHEAD)*8 : INT_MAX;
1287     int starting_bits = bs_pos(&h->out.bs);
1288
1289     /* Slice */
1290     x264_nal_start( h, h->i_nal_type, h->i_nal_ref_idc );
1291
1292     /* Slice header */
1293     x264_slice_header_write( &h->out.bs, &h->sh, h->i_nal_ref_idc );
1294     if( h->param.b_cabac )
1295     {
1296         /* alignment needed */
1297         bs_align_1( &h->out.bs );
1298
1299         /* init cabac */
1300         x264_cabac_context_init( &h->cabac, h->sh.i_type, h->sh.i_qp, h->sh.i_cabac_init_idc );
1301         x264_cabac_encode_init ( &h->cabac, h->out.bs.p, h->out.bs.p_end );
1302     }
1303     h->mb.i_last_qp = h->sh.i_qp;
1304     h->mb.i_last_dqp = 0;
1305
1306     i_mb_y = h->sh.i_first_mb / h->sps->i_mb_width;
1307     i_mb_x = h->sh.i_first_mb % h->sps->i_mb_width;
1308     i_skip = 0;
1309
1310     while( (mb_xy = i_mb_x + i_mb_y * h->sps->i_mb_width) <= h->sh.i_last_mb )
1311     {
1312         int mb_spos = bs_pos(&h->out.bs) + x264_cabac_pos(&h->cabac);
1313         if( h->param.i_slice_max_size > 0 )
1314         {
1315             /* We don't need the contexts because flushing the CABAC encoder has no context
1316              * dependency and macroblocks are only re-encoded in the case where a slice is
1317              * ended (and thus the content of all contexts are thrown away). */
1318             if( h->param.b_cabac )
1319             {
1320                 memcpy( &cabac_bak, &h->cabac, offsetof(x264_cabac_t, f8_bits_encoded) );
1321                 /* x264's CABAC writer modifies the previous byte during carry, so it has to be
1322                  * backed up. */
1323                 cabac_prevbyte_bak = h->cabac.p[-1];
1324             }
1325             else
1326             {
1327                 bs_bak = h->out.bs;
1328                 i_skip_bak = i_skip;
1329             }
1330         }
1331
1332         if( i_mb_x == 0 && !h->mb.b_reencode_mb )
1333             x264_fdec_filter_row( h, i_mb_y );
1334
1335         /* load cache */
1336         x264_macroblock_cache_load( h, i_mb_x, i_mb_y );
1337
1338         x264_macroblock_analyse( h );
1339
1340         /* encode this macroblock -> be careful it can change the mb type to P_SKIP if needed */
1341         x264_macroblock_encode( h );
1342
1343         if( x264_bitstream_check_buffer( h ) )
1344             return -1;
1345
1346         if( h->param.b_cabac )
1347         {
1348             if( mb_xy > h->sh.i_first_mb && !(h->sh.b_mbaff && (i_mb_y&1)) )
1349                 x264_cabac_encode_terminal( &h->cabac );
1350
1351             if( IS_SKIP( h->mb.i_type ) )
1352                 x264_cabac_mb_skip( h, 1 );
1353             else
1354             {
1355                 if( h->sh.i_type != SLICE_TYPE_I )
1356                     x264_cabac_mb_skip( h, 0 );
1357                 x264_macroblock_write_cabac( h, &h->cabac );
1358             }
1359         }
1360         else
1361         {
1362             if( IS_SKIP( h->mb.i_type ) )
1363                 i_skip++;
1364             else
1365             {
1366                 if( h->sh.i_type != SLICE_TYPE_I )
1367                 {
1368                     bs_write_ue( &h->out.bs, i_skip );  /* skip run */
1369                     i_skip = 0;
1370                 }
1371                 x264_macroblock_write_cavlc( h, &h->out.bs );
1372             }
1373         }
1374
1375         int total_bits = bs_pos(&h->out.bs) + x264_cabac_pos(&h->cabac);
1376         int mb_size = total_bits - mb_spos;
1377
1378         /* We'll just re-encode this last macroblock if we go over the max slice size. */
1379         if( total_bits - starting_bits > slice_max_size && !h->mb.b_reencode_mb )
1380         {
1381             if( mb_xy != h->sh.i_first_mb )
1382             {
1383                 if( h->param.b_cabac )
1384                 {
1385                     memcpy( &h->cabac, &cabac_bak, offsetof(x264_cabac_t, f8_bits_encoded) );
1386                     h->cabac.p[-1] = cabac_prevbyte_bak;
1387                 }
1388                 else
1389                 {
1390                     h->out.bs = bs_bak;
1391                     i_skip = i_skip_bak;
1392                 }
1393                 h->mb.b_reencode_mb = 1;
1394                 h->sh.i_last_mb = mb_xy-1;
1395                 break;
1396             }
1397             else
1398             {
1399                 h->sh.i_last_mb = mb_xy;
1400                 h->mb.b_reencode_mb = 0;
1401             }
1402         }
1403         else
1404             h->mb.b_reencode_mb = 0;
1405
1406 #if VISUALIZE
1407         if( h->param.b_visualize )
1408             x264_visualize_mb( h );
1409 #endif
1410
1411         /* save cache */
1412         x264_macroblock_cache_save( h );
1413
1414         /* accumulate mb stats */
1415         h->stat.frame.i_mb_count[h->mb.i_type]++;
1416         if( !IS_SKIP(h->mb.i_type) && !IS_INTRA(h->mb.i_type) && !IS_DIRECT(h->mb.i_type) )
1417         {
1418             if( h->mb.i_partition != D_8x8 )
1419                 h->stat.frame.i_mb_partition[h->mb.i_partition] += 4;
1420             else
1421                 for( i = 0; i < 4; i++ )
1422                     h->stat.frame.i_mb_partition[h->mb.i_sub_partition[i]] ++;
1423             if( h->param.i_frame_reference > 1 )
1424                 for( i_list = 0; i_list <= (h->sh.i_type == SLICE_TYPE_B); i_list++ )
1425                     for( i = 0; i < 4; i++ )
1426                     {
1427                         i_ref = h->mb.cache.ref[i_list][ x264_scan8[4*i] ];
1428                         if( i_ref >= 0 )
1429                             h->stat.frame.i_mb_count_ref[i_list][i_ref] ++;
1430                     }
1431         }
1432         if( h->mb.i_cbp_luma || h->mb.i_cbp_chroma )
1433         {
1434             int cbpsum = (h->mb.i_cbp_luma&1) + ((h->mb.i_cbp_luma>>1)&1)
1435                        + ((h->mb.i_cbp_luma>>2)&1) + (h->mb.i_cbp_luma>>3);
1436             int b_intra = IS_INTRA(h->mb.i_type);
1437             h->stat.frame.i_mb_cbp[!b_intra + 0] += cbpsum;
1438             h->stat.frame.i_mb_cbp[!b_intra + 2] += h->mb.i_cbp_chroma >= 1;
1439             h->stat.frame.i_mb_cbp[!b_intra + 4] += h->mb.i_cbp_chroma == 2;
1440         }
1441         if( h->mb.i_cbp_luma && !IS_INTRA(h->mb.i_type) )
1442         {
1443             h->stat.frame.i_mb_count_8x8dct[0] ++;
1444             h->stat.frame.i_mb_count_8x8dct[1] += h->mb.b_transform_8x8;
1445         }
1446
1447         x264_ratecontrol_mb( h, mb_size );
1448
1449         if( h->sh.b_mbaff )
1450         {
1451             i_mb_x += i_mb_y & 1;
1452             i_mb_y ^= i_mb_x < h->sps->i_mb_width;
1453         }
1454         else
1455             i_mb_x++;
1456         if( i_mb_x == h->sps->i_mb_width )
1457         {
1458             i_mb_y++;
1459             i_mb_x = 0;
1460         }
1461     }
1462
1463     if( h->param.b_cabac )
1464     {
1465         x264_cabac_encode_flush( h, &h->cabac );
1466         h->out.bs.p = h->cabac.p;
1467     }
1468     else
1469     {
1470         if( i_skip > 0 )
1471             bs_write_ue( &h->out.bs, i_skip );  /* last skip run */
1472         /* rbsp_slice_trailing_bits */
1473         bs_rbsp_trailing( &h->out.bs );
1474         bs_flush( &h->out.bs );
1475     }
1476     if( x264_nal_end( h ) )
1477         return -1;
1478
1479     if( h->sh.i_last_mb == h->mb.i_mb_count-1 )
1480     {
1481         h->stat.frame.i_misc_bits = bs_pos( &h->out.bs )
1482                                   + (h->out.i_nal*NALU_OVERHEAD * 8)
1483                                   - h->stat.frame.i_tex_bits
1484                                   - h->stat.frame.i_mv_bits;
1485         x264_fdec_filter_row( h, h->sps->i_mb_height );
1486     }
1487
1488     return 0;
1489 }
1490
1491 static void x264_thread_sync_context( x264_t *dst, x264_t *src )
1492 {
1493     x264_frame_t **f;
1494     if( dst == src )
1495         return;
1496
1497     // reference counting
1498     for( f = src->frames.reference; *f; f++ )
1499         (*f)->i_reference_count++;
1500     for( f = dst->frames.reference; *f; f++ )
1501         x264_frame_push_unused( src, *f );
1502     src->fdec->i_reference_count++;
1503     x264_frame_push_unused( src, dst->fdec );
1504
1505     // copy everything except the per-thread pointers and the constants.
1506     memcpy( &dst->i_frame, &src->i_frame, offsetof(x264_t, mb.type) - offsetof(x264_t, i_frame) );
1507     dst->param = src->param;
1508     dst->stat = src->stat;
1509 }
1510
1511 static void x264_thread_sync_stat( x264_t *dst, x264_t *src )
1512 {
1513     if( dst == src )
1514         return;
1515     memcpy( &dst->stat.i_frame_count, &src->stat.i_frame_count, sizeof(dst->stat) - sizeof(dst->stat.frame) );
1516 }
1517
1518 static void *x264_slices_write( x264_t *h )
1519 {
1520     int i_frame_size = 0;
1521     int i_slice_num = 0;
1522     if( h->param.i_sync_lookahead )
1523         x264_lower_thread_priority( 10 );
1524
1525 #ifdef HAVE_MMX
1526     /* Misalign mask has to be set separately for each thread. */
1527     if( h->param.cpu&X264_CPU_SSE_MISALIGN )
1528         x264_cpu_mask_misalign_sse();
1529 #endif
1530
1531 #if VISUALIZE
1532     if( h->param.b_visualize )
1533         if( x264_visualize_init( h ) )
1534             return (void *)-1;
1535 #endif
1536
1537     /* init stats */
1538     memset( &h->stat.frame, 0, sizeof(h->stat.frame) );
1539     h->mb.b_reencode_mb = 0;
1540     while( h->sh.i_first_mb < h->mb.i_mb_count )
1541     {
1542         h->sh.i_last_mb = h->mb.i_mb_count - 1;
1543         if( h->param.i_slice_max_mbs )
1544             h->sh.i_last_mb = h->sh.i_first_mb + h->param.i_slice_max_mbs - 1;
1545         else if( h->param.i_slice_count )
1546         {
1547             x264_emms();
1548             i_slice_num++;
1549             double height = h->sps->i_mb_height >> h->param.b_interlaced;
1550             int width = h->sps->i_mb_width << h->param.b_interlaced;
1551             h->sh.i_last_mb = (int)(height * i_slice_num / h->param.i_slice_count + 0.5) * width - 1;
1552         }
1553         h->sh.i_last_mb = X264_MIN( h->sh.i_last_mb, h->mb.i_mb_count - 1 );
1554         if( x264_stack_align( x264_slice_write, h ) )
1555             return (void *)-1;
1556         h->sh.i_first_mb = h->sh.i_last_mb + 1;
1557         i_frame_size += h->out.nal[h->out.i_nal-1].i_payload + NALU_OVERHEAD;
1558     }
1559
1560 #if VISUALIZE
1561     if( h->param.b_visualize )
1562     {
1563         x264_visualize_show( h );
1564         x264_visualize_close( h );
1565     }
1566 #endif
1567
1568     h->out.i_frame_size = i_frame_size;
1569     return (void *)0;
1570 }
1571
1572 /****************************************************************************
1573  * x264_encoder_encode:
1574  *  XXX: i_poc   : is the poc of the current given picture
1575  *       i_frame : is the number of the frame being coded
1576  *  ex:  type frame poc
1577  *       I      0   2*0
1578  *       P      1   2*3
1579  *       B      2   2*1
1580  *       B      3   2*2
1581  *       P      4   2*6
1582  *       B      5   2*4
1583  *       B      6   2*5
1584  ****************************************************************************/
1585 int     x264_encoder_encode( x264_t *h,
1586                              x264_nal_t **pp_nal, int *pi_nal,
1587                              x264_picture_t *pic_in,
1588                              x264_picture_t *pic_out )
1589 {
1590     x264_t *thread_current, *thread_prev, *thread_oldest;
1591     int     i_nal_type;
1592     int     i_nal_ref_idc;
1593
1594     int   i_global_qp;
1595
1596     if( h->param.i_threads > 1)
1597     {
1598         int i = ++h->i_thread_phase;
1599         int t = h->param.i_threads;
1600         thread_current = h->thread[ i%t ];
1601         thread_prev    = h->thread[ (i-1)%t ];
1602         thread_oldest  = h->thread[ (i+1)%t ];
1603         x264_thread_sync_context( thread_current, thread_prev );
1604         x264_thread_sync_ratecontrol( thread_current, thread_prev, thread_oldest );
1605         h = thread_current;
1606 //      fprintf(stderr, "current: %p  prev: %p  oldest: %p \n", thread_current, thread_prev, thread_oldest);
1607     }
1608     else
1609     {
1610         thread_current =
1611         thread_oldest  = h;
1612     }
1613
1614     // ok to call this before encoding any frames, since the initial values of fdec have b_kept_as_ref=0
1615     if( x264_reference_update( h ) )
1616         return -1;
1617     h->fdec->i_lines_completed = -1;
1618
1619     /* no data out */
1620     *pi_nal = 0;
1621     *pp_nal = NULL;
1622
1623     /* ------------------- Setup new frame from picture -------------------- */
1624     if( pic_in != NULL )
1625     {
1626         /* 1: Copy the picture to a frame and move it to a buffer */
1627         x264_frame_t *fenc = x264_frame_pop_unused( h, 0 );
1628         if( !fenc )
1629             return -1;
1630
1631         if( x264_frame_copy_picture( h, fenc, pic_in ) < 0 )
1632             return -1;
1633
1634         if( h->param.i_width != 16 * h->sps->i_mb_width ||
1635             h->param.i_height != 16 * h->sps->i_mb_height )
1636             x264_frame_expand_border_mod16( h, fenc );
1637
1638         fenc->i_frame = h->frames.i_input++;
1639
1640         if( h->frames.b_have_lowres )
1641             x264_frame_init_lowres( h, fenc );
1642
1643         if( h->param.rc.b_mb_tree && h->param.rc.b_stat_read )
1644         {
1645             if( x264_macroblock_tree_read( h, fenc ) )
1646                 return -1;
1647         }
1648         else if( h->param.rc.i_aq_mode )
1649             x264_adaptive_quant_frame( h, fenc );
1650
1651         /* 2: Place the frame into the queue for its slice type decision */
1652         x264_lookahead_put_frame( h, fenc );
1653
1654         if( h->frames.i_input <= h->frames.i_delay + 1 - h->param.i_threads )
1655         {
1656             /* Nothing yet to encode, waiting for filling of buffers */
1657             pic_out->i_type = X264_TYPE_AUTO;
1658             return 0;
1659         }
1660     }
1661     else
1662     {
1663         /* signal kills for lookahead thread */
1664         h->lookahead->b_exit_thread = 1;
1665         x264_pthread_cond_broadcast( &h->lookahead->ifbuf.cv_fill );
1666     }
1667
1668     /* 3: The picture is analyzed in the lookahead */
1669     if( !h->frames.current[0] )
1670         x264_lookahead_get_frames( h );
1671
1672     if( !h->frames.current[0] && x264_lookahead_is_empty( h ) )
1673         return x264_encoder_frame_end( thread_oldest, thread_current, pp_nal, pi_nal, pic_out );
1674
1675     /* ------------------- Get frame to be encoded ------------------------- */
1676     /* 4: get picture to encode */
1677     h->fenc = x264_frame_shift( h->frames.current );
1678     if( h->fenc->param )
1679     {
1680         x264_encoder_reconfig( h, h->fenc->param );
1681         if( h->fenc->param->param_free )
1682             h->fenc->param->param_free( h->fenc->param );
1683     }
1684
1685     if( h->fenc->i_type == X264_TYPE_IDR )
1686     {
1687         h->frames.i_last_idr = h->fenc->i_frame;
1688         h->i_frame_num = 0;
1689     }
1690
1691     /* ------------------- Setup frame context ----------------------------- */
1692     /* 5: Init data dependent of frame type */
1693     if( h->fenc->i_type == X264_TYPE_IDR )
1694     {
1695         /* reset ref pictures */
1696         x264_reference_reset( h );
1697
1698         i_nal_type    = NAL_SLICE_IDR;
1699         i_nal_ref_idc = NAL_PRIORITY_HIGHEST;
1700         h->sh.i_type = SLICE_TYPE_I;
1701     }
1702     else if( h->fenc->i_type == X264_TYPE_I )
1703     {
1704         i_nal_type    = NAL_SLICE;
1705         i_nal_ref_idc = NAL_PRIORITY_HIGH; /* Not completely true but for now it is (as all I/P are kept as ref)*/
1706         h->sh.i_type = SLICE_TYPE_I;
1707     }
1708     else if( h->fenc->i_type == X264_TYPE_P )
1709     {
1710         i_nal_type    = NAL_SLICE;
1711         i_nal_ref_idc = NAL_PRIORITY_HIGH; /* Not completely true but for now it is (as all I/P are kept as ref)*/
1712         h->sh.i_type = SLICE_TYPE_P;
1713     }
1714     else if( h->fenc->i_type == X264_TYPE_BREF )
1715     {
1716         i_nal_type    = NAL_SLICE;
1717         i_nal_ref_idc = NAL_PRIORITY_HIGH; /* maybe add MMCO to forget it? -> low */
1718         h->sh.i_type = SLICE_TYPE_B;
1719     }
1720     else    /* B frame */
1721     {
1722         i_nal_type    = NAL_SLICE;
1723         i_nal_ref_idc = NAL_PRIORITY_DISPOSABLE;
1724         h->sh.i_type = SLICE_TYPE_B;
1725     }
1726
1727     h->fdec->i_poc =
1728     h->fenc->i_poc = 2 * (h->fenc->i_frame - h->frames.i_last_idr);
1729     h->fdec->i_type = h->fenc->i_type;
1730     h->fdec->i_frame = h->fenc->i_frame;
1731     h->fenc->b_kept_as_ref =
1732     h->fdec->b_kept_as_ref = i_nal_ref_idc != NAL_PRIORITY_DISPOSABLE && h->param.i_keyint_max > 1;
1733
1734
1735
1736     /* ------------------- Init                ----------------------------- */
1737     /* build ref list 0/1 */
1738     x264_reference_build_list( h, h->fdec->i_poc );
1739
1740     /* Init the rate control */
1741     x264_ratecontrol_start( h, h->fenc->i_qpplus1 );
1742     i_global_qp = x264_ratecontrol_qp( h );
1743
1744     pic_out->i_qpplus1 =
1745     h->fdec->i_qpplus1 = i_global_qp + 1;
1746
1747     if( h->sh.i_type == SLICE_TYPE_B )
1748         x264_macroblock_bipred_init( h );
1749
1750     /* ------------------------ Create slice header  ----------------------- */
1751     x264_slice_init( h, i_nal_type, i_global_qp );
1752
1753     if( i_nal_ref_idc != NAL_PRIORITY_DISPOSABLE )
1754         h->i_frame_num++;
1755
1756     /* ---------------------- Write the bitstream -------------------------- */
1757     /* Init bitstream context */
1758     h->out.i_nal = 0;
1759     bs_init( &h->out.bs, h->out.p_bitstream, h->out.i_bitstream );
1760
1761     if(h->param.b_aud){
1762         int pic_type;
1763
1764         if(h->sh.i_type == SLICE_TYPE_I)
1765             pic_type = 0;
1766         else if(h->sh.i_type == SLICE_TYPE_P)
1767             pic_type = 1;
1768         else if(h->sh.i_type == SLICE_TYPE_B)
1769             pic_type = 2;
1770         else
1771             pic_type = 7;
1772
1773         x264_nal_start(h, NAL_AUD, NAL_PRIORITY_DISPOSABLE);
1774         bs_write(&h->out.bs, 3, pic_type);
1775         bs_rbsp_trailing(&h->out.bs);
1776         if( x264_nal_end( h ) )
1777             return -1;
1778     }
1779
1780     h->i_nal_type = i_nal_type;
1781     h->i_nal_ref_idc = i_nal_ref_idc;
1782
1783     /* Write SPS and PPS */
1784     if( i_nal_type == NAL_SLICE_IDR && h->param.b_repeat_headers )
1785     {
1786         if( h->fenc->i_frame == 0 )
1787         {
1788             /* identify ourself */
1789             x264_nal_start( h, NAL_SEI, NAL_PRIORITY_DISPOSABLE );
1790             if( x264_sei_version_write( h, &h->out.bs ) )
1791                 return -1;
1792             if( x264_nal_end( h ) )
1793                 return -1;
1794         }
1795
1796         /* generate sequence parameters */
1797         x264_nal_start( h, NAL_SPS, NAL_PRIORITY_HIGHEST );
1798         x264_sps_write( &h->out.bs, h->sps );
1799         if( x264_nal_end( h ) )
1800             return -1;
1801
1802         /* generate picture parameters */
1803         x264_nal_start( h, NAL_PPS, NAL_PRIORITY_HIGHEST );
1804         x264_pps_write( &h->out.bs, h->pps );
1805         if( x264_nal_end( h ) )
1806             return -1;
1807     }
1808
1809     /* Write frame */
1810     if( h->param.i_threads > 1 )
1811     {
1812         if( x264_pthread_create( &h->thread_handle, NULL, (void*)x264_slices_write, h ) )
1813             return -1;
1814         h->b_thread_active = 1;
1815     }
1816     else
1817         if( (intptr_t)x264_slices_write( h ) )
1818             return -1;
1819
1820     return x264_encoder_frame_end( thread_oldest, thread_current, pp_nal, pi_nal, pic_out );
1821 }
1822
1823 static int x264_encoder_frame_end( x264_t *h, x264_t *thread_current,
1824                                    x264_nal_t **pp_nal, int *pi_nal,
1825                                    x264_picture_t *pic_out )
1826 {
1827     int i, i_list;
1828     char psz_message[80];
1829
1830     if( h->b_thread_active )
1831     {
1832         void *ret = NULL;
1833         x264_pthread_join( h->thread_handle, &ret );
1834         if( (intptr_t)ret )
1835             return (intptr_t)ret;
1836         h->b_thread_active = 0;
1837     }
1838     if( !h->out.i_nal )
1839     {
1840         pic_out->i_type = X264_TYPE_AUTO;
1841         return 0;
1842     }
1843
1844     x264_frame_push_unused( thread_current, h->fenc );
1845
1846     /* End bitstream, set output  */
1847     *pi_nal = h->out.i_nal;
1848     *pp_nal = h->out.nal;
1849     h->out.i_nal = 0;
1850
1851     /* Set output picture properties */
1852     if( h->sh.i_type == SLICE_TYPE_I )
1853         pic_out->i_type = h->i_nal_type == NAL_SLICE_IDR ? X264_TYPE_IDR : X264_TYPE_I;
1854     else if( h->sh.i_type == SLICE_TYPE_P )
1855         pic_out->i_type = X264_TYPE_P;
1856     else
1857         pic_out->i_type = X264_TYPE_B;
1858     pic_out->i_pts = h->fenc->i_pts;
1859
1860     pic_out->img.i_plane = h->fdec->i_plane;
1861     for(i = 0; i < 3; i++)
1862     {
1863         pic_out->img.i_stride[i] = h->fdec->i_stride[i];
1864         pic_out->img.plane[i] = h->fdec->plane[i];
1865     }
1866
1867     /* ---------------------- Update encoder state ------------------------- */
1868
1869     /* update rc */
1870     x264_emms();
1871     if( x264_ratecontrol_end( h, h->out.i_frame_size * 8 ) < 0 )
1872         return -1;
1873
1874     /* restore CPU state (before using float again) */
1875     x264_emms();
1876
1877     x264_noise_reduction_update( thread_current );
1878
1879     /* ---------------------- Compute/Print statistics --------------------- */
1880     x264_thread_sync_stat( h, h->thread[0] );
1881
1882     /* Slice stat */
1883     h->stat.i_frame_count[h->sh.i_type]++;
1884     h->stat.i_frame_size[h->sh.i_type] += h->out.i_frame_size + h->out.i_nal*NALU_OVERHEAD;
1885     h->stat.f_frame_qp[h->sh.i_type] += h->fdec->f_qp_avg_aq;
1886
1887     for( i = 0; i < X264_MBTYPE_MAX; i++ )
1888         h->stat.i_mb_count[h->sh.i_type][i] += h->stat.frame.i_mb_count[i];
1889     for( i = 0; i < X264_PARTTYPE_MAX; i++ )
1890         h->stat.i_mb_partition[h->sh.i_type][i] += h->stat.frame.i_mb_partition[i];
1891     for( i = 0; i < 2; i++ )
1892         h->stat.i_mb_count_8x8dct[i] += h->stat.frame.i_mb_count_8x8dct[i];
1893     for( i = 0; i < 6; i++ )
1894         h->stat.i_mb_cbp[i] += h->stat.frame.i_mb_cbp[i];
1895     if( h->sh.i_type != SLICE_TYPE_I )
1896         for( i_list = 0; i_list < 2; i_list++ )
1897             for( i = 0; i < 32; i++ )
1898                 h->stat.i_mb_count_ref[h->sh.i_type][i_list][i] += h->stat.frame.i_mb_count_ref[i_list][i];
1899     if( h->sh.i_type == SLICE_TYPE_P )
1900         h->stat.i_consecutive_bframes[h->fdec->i_frame - h->fref0[0]->i_frame - 1]++;
1901     if( h->sh.i_type == SLICE_TYPE_B )
1902     {
1903         h->stat.i_direct_frames[ h->sh.b_direct_spatial_mv_pred ] ++;
1904         if( h->mb.b_direct_auto_write )
1905         {
1906             //FIXME somewhat arbitrary time constants
1907             if( h->stat.i_direct_score[0] + h->stat.i_direct_score[1] > h->mb.i_mb_count )
1908             {
1909                 for( i = 0; i < 2; i++ )
1910                     h->stat.i_direct_score[i] = h->stat.i_direct_score[i] * 9/10;
1911             }
1912             for( i = 0; i < 2; i++ )
1913                 h->stat.i_direct_score[i] += h->stat.frame.i_direct_score[i];
1914         }
1915     }
1916
1917     psz_message[0] = '\0';
1918     if( h->param.analyse.b_psnr )
1919     {
1920         int64_t ssd[3] = {
1921             h->stat.frame.i_ssd[0],
1922             h->stat.frame.i_ssd[1],
1923             h->stat.frame.i_ssd[2],
1924         };
1925
1926         h->stat.i_ssd_global[h->sh.i_type] += ssd[0] + ssd[1] + ssd[2];
1927         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 );
1928         h->stat.f_psnr_mean_y[h->sh.i_type] += x264_psnr( ssd[0], h->param.i_width * h->param.i_height );
1929         h->stat.f_psnr_mean_u[h->sh.i_type] += x264_psnr( ssd[1], h->param.i_width * h->param.i_height / 4 );
1930         h->stat.f_psnr_mean_v[h->sh.i_type] += x264_psnr( ssd[2], h->param.i_width * h->param.i_height / 4 );
1931
1932         snprintf( psz_message, 80, " PSNR Y:%5.2f U:%5.2f V:%5.2f",
1933                   x264_psnr( ssd[0], h->param.i_width * h->param.i_height ),
1934                   x264_psnr( ssd[1], h->param.i_width * h->param.i_height / 4),
1935                   x264_psnr( ssd[2], h->param.i_width * h->param.i_height / 4) );
1936     }
1937
1938     if( h->param.analyse.b_ssim )
1939     {
1940         double ssim_y = h->stat.frame.f_ssim
1941                       / (((h->param.i_width-6)>>2) * ((h->param.i_height-6)>>2));
1942         h->stat.f_ssim_mean_y[h->sh.i_type] += ssim_y;
1943         snprintf( psz_message + strlen(psz_message), 80 - strlen(psz_message),
1944                   " SSIM Y:%.5f", ssim_y );
1945     }
1946     psz_message[79] = '\0';
1947
1948     x264_log( h, X264_LOG_DEBUG,
1949                   "frame=%4d QP=%.2f NAL=%d Slice:%c Poc:%-3d I:%-4d P:%-4d SKIP:%-4d size=%d bytes%s\n",
1950               h->i_frame,
1951               h->fdec->f_qp_avg_aq,
1952               h->i_nal_ref_idc,
1953               h->sh.i_type == SLICE_TYPE_I ? 'I' : (h->sh.i_type == SLICE_TYPE_P ? 'P' : 'B' ),
1954               h->fdec->i_poc,
1955               h->stat.frame.i_mb_count_i,
1956               h->stat.frame.i_mb_count_p,
1957               h->stat.frame.i_mb_count_skip,
1958               h->out.i_frame_size,
1959               psz_message );
1960
1961     // keep stats all in one place
1962     x264_thread_sync_stat( h->thread[0], h );
1963     // for the use of the next frame
1964     x264_thread_sync_stat( thread_current, h );
1965
1966 #ifdef DEBUG_MB_TYPE
1967 {
1968     static const char mb_chars[] = { 'i', 'i', 'I', 'C', 'P', '8', 'S',
1969         'D', '<', 'X', 'B', 'X', '>', 'B', 'B', 'B', 'B', '8', 'S' };
1970     int mb_xy;
1971     for( mb_xy = 0; mb_xy < h->sps->i_mb_width * h->sps->i_mb_height; mb_xy++ )
1972     {
1973         if( h->mb.type[mb_xy] < X264_MBTYPE_MAX && h->mb.type[mb_xy] >= 0 )
1974             fprintf( stderr, "%c ", mb_chars[ h->mb.type[mb_xy] ] );
1975         else
1976             fprintf( stderr, "? " );
1977
1978         if( (mb_xy+1) % h->sps->i_mb_width == 0 )
1979             fprintf( stderr, "\n" );
1980     }
1981 }
1982 #endif
1983
1984     if( h->param.psz_dump_yuv )
1985         x264_frame_dump( h );
1986
1987     return 0;
1988 }
1989
1990 static void x264_print_intra( int64_t *i_mb_count, double i_count, int b_print_pcm, char *intra )
1991 {
1992     intra += sprintf( intra, "I16..4%s: %4.1f%% %4.1f%% %4.1f%%",
1993         b_print_pcm ? "..PCM" : "",
1994         i_mb_count[I_16x16]/ i_count,
1995         i_mb_count[I_8x8]  / i_count,
1996         i_mb_count[I_4x4]  / i_count );
1997     if( b_print_pcm )
1998         sprintf( intra, " %4.1f%%", i_mb_count[I_PCM]  / i_count );
1999 }
2000
2001 /****************************************************************************
2002  * x264_encoder_close:
2003  ****************************************************************************/
2004 void    x264_encoder_close  ( x264_t *h )
2005 {
2006     int64_t i_yuv_size = 3 * h->param.i_width * h->param.i_height / 2;
2007     int64_t i_mb_count_size[2][7] = {{0}};
2008     char buf[200];
2009     int i, j, i_list, i_type;
2010     int b_print_pcm = h->stat.i_mb_count[SLICE_TYPE_I][I_PCM]
2011                    || h->stat.i_mb_count[SLICE_TYPE_P][I_PCM]
2012                    || h->stat.i_mb_count[SLICE_TYPE_B][I_PCM];
2013
2014     x264_lookahead_delete( h );
2015
2016     for( i=0; i<h->param.i_threads; i++ )
2017     {
2018         // don't strictly have to wait for the other threads, but it's simpler than canceling them
2019         if( h->thread[i]->b_thread_active )
2020         {
2021             x264_pthread_join( h->thread[i]->thread_handle, NULL );
2022             assert( h->thread[i]->fenc->i_reference_count == 1 );
2023             x264_frame_delete( h->thread[i]->fenc );
2024         }
2025     }
2026
2027     /* Slices used and PSNR */
2028     for( i=0; i<5; i++ )
2029     {
2030         static const int slice_order[] = { SLICE_TYPE_I, SLICE_TYPE_SI, SLICE_TYPE_P, SLICE_TYPE_SP, SLICE_TYPE_B };
2031         static const char *slice_name[] = { "P", "B", "I", "SP", "SI" };
2032         int i_slice = slice_order[i];
2033
2034         if( h->stat.i_frame_count[i_slice] > 0 )
2035         {
2036             const int i_count = h->stat.i_frame_count[i_slice];
2037             if( h->param.analyse.b_psnr )
2038             {
2039                 x264_log( h, X264_LOG_INFO,
2040                           "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",
2041                           slice_name[i_slice],
2042                           i_count,
2043                           h->stat.f_frame_qp[i_slice] / i_count,
2044                           (double)h->stat.i_frame_size[i_slice] / i_count,
2045                           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,
2046                           h->stat.f_psnr_average[i_slice] / i_count,
2047                           x264_psnr( h->stat.i_ssd_global[i_slice], i_count * i_yuv_size ) );
2048             }
2049             else
2050             {
2051                 x264_log( h, X264_LOG_INFO,
2052                           "frame %s:%-5d Avg QP:%5.2f  size:%6.0f\n",
2053                           slice_name[i_slice],
2054                           i_count,
2055                           h->stat.f_frame_qp[i_slice] / i_count,
2056                           (double)h->stat.i_frame_size[i_slice] / i_count );
2057             }
2058         }
2059     }
2060     if( h->param.i_bframe && h->stat.i_frame_count[SLICE_TYPE_P] )
2061     {
2062         char *p = buf;
2063         int den = 0;
2064         // weight by number of frames (including the P-frame) that are in a sequence of N B-frames
2065         for( i=0; i<=h->param.i_bframe; i++ )
2066             den += (i+1) * h->stat.i_consecutive_bframes[i];
2067         for( i=0; i<=h->param.i_bframe; i++ )
2068             p += sprintf( p, " %4.1f%%", 100. * (i+1) * h->stat.i_consecutive_bframes[i] / den );
2069         x264_log( h, X264_LOG_INFO, "consecutive B-frames:%s\n", buf );
2070     }
2071
2072     for( i_type = 0; i_type < 2; i_type++ )
2073         for( i = 0; i < X264_PARTTYPE_MAX; i++ )
2074         {
2075             if( i == D_DIRECT_8x8 ) continue; /* direct is counted as its own type */
2076             i_mb_count_size[i_type][x264_mb_partition_pixel_table[i]] += h->stat.i_mb_partition[i_type][i];
2077         }
2078
2079     /* MB types used */
2080     if( h->stat.i_frame_count[SLICE_TYPE_I] > 0 )
2081     {
2082         int64_t *i_mb_count = h->stat.i_mb_count[SLICE_TYPE_I];
2083         double i_count = h->stat.i_frame_count[SLICE_TYPE_I] * h->mb.i_mb_count / 100.0;
2084         x264_print_intra( i_mb_count, i_count, b_print_pcm, buf );
2085         x264_log( h, X264_LOG_INFO, "mb I  %s\n", buf );
2086     }
2087     if( h->stat.i_frame_count[SLICE_TYPE_P] > 0 )
2088     {
2089         int64_t *i_mb_count = h->stat.i_mb_count[SLICE_TYPE_P];
2090         double i_count = h->stat.i_frame_count[SLICE_TYPE_P] * h->mb.i_mb_count / 100.0;
2091         int64_t *i_mb_size = i_mb_count_size[SLICE_TYPE_P];
2092         x264_print_intra( i_mb_count, i_count, b_print_pcm, buf );
2093         x264_log( h, X264_LOG_INFO,
2094                   "mb P  %s  P16..4: %4.1f%% %4.1f%% %4.1f%% %4.1f%% %4.1f%%    skip:%4.1f%%\n",
2095                   buf,
2096                   i_mb_size[PIXEL_16x16] / (i_count*4),
2097                   (i_mb_size[PIXEL_16x8] + i_mb_size[PIXEL_8x16]) / (i_count*4),
2098                   i_mb_size[PIXEL_8x8] / (i_count*4),
2099                   (i_mb_size[PIXEL_8x4] + i_mb_size[PIXEL_4x8]) / (i_count*4),
2100                   i_mb_size[PIXEL_4x4] / (i_count*4),
2101                   i_mb_count[P_SKIP] / i_count );
2102     }
2103     if( h->stat.i_frame_count[SLICE_TYPE_B] > 0 )
2104     {
2105         int64_t *i_mb_count = h->stat.i_mb_count[SLICE_TYPE_B];
2106         double i_count = h->stat.i_frame_count[SLICE_TYPE_B] * h->mb.i_mb_count / 100.0;
2107         double i_mb_list_count;
2108         int64_t *i_mb_size = i_mb_count_size[SLICE_TYPE_B];
2109         int64_t list_count[3] = {0}; /* 0 == L0, 1 == L1, 2 == BI */
2110         x264_print_intra( i_mb_count, i_count, b_print_pcm, buf );
2111         for( i = 0; i < X264_PARTTYPE_MAX; i++ )
2112             for( j = 0; j < 2; j++ )
2113             {
2114                 int l0 = x264_mb_type_list_table[i][0][j];
2115                 int l1 = x264_mb_type_list_table[i][1][j];
2116                 if( l0 || l1 )
2117                     list_count[l1+l0*l1] += h->stat.i_mb_count[SLICE_TYPE_B][i] * 2;
2118             }
2119         list_count[0] += h->stat.i_mb_partition[SLICE_TYPE_B][D_L0_8x8];
2120         list_count[1] += h->stat.i_mb_partition[SLICE_TYPE_B][D_L1_8x8];
2121         list_count[2] += h->stat.i_mb_partition[SLICE_TYPE_B][D_BI_8x8];
2122         i_mb_count[B_DIRECT] += (h->stat.i_mb_partition[SLICE_TYPE_B][D_DIRECT_8x8]+2)/4;
2123         i_mb_list_count = (list_count[0] + list_count[1] + list_count[2]) / 100.0;
2124         x264_log( h, X264_LOG_INFO,
2125                   "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",
2126                   buf,
2127                   i_mb_size[PIXEL_16x16] / (i_count*4),
2128                   (i_mb_size[PIXEL_16x8] + i_mb_size[PIXEL_8x16]) / (i_count*4),
2129                   i_mb_size[PIXEL_8x8] / (i_count*4),
2130                   i_mb_count[B_DIRECT] / i_count,
2131                   i_mb_count[B_SKIP]   / i_count,
2132                   list_count[0] / i_mb_list_count,
2133                   list_count[1] / i_mb_list_count,
2134                   list_count[2] / i_mb_list_count );
2135     }
2136
2137     x264_ratecontrol_summary( h );
2138
2139     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 )
2140     {
2141 #define SUM3(p) (p[SLICE_TYPE_I] + p[SLICE_TYPE_P] + p[SLICE_TYPE_B])
2142 #define SUM3b(p,o) (p[SLICE_TYPE_I][o] + p[SLICE_TYPE_P][o] + p[SLICE_TYPE_B][o])
2143         int64_t i_i8x8 = SUM3b( h->stat.i_mb_count, I_8x8 );
2144         int64_t i_intra = i_i8x8 + SUM3b( h->stat.i_mb_count, I_4x4 )
2145                                  + SUM3b( h->stat.i_mb_count, I_16x16 );
2146         int64_t i_all_intra = i_intra + SUM3b( h->stat.i_mb_count, I_PCM);
2147         const int i_count = h->stat.i_frame_count[SLICE_TYPE_I] +
2148                             h->stat.i_frame_count[SLICE_TYPE_P] +
2149                             h->stat.i_frame_count[SLICE_TYPE_B];
2150         int64_t i_mb_count = i_count * h->mb.i_mb_count;
2151         float fps = (float) h->param.i_fps_num / h->param.i_fps_den;
2152         float f_bitrate = fps * SUM3(h->stat.i_frame_size) / i_count / 125;
2153
2154         if( h->pps->b_transform_8x8_mode )
2155         {
2156             x264_log( h, X264_LOG_INFO, "8x8 transform  intra:%.1f%%  inter:%.1f%%\n",
2157                       100. * i_i8x8 / i_intra,
2158                       100. * h->stat.i_mb_count_8x8dct[1] / h->stat.i_mb_count_8x8dct[0] );
2159         }
2160
2161         if( h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO
2162             && h->stat.i_frame_count[SLICE_TYPE_B] )
2163         {
2164             x264_log( h, X264_LOG_INFO, "direct mvs  spatial:%.1f%%  temporal:%.1f%%\n",
2165                       h->stat.i_direct_frames[1] * 100. / h->stat.i_frame_count[SLICE_TYPE_B],
2166                       h->stat.i_direct_frames[0] * 100. / h->stat.i_frame_count[SLICE_TYPE_B] );
2167         }
2168
2169         x264_log( h, X264_LOG_INFO, "coded y,uvDC,uvAC intra:%.1f%% %.1f%% %.1f%% inter:%.1f%% %.1f%% %.1f%%\n",
2170                   h->stat.i_mb_cbp[0] * 100.0 / (i_all_intra*4),
2171                   h->stat.i_mb_cbp[2] * 100.0 / (i_all_intra  ),
2172                   h->stat.i_mb_cbp[4] * 100.0 / (i_all_intra  ),
2173                   h->stat.i_mb_cbp[1] * 100.0 / ((i_mb_count - i_all_intra)*4),
2174                   h->stat.i_mb_cbp[3] * 100.0 / ((i_mb_count - i_all_intra)  ),
2175                   h->stat.i_mb_cbp[5] * 100.0 / ((i_mb_count - i_all_intra)) );
2176
2177         for( i_list = 0; i_list < 2; i_list++ )
2178         {
2179             int i_slice;
2180             for( i_slice = 0; i_slice < 2; i_slice++ )
2181             {
2182                 char *p = buf;
2183                 int64_t i_den = 0;
2184                 int i_max = 0;
2185                 for( i = 0; i < 32; i++ )
2186                     if( h->stat.i_mb_count_ref[i_slice][i_list][i] )
2187                     {
2188                         i_den += h->stat.i_mb_count_ref[i_slice][i_list][i];
2189                         i_max = i;
2190                     }
2191                 if( i_max == 0 )
2192                     continue;
2193                 for( i = 0; i <= i_max; i++ )
2194                     p += sprintf( p, " %4.1f%%", 100. * h->stat.i_mb_count_ref[i_slice][i_list][i] / i_den );
2195                 x264_log( h, X264_LOG_INFO, "ref %c L%d %s\n", "PB"[i_slice], i_list, buf );
2196             }
2197         }
2198
2199         if( h->param.analyse.b_ssim )
2200         {
2201             x264_log( h, X264_LOG_INFO,
2202                       "SSIM Mean Y:%.7f\n",
2203                       SUM3( h->stat.f_ssim_mean_y ) / i_count );
2204         }
2205         if( h->param.analyse.b_psnr )
2206         {
2207             x264_log( h, X264_LOG_INFO,
2208                       "PSNR Mean Y:%6.3f U:%6.3f V:%6.3f Avg:%6.3f Global:%6.3f kb/s:%.2f\n",
2209                       SUM3( h->stat.f_psnr_mean_y ) / i_count,
2210                       SUM3( h->stat.f_psnr_mean_u ) / i_count,
2211                       SUM3( h->stat.f_psnr_mean_v ) / i_count,
2212                       SUM3( h->stat.f_psnr_average ) / i_count,
2213                       x264_psnr( SUM3( h->stat.i_ssd_global ), i_count * i_yuv_size ),
2214                       f_bitrate );
2215         }
2216         else
2217             x264_log( h, X264_LOG_INFO, "kb/s:%.1f\n", f_bitrate );
2218     }
2219
2220     /* rc */
2221     x264_ratecontrol_delete( h );
2222
2223     /* param */
2224     if( h->param.rc.psz_stat_out )
2225         free( h->param.rc.psz_stat_out );
2226     if( h->param.rc.psz_stat_in )
2227         free( h->param.rc.psz_stat_in );
2228
2229     x264_cqm_delete( h );
2230
2231     x264_analyse_free_costs( h );
2232
2233     if( h->param.i_threads > 1)
2234         h = h->thread[ h->i_thread_phase % h->param.i_threads ];
2235
2236     /* frames */
2237     x264_frame_delete_list( h->frames.unused[0] );
2238     x264_frame_delete_list( h->frames.unused[1] );
2239     x264_frame_delete_list( h->frames.current );
2240
2241     h = h->thread[0];
2242
2243     for( i = h->param.i_threads - 1; i >= 0; i-- )
2244     {
2245         x264_frame_t **frame;
2246
2247         for( frame = h->thread[i]->frames.reference; *frame; frame++ )
2248         {
2249             assert( (*frame)->i_reference_count > 0 );
2250             (*frame)->i_reference_count--;
2251             if( (*frame)->i_reference_count == 0 )
2252                 x264_frame_delete( *frame );
2253         }
2254         frame = &h->thread[i]->fdec;
2255         assert( (*frame)->i_reference_count > 0 );
2256         (*frame)->i_reference_count--;
2257         if( (*frame)->i_reference_count == 0 )
2258             x264_frame_delete( *frame );
2259
2260         x264_macroblock_cache_end( h->thread[i] );
2261         x264_free( h->thread[i]->out.p_bitstream );
2262         x264_free( h->thread[i]->out.nal);
2263         x264_free( h->thread[i] );
2264     }
2265 }
2266
2267 /****************************************************************************
2268  * x264_encoder_delayed_frames:
2269  ****************************************************************************/
2270 int x264_encoder_delayed_frames( x264_t *h )
2271 {
2272     int delayed_frames = 0;
2273     int i;
2274     for( i=0; i<h->param.i_threads; i++ )
2275         delayed_frames += h->thread[i]->b_thread_active;
2276     h = h->thread[ h->i_thread_phase % h->param.i_threads ];
2277     for( i=0; h->frames.current[i]; i++ )
2278         delayed_frames++;
2279     delayed_frames += x264_synch_frame_list_get_size( &h->lookahead->ifbuf );
2280     delayed_frames += x264_synch_frame_list_get_size( &h->lookahead->next );
2281     delayed_frames += x264_synch_frame_list_get_size( &h->lookahead->ofbuf );
2282     return delayed_frames;
2283 }