x264.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:38k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * x264: h264 encoder testing program.
  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 <stdlib.h>
  24. #include <math.h>
  25. #include <signal.h>
  26. #define _GNU_SOURCE
  27. #include <getopt.h>
  28. #include "common/common.h"
  29. #include "common/cpu.h"
  30. #include "x264.h"
  31. #include "muxers.h"
  32. #ifndef _MSC_VER
  33. #include "config.h"
  34. #endif
  35. uint8_t *mux_buffer = NULL;
  36. int mux_buffer_size = 0;
  37. /* Ctrl-C handler */
  38. static int     b_ctrl_c = 0;
  39. static int     b_exit_on_ctrl_c = 0;
  40. static void    SigIntHandler( int a )
  41. {
  42.     if( b_exit_on_ctrl_c )
  43.         exit(0);
  44.     b_ctrl_c = 1;
  45. }
  46. typedef struct {
  47.     int b_progress;
  48.     int i_seek;
  49.     hnd_t hin;
  50.     hnd_t hout;
  51.     FILE *qpfile;
  52. } cli_opt_t;
  53. /* input file operation function pointers */
  54. int (*p_open_infile)( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param );
  55. int (*p_get_frame_total)( hnd_t handle );
  56. int (*p_read_frame)( x264_picture_t *p_pic, hnd_t handle, int i_frame );
  57. int (*p_close_infile)( hnd_t handle );
  58. /* output file operation function pointers */
  59. static int (*p_open_outfile)( char *psz_filename, hnd_t *p_handle );
  60. static int (*p_set_outfile_param)( hnd_t handle, x264_param_t *p_param );
  61. static int (*p_write_nalu)( hnd_t handle, uint8_t *p_nal, int i_size );
  62. static int (*p_set_eop)( hnd_t handle, x264_picture_t *p_picture );
  63. static int (*p_close_outfile)( hnd_t handle );
  64. static void Help( x264_param_t *defaults, int b_longhelp );
  65. static int  Parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt );
  66. static int  Encode( x264_param_t *param, cli_opt_t *opt );
  67. /****************************************************************************
  68.  * main:
  69.  ****************************************************************************/
  70. int main( int argc, char **argv )
  71. {
  72.     x264_param_t param;
  73.     cli_opt_t opt;
  74.     int ret;
  75. #ifdef PTW32_STATIC_LIB
  76.     pthread_win32_process_attach_np();
  77.     pthread_win32_thread_attach_np();
  78. #endif
  79. #ifdef _WIN32
  80.     _setmode(_fileno(stdin), _O_BINARY);
  81.     _setmode(_fileno(stdout), _O_BINARY);
  82. #endif
  83.     x264_param_default( &param );
  84.     /* Parse command line */
  85.     if( Parse( argc, argv, &param, &opt ) < 0 )
  86.         return -1;
  87.     /* Control-C handler */
  88.     signal( SIGINT, SigIntHandler );
  89.     ret = Encode( &param, &opt );
  90. #ifdef PTW32_STATIC_LIB
  91.     pthread_win32_thread_detach_np();
  92.     pthread_win32_process_detach_np();
  93. #endif
  94.     return ret;
  95. }
  96. static char const *strtable_lookup( const char * const table[], int index )
  97. {
  98.     int i = 0; while( table[i] ) i++;
  99.     return ( ( index >= 0 && index < i ) ? table[ index ] : "???" );
  100. }
  101. /*****************************************************************************
  102.  * Help:
  103.  *****************************************************************************/
  104. static void Help( x264_param_t *defaults, int b_longhelp )
  105. {
  106. #define H0 printf
  107. #define H1 if(b_longhelp) printf
  108.     H0( "x264 core:%d%sn"
  109.         "Syntax: x264 [options] -o outfile infile [widthxheight]n"
  110.         "n"
  111.         "Infile can be raw YUV 4:2:0 (in which case resolution is required),n"
  112.         "  or YUV4MPEG 4:2:0 (*.y4m),n"
  113.         "  or AVI or Avisynth if compiled with AVIS support (%s).n"
  114.         "Outfile type is selected by filename:n"
  115.         " .264 -> Raw bytestreamn"
  116.         " .mkv -> Matroskan"
  117.         " .mp4 -> MP4 if compiled with GPAC support (%s)n"
  118.         "n"
  119.         "Options:n"
  120.         "n"
  121.         "  -h, --help                  List the more commonly used optionsn"
  122.         "      --longhelp              List all optionsn"
  123.         "n",
  124.         X264_BUILD, X264_VERSION,
  125. #ifdef AVIS_INPUT
  126.         "yes",
  127. #else
  128.         "no",
  129. #endif
  130. #ifdef MP4_OUTPUT
  131.         "yes"
  132. #else
  133.         "no"
  134. #endif
  135.       );
  136.     H0( "Frame-type options:n" );
  137.     H0( "n" );
  138.     H0( "  -I, --keyint <integer>      Maximum GOP size [%d]n", defaults->i_keyint_max );
  139.     H1( "  -i, --min-keyint <integer>  Minimum GOP size [%d]n", defaults->i_keyint_min );
  140.     H1( "      --scenecut <integer>    How aggressively to insert extra I-frames [%d]n", defaults->i_scenecut_threshold );
  141.     H1( "      --pre-scenecut          Faster, less precise scenecut detection.n"
  142.         "                                  Required and implied by multi-threading.n" );
  143.     H0( "  -b, --bframes <integer>     Number of B-frames between I and P [%d]n", defaults->i_bframe );
  144.     H1( "      --no-b-adapt            Disable adaptive B-frame decisionn" );
  145.     H1( "      --b-bias <integer>      Influences how often B-frames are used [%d]n", defaults->i_bframe_bias );
  146.     H0( "      --b-pyramid             Keep some B-frames as referencesn" );
  147.     H0( "      --no-cabac              Disable CABACn" );
  148.     H0( "  -r, --ref <integer>         Number of reference frames [%d]n", defaults->i_frame_reference );
  149.     H1( "      --no-deblock            Disable loop filtern" );
  150.     H0( "  -f, --deblock <alpha:beta>  Loop filter AlphaC0 and Beta parameters [%d:%d]n",
  151.                                        defaults->i_deblocking_filter_alphac0, defaults->i_deblocking_filter_beta );
  152.     H0( "      --interlaced            Enable pure-interlaced moden" );
  153.     H0( "n" );
  154.     H0( "Ratecontrol:n" );
  155.     H0( "n" );
  156.     H0( "  -q, --qp <integer>          Set QP (0=lossless) [%d]n", defaults->rc.i_qp_constant );
  157.     H0( "  -B, --bitrate <integer>     Set bitrate (kbit/s)n" );
  158.     H0( "      --crf <float>           Quality-based VBR (nominal QP)n" );
  159.     H1( "      --vbv-maxrate <integer> Max local bitrate (kbit/s) [%d]n", defaults->rc.i_vbv_max_bitrate );
  160.     H0( "      --vbv-bufsize <integer> Enable CBR and set size of the VBV buffer (kbit) [%d]n", defaults->rc.i_vbv_buffer_size );
  161.     H1( "      --vbv-init <float>      Initial VBV buffer occupancy [%.1f]n", defaults->rc.f_vbv_buffer_init );
  162.     H1( "      --qpmin <integer>       Set min QP [%d]n", defaults->rc.i_qp_min );
  163.     H1( "      --qpmax <integer>       Set max QP [%d]n", defaults->rc.i_qp_max );
  164.     H1( "      --qpstep <integer>      Set max QP step [%d]n", defaults->rc.i_qp_step );
  165.     H0( "      --ratetol <float>       Allowed variance of average bitrate [%.1f]n", defaults->rc.f_rate_tolerance );
  166.     H0( "      --ipratio <float>       QP factor between I and P [%.2f]n", defaults->rc.f_ip_factor );
  167.     H0( "      --pbratio <float>       QP factor between P and B [%.2f]n", defaults->rc.f_pb_factor );
  168.     H1( "      --chroma-qp-offset <integer>  QP difference between chroma and luma [%d]n", defaults->analyse.i_chroma_qp_offset );
  169.     H0( "      --aq-mode <integer>     How AQ distributes bits [%d]n"
  170.         "                                  - 0: Disabledn"
  171.         "                                  - 1: Avoid moving bits between framesn"
  172.         "                                  - 2: Move bits between framesn", defaults->rc.i_aq_mode );
  173.     H0( "      --aq-strength <float>   Reduces blocking and blurring in flat andn"
  174.         "                              textured areas. [%.1f]n"
  175.         "                                  - 0.5: weak AQn"
  176.         "                                  - 1.5: strong AQn", defaults->rc.f_aq_strength );
  177.     H0( "n" );
  178.     H0( "  -p, --pass <1|2|3>          Enable multipass ratecontroln"
  179.         "                                  - 1: First pass, creates stats filen"
  180.         "                                  - 2: Last pass, does not overwrite stats filen"
  181.         "                                  - 3: Nth pass, overwrites stats filen" );
  182.     H0( "      --stats <string>        Filename for 2 pass stats ["%s"]n", defaults->rc.psz_stat_out );
  183.     H0( "      --qcomp <float>         QP curve compression: 0.0 => CBR, 1.0 => CQP [%.2f]n", defaults->rc.f_qcompress );
  184.     H1( "      --cplxblur <float>      Reduce fluctuations in QP (before curve compression) [%.1f]n", defaults->rc.f_complexity_blur );
  185.     H1( "      --qblur <float>         Reduce fluctuations in QP (after curve compression) [%.1f]n", defaults->rc.f_qblur );
  186.     H0( "      --zones <zone0>/<zone1>/...  Tweak the bitrate of some regions of the videon" );
  187.     H1( "                              Each zone is of the formn"
  188.         "                                  <start frame>,<end frame>,<option>n"
  189.         "                                  where <option> is eithern"
  190.         "                                      q=<integer> (force QP)n"
  191.         "                                  or  b=<float> (bitrate multiplier)n" );
  192.     H1( "      --qpfile <string>       Force frametypes and QPsn" );
  193.     H0( "n" );
  194.     H0( "Analysis:n" );
  195.     H0( "n" );
  196.     H0( "  -A, --partitions <string>   Partitions to consider ["p8x8,b8x8,i8x8,i4x4"]n"
  197.         "                                  - p8x8, p4x4, b8x8, i8x8, i4x4n"
  198.         "                                  - none, alln"
  199.         "                                  (p4x4 requires p8x8. i8x8 requires --8x8dct.)n" );
  200.     H0( "      --direct <string>       Direct MV prediction mode ["%s"]n"
  201.         "                                  - none, spatial, temporal, auton",
  202.                                        strtable_lookup( x264_direct_pred_names, defaults->analyse.i_direct_mv_pred ) );
  203.     H1( "      --direct-8x8 <-1|0|1>   Direct prediction size [%d]n"
  204.         "                                  -  0: 4x4n"
  205.         "                                  -  1: 8x8n"
  206.         "                                  - -1: smallest possible according to leveln",
  207.                                        defaults->analyse.i_direct_8x8_inference );
  208.     H0( "  -w, --weightb               Weighted prediction for B-framesn" );
  209.     H0( "      --me <string>           Integer pixel motion estimation method ["%s"]n",
  210.                                        strtable_lookup( x264_motion_est_names, defaults->analyse.i_me_method ) );
  211.     H1( "                                  - dia: diamond search, radius 1 (fast)n"
  212.         "                                  - hex: hexagonal search, radius 2n"
  213.         "                                  - umh: uneven multi-hexagon searchn"
  214.         "                                  - esa: exhaustive searchn"
  215.         "                                  - tesa: hadamard exhaustive search (slow)n" );
  216.     else H0( "                                  - dia, hex, umhn" );
  217.     H0( "      --merange <integer>     Maximum motion vector search range [%d]n", defaults->analyse.i_me_range );
  218.     H1( "      --mvrange <integer>     Maximum motion vector length [-1 (auto)]n" );
  219.     H1( "      --mvrange-thread <int>  Minimum buffer between threads [-1 (auto)]n" );
  220.     H0( "  -m, --subme <integer>       Subpixel motion estimation and partitionn"
  221.         "                                  decision quality: 1=fast, 7=best. [%d]n", defaults->analyse.i_subpel_refine );
  222.     H0( "      --b-rdo                 RD based mode decision for B-frames. Requires subme 6.n" );
  223.     H0( "      --mixed-refs            Decide references on a per partition basisn" );
  224.     H1( "      --no-chroma-me          Ignore chroma in motion estimationn" );
  225.     H1( "      --bime                  Jointly optimize both MVs in B-framesn" );
  226.     H0( "  -8, --8x8dct                Adaptive spatial transform sizen" );
  227.     H0( "  -t, --trellis <integer>     Trellis RD quantization. Requires CABAC. [%d]n"
  228.         "                                  - 0: disabledn"
  229.         "                                  - 1: enabled only on the final encode of a MBn"
  230.         "                                  - 2: enabled on all mode decisionsn", defaults->analyse.i_trellis );
  231.     H0( "      --no-fast-pskip         Disables early SKIP detection on P-framesn" );
  232.     H0( "      --no-dct-decimate       Disables coefficient thresholding on P-framesn" );
  233.     H0( "      --nr <integer>          Noise reduction [%d]n", defaults->analyse.i_noise_reduction );
  234.     H1( "n" );
  235.     H1( "      --deadzone-inter <int>  Set the size of the inter luma quantization deadzone [%d]n", defaults->analyse.i_luma_deadzone[0] );
  236.     H1( "      --deadzone-intra <int>  Set the size of the intra luma quantization deadzone [%d]n", defaults->analyse.i_luma_deadzone[1] );
  237.     H1( "                                  Deadzones should be in the range 0 - 32.n" );
  238.     H1( "      --cqm <string>          Preset quant matrices ["flat"]n"
  239.         "                                  - jvt, flatn" );
  240.     H0( "      --cqmfile <string>      Read custom quant matrices from a JM-compatible filen" );
  241.     H1( "                                  Overrides any other --cqm* options.n" );
  242.     H1( "      --cqm4 <list>           Set all 4x4 quant matricesn"
  243.         "                                  Takes a comma-separated list of 16 integers.n" );
  244.     H1( "      --cqm8 <list>           Set all 8x8 quant matricesn"
  245.         "                                  Takes a comma-separated list of 64 integers.n" );
  246.     H1( "      --cqm4i, --cqm4p, --cqm8i, --cqm8pn"
  247.         "                              Set both luma and chroma quant matricesn" );
  248.     H1( "      --cqm4iy, --cqm4ic, --cqm4py, --cqm4pcn"
  249.         "                              Set individual quant matricesn" );
  250.     H1( "n" );
  251.     H1( "Video Usability Info (Annex E):n" );
  252.     H1( "The VUI settings are not used by the encoder but are merely suggestions ton" );
  253.     H1( "the playback equipment. See doc/vui.txt for details. Use at your own risk.n" );
  254.     H1( "n" );
  255.     H1( "      --overscan <string>     Specify crop overscan setting ["%s"]n"
  256.         "                                  - undef, show, cropn",
  257.                                        strtable_lookup( x264_overscan_names, defaults->vui.i_overscan ) );
  258.     H1( "      --videoformat <string>  Specify video format ["%s"]n"
  259.         "                                  - component, pal, ntsc, secam, mac, undefn",
  260.                                        strtable_lookup( x264_vidformat_names, defaults->vui.i_vidformat ) );
  261.     H1( "      --fullrange <string>    Specify full range samples setting ["%s"]n"
  262.         "                                  - off, onn",
  263.                                        strtable_lookup( x264_fullrange_names, defaults->vui.b_fullrange ) );
  264.     H1( "      --colorprim <string>    Specify color primaries ["%s"]n"
  265.         "                                  - undef, bt709, bt470m, bt470bgn"
  266.         "                                    smpte170m, smpte240m, filmn",
  267.                                        strtable_lookup( x264_colorprim_names, defaults->vui.i_colorprim ) );
  268.     H1( "      --transfer <string>     Specify transfer characteristics ["%s"]n"
  269.         "                                  - undef, bt709, bt470m, bt470bg, linear,n"
  270.         "                                    log100, log316, smpte170m, smpte240mn",
  271.                                        strtable_lookup( x264_transfer_names, defaults->vui.i_transfer ) );
  272.     H1( "      --colormatrix <string>  Specify color matrix setting ["%s"]n"
  273.         "                                  - undef, bt709, fcc, bt470bgn"
  274.         "                                    smpte170m, smpte240m, GBR, YCgCon",
  275.                                        strtable_lookup( x264_colmatrix_names, defaults->vui.i_colmatrix ) );
  276.     H1( "      --chromaloc <integer>   Specify chroma sample location (0 to 5) [%d]n",
  277.                                        defaults->vui.i_chroma_loc );
  278.     H0( "n" );
  279.     H0( "Input/Output:n" );
  280.     H0( "n" );
  281.     H0( "  -o, --output                Specify output filen" );
  282.     H0( "      --sar width:height      Specify Sample Aspect Ration" );
  283.     H0( "      --fps <float|rational>  Specify frameraten" );
  284.     H0( "      --seek <integer>        First frame to encoden" );
  285.     H0( "      --frames <integer>      Maximum number of frames to encoden" );
  286.     H0( "      --level <string>        Specify level (as defined by Annex A)n" );
  287.     H0( "n" );
  288.     H0( "  -v, --verbose               Print stats for each framen" );
  289.     H0( "      --progress              Show a progress indicator while encodingn" );
  290.     H0( "      --quiet                 Quiet Moden" );
  291.     H0( "      --no-psnr               Disable PSNR computationn" );
  292.     H0( "      --no-ssim               Disable SSIM computationn" );
  293.     H0( "      --threads <integer>     Parallel encodingn" );
  294.     H0( "      --thread-input          Run Avisynth in its own threadn" );
  295.     H1( "      --non-deterministic     Slightly improve quality of SMP, at the cost of repeatabilityn" );
  296.     H1( "      --asm <integer>         Override CPU detectionn" );
  297.     H1( "      --no-asm                Disable all CPU optimizationsn" );
  298.     H1( "      --visualize             Show MB types overlayed on the encoded videon" );
  299.     H1( "      --dump-yuv <string>     Save reconstructed framesn" );
  300.     H1( "      --sps-id <integer>      Set SPS and PPS id numbers [%d]n", defaults->i_sps_id );
  301.     H1( "      --aud                   Use access unit delimitersn" );
  302.     H0( "n" );
  303. }
  304. /*****************************************************************************
  305.  * Parse:
  306.  *****************************************************************************/
  307. static int  Parse( int argc, char **argv,
  308.                    x264_param_t *param, cli_opt_t *opt )
  309. {
  310.     char *psz_filename = NULL;
  311.     x264_param_t defaults = *param;
  312.     char *psz;
  313.     int b_avis = 0;
  314.     int b_y4m = 0;
  315.     int b_thread_input = 0;
  316.     memset( opt, 0, sizeof(cli_opt_t) );
  317.     /* Default input file driver */
  318.     p_open_infile = open_file_yuv;
  319.     p_get_frame_total = get_frame_total_yuv;
  320.     p_read_frame = read_frame_yuv;
  321.     p_close_infile = close_file_yuv;
  322.     /* Default output file driver */
  323.     p_open_outfile = open_file_bsf;
  324.     p_set_outfile_param = set_param_bsf;
  325.     p_write_nalu = write_nalu_bsf;
  326.     p_set_eop = set_eop_bsf;
  327.     p_close_outfile = close_file_bsf;
  328.     /* Parse command line options */
  329.     for( ;; )
  330.     {
  331.         int b_error = 0;
  332.         int long_options_index = -1;
  333. #define OPT_FRAMES 256
  334. #define OPT_SEEK 257
  335. #define OPT_QPFILE 258
  336. #define OPT_THREAD_INPUT 259
  337. #define OPT_QUIET 260
  338. #define OPT_PROGRESS 261
  339. #define OPT_VISUALIZE 262
  340. #define OPT_LONGHELP 263
  341.         static struct option long_options[] =
  342.         {
  343.             { "help",    no_argument,       NULL, 'h' },
  344.             { "longhelp",no_argument,       NULL, OPT_LONGHELP },
  345.             { "version", no_argument,       NULL, 'V' },
  346.             { "bitrate", required_argument, NULL, 'B' },
  347.             { "bframes", required_argument, NULL, 'b' },
  348.             { "no-b-adapt", no_argument,    NULL, 0 },
  349.             { "b-bias",  required_argument, NULL, 0 },
  350.             { "b-pyramid", no_argument,     NULL, 0 },
  351.             { "min-keyint",required_argument,NULL,'i' },
  352.             { "keyint",  required_argument, NULL, 'I' },
  353.             { "scenecut",required_argument, NULL, 0 },
  354.             { "pre-scenecut", no_argument,  NULL, 0 },
  355.             { "nf",      no_argument,       NULL, 0 },
  356.             { "no-deblock", no_argument,    NULL, 0 },
  357.             { "filter",  required_argument, NULL, 0 },
  358.             { "deblock", required_argument, NULL, 'f' },
  359.             { "interlaced", no_argument,    NULL, 0 },
  360.             { "no-cabac",no_argument,       NULL, 0 },
  361.             { "qp",      required_argument, NULL, 'q' },
  362.             { "qpmin",   required_argument, NULL, 0 },
  363.             { "qpmax",   required_argument, NULL, 0 },
  364.             { "qpstep",  required_argument, NULL, 0 },
  365.             { "crf",     required_argument, NULL, 0 },
  366.             { "ref",     required_argument, NULL, 'r' },
  367.             { "asm",     required_argument, NULL, 0 },
  368.             { "no-asm",  no_argument,       NULL, 0 },
  369.             { "sar",     required_argument, NULL, 0 },
  370.             { "fps",     required_argument, NULL, 0 },
  371.             { "frames",  required_argument, NULL, OPT_FRAMES },
  372.             { "seek",    required_argument, NULL, OPT_SEEK },
  373.             { "output",  required_argument, NULL, 'o' },
  374.             { "analyse", required_argument, NULL, 0 },
  375.             { "partitions", required_argument, NULL, 'A' },
  376.             { "direct",  required_argument, NULL, 0 },
  377.             { "direct-8x8", required_argument, NULL, 0 },
  378.             { "weightb", no_argument,       NULL, 'w' },
  379.             { "me",      required_argument, NULL, 0 },
  380.             { "merange", required_argument, NULL, 0 },
  381.             { "mvrange", required_argument, NULL, 0 },
  382.             { "mvrange-thread", required_argument, NULL, 0 },
  383.             { "subme",   required_argument, NULL, 'm' },
  384.             { "b-rdo",   no_argument,       NULL, 0 },
  385.             { "mixed-refs", no_argument,    NULL, 0 },
  386.             { "no-chroma-me", no_argument,  NULL, 0 },
  387.             { "bime",    no_argument,       NULL, 0 },
  388.             { "8x8dct",  no_argument,       NULL, '8' },
  389.             { "trellis", required_argument, NULL, 't' },
  390.             { "no-fast-pskip", no_argument, NULL, 0 },
  391.             { "no-dct-decimate", no_argument, NULL, 0 },
  392.             { "aq-strength", required_argument, NULL, 0 },
  393.             { "aq-mode", required_argument, NULL, 0 },
  394.             { "deadzone-inter", required_argument, NULL, '0' },
  395.             { "deadzone-intra", required_argument, NULL, '0' },
  396.             { "level",   required_argument, NULL, 0 },
  397.             { "ratetol", required_argument, NULL, 0 },
  398.             { "vbv-maxrate", required_argument, NULL, 0 },
  399.             { "vbv-bufsize", required_argument, NULL, 0 },
  400.             { "vbv-init", required_argument,NULL,  0 },
  401.             { "ipratio", required_argument, NULL, 0 },
  402.             { "pbratio", required_argument, NULL, 0 },
  403.             { "chroma-qp-offset", required_argument, NULL, 0 },
  404.             { "pass",    required_argument, NULL, 'p' },
  405.             { "stats",   required_argument, NULL, 0 },
  406.             { "qcomp",   required_argument, NULL, 0 },
  407.             { "qblur",   required_argument, NULL, 0 },
  408.             { "cplxblur",required_argument, NULL, 0 },
  409.             { "zones",   required_argument, NULL, 0 },
  410.             { "qpfile",  required_argument, NULL, OPT_QPFILE },
  411.             { "threads", required_argument, NULL, 0 },
  412.             { "thread-input", no_argument,  NULL, OPT_THREAD_INPUT },
  413.             { "non-deterministic", no_argument, NULL, 0 },
  414.             { "no-psnr", no_argument,       NULL, 0 },
  415.             { "no-ssim", no_argument,       NULL, 0 },
  416.             { "quiet",   no_argument,       NULL, OPT_QUIET },
  417.             { "verbose", no_argument,       NULL, 'v' },
  418.             { "progress",no_argument,       NULL, OPT_PROGRESS },
  419.             { "visualize",no_argument,      NULL, OPT_VISUALIZE },
  420.             { "dump-yuv",required_argument, NULL, 0 },
  421.             { "sps-id",  required_argument, NULL, 0 },
  422.             { "aud",     no_argument,       NULL, 0 },
  423.             { "nr",      required_argument, NULL, 0 },
  424.             { "cqm",     required_argument, NULL, 0 },
  425.             { "cqmfile", required_argument, NULL, 0 },
  426.             { "cqm4",    required_argument, NULL, 0 },
  427.             { "cqm4i",   required_argument, NULL, 0 },
  428.             { "cqm4iy",  required_argument, NULL, 0 },
  429.             { "cqm4ic",  required_argument, NULL, 0 },
  430.             { "cqm4p",   required_argument, NULL, 0 },
  431.             { "cqm4py",  required_argument, NULL, 0 },
  432.             { "cqm4pc",  required_argument, NULL, 0 },
  433.             { "cqm8",    required_argument, NULL, 0 },
  434.             { "cqm8i",   required_argument, NULL, 0 },
  435.             { "cqm8p",   required_argument, NULL, 0 },
  436.             { "overscan", required_argument, NULL, 0 },
  437.             { "videoformat", required_argument, NULL, 0 },
  438.             { "fullrange", required_argument, NULL, 0 },
  439.             { "colorprim", required_argument, NULL, 0 },
  440.             { "transfer", required_argument, NULL, 0 },
  441.             { "colormatrix", required_argument, NULL, 0 },
  442.             { "chromaloc", required_argument, NULL, 0 },
  443.             {0, 0, 0, 0}
  444.         };
  445.         int c = getopt_long( argc, argv, "8A:B:b:f:hI:i:m:o:p:q:r:t:Vvw",
  446.                              long_options, &long_options_index);
  447.         if( c == -1 )
  448.         {
  449.             break;
  450.         }
  451.         switch( c )
  452.         {
  453.             case 'h':
  454.                 Help( &defaults, 0 );
  455.                 exit(0);
  456.             case OPT_LONGHELP:
  457.                 Help( &defaults, 1 );
  458.                 exit(0);
  459.             case 'V':
  460. #ifdef X264_POINTVER
  461.                 printf( "x264 "X264_POINTVER"n" );
  462. #else
  463.                 printf( "x264 0.%d.Xn", X264_BUILD );
  464. #endif
  465.                 exit(0);
  466.             case OPT_FRAMES:
  467.                 param->i_frame_total = atoi( optarg );
  468.                 break;
  469.             case OPT_SEEK:
  470.                 opt->i_seek = atoi( optarg );
  471.                 break;
  472.             case 'o':
  473.                 if( !strncasecmp(optarg + strlen(optarg) - 4, ".mp4", 4) )
  474.                 {
  475. #ifdef MP4_OUTPUT
  476.                     p_open_outfile = open_file_mp4;
  477.                     p_write_nalu = write_nalu_mp4;
  478.                     p_set_outfile_param = set_param_mp4;
  479.                     p_set_eop = set_eop_mp4;
  480.                     p_close_outfile = close_file_mp4;
  481. #else
  482.                     fprintf( stderr, "x264 [error]: not compiled with MP4 output supportn" );
  483.                     return -1;
  484. #endif
  485.                 }
  486.                 else if( !strncasecmp(optarg + strlen(optarg) - 4, ".mkv", 4) )
  487.                 {
  488.                     p_open_outfile = open_file_mkv;
  489.                     p_write_nalu = write_nalu_mkv;
  490.                     p_set_outfile_param = set_param_mkv;
  491.                     p_set_eop = set_eop_mkv;
  492.                     p_close_outfile = close_file_mkv;
  493.                 }
  494.                 if( !strcmp(optarg, "-") )
  495.                     opt->hout = stdout;
  496.                 else if( p_open_outfile( optarg, &opt->hout ) )
  497.                 {
  498.                     fprintf( stderr, "x264 [error]: can't open output file `%s'n", optarg );
  499.                     return -1;
  500.                 }
  501.                 break;
  502.             case OPT_QPFILE:
  503.                 opt->qpfile = fopen( optarg, "r" );
  504.                 if( !opt->qpfile )
  505.                 {
  506.                     fprintf( stderr, "x264 [error]: can't open `%s'n", optarg );
  507.                     return -1;
  508.                 }
  509.                 param->i_scenecut_threshold = -1;
  510.                 param->b_bframe_adaptive = 0;
  511.                 break;
  512.             case OPT_THREAD_INPUT:
  513.                 b_thread_input = 1;
  514.                 break;
  515.             case OPT_QUIET:
  516.                 param->i_log_level = X264_LOG_NONE;
  517.                 break;
  518.             case 'v':
  519.                 param->i_log_level = X264_LOG_DEBUG;
  520.                 break;
  521.             case OPT_PROGRESS:
  522.                 opt->b_progress = 1;
  523.                 break;
  524.             case OPT_VISUALIZE:
  525. #ifdef VISUALIZE
  526.                 param->b_visualize = 1;
  527.                 b_exit_on_ctrl_c = 1;
  528. #else
  529.                 fprintf( stderr, "x264 [warning]: not compiled with visualization supportn" );
  530. #endif
  531.                 break;
  532.             default:
  533.             {
  534.                 int i;
  535.                 if( long_options_index < 0 )
  536.                 {
  537.                     for( i = 0; long_options[i].name; i++ )
  538.                         if( long_options[i].val == c )
  539.                         {
  540.                             long_options_index = i;
  541.                             break;
  542.                         }
  543.                     if( long_options_index < 0 )
  544.                     {
  545.                         /* getopt_long already printed an error message */
  546.                         return -1;
  547.                     }
  548.                 }
  549.                 b_error |= x264_param_parse( param, long_options[long_options_index].name, optarg );
  550.             }
  551.         }
  552.         if( b_error )
  553.         {
  554.             const char *name = long_options_index > 0 ? long_options[long_options_index].name : argv[optind-2];
  555.             fprintf( stderr, "x264 [error]: invalid argument: %s = %sn", name, optarg );
  556.             return -1;
  557.         }
  558.     }
  559.     /* Get the file name */
  560.     if( optind > argc - 1 || !opt->hout )
  561.     {
  562.         fprintf( stderr, "x264 [error]: No %s file. Run x264 --help for a list of options.n",
  563.                  optind > argc - 1 ? "input" : "output" );
  564.         return -1;
  565.     }
  566.     psz_filename = argv[optind++];
  567.     /* check demuxer type */
  568.     psz = psz_filename + strlen(psz_filename) - 1;
  569.     while( psz > psz_filename && *psz != '.' )
  570.         psz--;
  571.     if( !strncasecmp( psz, ".avi", 4 ) || !strncasecmp( psz, ".avs", 4 ) )
  572.         b_avis = 1;
  573.     if( !strncasecmp( psz, ".y4m", 4 ) )
  574.         b_y4m = 1;
  575.     if( !(b_avis || b_y4m) ) // raw yuv
  576.     {
  577.         if( optind > argc - 1 )
  578.         {
  579.             /* try to parse the file name */
  580.             for( psz = psz_filename; *psz; psz++ )
  581.             {
  582.                 if( *psz >= '0' && *psz <= '9'
  583.                     && sscanf( psz, "%ux%u", &param->i_width, &param->i_height ) == 2 )
  584.                 {
  585.                     if( param->i_log_level >= X264_LOG_INFO )
  586.                         fprintf( stderr, "x264 [info]: file name gives %dx%dn", param->i_width, param->i_height );
  587.                     break;
  588.                 }
  589.             }
  590.         }
  591.         else
  592.         {
  593.             sscanf( argv[optind++], "%ux%u", &param->i_width, &param->i_height );
  594.         }
  595.     }
  596.     if( !(b_avis || b_y4m) && ( !param->i_width || !param->i_height ) )
  597.     {
  598.         fprintf( stderr, "x264 [error]: Rawyuv input requires a resolution.n" );
  599.         return -1;
  600.     }
  601.     /* open the input */
  602.     {
  603.         if( b_avis )
  604.         {
  605. #ifdef AVIS_INPUT
  606.             p_open_infile = open_file_avis;
  607.             p_get_frame_total = get_frame_total_avis;
  608.             p_read_frame = read_frame_avis;
  609.             p_close_infile = close_file_avis;
  610. #else
  611.             fprintf( stderr, "x264 [error]: not compiled with AVIS input supportn" );
  612.             return -1;
  613. #endif
  614.         }
  615.         if ( b_y4m )
  616.         {
  617.             p_open_infile = open_file_y4m;
  618.             p_get_frame_total = get_frame_total_y4m;
  619.             p_read_frame = read_frame_y4m;
  620.             p_close_infile = close_file_y4m;
  621.         }
  622.         if( p_open_infile( psz_filename, &opt->hin, param ) )
  623.         {
  624.             fprintf( stderr, "x264 [error]: could not open input file '%s'n", psz_filename );
  625.             return -1;
  626.         }
  627.     }
  628. #ifdef HAVE_PTHREAD
  629.     if( b_thread_input || param->i_threads > 1
  630.         || (param->i_threads == 0 && x264_cpu_num_processors() > 1) )
  631.     {
  632.         if( open_file_thread( NULL, &opt->hin, param ) )
  633.         {
  634.             fprintf( stderr, "x264 [warning]: threaded input failedn" );
  635.         }
  636.         else
  637.         {
  638.             p_open_infile = open_file_thread;
  639.             p_get_frame_total = get_frame_total_thread;
  640.             p_read_frame = read_frame_thread;
  641.             p_close_infile = close_file_thread;
  642.         }
  643.     }
  644. #endif
  645.     return 0;
  646. }
  647. static void parse_qpfile( cli_opt_t *opt, x264_picture_t *pic, int i_frame )
  648. {
  649.     int num = -1, qp, ret;
  650.     char type;
  651.     uint64_t file_pos;
  652.     while( num < i_frame )
  653.     {
  654.         file_pos = ftell( opt->qpfile );
  655.         ret = fscanf( opt->qpfile, "%d %c %dn", &num, &type, &qp );
  656. if( num > i_frame || ret == EOF )
  657. {
  658. pic->i_type = X264_TYPE_AUTO;
  659. pic->i_qpplus1 = 0;
  660. fseek( opt->qpfile , file_pos , SEEK_SET );
  661. break;
  662. }
  663.         if( num < i_frame )
  664.             continue;
  665.         pic->i_qpplus1 = qp+1;
  666.         if     ( type == 'I' ) pic->i_type = X264_TYPE_IDR;
  667.         else if( type == 'i' ) pic->i_type = X264_TYPE_I;
  668.         else if( type == 'P' ) pic->i_type = X264_TYPE_P;
  669.         else if( type == 'B' ) pic->i_type = X264_TYPE_BREF;
  670.         else if( type == 'b' ) pic->i_type = X264_TYPE_B;
  671.         else ret = 0;
  672.         if( ret != 3 || qp < -1 || qp > 51 )
  673.         {
  674.             fprintf( stderr, "x264 [error]: can't parse qpfile for frame %dn", i_frame );
  675.             fclose( opt->qpfile );
  676.             opt->qpfile = NULL;
  677.             pic->i_type = X264_TYPE_AUTO;
  678.             pic->i_qpplus1 = 0;
  679.             break;
  680.         }
  681.     }
  682. }
  683. /*****************************************************************************
  684.  * Encode:
  685.  *****************************************************************************/
  686. static int  Encode_frame( x264_t *h, hnd_t hout, x264_picture_t *pic )
  687. {
  688.     x264_picture_t pic_out;
  689.     x264_nal_t *nal;
  690.     int i_nal, i;
  691.     int i_file = 0;
  692.     if( x264_encoder_encode( h, &nal, &i_nal, pic, &pic_out ) < 0 )
  693.     {
  694.         fprintf( stderr, "x264 [error]: x264_encoder_encode failedn" );
  695.     }
  696.     for( i = 0; i < i_nal; i++ )
  697.     {
  698.         int i_size;
  699.         if( mux_buffer_size < nal[i].i_payload * 3/2 + 4 )
  700.         {
  701.             mux_buffer_size = nal[i].i_payload * 2 + 4;
  702.             x264_free( mux_buffer );
  703.             mux_buffer = x264_malloc( mux_buffer_size );
  704.         }
  705.         i_size = mux_buffer_size;
  706.         x264_nal_encode( mux_buffer, &i_size, 1, &nal[i] );
  707.         i_file += p_write_nalu( hout, mux_buffer, i_size );
  708.     }
  709.     if (i_nal)
  710.         p_set_eop( hout, &pic_out );
  711.     return i_file;
  712. }
  713. static int  Encode( x264_param_t *param, cli_opt_t *opt )
  714. {
  715.     x264_t *h;
  716.     x264_picture_t pic;
  717.     int     i_frame, i_frame_total;
  718.     int64_t i_start, i_end;
  719.     int64_t i_file;
  720.     int     i_frame_size;
  721.     int     i_update_interval;
  722.     opt->b_progress &= param->i_log_level < X264_LOG_DEBUG;
  723.     i_frame_total = p_get_frame_total( opt->hin );
  724.     i_frame_total -= opt->i_seek;
  725.     if( ( i_frame_total == 0 || param->i_frame_total < i_frame_total )
  726.         && param->i_frame_total > 0 )
  727.         i_frame_total = param->i_frame_total;
  728.     param->i_frame_total = i_frame_total;
  729.     i_update_interval = i_frame_total ? x264_clip3( i_frame_total / 1000, 1, 10 ) : 10;
  730.     if( ( h = x264_encoder_open( param ) ) == NULL )
  731.     {
  732.         fprintf( stderr, "x264 [error]: x264_encoder_open failedn" );
  733.         p_close_infile( opt->hin );
  734.         return -1;
  735.     }
  736.     if( p_set_outfile_param( opt->hout, param ) )
  737.     {
  738.         fprintf( stderr, "x264 [error]: can't set outfile paramn" );
  739.         p_close_infile( opt->hin );
  740.         p_close_outfile( opt->hout );
  741.         return -1;
  742.     }
  743.     /* Create a new pic */
  744.     x264_picture_alloc( &pic, X264_CSP_I420, param->i_width, param->i_height );
  745.     i_start = x264_mdate();
  746.     /* Encode frames */
  747.     for( i_frame = 0, i_file = 0; b_ctrl_c == 0 && (i_frame < i_frame_total || i_frame_total == 0); )
  748.     {
  749.         if( p_read_frame( &pic, opt->hin, i_frame + opt->i_seek ) )
  750.             break;
  751.         pic.i_pts = (int64_t)i_frame * param->i_fps_den;
  752.         if( opt->qpfile )
  753.             parse_qpfile( opt, &pic, i_frame + opt->i_seek );
  754.         else
  755.         {
  756.             /* Do not force any parameters */
  757.             pic.i_type = X264_TYPE_AUTO;
  758.             pic.i_qpplus1 = 0;
  759.         }
  760.         i_file += Encode_frame( h, opt->hout, &pic );
  761.         i_frame++;
  762.         /* update status line (up to 1000 times per input file) */
  763.         //if( opt->b_progress && i_frame % i_update_interval == 0 )
  764. if (1)
  765.         {
  766.             int64_t i_elapsed = x264_mdate() - i_start;
  767.             double fps = i_elapsed > 0 ? i_frame * 1000000. / i_elapsed : 0;
  768.             if( i_frame_total )
  769.             {
  770.                 int eta = i_elapsed * (i_frame_total - i_frame) / ((int64_t)i_frame * 1000000);
  771.                 fprintf( stderr, "encoded frames: %d/%d (%.1f%%), %.2f fps, %.2f kb/s, eta %d:%02d:%02d  r",
  772.                          i_frame, i_frame_total, 100. * i_frame / i_frame_total, fps,
  773.                          (double) i_file * 8 * param->i_fps_num / ( (double) param->i_fps_den * i_frame * 1000 ),
  774.                          eta/3600, (eta/60)%60, eta%60 );
  775.             }
  776.             else
  777.                 fprintf( stderr, "encoded frames: %d, %.2f fps   r", i_frame, fps );
  778.             fflush( stderr ); // needed in windows
  779.         }
  780.     }
  781.     /* Flush delayed B-frames */
  782.     do {
  783.         i_file +=
  784.         i_frame_size = Encode_frame( h, opt->hout, NULL );
  785.     } while( i_frame_size );
  786.     i_end = x264_mdate();
  787.     x264_picture_clean( &pic );
  788.     /* Erase progress indicator before printing encoding stats. */
  789.     if( opt->b_progress )
  790.         fprintf( stderr, "                                                                               r" );
  791.     x264_encoder_close( h );
  792.     x264_free( mux_buffer );
  793.     fprintf( stderr, "n" );
  794.     if( b_ctrl_c )
  795.         fprintf( stderr, "aborted at input frame %dn", opt->i_seek + i_frame );
  796.     p_close_infile( opt->hin );
  797.     p_close_outfile( opt->hout );
  798.     if( i_frame > 0 )
  799.     {
  800.         double fps = (double)i_frame * (double)1000000 /
  801.                      (double)( i_end - i_start );
  802.         fprintf( stderr, "encoded %d frames, %.2f fps, %.2f kb/sn", i_frame, fps,
  803.                  (double) i_file * 8 * param->i_fps_num /
  804.                  ( (double) param->i_fps_den * i_frame * 1000 ) );
  805.     }
  806.     return 0;
  807. }