common.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:30k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

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