]> git.sesse.net Git - x264/blob - common/common.c
Faster 8x8dct+CAVLC interleave
[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     = -1;
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->i_bframe_adaptive = X264_B_ADAPT_FAST;
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_VARIANCE;
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.f_qcompress = 0.6;
104     param->rc.f_qblur = 0.5;
105     param->rc.f_complexity_blur = 20;
106     param->rc.i_zones = 0;
107
108     /* Log */
109     param->pf_log = x264_log_default;
110     param->p_log_private = NULL;
111     param->i_log_level = X264_LOG_INFO;
112
113     /* */
114     param->analyse.intra = X264_ANALYSE_I4x4 | X264_ANALYSE_I8x8;
115     param->analyse.inter = X264_ANALYSE_I4x4 | X264_ANALYSE_I8x8
116                          | X264_ANALYSE_PSUB16x16 | X264_ANALYSE_BSUB16x16;
117     param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
118     param->analyse.i_me_method = X264_ME_HEX;
119     param->analyse.f_psy_rd = 1.0;
120     param->analyse.f_psy_trellis = 0;
121     param->analyse.i_me_range = 16;
122     param->analyse.i_subpel_refine = 6;
123     param->analyse.b_chroma_me = 1;
124     param->analyse.i_mv_range_thread = -1;
125     param->analyse.i_mv_range = -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, UNUSED *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     {
333         p->i_bframe_adaptive = atobool(value);
334         if( b_error )
335         {
336             b_error = 0;
337             p->i_bframe_adaptive = atoi(value);
338         }
339     }
340     OPT("b-bias")
341         p->i_bframe_bias = atoi(value);
342     OPT("b-pyramid")
343         p->b_bframe_pyramid = atobool(value);
344     OPT("nf")
345         p->b_deblocking_filter = !atobool(value);
346     OPT2("filter", "deblock")
347     {
348         if( 2 == sscanf( value, "%d:%d", &p->i_deblocking_filter_alphac0, &p->i_deblocking_filter_beta ) ||
349             2 == sscanf( value, "%d,%d", &p->i_deblocking_filter_alphac0, &p->i_deblocking_filter_beta ) )
350         {
351             p->b_deblocking_filter = 1;
352         }
353         else if( sscanf( value, "%d", &p->i_deblocking_filter_alphac0 ) )
354         {
355             p->b_deblocking_filter = 1;
356             p->i_deblocking_filter_beta = p->i_deblocking_filter_alphac0;
357         }
358         else
359             p->b_deblocking_filter = atobool(value);
360     }
361     OPT("cabac")
362         p->b_cabac = atobool(value);
363     OPT("cabac-idc")
364         p->i_cabac_init_idc = atoi(value);
365     OPT("interlaced")
366         p->b_interlaced = atobool(value);
367     OPT("cqm")
368     {
369         if( strstr( value, "flat" ) )
370             p->i_cqm_preset = X264_CQM_FLAT;
371         else if( strstr( value, "jvt" ) )
372             p->i_cqm_preset = X264_CQM_JVT;
373         else
374             p->psz_cqm_file = strdup(value);
375     }
376     OPT("cqmfile")
377         p->psz_cqm_file = strdup(value);
378     OPT("cqm4")
379     {
380         p->i_cqm_preset = X264_CQM_CUSTOM;
381         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
382         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
383         b_error |= parse_cqm( value, p->cqm_4py, 16 );
384         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
385     }
386     OPT("cqm8")
387     {
388         p->i_cqm_preset = X264_CQM_CUSTOM;
389         b_error |= parse_cqm( value, p->cqm_8iy, 64 );
390         b_error |= parse_cqm( value, p->cqm_8py, 64 );
391     }
392     OPT("cqm4i")
393     {
394         p->i_cqm_preset = X264_CQM_CUSTOM;
395         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
396         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
397     }
398     OPT("cqm4p")
399     {
400         p->i_cqm_preset = X264_CQM_CUSTOM;
401         b_error |= parse_cqm( value, p->cqm_4py, 16 );
402         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
403     }
404     OPT("cqm4iy")
405     {
406         p->i_cqm_preset = X264_CQM_CUSTOM;
407         b_error |= parse_cqm( value, p->cqm_4iy, 16 );
408     }
409     OPT("cqm4ic")
410     {
411         p->i_cqm_preset = X264_CQM_CUSTOM;
412         b_error |= parse_cqm( value, p->cqm_4ic, 16 );
413     }
414     OPT("cqm4py")
415     {
416         p->i_cqm_preset = X264_CQM_CUSTOM;
417         b_error |= parse_cqm( value, p->cqm_4py, 16 );
418     }
419     OPT("cqm4pc")
420     {
421         p->i_cqm_preset = X264_CQM_CUSTOM;
422         b_error |= parse_cqm( value, p->cqm_4pc, 16 );
423     }
424     OPT("cqm8i")
425     {
426         p->i_cqm_preset = X264_CQM_CUSTOM;
427         b_error |= parse_cqm( value, p->cqm_8iy, 64 );
428     }
429     OPT("cqm8p")
430     {
431         p->i_cqm_preset = X264_CQM_CUSTOM;
432         b_error |= parse_cqm( value, p->cqm_8py, 64 );
433     }
434     OPT("log")
435         p->i_log_level = atoi(value);
436 #ifdef VISUALIZE
437     OPT("visualize")
438         p->b_visualize = atobool(value);
439 #endif
440     OPT("dump-yuv")
441         p->psz_dump_yuv = strdup(value);
442     OPT2("analyse", "partitions")
443     {
444         p->analyse.inter = 0;
445         if( strstr( value, "none" ) )  p->analyse.inter =  0;
446         if( strstr( value, "all" ) )   p->analyse.inter = ~0;
447
448         if( strstr( value, "i4x4" ) )  p->analyse.inter |= X264_ANALYSE_I4x4;
449         if( strstr( value, "i8x8" ) )  p->analyse.inter |= X264_ANALYSE_I8x8;
450         if( strstr( value, "p8x8" ) )  p->analyse.inter |= X264_ANALYSE_PSUB16x16;
451         if( strstr( value, "p4x4" ) )  p->analyse.inter |= X264_ANALYSE_PSUB8x8;
452         if( strstr( value, "b8x8" ) )  p->analyse.inter |= X264_ANALYSE_BSUB16x16;
453     }
454     OPT("8x8dct")
455         p->analyse.b_transform_8x8 = atobool(value);
456     OPT2("weightb", "weight-b")
457         p->analyse.b_weighted_bipred = atobool(value);
458     OPT2("direct", "direct-pred")
459         b_error |= parse_enum( value, x264_direct_pred_names, &p->analyse.i_direct_mv_pred );
460     OPT("chroma-qp-offset")
461         p->analyse.i_chroma_qp_offset = atoi(value);
462     OPT("me")
463         b_error |= parse_enum( value, x264_motion_est_names, &p->analyse.i_me_method );
464     OPT2("merange", "me-range")
465         p->analyse.i_me_range = atoi(value);
466     OPT2("mvrange", "mv-range")
467         p->analyse.i_mv_range = atoi(value);
468     OPT2("mvrange-thread", "mv-range-thread")
469         p->analyse.i_mv_range_thread = atoi(value);
470     OPT2("subme", "subq")
471         p->analyse.i_subpel_refine = atoi(value);
472     OPT("psy-rd")
473     {
474         if( 2 == sscanf( value, "%f:%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ) ||
475             2 == sscanf( value, "%f,%f", &p->analyse.f_psy_rd, &p->analyse.f_psy_trellis ) )
476         { }
477         else if( sscanf( value, "%f", &p->analyse.f_psy_rd ) )
478         {
479             p->analyse.f_psy_trellis = 0;
480         }
481         else
482         {
483             p->analyse.f_psy_rd = 0;
484             p->analyse.f_psy_trellis = 0;
485         }
486     }
487     OPT("chroma-me")
488         p->analyse.b_chroma_me = atobool(value);
489     OPT("mixed-refs")
490         p->analyse.b_mixed_references = atobool(value);
491     OPT("trellis")
492         p->analyse.i_trellis = atoi(value);
493     OPT("fast-pskip")
494         p->analyse.b_fast_pskip = atobool(value);
495     OPT("dct-decimate")
496         p->analyse.b_dct_decimate = atobool(value);
497     OPT("deadzone-inter")
498         p->analyse.i_luma_deadzone[0] = atoi(value);
499     OPT("deadzone-intra")
500         p->analyse.i_luma_deadzone[1] = atoi(value);
501     OPT("nr")
502         p->analyse.i_noise_reduction = atoi(value);
503     OPT("bitrate")
504     {
505         p->rc.i_bitrate = atoi(value);
506         p->rc.i_rc_method = X264_RC_ABR;
507     }
508     OPT2("qp", "qp_constant")
509     {
510         p->rc.i_qp_constant = atoi(value);
511         p->rc.i_rc_method = X264_RC_CQP;
512     }
513     OPT("crf")
514     {
515         p->rc.f_rf_constant = atof(value);
516         p->rc.i_rc_method = X264_RC_CRF;
517     }
518     OPT2("qpmin", "qp-min")
519         p->rc.i_qp_min = atoi(value);
520     OPT2("qpmax", "qp-max")
521         p->rc.i_qp_max = atoi(value);
522     OPT2("qpstep", "qp-step")
523         p->rc.i_qp_step = atoi(value);
524     OPT("ratetol")
525         p->rc.f_rate_tolerance = !strncmp("inf", value, 3) ? 1e9 : atof(value);
526     OPT("vbv-maxrate")
527         p->rc.i_vbv_max_bitrate = atoi(value);
528     OPT("vbv-bufsize")
529         p->rc.i_vbv_buffer_size = atoi(value);
530     OPT("vbv-init")
531         p->rc.f_vbv_buffer_init = atof(value);
532     OPT2("ipratio", "ip-factor")
533         p->rc.f_ip_factor = atof(value);
534     OPT2("pbratio", "pb-factor")
535         p->rc.f_pb_factor = atof(value);
536     OPT("aq-mode")
537         p->rc.i_aq_mode = atoi(value);
538     OPT("aq-strength")
539         p->rc.f_aq_strength = atof(value);
540     OPT("pass")
541     {
542         int i = x264_clip3( atoi(value), 0, 3 );
543         p->rc.b_stat_write = i & 1;
544         p->rc.b_stat_read = i & 2;
545     }
546     OPT("stats")
547     {
548         p->rc.psz_stat_in = strdup(value);
549         p->rc.psz_stat_out = strdup(value);
550     }
551     OPT("qcomp")
552         p->rc.f_qcompress = atof(value);
553     OPT("qblur")
554         p->rc.f_qblur = atof(value);
555     OPT2("cplxblur", "cplx-blur")
556         p->rc.f_complexity_blur = atof(value);
557     OPT("zones")
558         p->rc.psz_zones = strdup(value);
559     OPT("psnr")
560         p->analyse.b_psnr = atobool(value);
561     OPT("ssim")
562         p->analyse.b_ssim = atobool(value);
563     OPT("aud")
564         p->b_aud = atobool(value);
565     OPT("sps-id")
566         p->i_sps_id = atoi(value);
567     OPT("global-header")
568         p->b_repeat_headers = !atobool(value);
569     OPT("repeat-headers")
570         p->b_repeat_headers = atobool(value);
571     else
572         return X264_PARAM_BAD_NAME;
573 #undef OPT
574 #undef OPT2
575 #undef atobool
576 #undef atoi
577 #undef atof
578
579     if( name_buf )
580         free( name_buf );
581
582     b_error |= value_was_null && !name_was_bool;
583     return b_error ? X264_PARAM_BAD_VALUE : 0;
584 }
585
586 /****************************************************************************
587  * x264_log:
588  ****************************************************************************/
589 void x264_log( x264_t *h, int i_level, const char *psz_fmt, ... )
590 {
591     if( i_level <= h->param.i_log_level )
592     {
593         va_list arg;
594         va_start( arg, psz_fmt );
595         h->param.pf_log( h->param.p_log_private, i_level, psz_fmt, arg );
596         va_end( arg );
597     }
598 }
599
600 static void x264_log_default( void *p_unused, int i_level, const char *psz_fmt, va_list arg )
601 {
602     char *psz_prefix;
603     switch( i_level )
604     {
605         case X264_LOG_ERROR:
606             psz_prefix = "error";
607             break;
608         case X264_LOG_WARNING:
609             psz_prefix = "warning";
610             break;
611         case X264_LOG_INFO:
612             psz_prefix = "info";
613             break;
614         case X264_LOG_DEBUG:
615             psz_prefix = "debug";
616             break;
617         default:
618             psz_prefix = "unknown";
619             break;
620     }
621     fprintf( stderr, "x264 [%s]: ", psz_prefix );
622     vfprintf( stderr, psz_fmt, arg );
623 }
624
625 /****************************************************************************
626  * x264_picture_alloc:
627  ****************************************************************************/
628 void x264_picture_alloc( x264_picture_t *pic, int i_csp, int i_width, int i_height )
629 {
630     pic->i_type = X264_TYPE_AUTO;
631     pic->i_qpplus1 = 0;
632     pic->img.i_csp = i_csp;
633     pic->img.i_plane = 3;
634     pic->img.plane[0] = x264_malloc( 3 * i_width * i_height / 2 );
635     pic->img.plane[1] = pic->img.plane[0] + i_width * i_height;
636     pic->img.plane[2] = pic->img.plane[1] + i_width * i_height / 4;
637     pic->img.i_stride[0] = i_width;
638     pic->img.i_stride[1] = i_width / 2;
639     pic->img.i_stride[2] = i_width / 2;
640 }
641
642 /****************************************************************************
643  * x264_picture_clean:
644  ****************************************************************************/
645 void x264_picture_clean( x264_picture_t *pic )
646 {
647     x264_free( pic->img.plane[0] );
648
649     /* just to be safe */
650     memset( pic, 0, sizeof( x264_picture_t ) );
651 }
652
653 /****************************************************************************
654  * x264_nal_encode:
655  ****************************************************************************/
656 int x264_nal_encode( void *p_data, int *pi_data, int b_annexeb, x264_nal_t *nal )
657 {
658     uint8_t *dst = p_data;
659     uint8_t *src = nal->p_payload;
660     uint8_t *end = &nal->p_payload[nal->i_payload];
661     int i_count = 0;
662
663     /* FIXME this code doesn't check overflow */
664
665     if( b_annexeb )
666     {
667         /* long nal start code (we always use long ones)*/
668         *dst++ = 0x00;
669         *dst++ = 0x00;
670         *dst++ = 0x00;
671         *dst++ = 0x01;
672     }
673
674     /* nal header */
675     *dst++ = ( 0x00 << 7 ) | ( nal->i_ref_idc << 5 ) | nal->i_type;
676
677     while( src < end )
678     {
679         if( i_count == 2 && *src <= 0x03 )
680         {
681             *dst++ = 0x03;
682             i_count = 0;
683         }
684         if( *src == 0 )
685             i_count++;
686         else
687             i_count = 0;
688         *dst++ = *src++;
689     }
690     *pi_data = dst - (uint8_t*)p_data;
691
692     return *pi_data;
693 }
694
695
696
697 /****************************************************************************
698  * x264_malloc:
699  ****************************************************************************/
700 void *x264_malloc( int i_size )
701 {
702 #ifdef SYS_MACOSX
703     /* Mac OS X always returns 16 bytes aligned memory */
704     return malloc( i_size );
705 #elif defined( HAVE_MALLOC_H )
706     return memalign( 16, i_size );
707 #else
708     uint8_t * buf;
709     uint8_t * align_buf;
710     buf = (uint8_t *) malloc( i_size + 15 + sizeof( void ** ) +
711               sizeof( int ) );
712     align_buf = buf + 15 + sizeof( void ** ) + sizeof( int );
713     align_buf -= (long) align_buf & 15;
714     *( (void **) ( align_buf - sizeof( void ** ) ) ) = buf;
715     *( (int *) ( align_buf - sizeof( void ** ) - sizeof( int ) ) ) = i_size;
716     return align_buf;
717 #endif
718 }
719
720 /****************************************************************************
721  * x264_free:
722  ****************************************************************************/
723 void x264_free( void *p )
724 {
725     if( p )
726     {
727 #if defined( HAVE_MALLOC_H ) || defined( SYS_MACOSX )
728         free( p );
729 #else
730         free( *( ( ( void **) p ) - 1 ) );
731 #endif
732     }
733 }
734
735 /****************************************************************************
736  * x264_realloc:
737  ****************************************************************************/
738 void *x264_realloc( void *p, int i_size )
739 {
740 #ifdef HAVE_MALLOC_H
741     return realloc( p, i_size );
742 #else
743     int       i_old_size = 0;
744     uint8_t * p_new;
745     if( p )
746     {
747         i_old_size = *( (int*) ( (uint8_t*) p - sizeof( void ** ) -
748                          sizeof( int ) ) );
749     }
750     p_new = x264_malloc( i_size );
751     if( i_old_size > 0 && i_size > 0 )
752     {
753         memcpy( p_new, p, ( i_old_size < i_size ) ? i_old_size : i_size );
754     }
755     x264_free( p );
756     return p_new;
757 #endif
758 }
759
760 /****************************************************************************
761  * x264_reduce_fraction:
762  ****************************************************************************/
763 void x264_reduce_fraction( int *n, int *d )
764 {
765     int a = *n;
766     int b = *d;
767     int c;
768     if( !a || !b )
769         return;
770     c = a % b;
771     while(c)
772     {
773         a = b;
774         b = c;
775         c = a % b;
776     }
777     *n /= b;
778     *d /= b;
779 }
780
781 /****************************************************************************
782  * x264_slurp_file:
783  ****************************************************************************/
784 char *x264_slurp_file( const char *filename )
785 {
786     int b_error = 0;
787     int i_size;
788     char *buf;
789     FILE *fh = fopen( filename, "rb" );
790     if( !fh )
791         return NULL;
792     b_error |= fseek( fh, 0, SEEK_END ) < 0;
793     b_error |= ( i_size = ftell( fh ) ) <= 0;
794     b_error |= fseek( fh, 0, SEEK_SET ) < 0;
795     if( b_error )
796         return NULL;
797     buf = x264_malloc( i_size+2 );
798     if( buf == NULL )
799         return NULL;
800     b_error |= fread( buf, 1, i_size, fh ) != i_size;
801     if( buf[i_size-1] != '\n' )
802         buf[i_size++] = '\n';
803     buf[i_size] = 0;
804     fclose( fh );
805     if( b_error )
806     {
807         x264_free( buf );
808         return NULL;
809     }
810     return buf;
811 }
812
813 /****************************************************************************
814  * x264_param2string:
815  ****************************************************************************/
816 char *x264_param2string( x264_param_t *p, int b_res )
817 {
818     int len = 1000;
819     char *buf, *s;
820     if( p->rc.psz_zones )
821         len += strlen(p->rc.psz_zones);
822     buf = s = x264_malloc( len );
823
824     if( b_res )
825     {
826         s += sprintf( s, "%dx%d ", p->i_width, p->i_height );
827         s += sprintf( s, "fps=%d/%d ", p->i_fps_num, p->i_fps_den );
828     }
829
830     s += sprintf( s, "cabac=%d", p->b_cabac );
831     s += sprintf( s, " ref=%d", p->i_frame_reference );
832     s += sprintf( s, " deblock=%d:%d:%d", p->b_deblocking_filter,
833                   p->i_deblocking_filter_alphac0, p->i_deblocking_filter_beta );
834     s += sprintf( s, " analyse=%#x:%#x", p->analyse.intra, p->analyse.inter );
835     s += sprintf( s, " me=%s", x264_motion_est_names[ p->analyse.i_me_method ] );
836     s += sprintf( s, " subme=%d", p->analyse.i_subpel_refine );
837     s += sprintf( s, " psy_rd=%.1f:%.1f", p->analyse.f_psy_rd, p->analyse.f_psy_trellis );
838     s += sprintf( s, " mixed_ref=%d", p->analyse.b_mixed_references );
839     s += sprintf( s, " me_range=%d", p->analyse.i_me_range );
840     s += sprintf( s, " chroma_me=%d", p->analyse.b_chroma_me );
841     s += sprintf( s, " trellis=%d", p->analyse.i_trellis );
842     s += sprintf( s, " 8x8dct=%d", p->analyse.b_transform_8x8 );
843     s += sprintf( s, " cqm=%d", p->i_cqm_preset );
844     s += sprintf( s, " deadzone=%d,%d", p->analyse.i_luma_deadzone[0], p->analyse.i_luma_deadzone[1] );
845     s += sprintf( s, " chroma_qp_offset=%d", p->analyse.i_chroma_qp_offset );
846     s += sprintf( s, " threads=%d", p->i_threads );
847     s += sprintf( s, " nr=%d", p->analyse.i_noise_reduction );
848     s += sprintf( s, " decimate=%d", p->analyse.b_dct_decimate );
849     s += sprintf( s, " mbaff=%d", p->b_interlaced );
850
851     s += sprintf( s, " bframes=%d", p->i_bframe );
852     if( p->i_bframe )
853     {
854         s += sprintf( s, " b_pyramid=%d b_adapt=%d b_bias=%d direct=%d wpredb=%d",
855                       p->b_bframe_pyramid, p->i_bframe_adaptive, p->i_bframe_bias,
856                       p->analyse.i_direct_mv_pred, p->analyse.b_weighted_bipred );
857     }
858
859     s += sprintf( s, " keyint=%d keyint_min=%d scenecut=%d%s",
860                   p->i_keyint_max, p->i_keyint_min, p->i_scenecut_threshold,
861                   p->b_pre_scenecut ? "(pre)" : "" );
862
863     s += sprintf( s, " rc=%s", p->rc.i_rc_method == X264_RC_ABR ?
864                                ( p->rc.b_stat_read ? "2pass" : p->rc.i_vbv_buffer_size ? "cbr" : "abr" )
865                                : p->rc.i_rc_method == X264_RC_CRF ? "crf" : "cqp" );
866     if( p->rc.i_rc_method == X264_RC_ABR || p->rc.i_rc_method == X264_RC_CRF )
867     {
868         if( p->rc.i_rc_method == X264_RC_CRF )
869             s += sprintf( s, " crf=%.1f", p->rc.f_rf_constant );
870         else
871             s += sprintf( s, " bitrate=%d ratetol=%.1f",
872                           p->rc.i_bitrate, p->rc.f_rate_tolerance );
873         s += sprintf( s, " qcomp=%.2f qpmin=%d qpmax=%d qpstep=%d",
874                       p->rc.f_qcompress, p->rc.i_qp_min, p->rc.i_qp_max, p->rc.i_qp_step );
875         if( p->rc.b_stat_read )
876             s += sprintf( s, " cplxblur=%.1f qblur=%.1f",
877                           p->rc.f_complexity_blur, p->rc.f_qblur );
878         if( p->rc.i_vbv_buffer_size )
879             s += sprintf( s, " vbv_maxrate=%d vbv_bufsize=%d",
880                           p->rc.i_vbv_max_bitrate, p->rc.i_vbv_buffer_size );
881     }
882     else if( p->rc.i_rc_method == X264_RC_CQP )
883         s += sprintf( s, " qp=%d", p->rc.i_qp_constant );
884     if( !(p->rc.i_rc_method == X264_RC_CQP && p->rc.i_qp_constant == 0) )
885     {
886         s += sprintf( s, " ip_ratio=%.2f", p->rc.f_ip_factor );
887         if( p->i_bframe )
888             s += sprintf( s, " pb_ratio=%.2f", p->rc.f_pb_factor );
889         s += sprintf( s, " aq=%d", p->rc.i_aq_mode );
890         if( p->rc.i_aq_mode )
891             s += sprintf( s, ":%.2f", p->rc.f_aq_strength );
892         if( p->rc.psz_zones )
893             s += sprintf( s, " zones=%s", p->rc.psz_zones );
894         else if( p->rc.i_zones )
895             s += sprintf( s, " zones" );
896     }
897
898     return buf;
899 }
900