]> git.sesse.net Git - x264/blob - common/common.c
2458f65b1713e6dd13e9552f2187211964d0315e
[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 #ifdef 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 ) );
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             x264_log( NULL, X264_LOG_WARNING, "baseline profile doesn't support fake interlacing\n" );
432     }
433     else if( !strcasecmp( profile, "main" ) )
434     {
435         param->analyse.b_transform_8x8 = 0;
436         param->i_cqm_preset = X264_CQM_FLAT;
437     }
438     else if( !strcasecmp( profile, "high" ) )
439     {
440         /* Default */
441     }
442     else
443     {
444         x264_log( NULL, X264_LOG_ERROR, "invalid profile: %s\n", profile );
445         return -1;
446     }
447     if( (param->rc.i_rc_method == X264_RC_CQP && param->rc.i_qp_constant == 0) ||
448         (param->rc.i_rc_method == X264_RC_CRF && param->rc.f_rf_constant == 0) )
449     {
450         x264_log( NULL, X264_LOG_ERROR, "%s profile doesn't support lossless\n", profile );
451         return -1;
452     }
453     return 0;
454 }
455
456 static int parse_enum( const char *arg, const char * const *names, int *dst )
457 {
458     for( int i = 0; names[i]; i++ )
459         if( !strcmp( arg, names[i] ) )
460         {
461             *dst = i;
462             return 0;
463         }
464     return -1;
465 }
466
467 static int parse_cqm( const char *str, uint8_t *cqm, int length )
468 {
469     int i = 0;
470     do {
471         int coef;
472         if( !sscanf( str, "%d", &coef ) || coef < 1 || coef > 255 )
473             return -1;
474         cqm[i++] = coef;
475     } while( i < length && (str = strchr( str, ',' )) && str++ );
476     return (i == length) ? 0 : -1;
477 }
478
479 static int x264_atobool( const char *str, int *b_error )
480 {
481     if( !strcmp(str, "1") ||
482         !strcmp(str, "true") ||
483         !strcmp(str, "yes") )
484         return 1;
485     if( !strcmp(str, "0") ||
486         !strcmp(str, "false") ||
487         !strcmp(str, "no") )
488         return 0;
489     *b_error = 1;
490     return 0;
491 }
492
493 static int x264_atoi( const char *str, int *b_error )
494 {
495     char *end;
496     int v = strtol( str, &end, 0 );
497     if( end == str || *end != '\0' )
498         *b_error = 1;
499     return v;
500 }
501
502 static double x264_atof( const char *str, int *b_error )
503 {
504     char *end;
505     double v = strtod( str, &end );
506     if( end == str || *end != '\0' )
507         *b_error = 1;
508     return v;
509 }
510
511 #define atobool(str) ( name_was_bool = 1, x264_atobool( str, &b_error ) )
512 #define atoi(str) x264_atoi( str, &b_error )
513 #define atof(str) x264_atof( str, &b_error )
514
515 int x264_param_parse( x264_param_t *p, const char *name, const char *value )
516 {
517     char *name_buf = NULL;
518     int b_error = 0;
519     int name_was_bool;
520     int value_was_null = !value;
521     int i;
522
523     if( !name )
524         return X264_PARAM_BAD_NAME;
525     if( !value )
526         value = "true";
527
528     if( value[0] == '=' )
529         value++;
530
531     if( strchr( name, '_' ) ) // s/_/-/g
532     {
533         char *c;
534         name_buf = strdup(name);
535         while( (c = strchr( name_buf, '_' )) )
536             *c = '-';
537         name = name_buf;
538     }
539
540     if( (!strncmp( name, "no-", 3 ) && (i = 3)) ||
541         (!strncmp( name, "no", 2 ) && (i = 2)) )
542     {
543         name += i;
544         value = atobool(value) ? "false" : "true";
545     }
546     name_was_bool = 0;
547
548 #define OPT(STR) else if( !strcmp( name, STR ) )
549 #define OPT2(STR0, STR1) else if( !strcmp( name, STR0 ) || !strcmp( name, STR1 ) )
550     if(0);
551     OPT("asm")
552     {
553         p->cpu = isdigit(value[0]) ? atoi(value) :
554                  !strcmp(value, "auto") || atobool(value) ? x264_cpu_detect() : 0;
555         if( b_error )
556         {
557             char *buf = strdup(value);
558             char *tok, UNUSED *saveptr=NULL, *init;
559             b_error = 0;
560             p->cpu = 0;
561             for( init=buf; (tok=strtok_r(init, ",", &saveptr)); init=NULL )
562             {
563                 for( i=0; x264_cpu_names[i].flags && strcasecmp(tok, x264_cpu_names[i].name); i++ );
564                 p->cpu |= x264_cpu_names[i].flags;
565                 if( !x264_cpu_names[i].flags )
566                     b_error = 1;
567             }
568             free( buf );
569         }
570     }
571     OPT("threads")
572     {
573         if( !strcmp(value, "auto") )
574             p->i_threads = X264_THREADS_AUTO;
575         else
576             p->i_threads = atoi(value);
577     }
578     OPT("sliced-threads")
579         p->b_sliced_threads = atobool(value);
580     OPT("sync-lookahead")
581     {
582         if( !strcmp(value, "auto") )
583             p->i_sync_lookahead = X264_SYNC_LOOKAHEAD_AUTO;
584         else
585             p->i_sync_lookahead = atoi(value);
586     }
587     OPT2("deterministic", "n-deterministic")
588         p->b_deterministic = atobool(value);
589     OPT2("level", "level-idc")
590     {
591         if( atof(value) < 6 )
592             p->i_level_idc = (int)(10*atof(value)+.5);
593         else
594             p->i_level_idc = atoi(value);
595     }
596     OPT("sar")
597     {
598         b_error = ( 2 != sscanf( value, "%d:%d", &p->vui.i_sar_width, &p->vui.i_sar_height ) &&
599                     2 != sscanf( value, "%d/%d", &p->vui.i_sar_width, &p->vui.i_sar_height ) );
600     }
601     OPT("overscan")
602         b_error |= parse_enum( value, x264_overscan_names, &p->vui.i_overscan );
603     OPT("videoformat")
604         b_error |= parse_enum( value, x264_vidformat_names, &p->vui.i_vidformat );
605     OPT("fullrange")
606         b_error |= parse_enum( value, x264_fullrange_names, &p->vui.b_fullrange );
607     OPT("colorprim")
608         b_error |= parse_enum( value, x264_colorprim_names, &p->vui.i_colorprim );
609     OPT("transfer")
610         b_error |= parse_enum( value, x264_transfer_names, &p->vui.i_transfer );
611     OPT("colormatrix")
612         b_error |= parse_enum( value, x264_colmatrix_names, &p->vui.i_colmatrix );
613     OPT("chromaloc")
614     {
615         p->vui.i_chroma_loc = atoi(value);
616         b_error = ( p->vui.i_chroma_loc < 0 || p->vui.i_chroma_loc > 5 );
617     }
618     OPT("fps")
619     {
620         if( sscanf( value, "%u/%u", &p->i_fps_num, &p->i_fps_den ) == 2 )
621             ;
622         else
623         {
624             float fps = atof(value);
625             p->i_fps_num = (int)(fps * 1000 + .5);
626             p->i_fps_den = 1000;
627         }
628     }
629     OPT2("ref", "frameref")
630         p->i_frame_reference = atoi(value);
631     OPT("keyint")
632     {
633         p->i_keyint_max = atoi(value);
634         if( p->i_keyint_min > p->i_keyint_max )
635             p->i_keyint_min = p->i_keyint_max;
636     }
637     OPT2("min-keyint", "keyint-min")
638     {
639         p->i_keyint_min = atoi(value);
640         if( p->i_keyint_max < p->i_keyint_min )
641             p->i_keyint_max = p->i_keyint_min;
642     }
643     OPT("scenecut")
644     {
645         p->i_scenecut_threshold = atobool(value);
646         if( b_error || p->i_scenecut_threshold )
647         {
648             b_error = 0;
649             p->i_scenecut_threshold = atoi(value);
650         }
651     }
652     OPT("intra-refresh")
653         p->b_intra_refresh = atobool(value);
654     OPT("bframes")
655         p->i_bframe = atoi(value);
656     OPT("b-adapt")
657     {
658         p->i_bframe_adaptive = atobool(value);
659         if( b_error )
660         {
661             b_error = 0;
662             p->i_bframe_adaptive = atoi(value);
663         }
664     }
665     OPT("b-bias")
666         p->i_bframe_bias = atoi(value);
667     OPT("b-pyramid")
668     {
669         b_error |= parse_enum( value, x264_b_pyramid_names, &p->i_bframe_pyramid );
670         if( b_error )
671         {
672             b_error = 0;
673             p->i_bframe_pyramid = atoi(value);
674         }
675     }
676     OPT("nf")
677         p->b_deblocking_filter = !atobool(value);
678     OPT2("filter", "deblock")
679     {
680         if( 2 == sscanf( value, "%d:%d", &p->i_deblocking_filter_alphac0, &p->i_deblocking_filter_beta ) ||
681             2 == sscanf( value, "%d,%d", &p->i_deblocking_filter_alphac0, &p->i_deblocking_filter_beta ) )
682         {
683             p->b_deblocking_filter = 1;
684         }
685         else if( sscanf( value, "%d", &p->i_deblocking_filter_alphac0 ) )
686         {
687             p->b_deblocking_filter = 1;
688             p->i_deblocking_filter_beta = p->i_deblocking_filter_alphac0;
689         }
690         else
691             p->b_deblocking_filter = atobool(value);
692     }
693     OPT("slice-max-size")
694         p->i_slice_max_size = atoi(value);
695     OPT("slice-max-mbs")
696         p->i_slice_max_mbs = atoi(value);
697     OPT("slices")
698         p->i_slice_count = atoi(value);
699     OPT("cabac")
700         p->b_cabac = atobool(value);
701     OPT("cabac-idc")
702         p->i_cabac_init_idc = atoi(value);
703     OPT("interlaced")
704         p->b_interlaced = atobool(value);
705     OPT("tff")
706         p->b_interlaced = p->b_tff = atobool(value);
707     OPT("bff")
708     {
709         p->b_interlaced = atobool(value);
710         p->b_tff = !p->b_interlaced;
711     }
712     OPT("constrained-intra")
713         p->b_constrained_intra = atobool(value);
714     OPT("cqm")
715     {
716         if( strstr( value, "flat" ) )
717             p->i_cqm_preset = X264_CQM_FLAT;
718         else if( strstr( value, "jvt" ) )
719             p->i_cqm_preset = X264_CQM_JVT;
720         else
721             p->psz_cqm_file = strdup(value);
722     }
723     OPT("cqmfile")
724         p->psz_cqm_file = strdup(value);
725     OPT("cqm4")
726     {
727         p->i_cqm_preset = X264_CQM_CUSTOM;
728         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
729         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
730         b_error |= parse_cqm( value, p->cqm_4py, 16 );
731         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
732     }
733     OPT("cqm8")
734     {
735         p->i_cqm_preset = X264_CQM_CUSTOM;
736         b_error |= parse_cqm( value, p->cqm_8iy, 64 );
737         b_error |= parse_cqm( value, p->cqm_8py, 64 );
738     }
739     OPT("cqm4i")
740     {
741         p->i_cqm_preset = X264_CQM_CUSTOM;
742         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
743         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
744     }
745     OPT("cqm4p")
746     {
747         p->i_cqm_preset = X264_CQM_CUSTOM;
748         b_error |= parse_cqm( value, p->cqm_4py, 16 );
749         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
750     }
751     OPT("cqm4iy")
752     {
753         p->i_cqm_preset = X264_CQM_CUSTOM;
754         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
755     }
756     OPT("cqm4ic")
757     {
758         p->i_cqm_preset = X264_CQM_CUSTOM;
759         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
760     }
761     OPT("cqm4py")
762     {
763         p->i_cqm_preset = X264_CQM_CUSTOM;
764         b_error |= parse_cqm( value, p->cqm_4py, 16 );
765     }
766     OPT("cqm4pc")
767     {
768         p->i_cqm_preset = X264_CQM_CUSTOM;
769         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
770     }
771     OPT("cqm8i")
772     {
773         p->i_cqm_preset = X264_CQM_CUSTOM;
774         b_error |= parse_cqm( value, p->cqm_8iy, 64 );
775     }
776     OPT("cqm8p")
777     {
778         p->i_cqm_preset = X264_CQM_CUSTOM;
779         b_error |= parse_cqm( value, p->cqm_8py, 64 );
780     }
781     OPT("log")
782         p->i_log_level = atoi(value);
783 #ifdef HAVE_VISUALIZE
784     OPT("visualize")
785         p->b_visualize = atobool(value);
786 #endif
787     OPT("dump-yuv")
788         p->psz_dump_yuv = strdup(value);
789     OPT2("analyse", "partitions")
790     {
791         p->analyse.inter = 0;
792         if( strstr( value, "none" ) )  p->analyse.inter =  0;
793         if( strstr( value, "all" ) )   p->analyse.inter = ~0;
794
795         if( strstr( value, "i4x4" ) )  p->analyse.inter |= X264_ANALYSE_I4x4;
796         if( strstr( value, "i8x8" ) )  p->analyse.inter |= X264_ANALYSE_I8x8;
797         if( strstr( value, "p8x8" ) )  p->analyse.inter |= X264_ANALYSE_PSUB16x16;
798         if( strstr( value, "p4x4" ) )  p->analyse.inter |= X264_ANALYSE_PSUB8x8;
799         if( strstr( value, "b8x8" ) )  p->analyse.inter |= X264_ANALYSE_BSUB16x16;
800     }
801     OPT("8x8dct")
802         p->analyse.b_transform_8x8 = atobool(value);
803     OPT2("weightb", "weight-b")
804         p->analyse.b_weighted_bipred = atobool(value);
805     OPT("weightp")
806         p->analyse.i_weighted_pred = atoi(value);
807     OPT2("direct", "direct-pred")
808         b_error |= parse_enum( value, x264_direct_pred_names, &p->analyse.i_direct_mv_pred );
809     OPT("chroma-qp-offset")
810         p->analyse.i_chroma_qp_offset = atoi(value);
811     OPT("me")
812         b_error |= parse_enum( value, x264_motion_est_names, &p->analyse.i_me_method );
813     OPT2("merange", "me-range")
814         p->analyse.i_me_range = atoi(value);
815     OPT2("mvrange", "mv-range")
816         p->analyse.i_mv_range = atoi(value);
817     OPT2("mvrange-thread", "mv-range-thread")
818         p->analyse.i_mv_range_thread = atoi(value);
819     OPT2("subme", "subq")
820         p->analyse.i_subpel_refine = atoi(value);
821     OPT("psy-rd")
822     {
823         if( 2 == sscanf( value, "%f:%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ) ||
824             2 == sscanf( value, "%f,%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ) ||
825             2 == sscanf( value, "%f|%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ))
826         { }
827         else if( sscanf( value, "%f", &p->analyse.f_psy_rd ) )
828         {
829             p->analyse.f_psy_trellis = 0;
830         }
831         else
832         {
833             p->analyse.f_psy_rd = 0;
834             p->analyse.f_psy_trellis = 0;
835         }
836     }
837     OPT("psy")
838         p->analyse.b_psy = atobool(value);
839     OPT("chroma-me")
840         p->analyse.b_chroma_me = atobool(value);
841     OPT("mixed-refs")
842         p->analyse.b_mixed_references = atobool(value);
843     OPT("trellis")
844         p->analyse.i_trellis = atoi(value);
845     OPT("fast-pskip")
846         p->analyse.b_fast_pskip = atobool(value);
847     OPT("dct-decimate")
848         p->analyse.b_dct_decimate = atobool(value);
849     OPT("deadzone-inter")
850         p->analyse.i_luma_deadzone[0] = atoi(value);
851     OPT("deadzone-intra")
852         p->analyse.i_luma_deadzone[1] = atoi(value);
853     OPT("nr")
854         p->analyse.i_noise_reduction = atoi(value);
855     OPT("bitrate")
856     {
857         p->rc.i_bitrate = atoi(value);
858         p->rc.i_rc_method = X264_RC_ABR;
859     }
860     OPT2("qp", "qp_constant")
861     {
862         p->rc.i_qp_constant = atoi(value);
863         p->rc.i_rc_method = X264_RC_CQP;
864     }
865     OPT("crf")
866     {
867         p->rc.f_rf_constant = atof(value);
868         p->rc.i_rc_method = X264_RC_CRF;
869     }
870     OPT("crf-max")
871         p->rc.f_rf_constant_max = atof(value);
872     OPT("rc-lookahead")
873         p->rc.i_lookahead = atoi(value);
874     OPT2("qpmin", "qp-min")
875         p->rc.i_qp_min = atoi(value);
876     OPT2("qpmax", "qp-max")
877         p->rc.i_qp_max = atoi(value);
878     OPT2("qpstep", "qp-step")
879         p->rc.i_qp_step = atoi(value);
880     OPT("ratetol")
881         p->rc.f_rate_tolerance = !strncmp("inf", value, 3) ? 1e9 : atof(value);
882     OPT("vbv-maxrate")
883         p->rc.i_vbv_max_bitrate = atoi(value);
884     OPT("vbv-bufsize")
885         p->rc.i_vbv_buffer_size = atoi(value);
886     OPT("vbv-init")
887         p->rc.f_vbv_buffer_init = atof(value);
888     OPT2("ipratio", "ip-factor")
889         p->rc.f_ip_factor = atof(value);
890     OPT2("pbratio", "pb-factor")
891         p->rc.f_pb_factor = atof(value);
892     OPT("aq-mode")
893         p->rc.i_aq_mode = atoi(value);
894     OPT("aq-strength")
895         p->rc.f_aq_strength = atof(value);
896     OPT("pass")
897     {
898         int pass = x264_clip3( atoi(value), 0, 3 );
899         p->rc.b_stat_write = pass & 1;
900         p->rc.b_stat_read = pass & 2;
901     }
902     OPT("stats")
903     {
904         p->rc.psz_stat_in = strdup(value);
905         p->rc.psz_stat_out = strdup(value);
906     }
907     OPT("qcomp")
908         p->rc.f_qcompress = atof(value);
909     OPT("mbtree")
910         p->rc.b_mb_tree = atobool(value);
911     OPT("qblur")
912         p->rc.f_qblur = atof(value);
913     OPT2("cplxblur", "cplx-blur")
914         p->rc.f_complexity_blur = atof(value);
915     OPT("zones")
916         p->rc.psz_zones = strdup(value);
917     OPT("psnr")
918         p->analyse.b_psnr = atobool(value);
919     OPT("ssim")
920         p->analyse.b_ssim = atobool(value);
921     OPT("aud")
922         p->b_aud = atobool(value);
923     OPT("sps-id")
924         p->i_sps_id = atoi(value);
925     OPT("global-header")
926         p->b_repeat_headers = !atobool(value);
927     OPT("repeat-headers")
928         p->b_repeat_headers = atobool(value);
929     OPT("annexb")
930         p->b_annexb = atobool(value);
931     OPT("force-cfr")
932         p->b_vfr_input = !atobool(value);
933     OPT("nal-hrd")
934         b_error |= parse_enum( value, x264_nal_hrd_names, &p->i_nal_hrd );
935     OPT("pic-struct")
936         p->b_pic_struct = atobool(value);
937     OPT("fake-interlaced")
938         p->b_fake_interlaced = atobool(value);
939     else
940         return X264_PARAM_BAD_NAME;
941 #undef OPT
942 #undef OPT2
943 #undef atobool
944 #undef atoi
945 #undef atof
946
947     if( name_buf )
948         free( name_buf );
949
950     b_error |= value_was_null && !name_was_bool;
951     return b_error ? X264_PARAM_BAD_VALUE : 0;
952 }
953
954 /****************************************************************************
955  * x264_log:
956  ****************************************************************************/
957 void x264_log( x264_t *h, int i_level, const char *psz_fmt, ... )
958 {
959     if( !h || i_level <= h->param.i_log_level )
960     {
961         va_list arg;
962         va_start( arg, psz_fmt );
963         if( !h )
964             x264_log_default( NULL, i_level, psz_fmt, arg );
965         else
966             h->param.pf_log( h->param.p_log_private, i_level, psz_fmt, arg );
967         va_end( arg );
968     }
969 }
970
971 static void x264_log_default( void *p_unused, int i_level, const char *psz_fmt, va_list arg )
972 {
973     char *psz_prefix;
974     switch( i_level )
975     {
976         case X264_LOG_ERROR:
977             psz_prefix = "error";
978             break;
979         case X264_LOG_WARNING:
980             psz_prefix = "warning";
981             break;
982         case X264_LOG_INFO:
983             psz_prefix = "info";
984             break;
985         case X264_LOG_DEBUG:
986             psz_prefix = "debug";
987             break;
988         default:
989             psz_prefix = "unknown";
990             break;
991     }
992     fprintf( stderr, "x264 [%s]: ", psz_prefix );
993     vfprintf( stderr, psz_fmt, arg );
994 }
995
996 /****************************************************************************
997  * x264_picture_alloc:
998  ****************************************************************************/
999 int x264_picture_alloc( x264_picture_t *pic, int i_csp, int i_width, int i_height )
1000 {
1001     pic->i_type = X264_TYPE_AUTO;
1002     pic->i_qpplus1 = 0;
1003     pic->img.i_csp = i_csp;
1004     pic->img.i_plane = 3;
1005     pic->img.plane[0] = x264_malloc( 3 * i_width * i_height / 2 );
1006     if( !pic->img.plane[0] )
1007         return -1;
1008     pic->img.plane[1] = pic->img.plane[0] + i_width * i_height;
1009     pic->img.plane[2] = pic->img.plane[1] + i_width * i_height / 4;
1010     pic->img.i_stride[0] = i_width;
1011     pic->img.i_stride[1] = i_width / 2;
1012     pic->img.i_stride[2] = i_width / 2;
1013     pic->param = NULL;
1014     pic->i_pic_struct = PIC_STRUCT_AUTO;
1015     return 0;
1016 }
1017
1018 /****************************************************************************
1019  * x264_picture_clean:
1020  ****************************************************************************/
1021 void x264_picture_clean( x264_picture_t *pic )
1022 {
1023     x264_free( pic->img.plane[0] );
1024
1025     /* just to be safe */
1026     memset( pic, 0, sizeof( x264_picture_t ) );
1027 }
1028
1029 /****************************************************************************
1030  * x264_malloc:
1031  ****************************************************************************/
1032 void *x264_malloc( int i_size )
1033 {
1034     uint8_t *align_buf = NULL;
1035 #ifdef SYS_MACOSX
1036     /* Mac OS X always returns 16 bytes aligned memory */
1037     align_buf = malloc( i_size );
1038 #elif defined( HAVE_MALLOC_H )
1039     align_buf = memalign( 16, i_size );
1040 #else
1041     uint8_t *buf = malloc( i_size + 15 + sizeof(void **) + sizeof(int) );
1042     if( buf )
1043     {
1044         align_buf = buf + 15 + sizeof(void **) + sizeof(int);
1045         align_buf -= (intptr_t) align_buf & 15;
1046         *( (void **) ( align_buf - sizeof(void **) ) ) = buf;
1047         *( (int *) ( align_buf - sizeof(void **) - sizeof(int) ) ) = i_size;
1048     }
1049 #endif
1050     if( !align_buf )
1051         x264_log( NULL, X264_LOG_ERROR, "malloc of size %d failed\n", i_size );
1052     return align_buf;
1053 }
1054
1055 /****************************************************************************
1056  * x264_free:
1057  ****************************************************************************/
1058 void x264_free( void *p )
1059 {
1060     if( p )
1061     {
1062 #if defined( HAVE_MALLOC_H ) || defined( SYS_MACOSX )
1063         free( p );
1064 #else
1065         free( *( ( ( void **) p ) - 1 ) );
1066 #endif
1067     }
1068 }
1069
1070 /****************************************************************************
1071  * x264_reduce_fraction:
1072  ****************************************************************************/
1073 void x264_reduce_fraction( uint32_t *n, uint32_t *d )
1074 {
1075     uint32_t a = *n;
1076     uint32_t b = *d;
1077     uint32_t c;
1078     if( !a || !b )
1079         return;
1080     c = a % b;
1081     while(c)
1082     {
1083         a = b;
1084         b = c;
1085         c = a % b;
1086     }
1087     *n /= b;
1088     *d /= b;
1089 }
1090
1091 /****************************************************************************
1092  * x264_slurp_file:
1093  ****************************************************************************/
1094 char *x264_slurp_file( const char *filename )
1095 {
1096     int b_error = 0;
1097     int i_size;
1098     char *buf;
1099     FILE *fh = fopen( filename, "rb" );
1100     if( !fh )
1101         return NULL;
1102     b_error |= fseek( fh, 0, SEEK_END ) < 0;
1103     b_error |= ( i_size = ftell( fh ) ) <= 0;
1104     b_error |= fseek( fh, 0, SEEK_SET ) < 0;
1105     if( b_error )
1106         return NULL;
1107     buf = x264_malloc( i_size+2 );
1108     if( buf == NULL )
1109         return NULL;
1110     b_error |= fread( buf, 1, i_size, fh ) != i_size;
1111     if( buf[i_size-1] != '\n' )
1112         buf[i_size++] = '\n';
1113     buf[i_size] = 0;
1114     fclose( fh );
1115     if( b_error )
1116     {
1117         x264_free( buf );
1118         return NULL;
1119     }
1120     return buf;
1121 }
1122
1123 /****************************************************************************
1124  * x264_param2string:
1125  ****************************************************************************/
1126 char *x264_param2string( x264_param_t *p, int b_res )
1127 {
1128     int len = 1000;
1129     char *buf, *s;
1130     if( p->rc.psz_zones )
1131         len += strlen(p->rc.psz_zones);
1132     buf = s = x264_malloc( len );
1133     if( !buf )
1134         return NULL;
1135
1136     if( b_res )
1137     {
1138         s += sprintf( s, "%dx%d ", p->i_width, p->i_height );
1139         s += sprintf( s, "fps=%u/%u ", p->i_fps_num, p->i_fps_den );
1140         s += sprintf( s, "timebase=%u/%u ", p->i_timebase_num, p->i_timebase_den );
1141     }
1142
1143     s += sprintf( s, "cabac=%d", p->b_cabac );
1144     s += sprintf( s, " ref=%d", p->i_frame_reference );
1145     s += sprintf( s, " deblock=%d:%d:%d", p->b_deblocking_filter,
1146                   p->i_deblocking_filter_alphac0, p->i_deblocking_filter_beta );
1147     s += sprintf( s, " analyse=%#x:%#x", p->analyse.intra, p->analyse.inter );
1148     s += sprintf( s, " me=%s", x264_motion_est_names[ p->analyse.i_me_method ] );
1149     s += sprintf( s, " subme=%d", p->analyse.i_subpel_refine );
1150     s += sprintf( s, " psy=%d", p->analyse.b_psy );
1151     if( p->analyse.b_psy )
1152         s += sprintf( s, " psy_rd=%.2f:%.2f", p->analyse.f_psy_rd, p->analyse.f_psy_trellis );
1153     s += sprintf( s, " mixed_ref=%d", p->analyse.b_mixed_references );
1154     s += sprintf( s, " me_range=%d", p->analyse.i_me_range );
1155     s += sprintf( s, " chroma_me=%d", p->analyse.b_chroma_me );
1156     s += sprintf( s, " trellis=%d", p->analyse.i_trellis );
1157     s += sprintf( s, " 8x8dct=%d", p->analyse.b_transform_8x8 );
1158     s += sprintf( s, " cqm=%d", p->i_cqm_preset );
1159     s += sprintf( s, " deadzone=%d,%d", p->analyse.i_luma_deadzone[0], p->analyse.i_luma_deadzone[1] );
1160     s += sprintf( s, " fast_pskip=%d", p->analyse.b_fast_pskip );
1161     s += sprintf( s, " chroma_qp_offset=%d", p->analyse.i_chroma_qp_offset );
1162     s += sprintf( s, " threads=%d", p->i_threads );
1163     s += sprintf( s, " sliced_threads=%d", p->b_sliced_threads );
1164     if( p->i_slice_count )
1165         s += sprintf( s, " slices=%d", p->i_slice_count );
1166     if( p->i_slice_max_size )
1167         s += sprintf( s, " slice_max_size=%d", p->i_slice_max_size );
1168     if( p->i_slice_max_mbs )
1169         s += sprintf( s, " slice_max_mbs=%d", p->i_slice_max_mbs );
1170     s += sprintf( s, " nr=%d", p->analyse.i_noise_reduction );
1171     s += sprintf( s, " decimate=%d", p->analyse.b_dct_decimate );
1172     s += sprintf( s, " interlaced=%s", p->b_interlaced ? p->b_tff ? "tff" : "bff" : "0" );
1173
1174     s += sprintf( s, " constrained_intra=%d", p->b_constrained_intra );
1175
1176     s += sprintf( s, " bframes=%d", p->i_bframe );
1177     if( p->i_bframe )
1178     {
1179         s += sprintf( s, " b_pyramid=%d b_adapt=%d b_bias=%d direct=%d weightb=%d",
1180                       p->i_bframe_pyramid, p->i_bframe_adaptive, p->i_bframe_bias,
1181                       p->analyse.i_direct_mv_pred, p->analyse.b_weighted_bipred );
1182     }
1183     s += sprintf( s, " weightp=%d", p->analyse.i_weighted_pred > 0 ? p->analyse.i_weighted_pred : 0 );
1184
1185     s += sprintf( s, " keyint=%d keyint_min=%d scenecut=%d intra_refresh=%d",
1186                   p->i_keyint_max, p->i_keyint_min, p->i_scenecut_threshold, p->b_intra_refresh );
1187
1188     if( p->rc.b_mb_tree || p->rc.i_vbv_buffer_size )
1189         s += sprintf( s, " rc_lookahead=%d", p->rc.i_lookahead );
1190
1191     s += sprintf( s, " rc=%s mbtree=%d", p->rc.i_rc_method == X264_RC_ABR ?
1192                                ( p->rc.b_stat_read ? "2pass" : p->rc.i_vbv_max_bitrate == p->rc.i_bitrate ? "cbr" : "abr" )
1193                                : p->rc.i_rc_method == X264_RC_CRF ? "crf" : "cqp", p->rc.b_mb_tree );
1194     if( p->rc.i_rc_method == X264_RC_ABR || p->rc.i_rc_method == X264_RC_CRF )
1195     {
1196         if( p->rc.i_rc_method == X264_RC_CRF )
1197             s += sprintf( s, " crf=%.1f", p->rc.f_rf_constant );
1198         else
1199             s += sprintf( s, " bitrate=%d ratetol=%.1f",
1200                           p->rc.i_bitrate, p->rc.f_rate_tolerance );
1201         s += sprintf( s, " qcomp=%.2f qpmin=%d qpmax=%d qpstep=%d",
1202                       p->rc.f_qcompress, p->rc.i_qp_min, p->rc.i_qp_max, p->rc.i_qp_step );
1203         if( p->rc.b_stat_read )
1204             s += sprintf( s, " cplxblur=%.1f qblur=%.1f",
1205                           p->rc.f_complexity_blur, p->rc.f_qblur );
1206         if( p->rc.i_vbv_buffer_size )
1207         {
1208             s += sprintf( s, " vbv_maxrate=%d vbv_bufsize=%d",
1209                           p->rc.i_vbv_max_bitrate, p->rc.i_vbv_buffer_size );
1210             if( p->rc.i_rc_method == X264_RC_CRF )
1211                 s += sprintf( s, " crf_max=%.1f", p->rc.f_rf_constant_max );
1212         }
1213     }
1214     else if( p->rc.i_rc_method == X264_RC_CQP )
1215         s += sprintf( s, " qp=%d", p->rc.i_qp_constant );
1216     if( !(p->rc.i_rc_method == X264_RC_CQP && p->rc.i_qp_constant == 0) )
1217     {
1218         s += sprintf( s, " ip_ratio=%.2f", p->rc.f_ip_factor );
1219         if( p->i_bframe && !p->rc.b_mb_tree )
1220             s += sprintf( s, " pb_ratio=%.2f", p->rc.f_pb_factor );
1221         s += sprintf( s, " aq=%d", p->rc.i_aq_mode );
1222         if( p->rc.i_aq_mode )
1223             s += sprintf( s, ":%.2f", p->rc.f_aq_strength );
1224         if( p->rc.psz_zones )
1225             s += sprintf( s, " zones=%s", p->rc.psz_zones );
1226         else if( p->rc.i_zones )
1227             s += sprintf( s, " zones" );
1228     }
1229
1230     if( p->rc.i_vbv_buffer_size )
1231         s += sprintf( s, " nal_hrd=%s", x264_nal_hrd_names[p->i_nal_hrd] );
1232     return buf;
1233 }
1234