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