]> git.sesse.net Git - x264/blob - common/common.c
Avoid some unnecessary allocations with B-frames/CABAC off
[x264] / common / common.c
1 /*****************************************************************************
2  * common.c: misc common functions
3  *****************************************************************************
4  * Copyright (C) 2003-2011 x264 project
5  *
6  * Authors: Loren Merritt <lorenm@u.washington.edu>
7  *          Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
22  *
23  * This program is also available under a commercial proprietary license.
24  * For more information, contact us at licensing@x264.com.
25  *****************************************************************************/
26
27 #include "common.h"
28
29 #include <stdarg.h>
30 #include <ctype.h>
31
32 #if HAVE_MALLOC_H
33 #include <malloc.h>
34 #endif
35
36 const int x264_bit_depth = BIT_DEPTH;
37
38 static void x264_log_default( void *, int, const char *, va_list );
39
40 /****************************************************************************
41  * x264_param_default:
42  ****************************************************************************/
43 void x264_param_default( x264_param_t *param )
44 {
45     /* */
46     memset( param, 0, sizeof( x264_param_t ) );
47
48     /* CPU autodetect */
49     param->cpu = x264_cpu_detect();
50     param->i_threads = X264_THREADS_AUTO;
51     param->b_deterministic = 1;
52     param->i_sync_lookahead = X264_SYNC_LOOKAHEAD_AUTO;
53
54     /* Video properties */
55     param->i_csp           = X264_CSP_I420;
56     param->i_width         = 0;
57     param->i_height        = 0;
58     param->vui.i_sar_width = 0;
59     param->vui.i_sar_height= 0;
60     param->vui.i_overscan  = 0;  /* undef */
61     param->vui.i_vidformat = 5;  /* undef */
62     param->vui.b_fullrange = -1; /* default depends on input */
63     param->vui.i_colorprim = 2;  /* undef */
64     param->vui.i_transfer  = 2;  /* undef */
65     param->vui.i_colmatrix = -1; /* default depends on input */
66     param->vui.i_chroma_loc= 0;  /* left center */
67     param->i_fps_num       = 25;
68     param->i_fps_den       = 1;
69     param->i_level_idc     = -1;
70     param->i_slice_max_size = 0;
71     param->i_slice_max_mbs = 0;
72     param->i_slice_count = 0;
73
74     /* Encoder parameters */
75     param->i_frame_reference = 3;
76     param->i_keyint_max = 250;
77     param->i_keyint_min = X264_KEYINT_MIN_AUTO;
78     param->i_bframe = 3;
79     param->i_scenecut_threshold = 40;
80     param->i_bframe_adaptive = X264_B_ADAPT_FAST;
81     param->i_bframe_bias = 0;
82     param->i_bframe_pyramid = X264_B_PYRAMID_NORMAL;
83     param->b_interlaced = 0;
84     param->b_constrained_intra = 0;
85
86     param->b_deblocking_filter = 1;
87     param->i_deblocking_filter_alphac0 = 0;
88     param->i_deblocking_filter_beta = 0;
89
90     param->b_cabac = 1;
91     param->i_cabac_init_idc = 0;
92
93     param->rc.i_rc_method = X264_RC_CRF;
94     param->rc.i_bitrate = 0;
95     param->rc.f_rate_tolerance = 1.0;
96     param->rc.i_vbv_max_bitrate = 0;
97     param->rc.i_vbv_buffer_size = 0;
98     param->rc.f_vbv_buffer_init = 0.9;
99     param->rc.i_qp_constant = 23 + QP_BD_OFFSET;
100     param->rc.f_rf_constant = 23;
101     param->rc.i_qp_min = 0;
102     param->rc.i_qp_max = QP_MAX;
103     param->rc.i_qp_step = 4;
104     param->rc.f_ip_factor = 1.4;
105     param->rc.f_pb_factor = 1.3;
106     param->rc.i_aq_mode = X264_AQ_VARIANCE;
107     param->rc.f_aq_strength = 1.0;
108     param->rc.i_lookahead = 40;
109
110     param->rc.b_stat_write = 0;
111     param->rc.psz_stat_out = "x264_2pass.log";
112     param->rc.b_stat_read = 0;
113     param->rc.psz_stat_in = "x264_2pass.log";
114     param->rc.f_qcompress = 0.6;
115     param->rc.f_qblur = 0.5;
116     param->rc.f_complexity_blur = 20;
117     param->rc.i_zones = 0;
118     param->rc.b_mb_tree = 1;
119
120     /* Log */
121     param->pf_log = x264_log_default;
122     param->p_log_private = NULL;
123     param->i_log_level = X264_LOG_INFO;
124
125     /* */
126     param->analyse.intra = X264_ANALYSE_I4x4 | X264_ANALYSE_I8x8;
127     param->analyse.inter = X264_ANALYSE_I4x4 | X264_ANALYSE_I8x8
128                          | X264_ANALYSE_PSUB16x16 | X264_ANALYSE_BSUB16x16;
129     param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
130     param->analyse.i_me_method = X264_ME_HEX;
131     param->analyse.f_psy_rd = 1.0;
132     param->analyse.b_psy = 1;
133     param->analyse.f_psy_trellis = 0;
134     param->analyse.i_me_range = 16;
135     param->analyse.i_subpel_refine = 7;
136     param->analyse.b_mixed_references = 1;
137     param->analyse.b_chroma_me = 1;
138     param->analyse.i_mv_range_thread = -1;
139     param->analyse.i_mv_range = -1; // set from level_idc
140     param->analyse.i_chroma_qp_offset = 0;
141     param->analyse.b_fast_pskip = 1;
142     param->analyse.b_weighted_bipred = 1;
143     param->analyse.i_weighted_pred = X264_WEIGHTP_SMART;
144     param->analyse.b_dct_decimate = 1;
145     param->analyse.b_transform_8x8 = 1;
146     param->analyse.i_trellis = 1;
147     param->analyse.i_luma_deadzone[0] = 21;
148     param->analyse.i_luma_deadzone[1] = 11;
149     param->analyse.b_psnr = 0;
150     param->analyse.b_ssim = 0;
151
152     param->i_cqm_preset = X264_CQM_FLAT;
153     memset( param->cqm_4iy, 16, sizeof( param->cqm_4iy ) );
154     memset( param->cqm_4py, 16, sizeof( param->cqm_4py ) );
155     memset( param->cqm_4ic, 16, sizeof( param->cqm_4ic ) );
156     memset( param->cqm_4pc, 16, sizeof( param->cqm_4pc ) );
157     memset( param->cqm_8iy, 16, sizeof( param->cqm_8iy ) );
158     memset( param->cqm_8py, 16, sizeof( param->cqm_8py ) );
159     memset( param->cqm_8ic, 16, sizeof( param->cqm_8ic ) );
160     memset( param->cqm_8pc, 16, sizeof( param->cqm_8pc ) );
161
162     param->b_repeat_headers = 1;
163     param->b_annexb = 1;
164     param->b_aud = 0;
165     param->b_vfr_input = 1;
166     param->i_nal_hrd = X264_NAL_HRD_NONE;
167     param->b_tff = 1;
168     param->b_pic_struct = 0;
169     param->b_fake_interlaced = 0;
170     param->i_frame_packing = -1;
171 }
172
173 static int x264_param_apply_preset( x264_param_t *param, const char *preset )
174 {
175     char *end;
176     int i = strtol( preset, &end, 10 );
177     if( *end == 0 && i >= 0 && i < sizeof(x264_preset_names)/sizeof(*x264_preset_names)-1 )
178         preset = x264_preset_names[i];
179
180     if( !strcasecmp( preset, "ultrafast" ) )
181     {
182         param->i_frame_reference = 1;
183         param->i_scenecut_threshold = 0;
184         param->b_deblocking_filter = 0;
185         param->b_cabac = 0;
186         param->i_bframe = 0;
187         param->analyse.intra = 0;
188         param->analyse.inter = 0;
189         param->analyse.b_transform_8x8 = 0;
190         param->analyse.i_me_method = X264_ME_DIA;
191         param->analyse.i_subpel_refine = 0;
192         param->rc.i_aq_mode = 0;
193         param->analyse.b_mixed_references = 0;
194         param->analyse.i_trellis = 0;
195         param->i_bframe_adaptive = X264_B_ADAPT_NONE;
196         param->rc.b_mb_tree = 0;
197         param->analyse.i_weighted_pred = X264_WEIGHTP_NONE;
198         param->analyse.b_weighted_bipred = 0;
199         param->rc.i_lookahead = 0;
200     }
201     else if( !strcasecmp( preset, "superfast" ) )
202     {
203         param->analyse.inter = X264_ANALYSE_I8x8|X264_ANALYSE_I4x4;
204         param->analyse.i_me_method = X264_ME_DIA;
205         param->analyse.i_subpel_refine = 1;
206         param->i_frame_reference = 1;
207         param->analyse.b_mixed_references = 0;
208         param->analyse.i_trellis = 0;
209         param->rc.b_mb_tree = 0;
210         param->analyse.i_weighted_pred = X264_WEIGHTP_SIMPLE;
211         param->rc.i_lookahead = 0;
212     }
213     else if( !strcasecmp( preset, "veryfast" ) )
214     {
215         param->analyse.i_me_method = X264_ME_HEX;
216         param->analyse.i_subpel_refine = 2;
217         param->i_frame_reference = 1;
218         param->analyse.b_mixed_references = 0;
219         param->analyse.i_trellis = 0;
220         param->analyse.i_weighted_pred = X264_WEIGHTP_SIMPLE;
221         param->rc.i_lookahead = 10;
222     }
223     else if( !strcasecmp( preset, "faster" ) )
224     {
225         param->analyse.b_mixed_references = 0;
226         param->i_frame_reference = 2;
227         param->analyse.i_subpel_refine = 4;
228         param->analyse.i_weighted_pred = X264_WEIGHTP_SIMPLE;
229         param->rc.i_lookahead = 20;
230     }
231     else if( !strcasecmp( preset, "fast" ) )
232     {
233         param->i_frame_reference = 2;
234         param->analyse.i_subpel_refine = 6;
235         param->analyse.i_weighted_pred = X264_WEIGHTP_SIMPLE;
236         param->rc.i_lookahead = 30;
237     }
238     else if( !strcasecmp( preset, "medium" ) )
239     {
240         /* Default is medium */
241     }
242     else if( !strcasecmp( preset, "slow" ) )
243     {
244         param->analyse.i_me_method = X264_ME_UMH;
245         param->analyse.i_subpel_refine = 8;
246         param->i_frame_reference = 5;
247         param->i_bframe_adaptive = X264_B_ADAPT_TRELLIS;
248         param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
249         param->rc.i_lookahead = 50;
250     }
251     else if( !strcasecmp( preset, "slower" ) )
252     {
253         param->analyse.i_me_method = X264_ME_UMH;
254         param->analyse.i_subpel_refine = 9;
255         param->i_frame_reference = 8;
256         param->i_bframe_adaptive = X264_B_ADAPT_TRELLIS;
257         param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
258         param->analyse.inter |= X264_ANALYSE_PSUB8x8;
259         param->analyse.i_trellis = 2;
260         param->rc.i_lookahead = 60;
261     }
262     else if( !strcasecmp( preset, "veryslow" ) )
263     {
264         param->analyse.i_me_method = X264_ME_UMH;
265         param->analyse.i_subpel_refine = 10;
266         param->analyse.i_me_range = 24;
267         param->i_frame_reference = 16;
268         param->i_bframe_adaptive = X264_B_ADAPT_TRELLIS;
269         param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
270         param->analyse.inter |= X264_ANALYSE_PSUB8x8;
271         param->analyse.i_trellis = 2;
272         param->i_bframe = 8;
273         param->rc.i_lookahead = 60;
274     }
275     else if( !strcasecmp( preset, "placebo" ) )
276     {
277         param->analyse.i_me_method = X264_ME_TESA;
278         param->analyse.i_subpel_refine = 11;
279         param->analyse.i_me_range = 24;
280         param->i_frame_reference = 16;
281         param->i_bframe_adaptive = X264_B_ADAPT_TRELLIS;
282         param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
283         param->analyse.inter |= X264_ANALYSE_PSUB8x8;
284         param->analyse.b_fast_pskip = 0;
285         param->analyse.i_trellis = 2;
286         param->i_bframe = 16;
287         param->rc.i_lookahead = 60;
288     }
289     else
290     {
291         x264_log( NULL, X264_LOG_ERROR, "invalid preset '%s'\n", preset );
292         return -1;
293     }
294     return 0;
295 }
296
297 static int x264_param_apply_tune( x264_param_t *param, const char *tune )
298 {
299     char *tmp = x264_malloc( strlen( tune ) + 1 );
300     if( !tmp )
301         return -1;
302     tmp = strcpy( tmp, tune );
303     char *s = strtok( tmp, ",./-+" );
304     int psy_tuning_used = 0;
305     while( s )
306     {
307         if( !strncasecmp( s, "film", 4 ) )
308         {
309             if( psy_tuning_used++ ) goto psy_failure;
310             param->i_deblocking_filter_alphac0 = -1;
311             param->i_deblocking_filter_beta = -1;
312             param->analyse.f_psy_trellis = 0.15;
313         }
314         else if( !strncasecmp( s, "animation", 9 ) )
315         {
316             if( psy_tuning_used++ ) goto psy_failure;
317             param->i_frame_reference = param->i_frame_reference > 1 ? param->i_frame_reference*2 : 1;
318             param->i_deblocking_filter_alphac0 = 1;
319             param->i_deblocking_filter_beta = 1;
320             param->analyse.f_psy_rd = 0.4;
321             param->rc.f_aq_strength = 0.6;
322             param->i_bframe += 2;
323         }
324         else if( !strncasecmp( s, "grain", 5 ) )
325         {
326             if( psy_tuning_used++ ) goto psy_failure;
327             param->i_deblocking_filter_alphac0 = -2;
328             param->i_deblocking_filter_beta = -2;
329             param->analyse.f_psy_trellis = 0.25;
330             param->analyse.b_dct_decimate = 0;
331             param->rc.f_pb_factor = 1.1;
332             param->rc.f_ip_factor = 1.1;
333             param->rc.f_aq_strength = 0.5;
334             param->analyse.i_luma_deadzone[0] = 6;
335             param->analyse.i_luma_deadzone[1] = 6;
336             param->rc.f_qcompress = 0.8;
337         }
338         else if( !strncasecmp( s, "stillimage", 5 ) )
339         {
340             if( psy_tuning_used++ ) goto psy_failure;
341             param->i_deblocking_filter_alphac0 = -3;
342             param->i_deblocking_filter_beta = -3;
343             param->analyse.f_psy_rd = 2.0;
344             param->analyse.f_psy_trellis = 0.7;
345             param->rc.f_aq_strength = 1.2;
346         }
347         else if( !strncasecmp( s, "psnr", 4 ) )
348         {
349             if( psy_tuning_used++ ) goto psy_failure;
350             param->rc.i_aq_mode = X264_AQ_NONE;
351             param->analyse.b_psy = 0;
352         }
353         else if( !strncasecmp( s, "ssim", 4 ) )
354         {
355             if( psy_tuning_used++ ) goto psy_failure;
356             param->rc.i_aq_mode = X264_AQ_AUTOVARIANCE;
357             param->analyse.b_psy = 0;
358         }
359         else if( !strncasecmp( s, "fastdecode", 10 ) )
360         {
361             param->b_deblocking_filter = 0;
362             param->b_cabac = 0;
363             param->analyse.b_weighted_bipred = 0;
364             param->analyse.i_weighted_pred = X264_WEIGHTP_NONE;
365         }
366         else if( !strncasecmp( s, "zerolatency", 11 ) )
367         {
368             param->rc.i_lookahead = 0;
369             param->i_sync_lookahead = 0;
370             param->i_bframe = 0;
371             param->b_sliced_threads = 1;
372             param->b_vfr_input = 0;
373             param->rc.b_mb_tree = 0;
374         }
375         else if( !strncasecmp( s, "touhou", 6 ) )
376         {
377             if( psy_tuning_used++ ) goto psy_failure;
378             param->i_frame_reference = param->i_frame_reference > 1 ? param->i_frame_reference*2 : 1;
379             param->i_deblocking_filter_alphac0 = -1;
380             param->i_deblocking_filter_beta = -1;
381             param->analyse.f_psy_trellis = 0.2;
382             param->rc.f_aq_strength = 1.3;
383             if( param->analyse.inter & X264_ANALYSE_PSUB16x16 )
384                 param->analyse.inter |= X264_ANALYSE_PSUB8x8;
385         }
386         else
387         {
388             x264_log( NULL, X264_LOG_ERROR, "invalid tune '%s'\n", s );
389             x264_free( tmp );
390             return -1;
391         }
392         if( 0 )
393         {
394     psy_failure:
395             x264_log( NULL, X264_LOG_WARNING, "only 1 psy tuning can be used: ignoring tune %s\n", s );
396         }
397         s = strtok( NULL, ",./-+" );
398     }
399     x264_free( tmp );
400     return 0;
401 }
402
403 int x264_param_default_preset( x264_param_t *param, const char *preset, const char *tune )
404 {
405     x264_param_default( param );
406
407     if( preset && x264_param_apply_preset( param, preset ) < 0 )
408         return -1;
409     if( tune && x264_param_apply_tune( param, tune ) < 0 )
410         return -1;
411     return 0;
412 }
413
414 void x264_param_apply_fastfirstpass( x264_param_t *param )
415 {
416     /* Set faster options in case of turbo firstpass. */
417     if( param->rc.b_stat_write && !param->rc.b_stat_read )
418     {
419         param->i_frame_reference = 1;
420         param->analyse.b_transform_8x8 = 0;
421         param->analyse.inter = 0;
422         param->analyse.i_me_method = X264_ME_DIA;
423         param->analyse.i_subpel_refine = X264_MIN( 2, param->analyse.i_subpel_refine );
424         param->analyse.i_trellis = 0;
425         param->analyse.b_fast_pskip = 1;
426     }
427 }
428
429 int x264_param_apply_profile( x264_param_t *param, const char *profile )
430 {
431     if( !profile )
432         return 0;
433
434 #if BIT_DEPTH > 8
435     if( !strcasecmp( profile, "baseline" ) || !strcasecmp( profile, "main" ) ||
436         !strcasecmp( profile, "high" ) )
437     {
438         x264_log( NULL, X264_LOG_ERROR, "%s profile doesn't support a bit depth of %d.\n", profile, BIT_DEPTH );
439         return -1;
440     }
441 #endif
442
443     if( !strcasecmp( profile, "baseline" ) )
444     {
445         param->analyse.b_transform_8x8 = 0;
446         param->b_cabac = 0;
447         param->i_cqm_preset = X264_CQM_FLAT;
448         param->psz_cqm_file = NULL;
449         param->i_bframe = 0;
450         param->analyse.i_weighted_pred = X264_WEIGHTP_NONE;
451         if( param->b_interlaced )
452         {
453             x264_log( NULL, X264_LOG_ERROR, "baseline profile doesn't support interlacing\n" );
454             return -1;
455         }
456         if( param->b_fake_interlaced )
457         {
458             x264_log( NULL, X264_LOG_ERROR, "baseline profile doesn't support fake interlacing\n" );
459             return -1;
460         }
461     }
462     else if( !strcasecmp( profile, "main" ) )
463     {
464         param->analyse.b_transform_8x8 = 0;
465         param->i_cqm_preset = X264_CQM_FLAT;
466         param->psz_cqm_file = NULL;
467     }
468     else if( !strcasecmp( profile, "high" ) || !strcasecmp( profile, "high10" ) )
469     {
470         /* Default */
471     }
472     else
473     {
474         x264_log( NULL, X264_LOG_ERROR, "invalid profile: %s\n", profile );
475         return -1;
476     }
477     if( (param->rc.i_rc_method == X264_RC_CQP && param->rc.i_qp_constant <= 0) ||
478         (param->rc.i_rc_method == X264_RC_CRF && (int)(param->rc.f_rf_constant + QP_BD_OFFSET) <= 0) )
479     {
480         x264_log( NULL, X264_LOG_ERROR, "%s profile doesn't support lossless\n", profile );
481         return -1;
482     }
483     return 0;
484 }
485
486 static int parse_enum( const char *arg, const char * const *names, int *dst )
487 {
488     for( int i = 0; names[i]; i++ )
489         if( !strcmp( arg, names[i] ) )
490         {
491             *dst = i;
492             return 0;
493         }
494     return -1;
495 }
496
497 static int parse_cqm( const char *str, uint8_t *cqm, int length )
498 {
499     int i = 0;
500     do {
501         int coef;
502         if( !sscanf( str, "%d", &coef ) || coef < 1 || coef > 255 )
503             return -1;
504         cqm[i++] = coef;
505     } while( i < length && (str = strchr( str, ',' )) && str++ );
506     return (i == length) ? 0 : -1;
507 }
508
509 static int x264_atobool( const char *str, int *b_error )
510 {
511     if( !strcmp(str, "1") ||
512         !strcmp(str, "true") ||
513         !strcmp(str, "yes") )
514         return 1;
515     if( !strcmp(str, "0") ||
516         !strcmp(str, "false") ||
517         !strcmp(str, "no") )
518         return 0;
519     *b_error = 1;
520     return 0;
521 }
522
523 static int x264_atoi( const char *str, int *b_error )
524 {
525     char *end;
526     int v = strtol( str, &end, 0 );
527     if( end == str || *end != '\0' )
528         *b_error = 1;
529     return v;
530 }
531
532 static double x264_atof( const char *str, int *b_error )
533 {
534     char *end;
535     double v = strtod( str, &end );
536     if( end == str || *end != '\0' )
537         *b_error = 1;
538     return v;
539 }
540
541 #define atobool(str) ( name_was_bool = 1, x264_atobool( str, &b_error ) )
542 #define atoi(str) x264_atoi( str, &b_error )
543 #define atof(str) x264_atof( str, &b_error )
544
545 int x264_param_parse( x264_param_t *p, const char *name, const char *value )
546 {
547     char *name_buf = NULL;
548     int b_error = 0;
549     int name_was_bool;
550     int value_was_null = !value;
551     int i;
552
553     if( !name )
554         return X264_PARAM_BAD_NAME;
555     if( !value )
556         value = "true";
557
558     if( value[0] == '=' )
559         value++;
560
561     if( strchr( name, '_' ) ) // s/_/-/g
562     {
563         char *c;
564         name_buf = strdup(name);
565         while( (c = strchr( name_buf, '_' )) )
566             *c = '-';
567         name = name_buf;
568     }
569
570     if( (!strncmp( name, "no-", 3 ) && (i = 3)) ||
571         (!strncmp( name, "no", 2 ) && (i = 2)) )
572     {
573         name += i;
574         value = atobool(value) ? "false" : "true";
575     }
576     name_was_bool = 0;
577
578 #define OPT(STR) else if( !strcmp( name, STR ) )
579 #define OPT2(STR0, STR1) else if( !strcmp( name, STR0 ) || !strcmp( name, STR1 ) )
580     if(0);
581     OPT("asm")
582     {
583         p->cpu = isdigit(value[0]) ? atoi(value) :
584                  !strcmp(value, "auto") || atobool(value) ? x264_cpu_detect() : 0;
585         if( b_error )
586         {
587             char *buf = strdup(value);
588             char *tok, UNUSED *saveptr=NULL, *init;
589             b_error = 0;
590             p->cpu = 0;
591             for( init=buf; (tok=strtok_r(init, ",", &saveptr)); init=NULL )
592             {
593                 for( i=0; x264_cpu_names[i].flags && strcasecmp(tok, x264_cpu_names[i].name); i++ );
594                 p->cpu |= x264_cpu_names[i].flags;
595                 if( !x264_cpu_names[i].flags )
596                     b_error = 1;
597             }
598             free( buf );
599             if( p->cpu & X264_CPU_SSSE3 )
600                 p->cpu |= X264_CPU_SSE2_IS_FAST;
601             if( p->cpu & X264_CPU_SSE4 )
602                 p->cpu |= X264_CPU_SHUFFLE_IS_FAST;
603         }
604     }
605     OPT("threads")
606     {
607         if( !strcmp(value, "auto") )
608             p->i_threads = X264_THREADS_AUTO;
609         else
610             p->i_threads = atoi(value);
611     }
612     OPT("sliced-threads")
613         p->b_sliced_threads = atobool(value);
614     OPT("sync-lookahead")
615     {
616         if( !strcmp(value, "auto") )
617             p->i_sync_lookahead = X264_SYNC_LOOKAHEAD_AUTO;
618         else
619             p->i_sync_lookahead = atoi(value);
620     }
621     OPT2("deterministic", "n-deterministic")
622         p->b_deterministic = atobool(value);
623     OPT2("level", "level-idc")
624     {
625         if( !strcmp(value, "1b") )
626             p->i_level_idc = 9;
627         else if( atof(value) < 6 )
628             p->i_level_idc = (int)(10*atof(value)+.5);
629         else
630             p->i_level_idc = atoi(value);
631     }
632     OPT("bluray-compat")
633         p->b_bluray_compat = atobool(value);
634     OPT("sar")
635     {
636         b_error = ( 2 != sscanf( value, "%d:%d", &p->vui.i_sar_width, &p->vui.i_sar_height ) &&
637                     2 != sscanf( value, "%d/%d", &p->vui.i_sar_width, &p->vui.i_sar_height ) );
638     }
639     OPT("overscan")
640         b_error |= parse_enum( value, x264_overscan_names, &p->vui.i_overscan );
641     OPT("videoformat")
642         b_error |= parse_enum( value, x264_vidformat_names, &p->vui.i_vidformat );
643     OPT("fullrange")
644         b_error |= parse_enum( value, x264_fullrange_names, &p->vui.b_fullrange );
645     OPT("colorprim")
646         b_error |= parse_enum( value, x264_colorprim_names, &p->vui.i_colorprim );
647     OPT("transfer")
648         b_error |= parse_enum( value, x264_transfer_names, &p->vui.i_transfer );
649     OPT("colormatrix")
650         b_error |= parse_enum( value, x264_colmatrix_names, &p->vui.i_colmatrix );
651     OPT("chromaloc")
652     {
653         p->vui.i_chroma_loc = atoi(value);
654         b_error = ( p->vui.i_chroma_loc < 0 || p->vui.i_chroma_loc > 5 );
655     }
656     OPT("fps")
657     {
658         if( sscanf( value, "%u/%u", &p->i_fps_num, &p->i_fps_den ) == 2 )
659             ;
660         else
661         {
662             float fps = atof(value);
663             p->i_fps_num = (int)(fps * 1000 + .5);
664             p->i_fps_den = 1000;
665         }
666     }
667     OPT2("ref", "frameref")
668         p->i_frame_reference = atoi(value);
669     OPT("dpb-size")
670         p->i_dpb_size = atoi(value);
671     OPT("keyint")
672     {
673         if( strstr( value, "infinite" ) )
674             p->i_keyint_max = X264_KEYINT_MAX_INFINITE;
675         else
676             p->i_keyint_max = atoi(value);
677     }
678     OPT2("min-keyint", "keyint-min")
679     {
680         p->i_keyint_min = atoi(value);
681         if( p->i_keyint_max < p->i_keyint_min )
682             p->i_keyint_max = p->i_keyint_min;
683     }
684     OPT("scenecut")
685     {
686         p->i_scenecut_threshold = atobool(value);
687         if( b_error || p->i_scenecut_threshold )
688         {
689             b_error = 0;
690             p->i_scenecut_threshold = atoi(value);
691         }
692     }
693     OPT("intra-refresh")
694         p->b_intra_refresh = atobool(value);
695     OPT("bframes")
696         p->i_bframe = atoi(value);
697     OPT("b-adapt")
698     {
699         p->i_bframe_adaptive = atobool(value);
700         if( b_error )
701         {
702             b_error = 0;
703             p->i_bframe_adaptive = atoi(value);
704         }
705     }
706     OPT("b-bias")
707         p->i_bframe_bias = atoi(value);
708     OPT("b-pyramid")
709     {
710         b_error |= parse_enum( value, x264_b_pyramid_names, &p->i_bframe_pyramid );
711         if( b_error )
712         {
713             b_error = 0;
714             p->i_bframe_pyramid = atoi(value);
715         }
716     }
717     OPT("open-gop")
718         p->b_open_gop = atobool(value);
719     OPT("nf")
720         p->b_deblocking_filter = !atobool(value);
721     OPT2("filter", "deblock")
722     {
723         if( 2 == sscanf( value, "%d:%d", &p->i_deblocking_filter_alphac0, &p->i_deblocking_filter_beta ) ||
724             2 == sscanf( value, "%d,%d", &p->i_deblocking_filter_alphac0, &p->i_deblocking_filter_beta ) )
725         {
726             p->b_deblocking_filter = 1;
727         }
728         else if( sscanf( value, "%d", &p->i_deblocking_filter_alphac0 ) )
729         {
730             p->b_deblocking_filter = 1;
731             p->i_deblocking_filter_beta = p->i_deblocking_filter_alphac0;
732         }
733         else
734             p->b_deblocking_filter = atobool(value);
735     }
736     OPT("slice-max-size")
737         p->i_slice_max_size = atoi(value);
738     OPT("slice-max-mbs")
739         p->i_slice_max_mbs = atoi(value);
740     OPT("slices")
741         p->i_slice_count = atoi(value);
742     OPT("cabac")
743         p->b_cabac = atobool(value);
744     OPT("cabac-idc")
745         p->i_cabac_init_idc = atoi(value);
746     OPT("interlaced")
747         p->b_interlaced = atobool(value);
748     OPT("tff")
749         p->b_interlaced = p->b_tff = atobool(value);
750     OPT("bff")
751     {
752         p->b_interlaced = atobool(value);
753         p->b_tff = !p->b_interlaced;
754     }
755     OPT("constrained-intra")
756         p->b_constrained_intra = atobool(value);
757     OPT("cqm")
758     {
759         if( strstr( value, "flat" ) )
760             p->i_cqm_preset = X264_CQM_FLAT;
761         else if( strstr( value, "jvt" ) )
762             p->i_cqm_preset = X264_CQM_JVT;
763         else
764             p->psz_cqm_file = strdup(value);
765     }
766     OPT("cqmfile")
767         p->psz_cqm_file = strdup(value);
768     OPT("cqm4")
769     {
770         p->i_cqm_preset = X264_CQM_CUSTOM;
771         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
772         b_error |= parse_cqm( value, p->cqm_4py, 16 );
773         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
774         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
775     }
776     OPT("cqm8")
777     {
778         p->i_cqm_preset = X264_CQM_CUSTOM;
779         b_error |= parse_cqm( value, p->cqm_8iy, 64 );
780         b_error |= parse_cqm( value, p->cqm_8py, 64 );
781         b_error |= parse_cqm( value, p->cqm_8ic, 64 );
782         b_error |= parse_cqm( value, p->cqm_8pc, 64 );
783     }
784     OPT("cqm4i")
785     {
786         p->i_cqm_preset = X264_CQM_CUSTOM;
787         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
788         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
789     }
790     OPT("cqm4p")
791     {
792         p->i_cqm_preset = X264_CQM_CUSTOM;
793         b_error |= parse_cqm( value, p->cqm_4py, 16 );
794         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
795     }
796     OPT("cqm4iy")
797     {
798         p->i_cqm_preset = X264_CQM_CUSTOM;
799         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
800     }
801     OPT("cqm4ic")
802     {
803         p->i_cqm_preset = X264_CQM_CUSTOM;
804         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
805     }
806     OPT("cqm4py")
807     {
808         p->i_cqm_preset = X264_CQM_CUSTOM;
809         b_error |= parse_cqm( value, p->cqm_4py, 16 );
810     }
811     OPT("cqm4pc")
812     {
813         p->i_cqm_preset = X264_CQM_CUSTOM;
814         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
815     }
816     OPT("cqm8i")
817     {
818         p->i_cqm_preset = X264_CQM_CUSTOM;
819         b_error |= parse_cqm( value, p->cqm_8iy, 64 );
820         b_error |= parse_cqm( value, p->cqm_8ic, 64 );
821     }
822     OPT("cqm8p")
823     {
824         p->i_cqm_preset = X264_CQM_CUSTOM;
825         b_error |= parse_cqm( value, p->cqm_8py, 64 );
826         b_error |= parse_cqm( value, p->cqm_8pc, 64 );
827     }
828     OPT("log")
829         p->i_log_level = atoi(value);
830 #if HAVE_VISUALIZE
831     OPT("visualize")
832         p->b_visualize = atobool(value);
833 #endif
834     OPT("dump-yuv")
835         p->psz_dump_yuv = strdup(value);
836     OPT2("analyse", "partitions")
837     {
838         p->analyse.inter = 0;
839         if( strstr( value, "none" ) )  p->analyse.inter =  0;
840         if( strstr( value, "all" ) )   p->analyse.inter = ~0;
841
842         if( strstr( value, "i4x4" ) )  p->analyse.inter |= X264_ANALYSE_I4x4;
843         if( strstr( value, "i8x8" ) )  p->analyse.inter |= X264_ANALYSE_I8x8;
844         if( strstr( value, "p8x8" ) )  p->analyse.inter |= X264_ANALYSE_PSUB16x16;
845         if( strstr( value, "p4x4" ) )  p->analyse.inter |= X264_ANALYSE_PSUB8x8;
846         if( strstr( value, "b8x8" ) )  p->analyse.inter |= X264_ANALYSE_BSUB16x16;
847     }
848     OPT("8x8dct")
849         p->analyse.b_transform_8x8 = atobool(value);
850     OPT2("weightb", "weight-b")
851         p->analyse.b_weighted_bipred = atobool(value);
852     OPT("weightp")
853         p->analyse.i_weighted_pred = atoi(value);
854     OPT2("direct", "direct-pred")
855         b_error |= parse_enum( value, x264_direct_pred_names, &p->analyse.i_direct_mv_pred );
856     OPT("chroma-qp-offset")
857         p->analyse.i_chroma_qp_offset = atoi(value);
858     OPT("me")
859         b_error |= parse_enum( value, x264_motion_est_names, &p->analyse.i_me_method );
860     OPT2("merange", "me-range")
861         p->analyse.i_me_range = atoi(value);
862     OPT2("mvrange", "mv-range")
863         p->analyse.i_mv_range = atoi(value);
864     OPT2("mvrange-thread", "mv-range-thread")
865         p->analyse.i_mv_range_thread = atoi(value);
866     OPT2("subme", "subq")
867         p->analyse.i_subpel_refine = atoi(value);
868     OPT("psy-rd")
869     {
870         if( 2 == sscanf( value, "%f:%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ) ||
871             2 == sscanf( value, "%f,%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ) ||
872             2 == sscanf( value, "%f|%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ))
873         { }
874         else if( sscanf( value, "%f", &p->analyse.f_psy_rd ) )
875         {
876             p->analyse.f_psy_trellis = 0;
877         }
878         else
879         {
880             p->analyse.f_psy_rd = 0;
881             p->analyse.f_psy_trellis = 0;
882         }
883     }
884     OPT("psy")
885         p->analyse.b_psy = atobool(value);
886     OPT("chroma-me")
887         p->analyse.b_chroma_me = atobool(value);
888     OPT("mixed-refs")
889         p->analyse.b_mixed_references = atobool(value);
890     OPT("trellis")
891         p->analyse.i_trellis = atoi(value);
892     OPT("fast-pskip")
893         p->analyse.b_fast_pskip = atobool(value);
894     OPT("dct-decimate")
895         p->analyse.b_dct_decimate = atobool(value);
896     OPT("deadzone-inter")
897         p->analyse.i_luma_deadzone[0] = atoi(value);
898     OPT("deadzone-intra")
899         p->analyse.i_luma_deadzone[1] = atoi(value);
900     OPT("nr")
901         p->analyse.i_noise_reduction = atoi(value);
902     OPT("bitrate")
903     {
904         p->rc.i_bitrate = atoi(value);
905         p->rc.i_rc_method = X264_RC_ABR;
906     }
907     OPT2("qp", "qp_constant")
908     {
909         p->rc.i_qp_constant = atoi(value);
910         p->rc.i_rc_method = X264_RC_CQP;
911     }
912     OPT("crf")
913     {
914         p->rc.f_rf_constant = atof(value);
915         p->rc.i_rc_method = X264_RC_CRF;
916     }
917     OPT("crf-max")
918         p->rc.f_rf_constant_max = atof(value);
919     OPT("rc-lookahead")
920         p->rc.i_lookahead = atoi(value);
921     OPT2("qpmin", "qp-min")
922         p->rc.i_qp_min = atoi(value);
923     OPT2("qpmax", "qp-max")
924         p->rc.i_qp_max = atoi(value);
925     OPT2("qpstep", "qp-step")
926         p->rc.i_qp_step = atoi(value);
927     OPT("ratetol")
928         p->rc.f_rate_tolerance = !strncmp("inf", value, 3) ? 1e9 : atof(value);
929     OPT("vbv-maxrate")
930         p->rc.i_vbv_max_bitrate = atoi(value);
931     OPT("vbv-bufsize")
932         p->rc.i_vbv_buffer_size = atoi(value);
933     OPT("vbv-init")
934         p->rc.f_vbv_buffer_init = atof(value);
935     OPT2("ipratio", "ip-factor")
936         p->rc.f_ip_factor = atof(value);
937     OPT2("pbratio", "pb-factor")
938         p->rc.f_pb_factor = atof(value);
939     OPT("aq-mode")
940         p->rc.i_aq_mode = atoi(value);
941     OPT("aq-strength")
942         p->rc.f_aq_strength = atof(value);
943     OPT("pass")
944     {
945         int pass = x264_clip3( atoi(value), 0, 3 );
946         p->rc.b_stat_write = pass & 1;
947         p->rc.b_stat_read = pass & 2;
948     }
949     OPT("stats")
950     {
951         p->rc.psz_stat_in = strdup(value);
952         p->rc.psz_stat_out = strdup(value);
953     }
954     OPT("qcomp")
955         p->rc.f_qcompress = atof(value);
956     OPT("mbtree")
957         p->rc.b_mb_tree = atobool(value);
958     OPT("qblur")
959         p->rc.f_qblur = atof(value);
960     OPT2("cplxblur", "cplx-blur")
961         p->rc.f_complexity_blur = atof(value);
962     OPT("zones")
963         p->rc.psz_zones = strdup(value);
964     OPT("crop-rect")
965         b_error |= sscanf( value, "%u,%u,%u,%u", &p->crop_rect.i_left, &p->crop_rect.i_top,
966                                                  &p->crop_rect.i_right, &p->crop_rect.i_bottom ) != 4;
967     OPT("psnr")
968         p->analyse.b_psnr = atobool(value);
969     OPT("ssim")
970         p->analyse.b_ssim = atobool(value);
971     OPT("aud")
972         p->b_aud = atobool(value);
973     OPT("sps-id")
974         p->i_sps_id = atoi(value);
975     OPT("global-header")
976         p->b_repeat_headers = !atobool(value);
977     OPT("repeat-headers")
978         p->b_repeat_headers = atobool(value);
979     OPT("annexb")
980         p->b_annexb = atobool(value);
981     OPT("force-cfr")
982         p->b_vfr_input = !atobool(value);
983     OPT("nal-hrd")
984         b_error |= parse_enum( value, x264_nal_hrd_names, &p->i_nal_hrd );
985     OPT("pic-struct")
986         p->b_pic_struct = atobool(value);
987     OPT("fake-interlaced")
988         p->b_fake_interlaced = atobool(value);
989     OPT("frame-packing")
990         p->i_frame_packing = atoi(value);
991     else
992         return X264_PARAM_BAD_NAME;
993 #undef OPT
994 #undef OPT2
995 #undef atobool
996 #undef atoi
997 #undef atof
998
999     if( name_buf )
1000         free( name_buf );
1001
1002     b_error |= value_was_null && !name_was_bool;
1003     return b_error ? X264_PARAM_BAD_VALUE : 0;
1004 }
1005
1006 /****************************************************************************
1007  * x264_log:
1008  ****************************************************************************/
1009 void x264_log( x264_t *h, int i_level, const char *psz_fmt, ... )
1010 {
1011     if( !h || i_level <= h->param.i_log_level )
1012     {
1013         va_list arg;
1014         va_start( arg, psz_fmt );
1015         if( !h )
1016             x264_log_default( NULL, i_level, psz_fmt, arg );
1017         else
1018             h->param.pf_log( h->param.p_log_private, i_level, psz_fmt, arg );
1019         va_end( arg );
1020     }
1021 }
1022
1023 static void x264_log_default( void *p_unused, int i_level, const char *psz_fmt, va_list arg )
1024 {
1025     char *psz_prefix;
1026     switch( i_level )
1027     {
1028         case X264_LOG_ERROR:
1029             psz_prefix = "error";
1030             break;
1031         case X264_LOG_WARNING:
1032             psz_prefix = "warning";
1033             break;
1034         case X264_LOG_INFO:
1035             psz_prefix = "info";
1036             break;
1037         case X264_LOG_DEBUG:
1038             psz_prefix = "debug";
1039             break;
1040         default:
1041             psz_prefix = "unknown";
1042             break;
1043     }
1044     fprintf( stderr, "x264 [%s]: ", psz_prefix );
1045     vfprintf( stderr, psz_fmt, arg );
1046 }
1047
1048 /****************************************************************************
1049  * x264_picture_init:
1050  ****************************************************************************/
1051 void x264_picture_init( x264_picture_t *pic )
1052 {
1053     memset( pic, 0, sizeof( x264_picture_t ) );
1054     pic->i_type = X264_TYPE_AUTO;
1055     pic->i_qpplus1 = X264_QP_AUTO;
1056     pic->i_pic_struct = PIC_STRUCT_AUTO;
1057 }
1058
1059 /****************************************************************************
1060  * x264_picture_alloc:
1061  ****************************************************************************/
1062 int x264_picture_alloc( x264_picture_t *pic, int i_csp, int i_width, int i_height )
1063 {
1064     typedef struct
1065     {
1066         int planes;
1067         int width_fix8[3];
1068         int height_fix8[3];
1069     } x264_csp_tab_t;
1070
1071     static const x264_csp_tab_t x264_csp_tab[] =
1072     {
1073         [X264_CSP_I420] = { 3, { 256*1, 256/2, 256/2 }, { 256*1, 256/2, 256/2 } },
1074         [X264_CSP_YV12] = { 3, { 256*1, 256/2, 256/2 }, { 256*1, 256/2, 256/2 } },
1075         [X264_CSP_NV12] = { 2, { 256*1, 256*1 },        { 256*1, 256/2 },       },
1076         [X264_CSP_I444] = { 3, { 256*1, 256*1, 256*1 }, { 256*1, 256*1, 256*1 } },
1077         [X264_CSP_YV24] = { 3, { 256*1, 256*1, 256*1 }, { 256*1, 256*1, 256*1 } },
1078         [X264_CSP_BGR]  = { 1, { 256*3 },               { 256*1 },              },
1079         [X264_CSP_BGRA] = { 1, { 256*4 },               { 256*1 },              },
1080         [X264_CSP_RGB]  = { 1, { 256*3 },               { 256*1 },              },
1081     };
1082
1083     int csp = i_csp & X264_CSP_MASK;
1084     if( csp <= X264_CSP_NONE || csp >= X264_CSP_MAX )
1085         return -1;
1086     x264_picture_init( pic );
1087     pic->img.i_csp = i_csp;
1088     pic->img.i_plane = x264_csp_tab[csp].planes;
1089     int depth_factor = i_csp & X264_CSP_HIGH_DEPTH ? 2 : 1;
1090     int plane_offset[3] = {0};
1091     int frame_size = 0;
1092     for( int i = 0; i < pic->img.i_plane; i++ )
1093     {
1094         int stride = (((int64_t)i_width * x264_csp_tab[csp].width_fix8[i]) >> 8) * depth_factor;
1095         int plane_size = (((int64_t)i_height * x264_csp_tab[csp].height_fix8[i]) >> 8) * stride;
1096         pic->img.i_stride[i] = stride;
1097         plane_offset[i] = frame_size;
1098         frame_size += plane_size;
1099     }
1100     pic->img.plane[0] = x264_malloc( frame_size );
1101     if( !pic->img.plane[0] )
1102         return -1;
1103     for( int i = 1; i < pic->img.i_plane; i++ )
1104         pic->img.plane[i] = pic->img.plane[0] + plane_offset[i];
1105     return 0;
1106 }
1107
1108 /****************************************************************************
1109  * x264_picture_clean:
1110  ****************************************************************************/
1111 void x264_picture_clean( x264_picture_t *pic )
1112 {
1113     x264_free( pic->img.plane[0] );
1114
1115     /* just to be safe */
1116     memset( pic, 0, sizeof( x264_picture_t ) );
1117 }
1118
1119 /****************************************************************************
1120  * x264_malloc:
1121  ****************************************************************************/
1122 void *x264_malloc( int i_size )
1123 {
1124     uint8_t *align_buf = NULL;
1125 #if SYS_MACOSX || (SYS_WINDOWS && ARCH_X86_64)
1126     /* Mac OS X and Win x64 always returns 16 byte aligned memory */
1127     align_buf = malloc( i_size );
1128 #elif HAVE_MALLOC_H
1129     align_buf = memalign( 16, i_size );
1130 #else
1131     uint8_t *buf = malloc( i_size + 15 + sizeof(void **) );
1132     if( buf )
1133     {
1134         align_buf = buf + 15 + sizeof(void **);
1135         align_buf -= (intptr_t) align_buf & 15;
1136         *( (void **) ( align_buf - sizeof(void **) ) ) = buf;
1137     }
1138 #endif
1139     if( !align_buf )
1140         x264_log( NULL, X264_LOG_ERROR, "malloc of size %d failed\n", i_size );
1141     return align_buf;
1142 }
1143
1144 /****************************************************************************
1145  * x264_free:
1146  ****************************************************************************/
1147 void x264_free( void *p )
1148 {
1149     if( p )
1150     {
1151 #if HAVE_MALLOC_H || SYS_MACOSX || (SYS_WINDOWS && ARCH_X86_64)
1152         free( p );
1153 #else
1154         free( *( ( ( void **) p ) - 1 ) );
1155 #endif
1156     }
1157 }
1158
1159 /****************************************************************************
1160  * x264_reduce_fraction:
1161  ****************************************************************************/
1162 #define REDUCE_FRACTION( name, type )\
1163 void name( type *n, type *d )\
1164 {                   \
1165     type a = *n;    \
1166     type b = *d;    \
1167     type c;         \
1168     if( !a || !b )  \
1169         return;     \
1170     c = a % b;      \
1171     while( c )      \
1172     {               \
1173         a = b;      \
1174         b = c;      \
1175         c = a % b;  \
1176     }               \
1177     *n /= b;        \
1178     *d /= b;        \
1179 }
1180
1181 REDUCE_FRACTION( x264_reduce_fraction  , uint32_t )
1182 REDUCE_FRACTION( x264_reduce_fraction64, uint64_t )
1183
1184 /****************************************************************************
1185  * x264_slurp_file:
1186  ****************************************************************************/
1187 char *x264_slurp_file( const char *filename )
1188 {
1189     int b_error = 0;
1190     size_t i_size;
1191     char *buf;
1192     FILE *fh = fopen( filename, "rb" );
1193     if( !fh )
1194         return NULL;
1195     b_error |= fseek( fh, 0, SEEK_END ) < 0;
1196     b_error |= ( i_size = ftell( fh ) ) <= 0;
1197     b_error |= fseek( fh, 0, SEEK_SET ) < 0;
1198     if( b_error )
1199         goto error;
1200     buf = x264_malloc( i_size+2 );
1201     if( !buf )
1202         goto error;
1203     b_error |= fread( buf, 1, i_size, fh ) != i_size;
1204     if( buf[i_size-1] != '\n' )
1205         buf[i_size++] = '\n';
1206     buf[i_size] = 0;
1207     fclose( fh );
1208     if( b_error )
1209     {
1210         x264_free( buf );
1211         return NULL;
1212     }
1213     return buf;
1214 error:
1215     fclose( fh );
1216     return NULL;
1217 }
1218
1219 /****************************************************************************
1220  * x264_param2string:
1221  ****************************************************************************/
1222 char *x264_param2string( x264_param_t *p, int b_res )
1223 {
1224     int len = 1000;
1225     char *buf, *s;
1226     if( p->rc.psz_zones )
1227         len += strlen(p->rc.psz_zones);
1228     buf = s = x264_malloc( len );
1229     if( !buf )
1230         return NULL;
1231
1232     if( b_res )
1233     {
1234         s += sprintf( s, "%dx%d ", p->i_width, p->i_height );
1235         s += sprintf( s, "fps=%u/%u ", p->i_fps_num, p->i_fps_den );
1236         s += sprintf( s, "timebase=%u/%u ", p->i_timebase_num, p->i_timebase_den );
1237         s += sprintf( s, "bitdepth=%d ", BIT_DEPTH );
1238     }
1239
1240     s += sprintf( s, "cabac=%d", p->b_cabac );
1241     s += sprintf( s, " ref=%d", p->i_frame_reference );
1242     s += sprintf( s, " deblock=%d:%d:%d", p->b_deblocking_filter,
1243                   p->i_deblocking_filter_alphac0, p->i_deblocking_filter_beta );
1244     s += sprintf( s, " analyse=%#x:%#x", p->analyse.intra, p->analyse.inter );
1245     s += sprintf( s, " me=%s", x264_motion_est_names[ p->analyse.i_me_method ] );
1246     s += sprintf( s, " subme=%d", p->analyse.i_subpel_refine );
1247     s += sprintf( s, " psy=%d", p->analyse.b_psy );
1248     if( p->analyse.b_psy )
1249         s += sprintf( s, " psy_rd=%.2f:%.2f", p->analyse.f_psy_rd, p->analyse.f_psy_trellis );
1250     s += sprintf( s, " mixed_ref=%d", p->analyse.b_mixed_references );
1251     s += sprintf( s, " me_range=%d", p->analyse.i_me_range );
1252     s += sprintf( s, " chroma_me=%d", p->analyse.b_chroma_me );
1253     s += sprintf( s, " trellis=%d", p->analyse.i_trellis );
1254     s += sprintf( s, " 8x8dct=%d", p->analyse.b_transform_8x8 );
1255     s += sprintf( s, " cqm=%d", p->i_cqm_preset );
1256     s += sprintf( s, " deadzone=%d,%d", p->analyse.i_luma_deadzone[0], p->analyse.i_luma_deadzone[1] );
1257     s += sprintf( s, " fast_pskip=%d", p->analyse.b_fast_pskip );
1258     s += sprintf( s, " chroma_qp_offset=%d", p->analyse.i_chroma_qp_offset );
1259     s += sprintf( s, " threads=%d", p->i_threads );
1260     s += sprintf( s, " sliced_threads=%d", p->b_sliced_threads );
1261     if( p->i_slice_count )
1262         s += sprintf( s, " slices=%d", p->i_slice_count );
1263     if( p->i_slice_max_size )
1264         s += sprintf( s, " slice_max_size=%d", p->i_slice_max_size );
1265     if( p->i_slice_max_mbs )
1266         s += sprintf( s, " slice_max_mbs=%d", p->i_slice_max_mbs );
1267     s += sprintf( s, " nr=%d", p->analyse.i_noise_reduction );
1268     s += sprintf( s, " decimate=%d", p->analyse.b_dct_decimate );
1269     s += sprintf( s, " interlaced=%s", p->b_interlaced ? p->b_tff ? "tff" : "bff" : p->b_fake_interlaced ? "fake" : "0" );
1270     s += sprintf( s, " bluray_compat=%d", p->b_bluray_compat );
1271
1272     s += sprintf( s, " constrained_intra=%d", p->b_constrained_intra );
1273
1274     s += sprintf( s, " bframes=%d", p->i_bframe );
1275     if( p->i_bframe )
1276     {
1277         s += sprintf( s, " b_pyramid=%d b_adapt=%d b_bias=%d direct=%d weightb=%d open_gop=%d",
1278                       p->i_bframe_pyramid, p->i_bframe_adaptive, p->i_bframe_bias,
1279                       p->analyse.i_direct_mv_pred, p->analyse.b_weighted_bipred, p->b_open_gop );
1280     }
1281     s += sprintf( s, " weightp=%d", p->analyse.i_weighted_pred > 0 ? p->analyse.i_weighted_pred : 0 );
1282
1283     if( p->i_keyint_max == X264_KEYINT_MAX_INFINITE )
1284         s += sprintf( s, " keyint=infinite" );
1285     else
1286         s += sprintf( s, " keyint=%d", p->i_keyint_max );
1287     s += sprintf( s, " keyint_min=%d scenecut=%d intra_refresh=%d",
1288                   p->i_keyint_min, p->i_scenecut_threshold, p->b_intra_refresh );
1289
1290     if( p->rc.b_mb_tree || p->rc.i_vbv_buffer_size )
1291         s += sprintf( s, " rc_lookahead=%d", p->rc.i_lookahead );
1292
1293     s += sprintf( s, " rc=%s mbtree=%d", p->rc.i_rc_method == X264_RC_ABR ?
1294                                ( p->rc.b_stat_read ? "2pass" : p->rc.i_vbv_max_bitrate == p->rc.i_bitrate ? "cbr" : "abr" )
1295                                : p->rc.i_rc_method == X264_RC_CRF ? "crf" : "cqp", p->rc.b_mb_tree );
1296     if( p->rc.i_rc_method == X264_RC_ABR || p->rc.i_rc_method == X264_RC_CRF )
1297     {
1298         if( p->rc.i_rc_method == X264_RC_CRF )
1299             s += sprintf( s, " crf=%.1f", p->rc.f_rf_constant );
1300         else
1301             s += sprintf( s, " bitrate=%d ratetol=%.1f",
1302                           p->rc.i_bitrate, p->rc.f_rate_tolerance );
1303         s += sprintf( s, " qcomp=%.2f qpmin=%d qpmax=%d qpstep=%d",
1304                       p->rc.f_qcompress, p->rc.i_qp_min, p->rc.i_qp_max, p->rc.i_qp_step );
1305         if( p->rc.b_stat_read )
1306             s += sprintf( s, " cplxblur=%.1f qblur=%.1f",
1307                           p->rc.f_complexity_blur, p->rc.f_qblur );
1308         if( p->rc.i_vbv_buffer_size )
1309         {
1310             s += sprintf( s, " vbv_maxrate=%d vbv_bufsize=%d",
1311                           p->rc.i_vbv_max_bitrate, p->rc.i_vbv_buffer_size );
1312             if( p->rc.i_rc_method == X264_RC_CRF )
1313                 s += sprintf( s, " crf_max=%.1f", p->rc.f_rf_constant_max );
1314         }
1315     }
1316     else if( p->rc.i_rc_method == X264_RC_CQP )
1317         s += sprintf( s, " qp=%d", p->rc.i_qp_constant );
1318
1319     if( p->rc.i_vbv_buffer_size )
1320         s += sprintf( s, " nal_hrd=%s", x264_nal_hrd_names[p->i_nal_hrd] );
1321     if( p->crop_rect.i_left | p->crop_rect.i_top | p->crop_rect.i_right | p->crop_rect.i_bottom )
1322         s += sprintf( s, " crop_rect=%u,%u,%u,%u", p->crop_rect.i_left, p->crop_rect.i_top,
1323                                                    p->crop_rect.i_right, p->crop_rect.i_bottom );
1324     if( p->i_frame_packing >= 0 )
1325         s += sprintf( s, " frame-packing=%d", p->i_frame_packing );
1326
1327     if( !(p->rc.i_rc_method == X264_RC_CQP && p->rc.i_qp_constant == 0) )
1328     {
1329         s += sprintf( s, " ip_ratio=%.2f", p->rc.f_ip_factor );
1330         if( p->i_bframe && !p->rc.b_mb_tree )
1331             s += sprintf( s, " pb_ratio=%.2f", p->rc.f_pb_factor );
1332         s += sprintf( s, " aq=%d", p->rc.i_aq_mode );
1333         if( p->rc.i_aq_mode )
1334             s += sprintf( s, ":%.2f", p->rc.f_aq_strength );
1335         if( p->rc.psz_zones )
1336             s += sprintf( s, " zones=%s", p->rc.psz_zones );
1337         else if( p->rc.i_zones )
1338             s += sprintf( s, " zones" );
1339     }
1340
1341     return buf;
1342 }
1343