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