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

流媒体/Mpeg4/MP4

开发平台:

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. //配置MS VC环境 --@lia
  33. #ifndef _MSC_VER
  34. #include "config.h"
  35. #endif
  36. #ifdef _WIN32
  37. #include <windows.h>
  38. #else
  39. #define SetConsoleTitle(t)
  40. #endif
  41. uint8_t *mux_buffer = NULL;
  42. int mux_buffer_size = 0;
  43. /* Ctrl-C handler */
  44. static int     b_ctrl_c = 0;
  45. static int     b_exit_on_ctrl_c = 0;
  46. static void    SigIntHandler( int a )
  47. {
  48.     if( b_exit_on_ctrl_c )
  49.         exit(0);
  50.     b_ctrl_c = 1;
  51. }
  52. typedef struct {
  53.     int b_progress;
  54.     int i_seek;
  55.     hnd_t hin;
  56.     hnd_t hout;
  57.     FILE *qpfile;
  58. } cli_opt_t;
  59. /* input file operation function pointers */
  60. int (*p_open_infile)( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param );
  61. int (*p_get_frame_total)( hnd_t handle );
  62. int (*p_read_frame)( x264_picture_t *p_pic, hnd_t handle, int i_frame );
  63. int (*p_close_infile)( hnd_t handle );
  64. /* output file operation function pointers */
  65. static int (*p_open_outfile)( char *psz_filename, hnd_t *p_handle );
  66. static int (*p_set_outfile_param)( hnd_t handle, x264_param_t *p_param );
  67. static int (*p_write_nalu)( hnd_t handle, uint8_t *p_nal, int i_size );
  68. static int (*p_set_eop)( hnd_t handle, x264_picture_t *p_picture );
  69. static int (*p_close_outfile)( hnd_t handle );
  70. static void Help( x264_param_t *defaults, int longhelp );
  71. static int  Parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt );
  72. static int  Encode( x264_param_t *param, cli_opt_t *opt );
  73. /****************************************************************************
  74.  * main:
  75.  ****************************************************************************/
  76. int main( int argc, char **argv )
  77. {
  78.     x264_param_t param;
  79.     cli_opt_t opt;
  80.     int ret;
  81. #ifdef PTW32_STATIC_LIB
  82.     pthread_win32_process_attach_np();
  83.     pthread_win32_thread_attach_np();
  84. #endif
  85. #ifdef _WIN32
  86.     _setmode(_fileno(stdin), _O_BINARY);
  87.     _setmode(_fileno(stdout), _O_BINARY);
  88. #endif
  89.     x264_param_default( &param );
  90.     /* Parse command line */
  91.     if( Parse( argc, argv, &param, &opt ) < 0 )
  92.         return -1;
  93.     /* Control-C handler */
  94.     signal( SIGINT, SigIntHandler );
  95.     ret = Encode( &param, &opt );
  96. #ifdef PTW32_STATIC_LIB
  97.     pthread_win32_thread_detach_np();
  98.     pthread_win32_process_detach_np();
  99. #endif
  100.     return ret;
  101. }
  102. static char const *strtable_lookup( const char * const table[], int index )
  103. {
  104.     int i = 0; while( table[i] ) i++;
  105.     return ( ( index >= 0 && index < i ) ? table[ index ] : "???" );
  106. }
  107. /*****************************************************************************
  108.  * Help:
  109.  *****************************************************************************/
  110. static void Help( x264_param_t *defaults, int longhelp )
  111. {
  112. #define H0 printf
  113. #define H1 if(longhelp>=1) printf
  114. #define H2 if(longhelp==2) printf
  115.     H0( "x264 core:%d%sn"
  116.         "Syntax: x264 [options] -o outfile infile [widthxheight]n"
  117.         "n"
  118.         "Infile can be raw YUV 4:2:0 (in which case resolution is required),n"
  119.         "  or YUV4MPEG 4:2:0 (*.y4m),n"
  120.         "  or AVI or Avisynth if compiled with AVIS support (%s).n"
  121.         "Outfile type is selected by filename:n"
  122.         " .264 -> Raw bytestreamn"
  123.         " .mkv -> Matroskan"
  124.         " .mp4 -> MP4 if compiled with GPAC support (%s)n"
  125.         "n"
  126.         "Options:n"
  127.         "n"
  128.         "  -h, --help                  List basic optionsn"
  129.         "      --longhelp              List more optionsn"
  130.         "      --fullhelp              List all optionsn"
  131.         "n",
  132.         X264_BUILD, X264_VERSION,
  133. #ifdef AVIS_INPUT
  134.         "yes",
  135. #else
  136.         "no",
  137. #endif
  138. #ifdef MP4_OUTPUT
  139.         "yes"
  140. #else
  141.         "no"
  142. #endif
  143.       );
  144.     H0( "Example usage:n" );
  145.     H0( "n" );
  146.     H0( "      Constant quality mode:n" );
  147.     H0( "            x264 --crf 24 -o output inputn" );
  148.     H0( "n" );
  149.     H0( "      Two-pass with a bitrate of 1000kbps:n" );
  150.     H0( "            x264 --pass 1 --bitrate 1000 -o output inputn" );
  151.     H0( "            x264 --pass 2 --bitrate 1000 -o output inputn" );
  152.     H0( "n" );
  153.     H0( "      Lossless:n" );
  154.     H0( "            x264 --crf 0 -o output inputn" );
  155.     H0( "n" );
  156.     H0( "      Maximum PSNR at the cost of speed and visual quality:n" );
  157.     H0( "            x264 --preset placebo --tune psnr -o output inputn" );
  158.     H0( "n" );
  159.     H0( "      Constant bitrate at 1000kbps with a 2 second-buffer:n");
  160.     H0( "            x264 --vbv-bufsize 2000 --bitrate 1000 -o output inputn" );
  161.     H0( "n" );
  162.     H0( "Presets:n" );
  163.     H0( "n" );
  164.     H0( "      --profile               Force H.264 profile [high]n" );
  165.     H0( "                                  Overrides all settingsn");
  166.     H0( "                                  - baseline,main,highn" );
  167.     H0( "      --preset                Use a preset to select encoding settings [medium]n" );
  168.     H0( "                                  Overridden by user settingsn");
  169.     H0( "                                  - ultrafast,veryfast,faster,fast,mediumn"
  170.         "                                  - slow,slower,veryslow,placebon" );
  171.     H0( "      --tune                  Tune the settings for a particular type of sourcen" );
  172.     H0( "                                  Overridden by user settingsn");
  173.     H2( "                                  - film,animation,grain,psnr,ssimn"
  174.         "                                  - fastdecode,touhoun");
  175.     else H0( "                                  - film,animation,grain,psnr,ssim,fastdecoden");
  176.     H1( "      --slow-firstpass        Don't use faster settings with --pass 1n" );
  177.     H0( "n" );
  178.     H0( "Frame-type options:n" );
  179.     H0( "n" );
  180.     H0( "  -I, --keyint <integer>      Maximum GOP size [%d]n", defaults->i_keyint_max );
  181.     H2( "  -i, --min-keyint <integer>  Minimum GOP size [%d]n", defaults->i_keyint_min );
  182.     H2( "      --no-scenecut           Disable adaptive I-frame decisionn" );
  183.     H2( "      --scenecut <integer>    How aggressively to insert extra I-frames [%d]n", defaults->i_scenecut_threshold );
  184.     H1( "  -b, --bframes <integer>     Number of B-frames between I and P [%d]n", defaults->i_bframe );
  185.     H1( "      --b-adapt               Adaptive B-frame decision method [%d]n"
  186.         "                                  Higher values may lower threading efficiency.n"
  187.         "                                  - 0: Disabledn"
  188.         "                                  - 1: Fastn"
  189.         "                                  - 2: Optimal (slow with high --bframes)n", defaults->i_bframe_adaptive );
  190.     H2( "      --b-bias <integer>      Influences how often B-frames are used [%d]n", defaults->i_bframe_bias );
  191.     H1( "      --b-pyramid             Keep some B-frames as referencesn" );
  192.     H1( "      --no-cabac              Disable CABACn" );
  193.     H1( "  -r, --ref <integer>         Number of reference frames [%d]n", defaults->i_frame_reference );
  194.     H1( "      --no-deblock            Disable loop filtern" );
  195.     H1( "  -f, --deblock <alpha:beta>  Loop filter parameters [%d:%d]n",
  196.                                        defaults->i_deblocking_filter_alphac0, defaults->i_deblocking_filter_beta );
  197.     H2( "      --slices <integer>      Number of slices per frame; forces rectangularn"
  198.         "                              slices and is overridden by other slicing optionsn" );
  199.     else H1( "      --slices <integer>      Number of slices per framen" );
  200.     H2( "      --slice-max-size <integer> Limit the size of each slice in bytesn");
  201.     H2( "      --slice-max-mbs <integer> Limit the size of each slice in macroblocksn");
  202.     H0( "      --interlaced            Enable pure-interlaced moden" );
  203.     H2( "      --constrained-intra     Enable constrained intra prediction.n" );
  204.     H0( "n" );
  205.     H0( "Ratecontrol:n" );
  206.     H0( "n" );
  207.     H1( "  -q, --qp <integer>          Force constant QP (0-51, 0=lossless)n" );
  208.     H0( "  -B, --bitrate <integer>     Set bitrate (kbit/s)n" );
  209.     H0( "      --crf <float>           Quality-based VBR (0-51, 0=lossless) [%.1f]n", defaults->rc.f_rf_constant );
  210.     H1( "      --rc-lookahead <integer> Number of frames for frametype lookahead [%d]n", defaults->rc.i_lookahead );
  211.     H0( "      --vbv-maxrate <integer> Max local bitrate (kbit/s) [%d]n", defaults->rc.i_vbv_max_bitrate );
  212.     H0( "      --vbv-bufsize <integer> Set size of the VBV buffer (kbit) [%d]n", defaults->rc.i_vbv_buffer_size );
  213.     H2( "      --vbv-init <float>      Initial VBV buffer occupancy [%.1f]n", defaults->rc.f_vbv_buffer_init );
  214.     H2( "      --qpmin <integer>       Set min QP [%d]n", defaults->rc.i_qp_min );
  215.     H2( "      --qpmax <integer>       Set max QP [%d]n", defaults->rc.i_qp_max );
  216.     H2( "      --qpstep <integer>      Set max QP step [%d]n", defaults->rc.i_qp_step );
  217.     H2( "      --ratetol <float>       Allowed variance of average bitrate [%.1f]n", defaults->rc.f_rate_tolerance );
  218.     H2( "      --ipratio <float>       QP factor between I and P [%.2f]n", defaults->rc.f_ip_factor );
  219.     H2( "      --pbratio <float>       QP factor between P and B [%.2f]n", defaults->rc.f_pb_factor );
  220.     H2( "      --chroma-qp-offset <integer>  QP difference between chroma and luma [%d]n", defaults->analyse.i_chroma_qp_offset );
  221.     H2( "      --aq-mode <integer>     AQ method [%d]n"
  222.         "                                  - 0: Disabledn"
  223.         "                                  - 1: Variance AQ (complexity mask)n"
  224.         "                                  - 2: Auto-variance AQ (experimental)n", defaults->rc.i_aq_mode );
  225.     H1( "      --aq-strength <float>   Reduces blocking and blurring in flat andn"
  226.         "                              textured areas. [%.1f]n", defaults->rc.f_aq_strength );
  227.     H1( "n" );
  228.     H2( "  -p, --pass <1|2|3>          Enable multipass ratecontroln" );
  229.     else H0( "  -p, --pass <1|2>            Enable multipass ratecontroln" );
  230.     H0( "                                  - 1: First pass, creates stats filen"
  231.         "                                  - 2: Last pass, does not overwrite stats filen" );
  232.     H2( "                                  - 3: Nth pass, overwrites stats filen" );
  233.     H1( "      --stats <string>        Filename for 2 pass stats ["%s"]n", defaults->rc.psz_stat_out );
  234.     H2( "      --no-mbtree             Disable mb-tree ratecontrol.n");
  235.     H2( "      --qcomp <float>         QP curve compression [%.2f]n", defaults->rc.f_qcompress );
  236.     H2( "      --cplxblur <float>      Reduce fluctuations in QP (before curve compression) [%.1f]n", defaults->rc.f_complexity_blur );
  237.     H2( "      --qblur <float>         Reduce fluctuations in QP (after curve compression) [%.1f]n", defaults->rc.f_qblur );
  238.     H2( "      --zones <zone0>/<zone1>/...  Tweak the bitrate of regions of the videon" );
  239.     H2( "                              Each zone is of the formn"
  240.         "                                  <start frame>,<end frame>,<option>n"
  241.         "                                  where <option> is eithern"
  242.         "                                      q=<integer> (force QP)n"
  243.         "                                  or  b=<float> (bitrate multiplier)n" );
  244.     H2( "      --qpfile <string>       Force frametypes and QPs for some or all framesn"
  245.         "                              Format of each line: framenumber frametype QPn"
  246.         "                              QP of -1 lets x264 choose. Frametypes: I,i,P,B,b.n"
  247.         "                              QPs are restricted by qpmin/qpmax.n" );
  248.     H1( "n" );
  249.     H1( "Analysis:n" );
  250.     H1( "n" );
  251.     H1( "  -A, --partitions <string>   Partitions to consider ["p8x8,b8x8,i8x8,i4x4"]n"
  252.         "                                  - p8x8, p4x4, b8x8, i8x8, i4x4n"
  253.         "                                  - none, alln"
  254.         "                                  (p4x4 requires p8x8. i8x8 requires --8x8dct.)n" );
  255.     H1( "      --direct <string>       Direct MV prediction mode ["%s"]n"
  256.         "                                  - none, spatial, temporal, auton",
  257.                                        strtable_lookup( x264_direct_pred_names, defaults->analyse.i_direct_mv_pred ) );
  258.     H2( "      --no-weightb            Disable weighted prediction for B-framesn" );
  259.     H1( "      --me <string>           Integer pixel motion estimation method ["%s"]n",
  260.                                        strtable_lookup( x264_motion_est_names, defaults->analyse.i_me_method ) );
  261.     H2( "                                  - dia: diamond search, radius 1 (fast)n"
  262.         "                                  - hex: hexagonal search, radius 2n"
  263.         "                                  - umh: uneven multi-hexagon searchn"
  264.         "                                  - esa: exhaustive searchn"
  265.         "                                  - tesa: hadamard exhaustive search (slow)n" );
  266.     else H1( "                                  - dia, hex, umhn" );
  267.     H2( "      --merange <integer>     Maximum motion vector search range [%d]n", defaults->analyse.i_me_range );
  268.     H2( "      --mvrange <integer>     Maximum motion vector length [-1 (auto)]n" );
  269.     H2( "      --mvrange-thread <int>  Minimum buffer between threads [-1 (auto)]n" );
  270.     H1( "  -m, --subme <integer>       Subpixel motion estimation and mode decision [%d]n", defaults->analyse.i_subpel_refine );
  271.     H2( "                                  - 0: fullpel only (not recommended)n"
  272.         "                                  - 1: SAD mode decision, one qpel iterationn"
  273.         "                                  - 2: SATD mode decisionn"
  274.         "                                  - 3-5: Progressively more qpeln"
  275.         "                                  - 6: RD mode decision for I/P-framesn"
  276.         "                                  - 7: RD mode decision for all framesn"
  277.         "                                  - 8: RD refinement for I/P-framesn"
  278.         "                                  - 9: RD refinement for all framesn"
  279.         "                                  - 10: QP-RD - requires trellis=2, aq-mode>0n" );
  280.     else H1( "                                  decision quality: 1=fast, 10=best.n"  );
  281.     H1( "      --psy-rd                Strength of psychovisual optimization ["%.1f:%.1f"]n"
  282.         "                                  #1: RD (requires subme>=6)n"
  283.         "                                  #2: Trellis (requires trellis, experimental)n",
  284.                                        defaults->analyse.f_psy_rd, defaults->analyse.f_psy_trellis );
  285.     H2( "      --no-psy                Disable all visual optimizations that worsenn"
  286.         "                              both PSNR and SSIM.n" );
  287.     H2( "      --no-mixed-refs         Don't decide references on a per partition basisn" );
  288.     H2( "      --no-chroma-me          Ignore chroma in motion estimationn" );
  289.     H1( "      --no-8x8dct             Disable adaptive spatial transform sizen" );
  290.     H1( "  -t, --trellis <integer>     Trellis RD quantization. Requires CABAC. [%d]n"
  291.         "                                  - 0: disabledn"
  292.         "                                  - 1: enabled only on the final encode of a MBn"
  293.         "                                  - 2: enabled on all mode decisionsn", defaults->analyse.i_trellis );
  294.     H2( "      --no-fast-pskip         Disables early SKIP detection on P-framesn" );
  295.     H2( "      --no-dct-decimate       Disables coefficient thresholding on P-framesn" );
  296.     H1( "      --nr <integer>          Noise reduction [%d]n", defaults->analyse.i_noise_reduction );
  297.     H2( "n" );
  298.     H2( "      --deadzone-inter <int>  Set the size of the inter luma quantization deadzone [%d]n", defaults->analyse.i_luma_deadzone[0] );
  299.     H2( "      --deadzone-intra <int>  Set the size of the intra luma quantization deadzone [%d]n", defaults->analyse.i_luma_deadzone[1] );
  300.     H2( "                                  Deadzones should be in the range 0 - 32.n" );
  301.     H2( "      --cqm <string>          Preset quant matrices ["flat"]n"
  302.         "                                  - jvt, flatn" );
  303.     H1( "      --cqmfile <string>      Read custom quant matrices from a JM-compatible filen" );
  304.     H2( "                                  Overrides any other --cqm* options.n" );
  305.     H2( "      --cqm4 <list>           Set all 4x4 quant matricesn"
  306.         "                                  Takes a comma-separated list of 16 integers.n" );
  307.     H2( "      --cqm8 <list>           Set all 8x8 quant matricesn"
  308.         "                                  Takes a comma-separated list of 64 integers.n" );
  309.     H2( "      --cqm4i, --cqm4p, --cqm8i, --cqm8pn"
  310.         "                              Set both luma and chroma quant matricesn" );
  311.     H2( "      --cqm4iy, --cqm4ic, --cqm4py, --cqm4pcn"
  312.         "                              Set individual quant matricesn" );
  313.     H2( "n" );
  314.     H2( "Video Usability Info (Annex E):n" );
  315.     H2( "The VUI settings are not used by the encoder but are merely suggestions ton" );
  316.     H2( "the playback equipment. See doc/vui.txt for details. Use at your own risk.n" );
  317.     H2( "n" );
  318.     H2( "      --overscan <string>     Specify crop overscan setting ["%s"]n"
  319.         "                                  - undef, show, cropn",
  320.                                        strtable_lookup( x264_overscan_names, defaults->vui.i_overscan ) );
  321.     H2( "      --videoformat <string>  Specify video format ["%s"]n"
  322.         "                                  - component, pal, ntsc, secam, mac, undefn",
  323.                                        strtable_lookup( x264_vidformat_names, defaults->vui.i_vidformat ) );
  324.     H2( "      --fullrange <string>    Specify full range samples setting ["%s"]n"
  325.         "                                  - off, onn",
  326.                                        strtable_lookup( x264_fullrange_names, defaults->vui.b_fullrange ) );
  327.     H2( "      --colorprim <string>    Specify color primaries ["%s"]n"
  328.         "                                  - undef, bt709, bt470m, bt470bgn"
  329.         "                                    smpte170m, smpte240m, filmn",
  330.                                        strtable_lookup( x264_colorprim_names, defaults->vui.i_colorprim ) );
  331.     H2( "      --transfer <string>     Specify transfer characteristics ["%s"]n"
  332.         "                                  - undef, bt709, bt470m, bt470bg, linear,n"
  333.         "                                    log100, log316, smpte170m, smpte240mn",
  334.                                        strtable_lookup( x264_transfer_names, defaults->vui.i_transfer ) );
  335.     H2( "      --colormatrix <string>  Specify color matrix setting ["%s"]n"
  336.         "                                  - undef, bt709, fcc, bt470bgn"
  337.         "                                    smpte170m, smpte240m, GBR, YCgCon",
  338.                                        strtable_lookup( x264_colmatrix_names, defaults->vui.i_colmatrix ) );
  339.     H2( "      --chromaloc <integer>   Specify chroma sample location (0 to 5) [%d]n",
  340.                                        defaults->vui.i_chroma_loc );
  341.     H0( "n" );
  342.     H0( "Input/Output:n" );
  343.     H0( "n" );
  344.     H0( "  -o, --output                Specify output filen" );
  345.     H0( "      --sar width:height      Specify Sample Aspect Ration" );
  346.     H0( "      --fps <float|rational>  Specify frameraten" );
  347.     H0( "      --seek <integer>        First frame to encoden" );
  348.     H0( "      --frames <integer>      Maximum number of frames to encoden" );
  349.     H0( "      --level <string>        Specify level (as defined by Annex A)n" );
  350.     H1( "n" );
  351.     H1( "  -v, --verbose               Print stats for each framen" );
  352.     H1( "      --no-progress           Don't show the progress indicator while encodingn" );
  353.     H0( "      --quiet                 Quiet Moden" );
  354.     H1( "      --psnr                  Enable PSNR computationn" );
  355.     H1( "      --ssim                  Enable SSIM computationn" );
  356.     H1( "      --threads <integer>     Force a specific number of threadsn" );
  357.     H2( "      --thread-input          Run Avisynth in its own threadn" );
  358.     H2( "      --sync-lookahead <integer> Number of buffer frames for threaded lookaheadn" );
  359.     H2( "      --non-deterministic     Slightly improve quality of SMP, at the cost of repeatabilityn" );
  360.     H2( "      --asm <integer>         Override CPU detectionn" );
  361.     H2( "      --no-asm                Disable all CPU optimizationsn" );
  362.     H2( "      --visualize             Show MB types overlayed on the encoded videon" );
  363.     H2( "      --dump-yuv <string>     Save reconstructed framesn" );
  364.     H2( "      --sps-id <integer>      Set SPS and PPS id numbers [%d]n", defaults->i_sps_id );
  365.     H2( "      --aud                   Use access unit delimitersn" );
  366.     H0( "n" );
  367. }
  368. #define OPT_FRAMES 256
  369. #define OPT_SEEK 257
  370. #define OPT_QPFILE 258
  371. #define OPT_THREAD_INPUT 259
  372. #define OPT_QUIET 260
  373. #define OPT_NOPROGRESS 261
  374. #define OPT_VISUALIZE 262
  375. #define OPT_LONGHELP 263
  376. #define OPT_PROFILE 264
  377. #define OPT_PRESET 265
  378. #define OPT_TUNE 266
  379. #define OPT_SLOWFIRSTPASS 267
  380. #define OPT_FULLHELP 268
  381. #define OPT_FPS 269
  382. static char short_options[] = "8A:B:b:f:hI:i:m:o:p:q:r:t:Vvw";
  383. static struct option long_options[] =
  384. {
  385.     { "help",              no_argument, NULL, 'h' },
  386.     { "longhelp",          no_argument, NULL, OPT_LONGHELP },
  387.     { "fullhelp",          no_argument, NULL, OPT_FULLHELP },
  388.     { "version",           no_argument, NULL, 'V' },
  389.     { "profile",     required_argument, NULL, OPT_PROFILE },
  390.     { "preset",      required_argument, NULL, OPT_PRESET },
  391.     { "tune",        required_argument, NULL, OPT_TUNE },
  392.     { "slow-firstpass",    no_argument, NULL, OPT_SLOWFIRSTPASS },
  393.     { "bitrate",     required_argument, NULL, 'B' },
  394.     { "bframes",     required_argument, NULL, 'b' },
  395.     { "b-adapt",     required_argument, NULL, 0 },
  396.     { "no-b-adapt",        no_argument, NULL, 0 },
  397.     { "b-bias",      required_argument, NULL, 0 },
  398.     { "b-pyramid",         no_argument, NULL, 0 },
  399.     { "min-keyint",  required_argument, NULL, 'i' },
  400.     { "keyint",      required_argument, NULL, 'I' },
  401.     { "scenecut",    required_argument, NULL, 0 },
  402.     { "no-scenecut",       no_argument, NULL, 0 },
  403.     { "nf",                no_argument, NULL, 0 },
  404.     { "no-deblock",        no_argument, NULL, 0 },
  405.     { "filter",      required_argument, NULL, 0 },
  406.     { "deblock",     required_argument, NULL, 'f' },
  407.     { "interlaced",        no_argument, NULL, 0 },
  408.     { "constrained-intra", no_argument, NULL, 0 },
  409.     { "cabac",             no_argument, NULL, 0 },
  410.     { "no-cabac",          no_argument, NULL, 0 },
  411.     { "qp",          required_argument, NULL, 'q' },
  412.     { "qpmin",       required_argument, NULL, 0 },
  413.     { "qpmax",       required_argument, NULL, 0 },
  414.     { "qpstep",      required_argument, NULL, 0 },
  415.     { "crf",         required_argument, NULL, 0 },
  416.     { "rc-lookahead",required_argument, NULL, 0 },
  417.     { "ref",         required_argument, NULL, 'r' },
  418.     { "asm",         required_argument, NULL, 0 },
  419.     { "no-asm",            no_argument, NULL, 0 },
  420.     { "sar",         required_argument, NULL, 0 },
  421.     { "fps",         required_argument, NULL, OPT_FPS },
  422.     { "frames",      required_argument, NULL, OPT_FRAMES },
  423.     { "seek",        required_argument, NULL, OPT_SEEK },
  424.     { "output",      required_argument, NULL, 'o' },
  425.     { "analyse",     required_argument, NULL, 0 },
  426.     { "partitions",  required_argument, NULL, 'A' },
  427.     { "direct",      required_argument, NULL, 0 },
  428.     { "weightb",           no_argument, NULL, 'w' },
  429.     { "no-weightb",        no_argument, NULL, 0 },
  430.     { "me",          required_argument, NULL, 0 },
  431.     { "merange",     required_argument, NULL, 0 },
  432.     { "mvrange",     required_argument, NULL, 0 },
  433.     { "mvrange-thread", required_argument, NULL, 0 },
  434.     { "subme",       required_argument, NULL, 'm' },
  435.     { "psy-rd",      required_argument, NULL, 0 },
  436.     { "no-psy",            no_argument, NULL, 0 },
  437.     { "psy",               no_argument, NULL, 0 },
  438.     { "mixed-refs",        no_argument, NULL, 0 },
  439.     { "no-mixed-refs",     no_argument, NULL, 0 },
  440.     { "no-chroma-me",      no_argument, NULL, 0 },
  441.     { "8x8dct",            no_argument, NULL, 0 },
  442.     { "no-8x8dct",         no_argument, NULL, 0 },
  443.     { "trellis",     required_argument, NULL, 't' },
  444.     { "fast-pskip",        no_argument, NULL, 0 },
  445.     { "no-fast-pskip",     no_argument, NULL, 0 },
  446.     { "no-dct-decimate",   no_argument, NULL, 0 },
  447.     { "aq-strength", required_argument, NULL, 0 },
  448.     { "aq-mode",     required_argument, NULL, 0 },
  449.     { "deadzone-inter", required_argument, NULL, '0' },
  450.     { "deadzone-intra", required_argument, NULL, '0' },
  451.     { "level",       required_argument, NULL, 0 },
  452.     { "ratetol",     required_argument, NULL, 0 },
  453.     { "vbv-maxrate", required_argument, NULL, 0 },
  454.     { "vbv-bufsize", required_argument, NULL, 0 },
  455.     { "vbv-init",    required_argument, NULL,  0 },
  456.     { "ipratio",     required_argument, NULL, 0 },
  457.     { "pbratio",     required_argument, NULL, 0 },
  458.     { "chroma-qp-offset", required_argument, NULL, 0 },
  459.     { "pass",        required_argument, NULL, 'p' },
  460.     { "stats",       required_argument, NULL, 0 },
  461.     { "qcomp",       required_argument, NULL, 0 },
  462.     { "mbtree",            no_argument, NULL, 0 },
  463.     { "no-mbtree",         no_argument, NULL, 0 },
  464.     { "qblur",       required_argument, NULL, 0 },
  465.     { "cplxblur",    required_argument, NULL, 0 },
  466.     { "zones",       required_argument, NULL, 0 },
  467.     { "qpfile",      required_argument, NULL, OPT_QPFILE },
  468.     { "threads",     required_argument, NULL, 0 },
  469.     { "slice-max-size",    required_argument, NULL, 0 },
  470.     { "slice-max-mbs",     required_argument, NULL, 0 },
  471.     { "slices",            required_argument, NULL, 0 },
  472.     { "thread-input",      no_argument, NULL, OPT_THREAD_INPUT },
  473.     { "sync-lookahead",    required_argument, NULL, 0 },
  474.     { "non-deterministic", no_argument, NULL, 0 },
  475.     { "psnr",              no_argument, NULL, 0 },
  476.     { "ssim",              no_argument, NULL, 0 },
  477.     { "quiet",             no_argument, NULL, OPT_QUIET },
  478.     { "verbose",           no_argument, NULL, 'v' },
  479.     { "no-progress",       no_argument, NULL, OPT_NOPROGRESS },
  480.     { "visualize",         no_argument, NULL, OPT_VISUALIZE },
  481.     { "dump-yuv",    required_argument, NULL, 0 },
  482.     { "sps-id",      required_argument, NULL, 0 },
  483.     { "aud",               no_argument, NULL, 0 },
  484.     { "nr",          required_argument, NULL, 0 },
  485.     { "cqm",         required_argument, NULL, 0 },
  486.     { "cqmfile",     required_argument, NULL, 0 },
  487.     { "cqm4",        required_argument, NULL, 0 },
  488.     { "cqm4i",       required_argument, NULL, 0 },
  489.     { "cqm4iy",      required_argument, NULL, 0 },
  490.     { "cqm4ic",      required_argument, NULL, 0 },
  491.     { "cqm4p",       required_argument, NULL, 0 },
  492.     { "cqm4py",      required_argument, NULL, 0 },
  493.     { "cqm4pc",      required_argument, NULL, 0 },
  494.     { "cqm8",        required_argument, NULL, 0 },
  495.     { "cqm8i",       required_argument, NULL, 0 },
  496.     { "cqm8p",       required_argument, NULL, 0 },
  497.     { "overscan",    required_argument, NULL, 0 },
  498.     { "videoformat", required_argument, NULL, 0 },
  499.     { "fullrange",   required_argument, NULL, 0 },
  500.     { "colorprim",   required_argument, NULL, 0 },
  501.     { "transfer",    required_argument, NULL, 0 },
  502.     { "colormatrix", required_argument, NULL, 0 },
  503.     { "chromaloc",   required_argument, NULL, 0 },
  504.     {0, 0, 0, 0}
  505. };
  506. /*****************************************************************************
  507.  * Parse:
  508.  *****************************************************************************/
  509. static int  Parse( int argc, char **argv,
  510.                    x264_param_t *param, cli_opt_t *opt )
  511. {
  512.     char *psz_filename = NULL;
  513.     x264_param_t defaults = *param;
  514.     char *psz;
  515.     char *profile = NULL;
  516.     int b_avis = 0;
  517.     int b_y4m = 0;
  518.     int b_thread_input = 0;
  519.     int b_turbo = 1;
  520.     int b_pass1 = 0;
  521.     int b_user_ref = 0;
  522.     int b_user_fps = 0;
  523.     memset( opt, 0, sizeof(cli_opt_t) );
  524.     opt->b_progress = 1;
  525.     /* Default input file driver */
  526.     p_open_infile = open_file_yuv;
  527.     p_get_frame_total = get_frame_total_yuv;
  528.     p_read_frame = read_frame_yuv;
  529.     p_close_infile = close_file_yuv;
  530.     /* Default output file driver */
  531.     p_open_outfile = open_file_bsf;
  532.     p_set_outfile_param = set_param_bsf;
  533.     p_write_nalu = write_nalu_bsf;
  534.     p_set_eop = set_eop_bsf;
  535.     p_close_outfile = close_file_bsf;
  536.     /* Presets are applied before all other options. */
  537.     for( optind = 0;; )
  538.     {
  539.         int c = getopt_long( argc, argv, short_options, long_options, NULL );
  540.         if( c == -1 )
  541.             break;
  542.         if( c == OPT_PRESET )
  543.         {
  544.             if( !strcasecmp( optarg, "ultrafast" ) )
  545.             {
  546.                 param->i_frame_reference = 1;
  547.                 param->i_scenecut_threshold = 0;
  548.                 param->b_deblocking_filter = 0;
  549.                 param->b_cabac = 0;
  550.                 param->i_bframe = 0;
  551.                 param->analyse.intra = 0;
  552.                 param->analyse.inter = 0;
  553.                 param->analyse.b_transform_8x8 = 0;
  554.                 param->analyse.i_me_method = X264_ME_DIA;
  555.                 param->analyse.i_subpel_refine = 0;
  556.                 param->rc.i_aq_mode = 0;
  557.                 param->analyse.b_mixed_references = 0;
  558.                 param->analyse.i_trellis = 0;
  559.                 param->i_bframe_adaptive = X264_B_ADAPT_NONE;
  560.                 param->rc.b_mb_tree = 0;
  561.             }
  562.             else if( !strcasecmp( optarg, "veryfast" ) )
  563.             {
  564.                 param->analyse.inter = X264_ANALYSE_I8x8|X264_ANALYSE_I4x4;
  565.                 param->analyse.i_me_method = X264_ME_DIA;
  566.                 param->analyse.i_subpel_refine = 1;
  567.                 param->i_frame_reference = 1;
  568.                 param->analyse.b_mixed_references = 0;
  569.                 param->analyse.i_trellis = 0;
  570.                 param->rc.b_mb_tree = 0;
  571.             }
  572.             else if( !strcasecmp( optarg, "faster" ) )
  573.             {
  574.                 param->analyse.b_mixed_references = 0;
  575.                 param->i_frame_reference = 2;
  576.                 param->analyse.i_subpel_refine = 4;
  577.                 param->rc.b_mb_tree = 0;
  578.             }
  579.             else if( !strcasecmp( optarg, "fast" ) )
  580.             {
  581.                 param->i_frame_reference = 2;
  582.                 param->analyse.i_subpel_refine = 6;
  583.                 param->rc.i_lookahead = 30;
  584.             }
  585.             else if( !strcasecmp( optarg, "medium" ) )
  586.             {
  587.                 /* Default is medium */
  588.             }
  589.             else if( !strcasecmp( optarg, "slow" ) )
  590.             {
  591.                 param->analyse.i_me_method = X264_ME_UMH;
  592.                 param->analyse.i_subpel_refine = 8;
  593.                 param->i_frame_reference = 5;
  594.                 param->i_bframe_adaptive = X264_B_ADAPT_TRELLIS;
  595.                 param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
  596.                 param->rc.i_lookahead = 50;
  597.             }
  598.             else if( !strcasecmp( optarg, "slower" ) )
  599.             {
  600.                 param->analyse.i_me_method = X264_ME_UMH;
  601.                 param->analyse.i_subpel_refine = 9;
  602.                 param->i_frame_reference = 8;
  603.                 param->i_bframe_adaptive = X264_B_ADAPT_TRELLIS;
  604.                 param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
  605.                 param->analyse.inter |= X264_ANALYSE_PSUB8x8;
  606.                 param->analyse.i_trellis = 2;
  607.                 param->rc.i_lookahead = 60;
  608.             }
  609.             else if( !strcasecmp( optarg, "veryslow" ) )
  610.             {
  611.                 param->analyse.i_me_method = X264_ME_UMH;
  612.                 param->analyse.i_subpel_refine = 10;
  613.                 param->analyse.i_me_range = 24;
  614.                 param->i_frame_reference = 16;
  615.                 param->i_bframe_adaptive = X264_B_ADAPT_TRELLIS;
  616.                 param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
  617.                 param->analyse.inter |= X264_ANALYSE_PSUB8x8;
  618.                 param->analyse.i_trellis = 2;
  619.                 param->i_bframe = 8;
  620.                 param->rc.i_lookahead = 60;
  621.             }
  622.             else if( !strcasecmp( optarg, "placebo" ) )
  623.             {
  624.                 param->analyse.i_me_method = X264_ME_TESA;
  625.                 param->analyse.i_subpel_refine = 10;
  626.                 param->analyse.i_me_range = 24;
  627.                 param->i_frame_reference = 16;
  628.                 param->i_bframe_adaptive = X264_B_ADAPT_TRELLIS;
  629.                 param->analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
  630.                 param->analyse.inter |= X264_ANALYSE_PSUB8x8;
  631.                 param->analyse.b_fast_pskip = 0;
  632.                 param->analyse.i_trellis = 2;
  633.                 param->i_bframe = 16;
  634.                 param->rc.i_lookahead = 60;
  635.                 b_turbo = 0;
  636.             }
  637.             else
  638.             {
  639.                 fprintf( stderr, "x264 [error]: invalid preset: %sn", optarg );
  640.                 return -1;
  641.             }
  642.         }
  643.         else if( c == '?' )
  644.             return -1;
  645.     }
  646.     /* Tunings are applied next. */
  647.     for( optind = 0;; )
  648.     {
  649.         int c = getopt_long( argc, argv, short_options, long_options, NULL );
  650.         if( c == -1 )
  651.             break;
  652.         if( c == OPT_TUNE )
  653.         {
  654.             if( !strcasecmp( optarg, "film" ) )
  655.             {
  656.                 param->i_deblocking_filter_alphac0 = -1;
  657.                 param->i_deblocking_filter_beta = -1;
  658.                 param->analyse.f_psy_trellis = 0.15;
  659.             }
  660.             else if( !strcasecmp( optarg, "animation" ) )
  661.             {
  662.                 param->i_frame_reference = param->i_frame_reference > 1 ? param->i_frame_reference*2 : 1;
  663.                 param->i_deblocking_filter_alphac0 = 1;
  664.                 param->i_deblocking_filter_beta = 1;
  665.                 param->analyse.f_psy_rd = 0.4;
  666.                 param->rc.f_aq_strength = 0.6;
  667.                 param->i_bframe += 2;
  668.             }
  669.             else if( !strcasecmp( optarg, "grain" ) )
  670.             {
  671.                 param->i_deblocking_filter_alphac0 = -2;
  672.                 param->i_deblocking_filter_beta = -2;
  673.                 param->analyse.f_psy_trellis = 0.25;
  674.                 param->analyse.b_dct_decimate = 0;
  675.                 param->rc.f_pb_factor = 1.1;
  676.                 param->rc.f_ip_factor = 1.1;
  677.                 param->rc.f_aq_strength = 0.5;
  678.                 param->analyse.i_luma_deadzone[0] = 6;
  679.                 param->analyse.i_luma_deadzone[1] = 6;
  680.                 param->rc.f_qcompress = 0.8;
  681.             }
  682.             else if( !strcasecmp( optarg, "psnr" ) )
  683.             {
  684.                 param->rc.i_aq_mode = X264_AQ_NONE;
  685.                 param->analyse.b_psy = 0;
  686.             }
  687.             else if( !strcasecmp( optarg, "ssim" ) )
  688.             {
  689.                 param->rc.i_aq_mode = X264_AQ_AUTOVARIANCE;
  690.                 param->analyse.b_psy = 0;
  691.             }
  692.             else if( !strcasecmp( optarg, "fastdecode" ) )
  693.             {
  694.                 param->b_deblocking_filter = 0;
  695.                 param->b_cabac = 0;
  696.                 param->analyse.b_weighted_bipred = 0;
  697.             }
  698.             else if( !strcasecmp( optarg, "touhou" ) )
  699.             {
  700.                 param->i_frame_reference = param->i_frame_reference > 1 ? param->i_frame_reference*2 : 1;
  701.                 param->i_deblocking_filter_alphac0 = -1;
  702.                 param->i_deblocking_filter_beta = -1;
  703.                 param->analyse.f_psy_trellis = 0.2;
  704.                 param->rc.f_aq_strength = 1.3;
  705.                 if( param->analyse.inter & X264_ANALYSE_PSUB16x16 )
  706.                     param->analyse.inter |= X264_ANALYSE_PSUB8x8;
  707.             }
  708.             else
  709.             {
  710.                 fprintf( stderr, "x264 [error]: invalid tune: %sn", optarg );
  711.                 return -1;
  712.             }
  713.         }
  714.         else if( c == '?' )
  715.             return -1;
  716.     }
  717.     /* Parse command line options */
  718.     for( optind = 0;; )
  719.     {
  720.         int b_error = 0;
  721.         int long_options_index = -1;
  722.         int c = getopt_long( argc, argv, short_options, long_options, &long_options_index );
  723.         if( c == -1 )
  724.         {
  725.             break;
  726.         }
  727.         switch( c )
  728.         {
  729.             case 'h':
  730.                 Help( &defaults, 0 );
  731.                 exit(0);
  732.             case OPT_LONGHELP:
  733.                 Help( &defaults, 1 );
  734.                 exit(0);
  735.             case OPT_FULLHELP:
  736.                 Help( &defaults, 2 );
  737.                 exit(0);
  738.             case 'V':
  739. #ifdef X264_POINTVER
  740.                 printf( "x264 "X264_POINTVER"n" );
  741. #else
  742.                 printf( "x264 0.%d.Xn", X264_BUILD );
  743. #endif
  744.                 printf( "built on " __DATE__ ", " );
  745. #ifdef __GNUC__
  746.                 printf( "gcc: " __VERSION__ "n" );
  747. #else
  748.                 printf( "using a non-gcc compilern" );
  749. #endif
  750.                 exit(0);
  751.             case OPT_FRAMES:
  752.                 param->i_frame_total = atoi( optarg );
  753.                 break;
  754.             case OPT_SEEK:
  755.                 opt->i_seek = atoi( optarg );
  756.                 break;
  757.             case 'o':
  758.                 if( !strncasecmp(optarg + strlen(optarg) - 4, ".mp4", 4) )
  759.                 {
  760. #ifdef MP4_OUTPUT
  761.                     p_open_outfile = open_file_mp4;
  762.                     p_write_nalu = write_nalu_mp4;
  763.                     p_set_outfile_param = set_param_mp4;
  764.                     p_set_eop = set_eop_mp4;
  765.                     p_close_outfile = close_file_mp4;
  766. #else
  767.                     fprintf( stderr, "x264 [error]: not compiled with MP4 output supportn" );
  768.                     return -1;
  769. #endif
  770.                 }
  771.                 else if( !strncasecmp(optarg + strlen(optarg) - 4, ".mkv", 4) )
  772.                 {
  773.                     p_open_outfile = open_file_mkv;
  774.                     p_write_nalu = write_nalu_mkv;
  775.                     p_set_outfile_param = set_param_mkv;
  776.                     p_set_eop = set_eop_mkv;
  777.                     p_close_outfile = close_file_mkv;
  778.                 }
  779.                 if( !strcmp(optarg, "-") )
  780.                     opt->hout = stdout;
  781.                 else if( p_open_outfile( optarg, &opt->hout ) )
  782.                 {
  783.                     fprintf( stderr, "x264 [error]: can't open output file `%s'n", optarg );
  784.                     return -1;
  785.                 }
  786.                 break;
  787.             case OPT_QPFILE:
  788.                 opt->qpfile = fopen( optarg, "rb" );
  789.                 if( !opt->qpfile )
  790.                 {
  791.                     fprintf( stderr, "x264 [error]: can't open `%s'n", optarg );
  792.                     return -1;
  793.                 }
  794.                 break;
  795.             case OPT_THREAD_INPUT:
  796.                 b_thread_input = 1;
  797.                 break;
  798.             case OPT_QUIET:
  799.                 param->i_log_level = X264_LOG_NONE;
  800.                 break;
  801.             case 'v':
  802.                 param->i_log_level = X264_LOG_DEBUG;
  803.                 break;
  804.             case OPT_NOPROGRESS:
  805.                 opt->b_progress = 0;
  806.                 break;
  807.             case OPT_VISUALIZE:
  808. #ifdef VISUALIZE
  809.                 param->b_visualize = 1;
  810.                 b_exit_on_ctrl_c = 1;
  811. #else
  812.                 fprintf( stderr, "x264 [warning]: not compiled with visualization supportn" );
  813. #endif
  814.                 break;
  815.             case OPT_TUNE:
  816.             case OPT_PRESET:
  817.                 break;
  818.             case OPT_PROFILE:
  819.                 profile = optarg;
  820.                 break;
  821.             case OPT_SLOWFIRSTPASS:
  822.                 b_turbo = 0;
  823.                 break;
  824.             case 'r':
  825.                 b_user_ref = 1;
  826.                 goto generic_option;
  827.             case 'p':
  828.                 b_pass1 = atoi( optarg ) == 1;
  829.                 goto generic_option;
  830.             case OPT_FPS:
  831.                 b_user_fps = 1;
  832.                 goto generic_option;
  833.             default:
  834. generic_option:
  835.             {
  836.                 int i;
  837.                 if( long_options_index < 0 )
  838.                 {
  839.                     for( i = 0; long_options[i].name; i++ )
  840.                         if( long_options[i].val == c )
  841.                         {
  842.                             long_options_index = i;
  843.                             break;
  844.                         }
  845.                     if( long_options_index < 0 )
  846.                     {
  847.                         /* getopt_long already printed an error message */
  848.                         return -1;
  849.                     }
  850.                 }
  851.                 b_error |= x264_param_parse( param, long_options[long_options_index].name, optarg );
  852.             }
  853.         }
  854.         if( b_error )
  855.         {
  856.             const char *name = long_options_index > 0 ? long_options[long_options_index].name : argv[optind-2];
  857.             fprintf( stderr, "x264 [error]: invalid argument: %s = %sn", name, optarg );
  858.             return -1;
  859.         }
  860.     }
  861.     /* Set faster options in case of turbo firstpass. */
  862.     if( b_turbo && b_pass1 )
  863.     {
  864.         param->i_frame_reference = 1;
  865.         param->analyse.b_transform_8x8 = 0;
  866.         param->analyse.inter = 0;
  867.         param->analyse.i_me_method = X264_ME_DIA;
  868.         param->analyse.i_subpel_refine = X264_MIN( 2, param->analyse.i_subpel_refine );
  869.         param->analyse.i_trellis = 0;
  870.     }
  871.     /* Apply profile restrictions. */
  872.     if( profile )
  873.     {
  874.         if( !strcasecmp( profile, "baseline" ) )
  875.         {
  876.             param->analyse.b_transform_8x8 = 0;
  877.             param->b_cabac = 0;
  878.             param->i_cqm_preset = X264_CQM_FLAT;
  879.             param->i_bframe = 0;
  880.             if( param->b_interlaced )
  881.             {
  882.                 fprintf( stderr, "x264 [error]: baseline profile doesn't support interlacingn" );
  883.                 return -1;
  884.             }
  885.         }
  886.         else if( !strcasecmp( profile, "main" ) )
  887.         {
  888.             param->analyse.b_transform_8x8 = 0;
  889.             param->i_cqm_preset = X264_CQM_FLAT;
  890.         }
  891.         else if( !strcasecmp( profile, "high" ) )
  892.         {
  893.             /* Default */
  894.         }
  895.         else
  896.         {
  897.             fprintf( stderr, "x264 [error]: invalid profile: %sn", profile );
  898.             return -1;
  899.         }
  900.         if( (param->rc.i_rc_method == X264_RC_CQP && param->rc.i_qp_constant == 0) ||
  901.             (param->rc.i_rc_method == X264_RC_CRF && param->rc.f_rf_constant == 0) )
  902.         {
  903.             fprintf( stderr, "x264 [error]: %s profile doesn't support losslessn", profile );
  904.             return -1;
  905.         }
  906.     }
  907.     /* Get the file name */
  908.     if( optind > argc - 1 || !opt->hout )
  909.     {
  910.         fprintf( stderr, "x264 [error]: No %s file. Run x264 --help for a list of options.n",
  911.                  optind > argc - 1 ? "input" : "output" );
  912.         return -1;
  913.     }
  914.     psz_filename = argv[optind++];
  915.     /* check demuxer type */
  916.     psz = psz_filename + strlen(psz_filename) - 1;
  917.     while( psz > psz_filename && *psz != '.' )
  918.         psz--;
  919.     if( !strncasecmp( psz, ".avi", 4 ) || !strncasecmp( psz, ".avs", 4 ) )
  920.         b_avis = 1;
  921.     if( !strncasecmp( psz, ".y4m", 4 ) )
  922.         b_y4m = 1;
  923.     if( !(b_avis || b_y4m) ) // raw yuv
  924.     {
  925.         if( optind > argc - 1 )
  926.         {
  927.             /* try to parse the file name */
  928.             for( psz = psz_filename; *psz; psz++ )
  929.             {
  930.                 if( *psz >= '0' && *psz <= '9'
  931.                     && sscanf( psz, "%ux%u", &param->i_width, &param->i_height ) == 2 )
  932.                 {
  933.                     if( param->i_log_level >= X264_LOG_INFO )
  934.                         fprintf( stderr, "x264 [info]: %dx%d (given by file name) @ %.2f fpsn", param->i_width, param->i_height, (double)param->i_fps_num / (double)param->i_fps_den);
  935.                     break;
  936.                 }
  937.             }
  938.         }
  939.         else
  940.         {
  941.             sscanf( argv[optind++], "%ux%u", &param->i_width, &param->i_height );
  942.             if( param->i_log_level >= X264_LOG_INFO )
  943.                 fprintf( stderr, "x264 [info]: %dx%d @ %.2f fpsn", param->i_width, param->i_height, (double)param->i_fps_num / (double)param->i_fps_den);
  944.         }
  945.     }
  946.     if( !(b_avis || b_y4m) && ( !param->i_width || !param->i_height ) )
  947.     {
  948.         fprintf( stderr, "x264 [error]: Rawyuv input requires a resolution.n" );
  949.         return -1;
  950.     }
  951.     /* open the input */
  952.     {
  953.         int i_fps_num = param->i_fps_num;
  954.         int i_fps_den = param->i_fps_den;
  955.         if( b_avis )
  956.         {
  957. #ifdef AVIS_INPUT
  958.             p_open_infile = open_file_avis;
  959.             p_get_frame_total = get_frame_total_avis;
  960.             p_read_frame = read_frame_avis;
  961.             p_close_infile = close_file_avis;
  962. #else
  963.             fprintf( stderr, "x264 [error]: not compiled with AVIS input supportn" );
  964.             return -1;
  965. #endif
  966.         }
  967.         if( b_y4m )
  968.         {
  969.             p_open_infile = open_file_y4m;
  970.             p_get_frame_total = get_frame_total_y4m;
  971.             p_read_frame = read_frame_y4m;
  972.             p_close_infile = close_file_y4m;
  973.         }
  974.         if( p_open_infile( psz_filename, &opt->hin, param ) )
  975.         {
  976.             fprintf( stderr, "x264 [error]: could not open input file '%s'n", psz_filename );
  977.             return -1;
  978.         }
  979.         /* Restore the user's frame rate if fps has been explicitly set on the commandline. */
  980.         if( b_user_fps )
  981.         {
  982.             param->i_fps_num = i_fps_num;
  983.             param->i_fps_den = i_fps_den;
  984.         }
  985.     }
  986. #ifdef HAVE_PTHREAD
  987.     if( b_thread_input || param->i_threads > 1
  988.         || (param->i_threads == X264_THREADS_AUTO && x264_cpu_num_processors() > 1) )
  989.     {
  990.         if( open_file_thread( NULL, &opt->hin, param ) )
  991.         {
  992.             fprintf( stderr, "x264 [error]: threaded input failedn" );
  993.             return -1;
  994.         }
  995.         else
  996.         {
  997.             p_open_infile = open_file_thread;
  998.             p_get_frame_total = get_frame_total_thread;
  999.             p_read_frame = read_frame_thread;
  1000.             p_close_infile = close_file_thread;
  1001.         }
  1002.     }
  1003. #endif
  1004.     /* Automatically reduce reference frame count to match the user's target level
  1005.      * if the user didn't explicitly set a reference frame count. */
  1006.     if( !b_user_ref )
  1007.     {
  1008.         int mbs = (((param->i_width)+15)>>4) * (((param->i_height)+15)>>4);
  1009.         int i;
  1010.         for( i = 0; x264_levels[i].level_idc != 0; i++ )
  1011.             if( param->i_level_idc == x264_levels[i].level_idc )
  1012.             {
  1013.                 while( mbs * 384 * param->i_frame_reference > x264_levels[i].dpb
  1014.                        && param->i_frame_reference > 1 )
  1015.                 {
  1016.                     param->i_frame_reference--;
  1017.                 }
  1018.                 break;
  1019.             }
  1020.     }
  1021.     return 0;
  1022. }
  1023. static void parse_qpfile( cli_opt_t *opt, x264_picture_t *pic, int i_frame )
  1024. {
  1025.     int num = -1, qp, ret;
  1026.     char type;
  1027.     uint64_t file_pos;
  1028.     while( num < i_frame )
  1029.     {
  1030.         file_pos = ftell( opt->qpfile );
  1031.         ret = fscanf( opt->qpfile, "%d %c %dn", &num, &type, &qp );
  1032.         if( num > i_frame || ret == EOF )
  1033.         {
  1034.             pic->i_type = X264_TYPE_AUTO;
  1035.             pic->i_qpplus1 = 0;
  1036.             fseek( opt->qpfile , file_pos , SEEK_SET );
  1037.             break;
  1038.         }
  1039.         if( num < i_frame && ret == 3 )
  1040.             continue;
  1041.         pic->i_qpplus1 = qp+1;
  1042.         if     ( type == 'I' ) pic->i_type = X264_TYPE_IDR;
  1043.         else if( type == 'i' ) pic->i_type = X264_TYPE_I;
  1044.         else if( type == 'P' ) pic->i_type = X264_TYPE_P;
  1045.         else if( type == 'B' ) pic->i_type = X264_TYPE_BREF;
  1046.         else if( type == 'b' ) pic->i_type = X264_TYPE_B;
  1047.         else ret = 0;
  1048.         if( ret != 3 || qp < -1 || qp > 51 )
  1049.         {
  1050.             fprintf( stderr, "x264 [error]: can't parse qpfile for frame %dn", i_frame );
  1051.             fclose( opt->qpfile );
  1052.             opt->qpfile = NULL;
  1053.             pic->i_type = X264_TYPE_AUTO;
  1054.             pic->i_qpplus1 = 0;
  1055.             break;
  1056.         }
  1057.     }
  1058. }
  1059. /*****************************************************************************
  1060.  * Encode:
  1061.  *****************************************************************************/
  1062. static int  Encode_frame( x264_t *h, hnd_t hout, x264_picture_t *pic )
  1063. {
  1064.     x264_picture_t pic_out;
  1065.     x264_nal_t *nal;
  1066.     int i_nal, i, i_nalu_size;
  1067.     int i_file = 0;
  1068.     if( x264_encoder_encode( h, &nal, &i_nal, pic, &pic_out ) < 0 )
  1069.     {
  1070.         fprintf( stderr, "x264 [error]: x264_encoder_encode failedn" );
  1071.         return -1;
  1072.     }
  1073.     for( i = 0; i < i_nal; i++ )
  1074.     {
  1075.         i_nalu_size = p_write_nalu( hout, nal[i].p_payload, nal[i].i_payload );
  1076.         if( i_nalu_size < 0 )
  1077.             return -1;
  1078.         i_file += i_nalu_size;
  1079.     }
  1080.     if (i_nal)
  1081.         p_set_eop( hout, &pic_out );
  1082.     return i_file;
  1083. }
  1084. static void Print_status( int64_t i_start, int i_frame, int i_frame_total, int64_t i_file, x264_param_t *param )
  1085. {
  1086.     char    buf[200];
  1087.     int64_t i_elapsed = x264_mdate() - i_start;
  1088.     double fps = i_elapsed > 0 ? i_frame * 1000000. / i_elapsed : 0;
  1089.     double bitrate = (double) i_file * 8 * param->i_fps_num / ( (double) param->i_fps_den * i_frame * 1000 );
  1090.     if( i_frame_total )
  1091.     {
  1092.         int eta = i_elapsed * (i_frame_total - i_frame) / ((int64_t)i_frame * 1000000);
  1093.         sprintf( buf, "x264 [%.1f%%] %d/%d frames, %.2f fps, %.2f kb/s, eta %d:%02d:%02d",
  1094.                  100. * i_frame / i_frame_total, i_frame, i_frame_total, fps, bitrate,
  1095.                  eta/3600, (eta/60)%60, eta%60 );
  1096.     }
  1097.     else
  1098.     {
  1099.         sprintf( buf, "x264 %d frames: %.2f fps, %.2f kb/s", i_frame, fps, bitrate );
  1100.     }
  1101.     fprintf( stderr, "%s  r", buf+5 );
  1102.     SetConsoleTitle( buf );
  1103.     fflush( stderr ); // needed in windows
  1104. }
  1105. static int  Encode( x264_param_t *param, cli_opt_t *opt )
  1106. {
  1107.     x264_t *h;
  1108.     x264_picture_t pic;
  1109.     int     i_frame, i_frame_total, i_frame_output;
  1110.     int64_t i_start, i_end;
  1111.     int64_t i_file;
  1112.     int     i_frame_size;
  1113.     int     i_update_interval;
  1114.     opt->b_progress &= param->i_log_level < X264_LOG_DEBUG;
  1115.     i_frame_total = p_get_frame_total( opt->hin );
  1116.     i_frame_total -= opt->i_seek;
  1117.     if( ( i_frame_total == 0 || param->i_frame_total < i_frame_total )
  1118.         && param->i_frame_total > 0 )
  1119.         i_frame_total = param->i_frame_total;
  1120.     param->i_frame_total = i_frame_total;
  1121.     i_update_interval = i_frame_total ? x264_clip3( i_frame_total / 1000, 1, 10 ) : 10;
  1122.     if( ( h = x264_encoder_open( param ) ) == NULL )
  1123.     {
  1124.         fprintf( stderr, "x264 [error]: x264_encoder_open failedn" );
  1125.         p_close_infile( opt->hin );
  1126.         return -1;
  1127.     }
  1128.     if( p_set_outfile_param( opt->hout, param ) )
  1129.     {
  1130.         fprintf( stderr, "x264 [error]: can't set outfile paramn" );
  1131.         p_close_infile( opt->hin );
  1132.         p_close_outfile( opt->hout );
  1133.         return -1;
  1134.     }
  1135.     /* Create a new pic */
  1136.     if( x264_picture_alloc( &pic, X264_CSP_I420, param->i_width, param->i_height ) < 0 )
  1137.     {
  1138.         fprintf( stderr, "x264 [error]: malloc failedn" );
  1139.         return -1;
  1140.     }
  1141.     i_start = x264_mdate();
  1142.     /* Encode frames */
  1143.     for( i_frame = 0, i_file = 0, i_frame_output = 0; b_ctrl_c == 0 && (i_frame < i_frame_total || i_frame_total == 0); )
  1144.     {
  1145.         if( p_read_frame( &pic, opt->hin, i_frame + opt->i_seek ) )
  1146.             break;
  1147.         pic.i_pts = (int64_t)i_frame * param->i_fps_den;
  1148.         if( opt->qpfile )
  1149.             parse_qpfile( opt, &pic, i_frame + opt->i_seek );
  1150.         else
  1151.         {
  1152.             /* Do not force any parameters */
  1153.             pic.i_type = X264_TYPE_AUTO;
  1154.             pic.i_qpplus1 = 0;
  1155.         }
  1156.         i_frame_size = Encode_frame( h, opt->hout, &pic );
  1157.         if( i_frame_size < 0 )
  1158.             return -1;
  1159.         i_file += i_frame_size;
  1160.         if( i_frame_size )
  1161.             i_frame_output++;
  1162.         i_frame++;
  1163.         /* update status line (up to 1000 times per input file) */
  1164.         if( opt->b_progress && i_frame_output % i_update_interval == 0 && i_frame_output )
  1165.             Print_status( i_start, i_frame_output, i_frame_total, i_file, param );
  1166.     }
  1167.     /* Flush delayed frames */
  1168.     while( !b_ctrl_c && x264_encoder_delayed_frames( h ) )
  1169.     {
  1170.         i_frame_size = Encode_frame( h, opt->hout, NULL );
  1171.         if( i_frame_size < 0 )
  1172.             return -1;
  1173.         i_file += i_frame_size;
  1174.         if( i_frame_size )
  1175.             i_frame_output++;
  1176.         if( opt->b_progress && i_frame_output % i_update_interval == 0 && i_frame_output )
  1177.             Print_status( i_start, i_frame_output, i_frame_total, i_file, param );
  1178.     }
  1179.     i_end = x264_mdate();
  1180.     x264_picture_clean( &pic );
  1181.     /* Erase progress indicator before printing encoding stats. */
  1182.     if( opt->b_progress )
  1183.         fprintf( stderr, "                                                                               r" );
  1184.     x264_encoder_close( h );
  1185.     x264_free( mux_buffer );
  1186.     fprintf( stderr, "n" );
  1187.     if( b_ctrl_c )
  1188.         fprintf( stderr, "aborted at input frame %d, output frame %dn", opt->i_seek + i_frame, i_frame_output );
  1189.     p_close_infile( opt->hin );
  1190.     p_close_outfile( opt->hout );
  1191.     if( i_frame_output > 0 )
  1192.     {
  1193.         double fps = (double)i_frame_output * (double)1000000 /
  1194.                      (double)( i_end - i_start );
  1195.         fprintf( stderr, "encoded %d frames, %.2f fps, %.2f kb/sn", i_frame_output, fps,
  1196.                  (double) i_file * 8 * param->i_fps_num /
  1197.                  ( (double) param->i_fps_den * i_frame_output * 1000 ) );
  1198.     }
  1199.     return 0;
  1200. }