]> git.sesse.net Git - x264/blob - common/common.c
Improve DTS generation, move DTS compression into libx264
[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 <stdarg.h>
25 #include <ctype.h>
26
27 #ifdef HAVE_MALLOC_H
28 #include <malloc.h>
29 #endif
30
31 #include "common.h"
32 #include "cpu.h"
33
34 static void x264_log_default( void *, int, const char *, va_list );
35
36 /****************************************************************************
37  * x264_param_default:
38  ****************************************************************************/
39 void    x264_param_default( x264_param_t *param )
40 {
41     /* */
42     memset( param, 0, sizeof( x264_param_t ) );
43
44     /* CPU autodetect */
45     param->cpu = x264_cpu_detect();
46     param->i_threads = X264_THREADS_AUTO;
47     param->b_deterministic = 1;
48     param->i_sync_lookahead = X264_SYNC_LOOKAHEAD_AUTO;
49
50     /* Video properties */
51     param->i_csp           = X264_CSP_I420;
52     param->i_width         = 0;
53     param->i_height        = 0;
54     param->vui.i_sar_width = 0;
55     param->vui.i_sar_height= 0;
56     param->vui.i_overscan  = 0;  /* undef */
57     param->vui.i_vidformat = 5;  /* undef */
58     param->vui.b_fullrange = 0;  /* off */
59     param->vui.i_colorprim = 2;  /* undef */
60     param->vui.i_transfer  = 2;  /* undef */
61     param->vui.i_colmatrix = 2;  /* undef */
62     param->vui.i_chroma_loc= 0;  /* left center */
63     param->i_fps_num       = 25;
64     param->i_fps_den       = 1;
65     param->i_level_idc     = -1;
66     param->i_slice_max_size = 0;
67     param->i_slice_max_mbs = 0;
68     param->i_slice_count = 0;
69
70     /* Encoder parameters */
71     param->i_frame_reference = 3;
72     param->i_keyint_max = 250;
73     param->i_keyint_min = 25;
74     param->i_bframe = 3;
75     param->i_scenecut_threshold = 40;
76     param->i_bframe_adaptive = X264_B_ADAPT_FAST;
77     param->i_bframe_bias = 0;
78     param->i_bframe_pyramid = 0;
79     param->b_interlaced = 0;
80     param->b_constrained_intra = 0;
81
82     param->b_deblocking_filter = 1;
83     param->i_deblocking_filter_alphac0 = 0;
84     param->i_deblocking_filter_beta = 0;
85
86     param->b_cabac = 1;
87     param->i_cabac_init_idc = 0;
88
89     param->rc.i_rc_method = X264_RC_CRF;
90     param->rc.i_bitrate = 0;
91     param->rc.f_rate_tolerance = 1.0;
92     param->rc.i_vbv_max_bitrate = 0;
93     param->rc.i_vbv_buffer_size = 0;
94     param->rc.f_vbv_buffer_init = 0.9;
95     param->rc.i_qp_constant = 23;
96     param->rc.f_rf_constant = 23;
97     param->rc.i_qp_min = 10;
98     param->rc.i_qp_max = 51;
99     param->rc.i_qp_step = 4;
100     param->rc.f_ip_factor = 1.4;
101     param->rc.f_pb_factor = 1.3;
102     param->rc.i_aq_mode = X264_AQ_VARIANCE;
103     param->rc.f_aq_strength = 1.0;
104     param->rc.i_lookahead = 40;
105
106     param->rc.b_stat_write = 0;
107     param->rc.psz_stat_out = "x264_2pass.log";
108     param->rc.b_stat_read = 0;
109     param->rc.psz_stat_in = "x264_2pass.log";
110     param->rc.f_qcompress = 0.6;
111     param->rc.f_qblur = 0.5;
112     param->rc.f_complexity_blur = 20;
113     param->rc.i_zones = 0;
114     param->rc.b_mb_tree = 1;
115
116     /* Log */
117     param->pf_log = x264_log_default;
118     param->p_log_private = NULL;
119     param->i_log_level = X264_LOG_INFO;
120
121     /* */
122     param->analyse.intra = X264_ANALYSE_I4x4 | X264_ANALYSE_I8x8;
123     param->analyse.inter = X264_ANALYSE_I4x4 | X264_ANALYSE_I8x8
124                          | X264_ANALYSE_PSUB16x16 | X264_ANALYSE_BSUB16x16;
125     param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
126     param->analyse.i_me_method = X264_ME_HEX;
127     param->analyse.f_psy_rd = 1.0;
128     param->analyse.b_psy = 1;
129     param->analyse.f_psy_trellis = 0;
130     param->analyse.i_me_range = 16;
131     param->analyse.i_subpel_refine = 7;
132     param->analyse.b_mixed_references = 1;
133     param->analyse.b_chroma_me = 1;
134     param->analyse.i_mv_range_thread = -1;
135     param->analyse.i_mv_range = -1; // set from level_idc
136     param->analyse.i_chroma_qp_offset = 0;
137     param->analyse.b_fast_pskip = 1;
138     param->analyse.b_weighted_bipred = 1;
139     param->analyse.i_weighted_pred = X264_WEIGHTP_SMART;
140     param->analyse.b_dct_decimate = 1;
141     param->analyse.b_transform_8x8 = 1;
142     param->analyse.i_trellis = 1;
143     param->analyse.i_luma_deadzone[0] = 21;
144     param->analyse.i_luma_deadzone[1] = 11;
145     param->analyse.b_psnr = 0;
146     param->analyse.b_ssim = 0;
147
148     param->i_cqm_preset = X264_CQM_FLAT;
149     memset( param->cqm_4iy, 16, 16 );
150     memset( param->cqm_4ic, 16, 16 );
151     memset( param->cqm_4py, 16, 16 );
152     memset( param->cqm_4pc, 16, 16 );
153     memset( param->cqm_8iy, 16, 64 );
154     memset( param->cqm_8py, 16, 64 );
155
156     param->b_repeat_headers = 1;
157     param->b_annexb = 1;
158     param->b_aud = 0;
159     param->b_vfr_input = 1;
160     param->b_dts_compress = 0;
161 }
162
163 static int parse_enum( const char *arg, const char * const *names, int *dst )
164 {
165     int i;
166     for( i = 0; names[i]; i++ )
167         if( !strcmp( arg, names[i] ) )
168         {
169             *dst = i;
170             return 0;
171         }
172     return -1;
173 }
174
175 static int parse_cqm( const char *str, uint8_t *cqm, int length )
176 {
177     int i = 0;
178     do {
179         int coef;
180         if( !sscanf( str, "%d", &coef ) || coef < 1 || coef > 255 )
181             return -1;
182         cqm[i++] = coef;
183     } while( i < length && (str = strchr( str, ',' )) && str++ );
184     return (i == length) ? 0 : -1;
185 }
186
187 static int x264_atobool( const char *str, int *b_error )
188 {
189     if( !strcmp(str, "1") ||
190         !strcmp(str, "true") ||
191         !strcmp(str, "yes") )
192         return 1;
193     if( !strcmp(str, "0") ||
194         !strcmp(str, "false") ||
195         !strcmp(str, "no") )
196         return 0;
197     *b_error = 1;
198     return 0;
199 }
200
201 static int x264_atoi( const char *str, int *b_error )
202 {
203     char *end;
204     int v = strtol( str, &end, 0 );
205     if( end == str || *end != '\0' )
206         *b_error = 1;
207     return v;
208 }
209
210 static double x264_atof( const char *str, int *b_error )
211 {
212     char *end;
213     double v = strtod( str, &end );
214     if( end == str || *end != '\0' )
215         *b_error = 1;
216     return v;
217 }
218
219 #define atobool(str) ( name_was_bool = 1, x264_atobool( str, &b_error ) )
220 #define atoi(str) x264_atoi( str, &b_error )
221 #define atof(str) x264_atof( str, &b_error )
222
223 int x264_param_parse( x264_param_t *p, const char *name, const char *value )
224 {
225     char *name_buf = NULL;
226     int b_error = 0;
227     int name_was_bool;
228     int value_was_null = !value;
229     int i;
230
231     if( !name )
232         return X264_PARAM_BAD_NAME;
233     if( !value )
234         value = "true";
235
236     if( value[0] == '=' )
237         value++;
238
239     if( strchr( name, '_' ) ) // s/_/-/g
240     {
241         char *p;
242         name_buf = strdup(name);
243         while( (p = strchr( name_buf, '_' )) )
244             *p = '-';
245         name = name_buf;
246     }
247
248     if( (!strncmp( name, "no-", 3 ) && (i = 3)) ||
249         (!strncmp( name, "no", 2 ) && (i = 2)) )
250     {
251         name += i;
252         value = atobool(value) ? "false" : "true";
253     }
254     name_was_bool = 0;
255
256 #define OPT(STR) else if( !strcmp( name, STR ) )
257 #define OPT2(STR0, STR1) else if( !strcmp( name, STR0 ) || !strcmp( name, STR1 ) )
258     if(0);
259     OPT("asm")
260     {
261         p->cpu = isdigit(value[0]) ? atoi(value) :
262                  !strcmp(value, "auto") || atobool(value) ? x264_cpu_detect() : 0;
263         if( b_error )
264         {
265             char *buf = strdup(value);
266             char *tok, UNUSED *saveptr, *init;
267             b_error = 0;
268             p->cpu = 0;
269             for( init=buf; (tok=strtok_r(init, ",", &saveptr)); init=NULL )
270             {
271                 for( i=0; x264_cpu_names[i].flags && strcasecmp(tok, x264_cpu_names[i].name); i++ );
272                 p->cpu |= x264_cpu_names[i].flags;
273                 if( !x264_cpu_names[i].flags )
274                     b_error = 1;
275             }
276             free( buf );
277         }
278     }
279     OPT("threads")
280     {
281         if( !strcmp(value, "auto") )
282             p->i_threads = X264_THREADS_AUTO;
283         else
284             p->i_threads = atoi(value);
285     }
286     OPT("sliced-threads")
287         p->b_sliced_threads = atobool(value);
288     OPT("sync-lookahead")
289     {
290         if( !strcmp(value, "auto") )
291             p->i_sync_lookahead = X264_SYNC_LOOKAHEAD_AUTO;
292         else
293             p->i_sync_lookahead = atoi(value);
294     }
295     OPT2("deterministic", "n-deterministic")
296         p->b_deterministic = atobool(value);
297     OPT2("level", "level-idc")
298     {
299         if( atof(value) < 6 )
300             p->i_level_idc = (int)(10*atof(value)+.5);
301         else
302             p->i_level_idc = atoi(value);
303     }
304     OPT("sar")
305     {
306         b_error = ( 2 != sscanf( value, "%d:%d", &p->vui.i_sar_width, &p->vui.i_sar_height ) &&
307                     2 != sscanf( value, "%d/%d", &p->vui.i_sar_width, &p->vui.i_sar_height ) );
308     }
309     OPT("overscan")
310         b_error |= parse_enum( value, x264_overscan_names, &p->vui.i_overscan );
311     OPT("videoformat")
312         b_error |= parse_enum( value, x264_vidformat_names, &p->vui.i_vidformat );
313     OPT("fullrange")
314         b_error |= parse_enum( value, x264_fullrange_names, &p->vui.b_fullrange );
315     OPT("colorprim")
316         b_error |= parse_enum( value, x264_colorprim_names, &p->vui.i_colorprim );
317     OPT("transfer")
318         b_error |= parse_enum( value, x264_transfer_names, &p->vui.i_transfer );
319     OPT("colormatrix")
320         b_error |= parse_enum( value, x264_colmatrix_names, &p->vui.i_colmatrix );
321     OPT("chromaloc")
322     {
323         p->vui.i_chroma_loc = atoi(value);
324         b_error = ( p->vui.i_chroma_loc < 0 || p->vui.i_chroma_loc > 5 );
325     }
326     OPT("fps")
327     {
328         if( sscanf( value, "%d/%d", &p->i_fps_num, &p->i_fps_den ) == 2 )
329             ;
330         else
331         {
332             float fps = atof(value);
333             p->i_fps_num = (int)(fps * 1000 + .5);
334             p->i_fps_den = 1000;
335         }
336     }
337     OPT2("ref", "frameref")
338         p->i_frame_reference = atoi(value);
339     OPT("keyint")
340     {
341         p->i_keyint_max = atoi(value);
342         if( p->i_keyint_min > p->i_keyint_max )
343             p->i_keyint_min = p->i_keyint_max;
344     }
345     OPT2("min-keyint", "keyint-min")
346     {
347         p->i_keyint_min = atoi(value);
348         if( p->i_keyint_max < p->i_keyint_min )
349             p->i_keyint_max = p->i_keyint_min;
350     }
351     OPT("scenecut")
352     {
353         p->i_scenecut_threshold = atobool(value);
354         if( b_error || p->i_scenecut_threshold )
355         {
356             b_error = 0;
357             p->i_scenecut_threshold = atoi(value);
358         }
359     }
360     OPT("intra-refresh")
361         p->b_intra_refresh = atobool(value);
362     OPT("bframes")
363         p->i_bframe = atoi(value);
364     OPT("b-adapt")
365     {
366         p->i_bframe_adaptive = atobool(value);
367         if( b_error )
368         {
369             b_error = 0;
370             p->i_bframe_adaptive = atoi(value);
371         }
372     }
373     OPT("b-bias")
374         p->i_bframe_bias = atoi(value);
375     OPT("b-pyramid")
376         b_error |= parse_enum( value, x264_b_pyramid_names, &p->i_bframe_pyramid );
377     OPT("nf")
378         p->b_deblocking_filter = !atobool(value);
379     OPT2("filter", "deblock")
380     {
381         if( 2 == sscanf( value, "%d:%d", &p->i_deblocking_filter_alphac0, &p->i_deblocking_filter_beta ) ||
382             2 == sscanf( value, "%d,%d", &p->i_deblocking_filter_alphac0, &p->i_deblocking_filter_beta ) )
383         {
384             p->b_deblocking_filter = 1;
385         }
386         else if( sscanf( value, "%d", &p->i_deblocking_filter_alphac0 ) )
387         {
388             p->b_deblocking_filter = 1;
389             p->i_deblocking_filter_beta = p->i_deblocking_filter_alphac0;
390         }
391         else
392             p->b_deblocking_filter = atobool(value);
393     }
394     OPT("slice-max-size")
395         p->i_slice_max_size = atoi(value);
396     OPT("slice-max-mbs")
397         p->i_slice_max_mbs = atoi(value);
398     OPT("slices")
399         p->i_slice_count = atoi(value);
400     OPT("cabac")
401         p->b_cabac = atobool(value);
402     OPT("cabac-idc")
403         p->i_cabac_init_idc = atoi(value);
404     OPT("interlaced")
405         p->b_interlaced = atobool(value);
406     OPT("constrained-intra")
407         p->b_constrained_intra = atobool(value);
408     OPT("cqm")
409     {
410         if( strstr( value, "flat" ) )
411             p->i_cqm_preset = X264_CQM_FLAT;
412         else if( strstr( value, "jvt" ) )
413             p->i_cqm_preset = X264_CQM_JVT;
414         else
415             p->psz_cqm_file = strdup(value);
416     }
417     OPT("cqmfile")
418         p->psz_cqm_file = strdup(value);
419     OPT("cqm4")
420     {
421         p->i_cqm_preset = X264_CQM_CUSTOM;
422         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
423         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
424         b_error |= parse_cqm( value, p->cqm_4py, 16 );
425         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
426     }
427     OPT("cqm8")
428     {
429         p->i_cqm_preset = X264_CQM_CUSTOM;
430         b_error |= parse_cqm( value, p->cqm_8iy, 64 );
431         b_error |= parse_cqm( value, p->cqm_8py, 64 );
432     }
433     OPT("cqm4i")
434     {
435         p->i_cqm_preset = X264_CQM_CUSTOM;
436         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
437         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
438     }
439     OPT("cqm4p")
440     {
441         p->i_cqm_preset = X264_CQM_CUSTOM;
442         b_error |= parse_cqm( value, p->cqm_4py, 16 );
443         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
444     }
445     OPT("cqm4iy")
446     {
447         p->i_cqm_preset = X264_CQM_CUSTOM;
448         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
449     }
450     OPT("cqm4ic")
451     {
452         p->i_cqm_preset = X264_CQM_CUSTOM;
453         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
454     }
455     OPT("cqm4py")
456     {
457         p->i_cqm_preset = X264_CQM_CUSTOM;
458         b_error |= parse_cqm( value, p->cqm_4py, 16 );
459     }
460     OPT("cqm4pc")
461     {
462         p->i_cqm_preset = X264_CQM_CUSTOM;
463         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
464     }
465     OPT("cqm8i")
466     {
467         p->i_cqm_preset = X264_CQM_CUSTOM;
468         b_error |= parse_cqm( value, p->cqm_8iy, 64 );
469     }
470     OPT("cqm8p")
471     {
472         p->i_cqm_preset = X264_CQM_CUSTOM;
473         b_error |= parse_cqm( value, p->cqm_8py, 64 );
474     }
475     OPT("log")
476         p->i_log_level = atoi(value);
477 #ifdef VISUALIZE
478     OPT("visualize")
479         p->b_visualize = atobool(value);
480 #endif
481     OPT("dump-yuv")
482         p->psz_dump_yuv = strdup(value);
483     OPT2("analyse", "partitions")
484     {
485         p->analyse.inter = 0;
486         if( strstr( value, "none" ) )  p->analyse.inter =  0;
487         if( strstr( value, "all" ) )   p->analyse.inter = ~0;
488
489         if( strstr( value, "i4x4" ) )  p->analyse.inter |= X264_ANALYSE_I4x4;
490         if( strstr( value, "i8x8" ) )  p->analyse.inter |= X264_ANALYSE_I8x8;
491         if( strstr( value, "p8x8" ) )  p->analyse.inter |= X264_ANALYSE_PSUB16x16;
492         if( strstr( value, "p4x4" ) )  p->analyse.inter |= X264_ANALYSE_PSUB8x8;
493         if( strstr( value, "b8x8" ) )  p->analyse.inter |= X264_ANALYSE_BSUB16x16;
494     }
495     OPT("8x8dct")
496         p->analyse.b_transform_8x8 = atobool(value);
497     OPT2("weightb", "weight-b")
498         p->analyse.b_weighted_bipred = atobool(value);
499     OPT("weightp")
500         p->analyse.i_weighted_pred = atoi(value);
501     OPT2("direct", "direct-pred")
502         b_error |= parse_enum( value, x264_direct_pred_names, &p->analyse.i_direct_mv_pred );
503     OPT("chroma-qp-offset")
504         p->analyse.i_chroma_qp_offset = atoi(value);
505     OPT("me")
506         b_error |= parse_enum( value, x264_motion_est_names, &p->analyse.i_me_method );
507     OPT2("merange", "me-range")
508         p->analyse.i_me_range = atoi(value);
509     OPT2("mvrange", "mv-range")
510         p->analyse.i_mv_range = atoi(value);
511     OPT2("mvrange-thread", "mv-range-thread")
512         p->analyse.i_mv_range_thread = atoi(value);
513     OPT2("subme", "subq")
514         p->analyse.i_subpel_refine = atoi(value);
515     OPT("psy-rd")
516     {
517         if( 2 == sscanf( value, "%f:%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ) ||
518             2 == sscanf( value, "%f,%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ) )
519         { }
520         else if( sscanf( value, "%f", &p->analyse.f_psy_rd ) )
521         {
522             p->analyse.f_psy_trellis = 0;
523         }
524         else
525         {
526             p->analyse.f_psy_rd = 0;
527             p->analyse.f_psy_trellis = 0;
528         }
529     }
530     OPT("psy")
531         p->analyse.b_psy = atobool(value);
532     OPT("chroma-me")
533         p->analyse.b_chroma_me = atobool(value);
534     OPT("mixed-refs")
535         p->analyse.b_mixed_references = atobool(value);
536     OPT("trellis")
537         p->analyse.i_trellis = atoi(value);
538     OPT("fast-pskip")
539         p->analyse.b_fast_pskip = atobool(value);
540     OPT("dct-decimate")
541         p->analyse.b_dct_decimate = atobool(value);
542     OPT("deadzone-inter")
543         p->analyse.i_luma_deadzone[0] = atoi(value);
544     OPT("deadzone-intra")
545         p->analyse.i_luma_deadzone[1] = atoi(value);
546     OPT("nr")
547         p->analyse.i_noise_reduction = atoi(value);
548     OPT("bitrate")
549     {
550         p->rc.i_bitrate = atoi(value);
551         p->rc.i_rc_method = X264_RC_ABR;
552     }
553     OPT2("qp", "qp_constant")
554     {
555         p->rc.i_qp_constant = atoi(value);
556         p->rc.i_rc_method = X264_RC_CQP;
557     }
558     OPT("crf")
559     {
560         p->rc.f_rf_constant = atof(value);
561         p->rc.i_rc_method = X264_RC_CRF;
562     }
563     OPT("rc-lookahead")
564         p->rc.i_lookahead = atoi(value);
565     OPT2("qpmin", "qp-min")
566         p->rc.i_qp_min = atoi(value);
567     OPT2("qpmax", "qp-max")
568         p->rc.i_qp_max = atoi(value);
569     OPT2("qpstep", "qp-step")
570         p->rc.i_qp_step = atoi(value);
571     OPT("ratetol")
572         p->rc.f_rate_tolerance = !strncmp("inf", value, 3) ? 1e9 : atof(value);
573     OPT("vbv-maxrate")
574         p->rc.i_vbv_max_bitrate = atoi(value);
575     OPT("vbv-bufsize")
576         p->rc.i_vbv_buffer_size = atoi(value);
577     OPT("vbv-init")
578         p->rc.f_vbv_buffer_init = atof(value);
579     OPT2("ipratio", "ip-factor")
580         p->rc.f_ip_factor = atof(value);
581     OPT2("pbratio", "pb-factor")
582         p->rc.f_pb_factor = atof(value);
583     OPT("aq-mode")
584         p->rc.i_aq_mode = atoi(value);
585     OPT("aq-strength")
586         p->rc.f_aq_strength = atof(value);
587     OPT("pass")
588     {
589         int i = x264_clip3( atoi(value), 0, 3 );
590         p->rc.b_stat_write = i & 1;
591         p->rc.b_stat_read = i & 2;
592     }
593     OPT("stats")
594     {
595         p->rc.psz_stat_in = strdup(value);
596         p->rc.psz_stat_out = strdup(value);
597     }
598     OPT("qcomp")
599         p->rc.f_qcompress = atof(value);
600     OPT("mbtree")
601         p->rc.b_mb_tree = atobool(value);
602     OPT("qblur")
603         p->rc.f_qblur = atof(value);
604     OPT2("cplxblur", "cplx-blur")
605         p->rc.f_complexity_blur = atof(value);
606     OPT("zones")
607         p->rc.psz_zones = strdup(value);
608     OPT("psnr")
609         p->analyse.b_psnr = atobool(value);
610     OPT("ssim")
611         p->analyse.b_ssim = atobool(value);
612     OPT("aud")
613         p->b_aud = atobool(value);
614     OPT("sps-id")
615         p->i_sps_id = atoi(value);
616     OPT("global-header")
617         p->b_repeat_headers = !atobool(value);
618     OPT("repeat-headers")
619         p->b_repeat_headers = atobool(value);
620     OPT("annexb")
621         p->b_annexb = atobool(value);
622     OPT("force-cfr")
623         p->b_vfr_input = !atobool(value);
624     else
625         return X264_PARAM_BAD_NAME;
626 #undef OPT
627 #undef OPT2
628 #undef atobool
629 #undef atoi
630 #undef atof
631
632     if( name_buf )
633         free( name_buf );
634
635     b_error |= value_was_null && !name_was_bool;
636     return b_error ? X264_PARAM_BAD_VALUE : 0;
637 }
638
639 /****************************************************************************
640  * x264_log:
641  ****************************************************************************/
642 void x264_log( x264_t *h, int i_level, const char *psz_fmt, ... )
643 {
644     if( !h || i_level <= h->param.i_log_level )
645     {
646         va_list arg;
647         va_start( arg, psz_fmt );
648         if( !h )
649             x264_log_default( NULL, i_level, psz_fmt, arg );
650         else
651             h->param.pf_log( h->param.p_log_private, i_level, psz_fmt, arg );
652         va_end( arg );
653     }
654 }
655
656 static void x264_log_default( void *p_unused, int i_level, const char *psz_fmt, va_list arg )
657 {
658     char *psz_prefix;
659     switch( i_level )
660     {
661         case X264_LOG_ERROR:
662             psz_prefix = "error";
663             break;
664         case X264_LOG_WARNING:
665             psz_prefix = "warning";
666             break;
667         case X264_LOG_INFO:
668             psz_prefix = "info";
669             break;
670         case X264_LOG_DEBUG:
671             psz_prefix = "debug";
672             break;
673         default:
674             psz_prefix = "unknown";
675             break;
676     }
677     fprintf( stderr, "x264 [%s]: ", psz_prefix );
678     vfprintf( stderr, psz_fmt, arg );
679 }
680
681 /****************************************************************************
682  * x264_picture_alloc:
683  ****************************************************************************/
684 int x264_picture_alloc( x264_picture_t *pic, int i_csp, int i_width, int i_height )
685 {
686     pic->i_type = X264_TYPE_AUTO;
687     pic->i_qpplus1 = 0;
688     pic->img.i_csp = i_csp;
689     pic->img.i_plane = 3;
690     pic->img.plane[0] = x264_malloc( 3 * i_width * i_height / 2 );
691     if( !pic->img.plane[0] )
692         return -1;
693     pic->img.plane[1] = pic->img.plane[0] + i_width * i_height;
694     pic->img.plane[2] = pic->img.plane[1] + i_width * i_height / 4;
695     pic->img.i_stride[0] = i_width;
696     pic->img.i_stride[1] = i_width / 2;
697     pic->img.i_stride[2] = i_width / 2;
698     pic->param = NULL;
699     return 0;
700 }
701
702 /****************************************************************************
703  * x264_picture_clean:
704  ****************************************************************************/
705 void x264_picture_clean( x264_picture_t *pic )
706 {
707     x264_free( pic->img.plane[0] );
708
709     /* just to be safe */
710     memset( pic, 0, sizeof( x264_picture_t ) );
711 }
712
713 /****************************************************************************
714  * x264_nal_encode:
715  ****************************************************************************/
716 int x264_nal_encode( uint8_t *dst, int b_annexb, x264_nal_t *nal )
717 {
718     uint8_t *src = nal->p_payload;
719     uint8_t *end = nal->p_payload + nal->i_payload;
720     uint8_t *orig_dst = dst;
721     int i_count = 0, size;
722
723     /* long nal start code (we always use long ones) */
724     if( b_annexb )
725     {
726         *dst++ = 0x00;
727         *dst++ = 0x00;
728         *dst++ = 0x00;
729         *dst++ = 0x01;
730     }
731     else /* save room for size later */
732         dst += 4;
733
734     /* nal header */
735     *dst++ = ( 0x00 << 7 ) | ( nal->i_ref_idc << 5 ) | nal->i_type;
736
737     while( src < end )
738     {
739         if( i_count == 2 && *src <= 0x03 )
740         {
741             *dst++ = 0x03;
742             i_count = 0;
743         }
744         if( *src == 0 )
745             i_count++;
746         else
747             i_count = 0;
748         *dst++ = *src++;
749     }
750     size = (dst - orig_dst) - 4;
751
752     /* Write the size header for mp4/etc */
753     if( !b_annexb )
754     {
755         /* Size doesn't include the size of the header we're writing now. */
756         orig_dst[0] = size>>24;
757         orig_dst[1] = size>>16;
758         orig_dst[2] = size>> 8;
759         orig_dst[3] = size>> 0;
760     }
761
762     return size+4;
763 }
764
765
766
767 /****************************************************************************
768  * x264_malloc:
769  ****************************************************************************/
770 void *x264_malloc( int i_size )
771 {
772     uint8_t *align_buf = NULL;
773 #ifdef SYS_MACOSX
774     /* Mac OS X always returns 16 bytes aligned memory */
775     align_buf = malloc( i_size );
776 #elif defined( HAVE_MALLOC_H )
777     align_buf = memalign( 16, i_size );
778 #else
779     uint8_t *buf = malloc( i_size + 15 + sizeof(void **) + sizeof(int) );
780     if( buf )
781     {
782         align_buf = buf + 15 + sizeof(void **) + sizeof(int);
783         align_buf -= (intptr_t) align_buf & 15;
784         *( (void **) ( align_buf - sizeof(void **) ) ) = buf;
785         *( (int *) ( align_buf - sizeof(void **) - sizeof(int) ) ) = i_size;
786     }
787 #endif
788     if( !align_buf )
789         x264_log( NULL, X264_LOG_ERROR, "malloc of size %d failed\n", i_size );
790     return align_buf;
791 }
792
793 /****************************************************************************
794  * x264_free:
795  ****************************************************************************/
796 void x264_free( void *p )
797 {
798     if( p )
799     {
800 #if defined( HAVE_MALLOC_H ) || defined( SYS_MACOSX )
801         free( p );
802 #else
803         free( *( ( ( void **) p ) - 1 ) );
804 #endif
805     }
806 }
807
808 /****************************************************************************
809  * x264_reduce_fraction:
810  ****************************************************************************/
811 void x264_reduce_fraction( int *n, int *d )
812 {
813     int a = *n;
814     int b = *d;
815     int c;
816     if( !a || !b )
817         return;
818     c = a % b;
819     while(c)
820     {
821         a = b;
822         b = c;
823         c = a % b;
824     }
825     *n /= b;
826     *d /= b;
827 }
828
829 /****************************************************************************
830  * x264_slurp_file:
831  ****************************************************************************/
832 char *x264_slurp_file( const char *filename )
833 {
834     int b_error = 0;
835     int i_size;
836     char *buf;
837     FILE *fh = fopen( filename, "rb" );
838     if( !fh )
839         return NULL;
840     b_error |= fseek( fh, 0, SEEK_END ) < 0;
841     b_error |= ( i_size = ftell( fh ) ) <= 0;
842     b_error |= fseek( fh, 0, SEEK_SET ) < 0;
843     if( b_error )
844         return NULL;
845     buf = x264_malloc( i_size+2 );
846     if( buf == NULL )
847         return NULL;
848     b_error |= fread( buf, 1, i_size, fh ) != i_size;
849     if( buf[i_size-1] != '\n' )
850         buf[i_size++] = '\n';
851     buf[i_size] = 0;
852     fclose( fh );
853     if( b_error )
854     {
855         x264_free( buf );
856         return NULL;
857     }
858     return buf;
859 }
860
861 /****************************************************************************
862  * x264_param2string:
863  ****************************************************************************/
864 char *x264_param2string( x264_param_t *p, int b_res )
865 {
866     int len = 1000;
867     char *buf, *s;
868     if( p->rc.psz_zones )
869         len += strlen(p->rc.psz_zones);
870     buf = s = x264_malloc( len );
871     if( !buf )
872         return NULL;
873
874     if( b_res )
875     {
876         s += sprintf( s, "%dx%d ", p->i_width, p->i_height );
877         s += sprintf( s, "fps=%d/%d ", p->i_fps_num, p->i_fps_den );
878     }
879
880     s += sprintf( s, "cabac=%d", p->b_cabac );
881     s += sprintf( s, " ref=%d", p->i_frame_reference );
882     s += sprintf( s, " deblock=%d:%d:%d", p->b_deblocking_filter,
883                   p->i_deblocking_filter_alphac0, p->i_deblocking_filter_beta );
884     s += sprintf( s, " analyse=%#x:%#x", p->analyse.intra, p->analyse.inter );
885     s += sprintf( s, " me=%s", x264_motion_est_names[ p->analyse.i_me_method ] );
886     s += sprintf( s, " subme=%d", p->analyse.i_subpel_refine );
887     s += sprintf( s, " psy=%d", p->analyse.b_psy );
888     if( p->analyse.b_psy )
889         s += sprintf( s, " psy_rd=%.1f:%.1f", p->analyse.f_psy_rd, p->analyse.f_psy_trellis );
890     s += sprintf( s, " mixed_ref=%d", p->analyse.b_mixed_references );
891     s += sprintf( s, " me_range=%d", p->analyse.i_me_range );
892     s += sprintf( s, " chroma_me=%d", p->analyse.b_chroma_me );
893     s += sprintf( s, " trellis=%d", p->analyse.i_trellis );
894     s += sprintf( s, " 8x8dct=%d", p->analyse.b_transform_8x8 );
895     s += sprintf( s, " cqm=%d", p->i_cqm_preset );
896     s += sprintf( s, " deadzone=%d,%d", p->analyse.i_luma_deadzone[0], p->analyse.i_luma_deadzone[1] );
897     s += sprintf( s, " fast_pskip=%d", p->analyse.b_fast_pskip );
898     s += sprintf( s, " chroma_qp_offset=%d", p->analyse.i_chroma_qp_offset );
899     s += sprintf( s, " threads=%d", p->i_threads );
900     s += sprintf( s, " sliced_threads=%d", p->b_sliced_threads );
901     if( p->i_slice_count )
902         s += sprintf( s, " slices=%d", p->i_slice_count );
903     if( p->i_slice_max_size )
904         s += sprintf( s, " slice_max_size=%d", p->i_slice_max_size );
905     if( p->i_slice_max_mbs )
906         s += sprintf( s, " slice_max_mbs=%d", p->i_slice_max_mbs );
907     s += sprintf( s, " nr=%d", p->analyse.i_noise_reduction );
908     s += sprintf( s, " decimate=%d", p->analyse.b_dct_decimate );
909     s += sprintf( s, " mbaff=%d", p->b_interlaced );
910     s += sprintf( s, " constrained_intra=%d", p->b_constrained_intra );
911
912     s += sprintf( s, " bframes=%d", p->i_bframe );
913     if( p->i_bframe )
914     {
915         s += sprintf( s, " b_pyramid=%d b_adapt=%d b_bias=%d direct=%d wpredb=%d",
916                       p->i_bframe_pyramid, p->i_bframe_adaptive, p->i_bframe_bias,
917                       p->analyse.i_direct_mv_pred, p->analyse.b_weighted_bipred );
918     }
919     s += sprintf( s, " wpredp=%d", p->analyse.i_weighted_pred > 0 ? p->analyse.i_weighted_pred : 0 );
920
921     s += sprintf( s, " keyint=%d keyint_min=%d scenecut=%d intra_refresh=%d",
922                   p->i_keyint_max, p->i_keyint_min, p->i_scenecut_threshold, p->b_intra_refresh );
923
924     if( p->rc.b_mb_tree || p->rc.i_vbv_buffer_size )
925         s += sprintf( s, " rc_lookahead=%d", p->rc.i_lookahead );
926
927     s += sprintf( s, " rc=%s mbtree=%d", p->rc.i_rc_method == X264_RC_ABR ?
928                                ( p->rc.b_stat_read ? "2pass" : p->rc.i_vbv_buffer_size ? "cbr" : "abr" )
929                                : p->rc.i_rc_method == X264_RC_CRF ? "crf" : "cqp", p->rc.b_mb_tree );
930     if( p->rc.i_rc_method == X264_RC_ABR || p->rc.i_rc_method == X264_RC_CRF )
931     {
932         if( p->rc.i_rc_method == X264_RC_CRF )
933             s += sprintf( s, " crf=%.1f", p->rc.f_rf_constant );
934         else
935             s += sprintf( s, " bitrate=%d ratetol=%.1f",
936                           p->rc.i_bitrate, p->rc.f_rate_tolerance );
937         s += sprintf( s, " qcomp=%.2f qpmin=%d qpmax=%d qpstep=%d",
938                       p->rc.f_qcompress, p->rc.i_qp_min, p->rc.i_qp_max, p->rc.i_qp_step );
939         if( p->rc.b_stat_read )
940             s += sprintf( s, " cplxblur=%.1f qblur=%.1f",
941                           p->rc.f_complexity_blur, p->rc.f_qblur );
942         if( p->rc.i_vbv_buffer_size )
943             s += sprintf( s, " vbv_maxrate=%d vbv_bufsize=%d",
944                           p->rc.i_vbv_max_bitrate, p->rc.i_vbv_buffer_size );
945     }
946     else if( p->rc.i_rc_method == X264_RC_CQP )
947         s += sprintf( s, " qp=%d", p->rc.i_qp_constant );
948     if( !(p->rc.i_rc_method == X264_RC_CQP && p->rc.i_qp_constant == 0) )
949     {
950         s += sprintf( s, " ip_ratio=%.2f", p->rc.f_ip_factor );
951         if( p->i_bframe && !p->rc.b_mb_tree )
952             s += sprintf( s, " pb_ratio=%.2f", p->rc.f_pb_factor );
953         s += sprintf( s, " aq=%d", p->rc.i_aq_mode );
954         if( p->rc.i_aq_mode )
955             s += sprintf( s, ":%.2f", p->rc.f_aq_strength );
956         if( p->rc.psz_zones )
957             s += sprintf( s, " zones=%s", p->rc.psz_zones );
958         else if( p->rc.i_zones )
959             s += sprintf( s, " zones" );
960     }
961
962     return buf;
963 }
964