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