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