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