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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * x264: h264 encoder/decoder testing program.
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 Laurent Aimar
  5.  * $Id: x264.c,v 1.1 2004/06/03 19:24:12 fenrir Exp $
  6.  *
  7.  * Authors: 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #define _LARGEFILE_SOURCE
  24. #define _FILE_OFFSET_BITS 64
  25. #include <stdlib.h>
  26. #include <stdio.h>
  27. #include <string.h>
  28. #include <math.h>
  29. #include <signal.h>
  30. #define _GNU_SOURCE
  31. #include <getopt.h>
  32. #ifdef _MSC_VER
  33. #include <io.h>     /* _setmode() */
  34. #include <fcntl.h>  /* _O_BINARY */
  35. #endif
  36. #ifndef _MSC_VER
  37. #include "config.h"
  38. #endif
  39. #ifdef AVIS_INPUT
  40. #include <windows.h>
  41. #include <vfw.h>
  42. #endif
  43. #ifdef MP4_OUTPUT
  44. #include <gpac/isomedia.h>
  45. #endif
  46. #include "common/common.h"
  47. #include "x264.h"
  48. #include "matroska.h"
  49. #define DATA_MAX 3000000
  50. uint8_t data[DATA_MAX];
  51. typedef void *hnd_t;
  52. /* Ctrl-C handler */
  53. static int     b_ctrl_c = 0;
  54. static int     b_exit_on_ctrl_c = 0;
  55. static void    SigIntHandler( int a )
  56. {
  57.     if( b_exit_on_ctrl_c )
  58.         exit(0);
  59.     b_ctrl_c = 1;
  60. }
  61. typedef struct {
  62.     int b_decompress;
  63.     int b_progress;
  64.     int i_seek;
  65.     hnd_t hin;
  66.     hnd_t hout;
  67. } cli_opt_t;
  68. /* input file operation function pointers */
  69. static int (*p_open_infile)( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param );
  70. static int (*p_get_frame_total)( hnd_t handle, int i_width, int i_height );
  71. static int (*p_read_frame)( x264_picture_t *p_pic, hnd_t handle, int i_frame, int i_width, int i_height );
  72. static int (*p_close_infile)( hnd_t handle );
  73. static int open_file_yuv( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param );
  74. static int get_frame_total_yuv( hnd_t handle, int i_width, int i_height );
  75. static int read_frame_yuv( x264_picture_t *p_pic, hnd_t handle, int i_frame, int i_width, int i_height );
  76. static int close_file_yuv( hnd_t handle );
  77. #ifdef AVIS_INPUT
  78. static int open_file_avis( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param );
  79. static int get_frame_total_avis( hnd_t handle, int i_width, int i_height );
  80. static int read_frame_avis( x264_picture_t *p_pic, hnd_t handle, int i_frame, int i_width, int i_height );
  81. static int close_file_avis( hnd_t handle );
  82. #endif
  83. /* output file operation function pointers */
  84. static int (*p_open_outfile)( char *psz_filename, hnd_t *p_handle );
  85. static int (*p_set_outfile_param)( hnd_t handle, x264_param_t *p_param );
  86. static int (*p_write_nalu)( hnd_t handle, uint8_t *p_nal, int i_size );
  87. static int (*p_set_eop)( hnd_t handle, x264_picture_t *p_picture );
  88. static int (*p_close_outfile)( hnd_t handle );
  89. static int open_file_bsf( char *psz_filename, hnd_t *p_handle );
  90. static int set_param_bsf( hnd_t handle, x264_param_t *p_param );
  91. static int write_nalu_bsf( hnd_t handle, uint8_t *p_nal, int i_size );
  92. static int set_eop_bsf( hnd_t handle,  x264_picture_t *p_picture );
  93. static int close_file_bsf( hnd_t handle );
  94. #ifdef MP4_OUTPUT
  95. static int open_file_mp4( char *psz_filename, hnd_t *p_handle );
  96. static int set_param_mp4( hnd_t handle, x264_param_t *p_param );
  97. static int write_nalu_mp4( hnd_t handle, uint8_t *p_nal, int i_size );
  98. static int set_eop_mp4( hnd_t handle, x264_picture_t *p_picture );
  99. static int close_file_mp4( hnd_t handle );
  100. #endif
  101. #if 0
  102. static int open_file_mkv( char *psz_filename, hnd_t *p_handle );
  103. static int set_param_mkv( hnd_t handle, x264_param_t *p_param );
  104. static int write_nalu_mkv( hnd_t handle, uint8_t *p_nal, int i_size );
  105. static int set_eop_mkv( hnd_t handle, x264_picture_t *p_picture );
  106. static int close_file_mkv( hnd_t handle );
  107. #endif
  108. static void Help( x264_param_t *defaults );
  109. static int  Parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt );
  110. static int  Encode( x264_param_t *param, cli_opt_t *opt );
  111. /****************************************************************************
  112.  * main:
  113.  ****************************************************************************/
  114. int main( int argc, char **argv )
  115. {
  116.     x264_param_t param;
  117.     cli_opt_t opt;
  118. #ifdef _MSC_VER
  119.     _setmode(_fileno(stdin), _O_BINARY);    /* thanks to Marcos Morais <morais at dee.ufcg.edu.br> */
  120.     _setmode(_fileno(stdout), _O_BINARY);
  121. #endif
  122.     x264_param_default( &param );
  123.     /* Parse command line */
  124.     if( Parse( argc, argv, &param, &opt ) < 0 )
  125.         return -1;
  126.     /* Control-C handler */
  127.     signal( SIGINT, SigIntHandler );
  128.     return Encode( &param, &opt );
  129. }
  130. static const char * const overscan_str[] = { "undef", "show", "crop", NULL };
  131. static const char * const vidformat_str[] = { "component", "pal", "ntsc", "secam", "mac", "undef", NULL };
  132. static const char * const fullrange_str[] = { "off", "on", NULL };
  133. static const char * const colorprim_str[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "film", NULL };
  134. static const char * const transfer_str[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "linear", "log100", "log316", NULL };
  135. static const char * const colmatrix_str[] = { "GBR", "bt709", "undef", "", "fcc", "bt470bg", "smpte170m", "smpte240m", "YCgCo", NULL };
  136. static char const *strtable_lookup( const char * const table[], int index )
  137. {
  138.     int i = 0; while( table[i] ) i++;
  139.     return ( ( index >= 0 && index < i ) ? table[ index ] : "???" );
  140. }
  141. /*****************************************************************************
  142.  * Help:
  143.  *****************************************************************************/
  144. static void Help( x264_param_t *defaults )
  145. {
  146.     fprintf( stderr,
  147.              "x264 core:%d%sn"
  148.              "Syntax: x264 [options] -o outfile infile [widthxheight]n"
  149.              "n"
  150.              "Infile can be raw YUV 4:2:0 (in which case resolution is required),n"
  151.              "  or AVI or Avisynth if compiled with AVIS support (%s).n"
  152.              "Outfile type is selected by filename:n"
  153.              " .264 -> Raw bytestreamn"
  154.              " .mkv -> Matroskan"
  155.              " .mp4 -> MP4 if compiled with GPAC support (%s)n"
  156.              "n"
  157.              "Options:n"
  158.              "n"
  159.              "  -h, --help                  Print this helpn"
  160.              "n"
  161.              "Frame-type options:n"
  162.              "n"
  163.              "  -I, --keyint <integer>      Maximum GOP size [%d]n"
  164.              "  -i, --min-keyint <integer>  Minimum GOP size [%d]n"
  165.              "      --scenecut <integer>    How aggressively to insert extra I-frames [%d]n"
  166.              "  -b, --bframes <integer>     Number of B-frames between I and P [%d]n"
  167.              "      --no-b-adapt            Disable adaptive B-frame decisionn"
  168.              "      --b-bias <integer>      Influences how often B-frames are used [%d]n"
  169.              "      --b-pyramid             Keep some B-frames as referencesn"
  170.              "n"
  171.              "      --no-cabac              Disable CABACn"
  172.              "  -r, --ref <integer>         Number of reference frames [%d]n"
  173.              "      --nf                    Disable loop filtern"
  174.              "  -f, --filter <alpha:beta>   Loop filter AlphaC0 and Beta parameters [%d:%d]n"
  175.              "n"
  176.              "Ratecontrol:n"
  177.              "n"
  178.              "  -q, --qp <integer>          Set QP (0=lossless) [%d]n"
  179.              "  -B, --bitrate <integer>     Set bitraten"
  180.              "      --crf <integer>         Quality-based VBR (nominal QP)n"
  181.              "      --qpmin <integer>       Set min QP [%d]n"
  182.              "      --qpmax <integer>       Set max QP [%d]n"
  183.              "      --qpstep <integer>      Set max QP step [%d]n"
  184.              "      --ratetol <float>       Allowed variance of average bitrate [%.1f]n"
  185.              "      --vbv-maxrate <integer> Max local bitrate [%d]n"
  186.              "      --vbv-bufsize <integer> Size of VBV buffer [%d]n"
  187.              "      --vbv-init <float>      Initial VBV buffer occupancy [%.1f]n"
  188.              "n"
  189.              "      --ipratio <float>       QP factor between I and P [%.2f]n"
  190.              "      --pbratio <float>       QP factor between P and B [%.2f]n"
  191.              "      --chroma-qp-offset <integer>  QP difference between chroma and luma [%d]n"
  192.              "n"
  193.              "  -p, --pass <1|2|3>          Enable multipass ratecontrol:n"
  194.              "                                  - 1: First pass, creates stats filen"
  195.              "                                  - 2: Last pass, does not overwrite stats filen"
  196.              "                                  - 3: Nth pass, overwrites stats filen"
  197.              "      --stats <string>        Filename for 2 pass stats ["%s"]n"
  198.              "      --rceq <string>         Ratecontrol equation ["%s"]n"
  199.              "      --qcomp <float>         QP curve compression: 0.0 => CBR, 1.0 => CQP [%.2f]n"
  200.              "      --cplxblur <float>      Reduce fluctuations in QP (before curve compression) [%.1f]n"
  201.              "      --qblur <float>         Reduce fluctuations in QP (after curve compression) [%.1f]n"
  202.              "n"
  203.              "      --zones <zone0>/<zone1>/...n"
  204.              "                              Tweak the bitrate of some regions of the videon"
  205.              "                              Each zone is of the formn"
  206.              "                                  <start frame>,<end frame>,<option>n"
  207.              "                                  where <option> is eithern"
  208.              "                                      q=<integer> (force QP)n"
  209.              "                                  or  b=<float> (bitrate multiplier)n"
  210.              "n"
  211.              "Analysis:n"
  212.              "n"
  213.              "  -A, --analyse <string>      Partitions to consider ["p8x8,b8x8,i8x8,i4x4"]n"
  214.              "                                  - p8x8, p4x4, b8x8, i8x8, i4x4n"
  215.              "                                  - none, alln"
  216.              "                                  (p4x4 requires p8x8. i8x8 requires --8x8dct.)n"
  217.              "      --direct <string>       Direct MV prediction mode ["%s"]n"
  218.              "                                  - none, spatial, temporal, auton"
  219.              "  -w, --weightb               Weighted prediction for B-framesn"
  220.              "      --me <string>           Integer pixel motion estimation method ["%s"]n"
  221.              "                                  - dia: diamond search, radius 1 (fast)n"
  222.              "                                  - hex: hexagonal search, radius 2n"
  223.              "                                  - umh: uneven multi-hexagon searchn"
  224.              "                                  - esa: exhaustive search (slow)n"
  225.              "      --merange <integer>     Maximum motion vector search range [%d]n"
  226.              "  -m, --subme <integer>       Subpixel motion estimation and partitionn"
  227.              "                                  decision quality: 1=fast, 6=best. [%d]n"
  228.              "      --b-rdo                 RD based mode decision for B-frames. Requires subme 6.n"
  229.              "      --mixed-refs            Decide references on a per partition basisn"
  230.              "      --no-chroma-me          Ignore chroma in motion estimationn"
  231.              "      --bime                  Jointly optimize both MVs in B-framesn"
  232.              "  -8, --8x8dct                Adaptive spatial transform sizen"
  233.              "  -t, --trellis <integer>     Trellis RD quantization. Requires CABAC. [%d]n"
  234.              "                                  - 0: disabledn"
  235.              "                                  - 1: enabled only on the final encode of a MBn"
  236.              "                                  - 2: enabled on all mode decisionsn"
  237.              "      --no-fast-pskip         Disables early SKIP detection on P-framesn"
  238.              "      --nr <integer>          Noise reduction [%d]n"
  239.              "n"
  240.              "      --cqm <string>          Preset quant matrices ["flat"]n"
  241.              "                                  - jvt, flatn"
  242.              "      --cqmfile <string>      Read quant matrices from a JM-compatible filen"
  243.              "                                  Overrides any other --cqm* options.n"
  244.              "      --cqm4 <list>           Set all 4x4 quant matricesn"
  245.              "                                  Takes a comma-separated list of 16 integers.n"
  246.              "      --cqm8 <list>           Set all 8x8 quant matricesn"
  247.              "                                  Takes a comma-separated list of 64 integers.n"
  248.              "      --cqm4i, --cqm4p, --cqm8i, --cqm8pn"
  249.              "                              Set both luma and chroma quant matricesn"
  250.              "      --cqm4iy, --cqm4ic, --cqm4py, --cqm4pcn"
  251.              "                              Set individual quant matricesn"
  252.              "n"
  253.              "Video Usability Info (Annex E):n"
  254.              "The VUI settings are not used by the encoder but are merely suggestions ton"
  255.              "the playback equipment. See doc/vui.txt for details. Use at your own risk.n"
  256.              "n"
  257.              "      --sar width:height      Specify Sample Aspect Ration"
  258.              "      --overscan <string>     Specify crop overscan setting ["%s"]n"
  259.              "                                  - undef, show, cropn"
  260.              "      --videoformat <string>  Specify video format ["%s"]n"
  261.              "                                  - component, pal, ntsc, secam, mac, undefn"
  262.              "      --fullrange <string>    Specify full range samples setting ["%s"]n"
  263.              "                                  - off, onn"
  264.              "      --colorprim <string>    Specify color primaries ["%s"]n"
  265.              "                                  - undef, bt709, bt470m, bt470bgn"
  266.              "                                    smpte170m, smpte240m, filmn"
  267.              "      --transfer <string>     Specify transfer characteristics ["%s"]n"
  268.              "                                  - undef, bt709, bt470m, bt470bg, linear,n"
  269.              "                                    log100, log316, smpte170m, smpte240mn"
  270.              "      --colormatrix <string>  Specify color matrix setting ["%s"]n"
  271.              "                                  - undef, bt709, fcc, bt470bgn"
  272.              "                                    smpte170m, smpte240m, GBR, YCgCon"
  273.              "      --chromaloc <integer>   Specify chroma sample location (0 to 5) [%d]n"
  274.              "n"
  275.              "Input/Output:n"
  276.              "n"
  277.              "      --level <string>        Specify level (as defined by Annex A)n"
  278.              "      --fps <float|rational>  Specify frameraten"
  279.              "      --seek <integer>        First frame to encoden"
  280.              "      --frames <integer>      Maximum number of frames to encoden"
  281.              "  -o, --output                Specify output filen"
  282.              "n"
  283.              "      --threads <integer>     Parallel encoding (uses slices)n"
  284.              "      --no-asm                Disable all CPU optimizationsn"
  285.              "      --no-psnr               Disable PSNR computationn"
  286.              "      --quiet                 Quiet Moden"
  287.              "  -v, --verbose               Print stats for each framen"
  288.              "      --progress              Show a progress indicator while encodingn"
  289.              "      --visualize             Show MB types overlayed on the encoded videon"
  290.              "      --aud                   Use access unit delimitersn"
  291.              "n",
  292.             X264_BUILD, X264_VERSION,
  293. #ifdef AVIS_INPUT
  294.             "yes",
  295. #else
  296.             "no",
  297. #endif
  298. #ifdef MP4_OUTPUT
  299.             "yes",
  300. #else
  301.             "no",
  302. #endif
  303.             defaults->i_keyint_max,
  304.             defaults->i_keyint_min,
  305.             defaults->i_scenecut_threshold,
  306.             defaults->i_bframe,
  307.             defaults->i_bframe_bias,
  308.             defaults->i_frame_reference,
  309.             defaults->i_deblocking_filter_alphac0,
  310.             defaults->i_deblocking_filter_beta,
  311.             defaults->rc.i_qp_constant,
  312.             defaults->rc.i_qp_min,
  313.             defaults->rc.i_qp_max,
  314.             defaults->rc.i_qp_step,
  315.             defaults->rc.f_rate_tolerance,
  316.             defaults->rc.i_vbv_max_bitrate,
  317.             defaults->rc.i_vbv_buffer_size,
  318.             defaults->rc.f_vbv_buffer_init,
  319.             defaults->rc.f_ip_factor,
  320.             defaults->rc.f_pb_factor,
  321.             defaults->analyse.i_chroma_qp_offset,
  322.             defaults->rc.psz_stat_out,
  323.             defaults->rc.psz_rc_eq,
  324.             defaults->rc.f_qcompress,
  325.             defaults->rc.f_complexity_blur,
  326.             defaults->rc.f_qblur,
  327.             strtable_lookup( x264_direct_pred_names, defaults->analyse.i_direct_mv_pred ),
  328.             strtable_lookup( x264_motion_est_names, defaults->analyse.i_me_method ),
  329.             defaults->analyse.i_me_range,
  330.             defaults->analyse.i_subpel_refine,
  331.             defaults->analyse.i_trellis,
  332.             defaults->analyse.i_noise_reduction,
  333.             strtable_lookup( overscan_str, defaults->vui.i_overscan ),
  334.             strtable_lookup( vidformat_str, defaults->vui.i_vidformat ),
  335.             strtable_lookup( fullrange_str, defaults->vui.b_fullrange ),
  336.             strtable_lookup( colorprim_str, defaults->vui.i_colorprim ),
  337.             strtable_lookup( transfer_str, defaults->vui.i_transfer ),
  338.             strtable_lookup( colmatrix_str, defaults->vui.i_colmatrix ),
  339.             defaults->vui.i_chroma_loc
  340.            );
  341. }
  342. static int parse_enum( const char *arg, const char * const *names, int *dst )
  343. {
  344.     int i;
  345.     for( i = 0; names[i]; i++ )
  346.         if( !strcmp( arg, names[i] ) )
  347.         {
  348.             *dst = i;
  349.             return 0;
  350.         }
  351.     return -1;
  352. }
  353. static int parse_cqm( const char *str, uint8_t *cqm, int length )
  354. {
  355.     int i = 0;
  356.     do {
  357.         int coef;
  358.         if( !sscanf( str, "%d", &coef ) || coef < 1 || coef > 255 )
  359.             return -1;
  360.         cqm[i++] = coef;
  361.     } while( i < length && (str = strchr( str, ',' )) && str++ );
  362.     return (i == length) ? 0 : -1;
  363. }
  364. /*****************************************************************************
  365.  * Parse:
  366.  *****************************************************************************/
  367. static int  Parse( int argc, char **argv,
  368.                    x264_param_t *param, cli_opt_t *opt )
  369. {
  370.     char *psz_filename = NULL;
  371.     x264_param_t defaults = *param;
  372.     char *psz;
  373.     char b_avis = 0;
  374.     memset( opt, 0, sizeof(cli_opt_t) );
  375.     /* Default input file driver */
  376.     p_open_infile = open_file_yuv;
  377.     p_get_frame_total = get_frame_total_yuv;
  378.     p_read_frame = read_frame_yuv;
  379.     p_close_infile = close_file_yuv;
  380.     /* Default output file driver */
  381.     p_open_outfile = open_file_bsf;
  382.     p_set_outfile_param = set_param_bsf;
  383.     p_write_nalu = write_nalu_bsf;
  384.     p_set_eop = set_eop_bsf;
  385.     p_close_outfile = close_file_bsf;
  386.     /* Parse command line options */
  387.     opterr = 0; // no error message
  388.     for( ;; )
  389.     {
  390.         int b_error = 0;
  391.         int long_options_index;
  392. #define OPT_QPMIN 256
  393. #define OPT_QPMAX 257
  394. #define OPT_QPSTEP 258
  395. #define OPT_IPRATIO 260
  396. #define OPT_PBRATIO 261
  397. #define OPT_RATETOL 262
  398. #define OPT_RCSTATS 264
  399. #define OPT_RCEQ 265
  400. #define OPT_QCOMP 266
  401. #define OPT_NOPSNR 267
  402. #define OPT_QUIET 268
  403. #define OPT_SCENECUT 270
  404. #define OPT_QBLUR 271
  405. #define OPT_CPLXBLUR 272
  406. #define OPT_FRAMES 273
  407. #define OPT_FPS 274
  408. #define OPT_DIRECT 275
  409. #define OPT_LEVEL 276
  410. #define OPT_NOBADAPT 277
  411. #define OPT_BBIAS 278
  412. #define OPT_BPYRAMID 279
  413. #define OPT_CHROMA_QP 280
  414. #define OPT_NO_CHROMA_ME 281
  415. #define OPT_NO_CABAC 282
  416. #define OPT_AUD 283
  417. #define OPT_PROGRESS 284
  418. #define OPT_ME 285
  419. #define OPT_MERANGE 286
  420. #define OPT_VBVMAXRATE 287
  421. #define OPT_VBVBUFSIZE 288
  422. #define OPT_VBVINIT 289
  423. #define OPT_VISUALIZE 290
  424. #define OPT_SEEK 291
  425. #define OPT_ZONES 292
  426. #define OPT_THREADS 293
  427. #define OPT_CQM 294
  428. #define OPT_CQM4 295
  429. #define OPT_CQM4I 296
  430. #define OPT_CQM4IY 297
  431. #define OPT_CQM4IC 298
  432. #define OPT_CQM4P 299
  433. #define OPT_CQM4PY 300
  434. #define OPT_CQM4PC 301
  435. #define OPT_CQM8 302
  436. #define OPT_CQM8I 303
  437. #define OPT_CQM8P 304
  438. #define OPT_CQMFILE 305
  439. #define OPT_SAR 306
  440. #define OPT_OVERSCAN 307
  441. #define OPT_VIDFORMAT 308
  442. #define OPT_FULLRANGE 309
  443. #define OPT_COLOURPRIM 310
  444. #define OPT_TRANSFER 311
  445. #define OPT_COLOURMATRIX 312
  446. #define OPT_CHROMALOC 313
  447. #define OPT_MIXED_REFS 314
  448. #define OPT_CRF 315
  449. #define OPT_B_RDO 316
  450. #define OPT_NO_FAST_PSKIP 317
  451. #define OPT_BIME 318
  452. #define OPT_NR 319
  453.         static struct option long_options[] =
  454.         {
  455.             { "help",    no_argument,       NULL, 'h' },
  456.             { "bitrate", required_argument, NULL, 'B' },
  457.             { "bframes", required_argument, NULL, 'b' },
  458.             { "no-b-adapt", no_argument,    NULL, OPT_NOBADAPT },
  459.             { "b-bias",  required_argument, NULL, OPT_BBIAS },
  460.             { "b-pyramid", no_argument,     NULL, OPT_BPYRAMID },
  461.             { "min-keyint",required_argument,NULL,'i' },
  462.             { "keyint",  required_argument, NULL, 'I' },
  463.             { "scenecut",required_argument, NULL, OPT_SCENECUT },
  464.             { "nf",      no_argument,       NULL, 'n' },
  465.             { "filter",  required_argument, NULL, 'f' },
  466.             { "no-cabac",no_argument,       NULL, OPT_NO_CABAC },
  467.             { "qp",      required_argument, NULL, 'q' },
  468.             { "qpmin",   required_argument, NULL, OPT_QPMIN },
  469.             { "qpmax",   required_argument, NULL, OPT_QPMAX },
  470.             { "qpstep",  required_argument, NULL, OPT_QPSTEP },
  471.             { "crf",     required_argument, NULL, OPT_CRF },
  472.             { "ref",     required_argument, NULL, 'r' },
  473.             { "no-asm",  no_argument,       NULL, 'C' },
  474.             { "sar",     required_argument, NULL, OPT_SAR },
  475.             { "fps",     required_argument, NULL, OPT_FPS },
  476.             { "frames",  required_argument, NULL, OPT_FRAMES },
  477.             { "seek",    required_argument, NULL, OPT_SEEK },
  478.             { "output",  required_argument, NULL, 'o' },
  479.             { "analyse", required_argument, NULL, 'A' },
  480.             { "direct",  required_argument, NULL, OPT_DIRECT },
  481.             { "weightb", no_argument,       NULL, 'w' },
  482.             { "me",      required_argument, NULL, OPT_ME },
  483.             { "merange", required_argument, NULL, OPT_MERANGE },
  484.             { "subme",   required_argument, NULL, 'm' },
  485.             { "b-rdo",   no_argument,       NULL, OPT_B_RDO },
  486.             { "mixed-refs", no_argument,    NULL, OPT_MIXED_REFS },
  487.             { "no-chroma-me", no_argument,  NULL, OPT_NO_CHROMA_ME },
  488.             { "bime",    no_argument,       NULL, OPT_BIME },
  489.             { "8x8dct",  no_argument,       NULL, '8' },
  490.             { "trellis", required_argument, NULL, 't' },
  491.             { "no-fast-pskip", no_argument, NULL, OPT_NO_FAST_PSKIP },
  492.             { "level",   required_argument, NULL, OPT_LEVEL },
  493.             { "ratetol", required_argument, NULL, OPT_RATETOL },
  494.             { "vbv-maxrate", required_argument, NULL, OPT_VBVMAXRATE },
  495.             { "vbv-bufsize", required_argument, NULL, OPT_VBVBUFSIZE },
  496.             { "vbv-init", required_argument,NULL,  OPT_VBVINIT },
  497.             { "ipratio", required_argument, NULL, OPT_IPRATIO },
  498.             { "pbratio", required_argument, NULL, OPT_PBRATIO },
  499.             { "chroma-qp-offset", required_argument, NULL, OPT_CHROMA_QP },
  500.             { "pass",    required_argument, NULL, 'p' },
  501.             { "stats",   required_argument, NULL, OPT_RCSTATS },
  502.             { "rceq",    required_argument, NULL, OPT_RCEQ },
  503.             { "qcomp",   required_argument, NULL, OPT_QCOMP },
  504.             { "qblur",   required_argument, NULL, OPT_QBLUR },
  505.             { "cplxblur",required_argument, NULL, OPT_CPLXBLUR },
  506.             { "zones",   required_argument, NULL, OPT_ZONES },
  507.             { "threads", required_argument, NULL, OPT_THREADS },
  508.             { "no-psnr", no_argument,       NULL, OPT_NOPSNR },
  509.             { "quiet",   no_argument,       NULL, OPT_QUIET },
  510.             { "verbose", no_argument,       NULL, 'v' },
  511.             { "progress",no_argument,       NULL, OPT_PROGRESS },
  512.             { "visualize",no_argument,      NULL, OPT_VISUALIZE },
  513.             { "aud",     no_argument,       NULL, OPT_AUD },
  514.             { "nr",      required_argument, NULL, OPT_NR },
  515.             { "cqm",     required_argument, NULL, OPT_CQM },
  516.             { "cqmfile", required_argument, NULL, OPT_CQMFILE },
  517.             { "cqm4",    required_argument, NULL, OPT_CQM4 },
  518.             { "cqm4i",   required_argument, NULL, OPT_CQM4I },
  519.             { "cqm4iy",  required_argument, NULL, OPT_CQM4IY },
  520.             { "cqm4ic",  required_argument, NULL, OPT_CQM4IC },
  521.             { "cqm4p",   required_argument, NULL, OPT_CQM4P },
  522.             { "cqm4py",  required_argument, NULL, OPT_CQM4PY },
  523.             { "cqm4pc",  required_argument, NULL, OPT_CQM4PC },
  524.             { "cqm8",    required_argument, NULL, OPT_CQM8 },
  525.             { "cqm8i",   required_argument, NULL, OPT_CQM8I },
  526.             { "cqm8p",   required_argument, NULL, OPT_CQM8P },
  527.             { "overscan", required_argument, NULL, OPT_OVERSCAN },
  528.             { "videoformat", required_argument, NULL, OPT_VIDFORMAT },
  529.             { "fullrange", required_argument, NULL, OPT_FULLRANGE },
  530.             { "colorprim", required_argument, NULL, OPT_COLOURPRIM },
  531.             { "transfer", required_argument, NULL, OPT_TRANSFER },
  532.             { "colormatrix", required_argument, NULL, OPT_COLOURMATRIX },
  533.             { "chromaloc", required_argument, NULL, OPT_CHROMALOC },
  534.             {0, 0, 0, 0}
  535.         };
  536.         int c;
  537.         c = getopt_long( argc, argv, "hi:I:b:r:cxB:q:f:o:A:m:p:t:vw8",
  538.                          long_options, &long_options_index);
  539.         if( c == -1 )
  540.         {
  541.             break;
  542.         }
  543.         switch( c )
  544.         {
  545.             case 'h':
  546.                 Help( &defaults );
  547.                 return -1;
  548.             case 0:
  549.                 break;
  550.             case 'B':
  551.                 param->rc.i_bitrate = atol( optarg );
  552.                 param->rc.b_cbr = 1;
  553.                 break;
  554.             case OPT_CRF:
  555.                 param->rc.i_rf_constant = atol( optarg );
  556.                 break;
  557.             case 'b':
  558.                 param->i_bframe = atol( optarg );
  559.                 break;
  560.             case OPT_NOBADAPT:
  561.                 param->b_bframe_adaptive = 0;
  562.                 break;
  563.             case OPT_BBIAS:
  564.                 param->i_bframe_bias = atol( optarg );
  565.                 break;
  566.             case OPT_BPYRAMID:
  567.                 param->b_bframe_pyramid = 1;
  568.                 break;
  569.             case 'i':
  570.                 param->i_keyint_min = atol( optarg );
  571.                 if( param->i_keyint_max < param->i_keyint_min )
  572.                     param->i_keyint_max = param->i_keyint_min;
  573.                 break;
  574.             case 'I':
  575.                 param->i_keyint_max = atol( optarg );
  576.                 if( param->i_keyint_min > param->i_keyint_max )
  577.                     param->i_keyint_min = param->i_keyint_max;
  578.                 break;
  579.             case OPT_SCENECUT:
  580.                 param->i_scenecut_threshold = atol( optarg );
  581.                 break;
  582.             case 'n':
  583.                 param->b_deblocking_filter = 0;
  584.                 break;
  585.             case 'f':
  586.             {
  587.                 char *p = strchr( optarg, ':' );
  588.                 if( !p ) p = strchr( optarg, ',' );
  589.                 param->i_deblocking_filter_alphac0 = atoi( optarg );
  590.                 param->i_deblocking_filter_beta = p ? atoi( p+1 ) : param->i_deblocking_filter_alphac0;
  591.                 break;
  592.             }
  593.             case 'q':
  594.                 param->rc.i_qp_constant = atoi( optarg );
  595.                 break;
  596.             case OPT_QPMIN:
  597.                 param->rc.i_qp_min = atoi( optarg );
  598.                 break;
  599.             case OPT_QPMAX:
  600.                 param->rc.i_qp_max = atoi( optarg );
  601.                 break;
  602.             case OPT_QPSTEP:
  603.                 param->rc.i_qp_step = atoi( optarg );
  604.                 break;
  605.             case 'r':
  606.                 param->i_frame_reference = atoi( optarg );
  607.                 break;
  608.             case OPT_NO_CABAC:
  609.                 param->b_cabac = 0;
  610.                 break;
  611.             case 'x':
  612.                 opt->b_decompress = 1;
  613.                 break;
  614.             case 'C':
  615.                 param->cpu = 0;
  616.                 break;
  617.             case OPT_FRAMES:
  618.                 param->i_frame_total = atoi( optarg );
  619.                 break;
  620.             case OPT_SEEK:
  621.                 opt->i_seek = atoi( optarg );
  622.                 break;
  623.             case 'o':
  624.                 if( !strncasecmp(optarg + strlen(optarg) - 4, ".mp4", 4) )
  625.                 {
  626. #ifdef MP4_OUTPUT
  627.                     p_open_outfile = open_file_mp4;
  628.                     p_write_nalu = write_nalu_mp4;
  629.                     p_set_outfile_param = set_param_mp4;
  630.                     p_set_eop = set_eop_mp4;
  631.                     p_close_outfile = close_file_mp4;
  632. #else
  633.                     fprintf( stderr, "not compiled with MP4 output supportn" );
  634.                     return -1;
  635. #endif
  636.                 }
  637. #if 0
  638.                 else if( !strncasecmp(optarg + strlen(optarg) - 4, ".mkv", 4) )
  639.                 {
  640.                     p_open_outfile = open_file_mkv;
  641.                     p_write_nalu = write_nalu_mkv;
  642.                     p_set_outfile_param = set_param_mkv;
  643.                     p_set_eop = set_eop_mkv;
  644.                     p_close_outfile = close_file_mkv;
  645.                 }
  646. #endif
  647.                 if( !strcmp(optarg, "-") )
  648.                     opt->hout = stdout;
  649.                 else if( p_open_outfile( optarg, &opt->hout ) )
  650.                 {
  651.                     fprintf( stderr, "cannot open output file `%s'n", optarg );
  652.                     return -1;
  653.                 }
  654.                 break;
  655.             case OPT_SAR:
  656.             {
  657.                 char *p = strchr( optarg, ':' );
  658.                 if( !p ) p = strchr( optarg, '/' );
  659.                 if( p )
  660.                 {
  661.                     param->vui.i_sar_width = atoi( optarg );
  662.                     param->vui.i_sar_height = atoi( p + 1 );
  663.                 }
  664.                 break;
  665.             }
  666.             case OPT_FPS:
  667.             {
  668.                 float fps;
  669.                 if( sscanf( optarg, "%d/%d", &param->i_fps_num, &param->i_fps_den ) == 2 )
  670.                     ;
  671.                 else if( sscanf( optarg, "%f", &fps ) )
  672.                 {
  673.                     param->i_fps_num = (int)(fps * 1000 + .5);
  674.                     param->i_fps_den = 1000;
  675.                 }
  676.                 else
  677.                 {
  678.                     fprintf( stderr, "bad fps `%s'n", optarg );
  679.                     return -1;
  680.                 }
  681.                 break;
  682.             }
  683.             case 'A':
  684.                 param->analyse.inter = 0;
  685.                 if( strstr( optarg, "none" ) )  param->analyse.inter =  0;
  686.                 if( strstr( optarg, "all" ) )   param->analyse.inter = ~0;
  687.                 if( strstr( optarg, "i4x4" ) )  param->analyse.inter |= X264_ANALYSE_I4x4;
  688.                 if( strstr( optarg, "i8x8" ) )  param->analyse.inter |= X264_ANALYSE_I8x8;
  689.                 if( strstr( optarg, "p8x8" ) )  param->analyse.inter |= X264_ANALYSE_PSUB16x16;
  690.                 if( strstr( optarg, "p4x4" ) )  param->analyse.inter |= X264_ANALYSE_PSUB8x8;
  691.                 if( strstr( optarg, "b8x8" ) )  param->analyse.inter |= X264_ANALYSE_BSUB16x16;
  692.                 break;
  693.             case OPT_DIRECT:
  694.                 b_error |= parse_enum( optarg, x264_direct_pred_names, &param->analyse.i_direct_mv_pred );
  695.                 break;
  696.             case 'w':
  697.                 param->analyse.b_weighted_bipred = 1;
  698.                 break;
  699.             case OPT_ME:
  700.                 b_error |= parse_enum( optarg, x264_motion_est_names, &param->analyse.i_me_method );
  701.                 break;
  702.             case OPT_MERANGE:
  703.                 param->analyse.i_me_range = atoi(optarg);
  704.                 break;
  705.             case 'm':
  706.                 param->analyse.i_subpel_refine = atoi(optarg);
  707.                 break;
  708.             case OPT_B_RDO:
  709.                 param->analyse.b_bframe_rdo = 1;
  710.                 break;
  711.             case OPT_MIXED_REFS:
  712.                 param->analyse.b_mixed_references = 1;
  713.                 break;
  714.             case OPT_NO_CHROMA_ME:
  715.                 param->analyse.b_chroma_me = 0;
  716.                 break;
  717.             case OPT_BIME:
  718.                 param->analyse.b_bidir_me = 1;
  719.                 break;
  720.             case '8':
  721.                 param->analyse.b_transform_8x8 = 1;
  722.                 break;
  723.             case 't':
  724.                 param->analyse.i_trellis = atoi(optarg);
  725.                 break;
  726.             case OPT_NO_FAST_PSKIP:
  727.                 param->analyse.b_fast_pskip = 0;
  728.                 break;
  729.             case OPT_LEVEL:
  730.                 if( atof(optarg) < 6 )
  731.                     param->i_level_idc = (int)(10*atof(optarg)+.5);
  732.                 else
  733.                     param->i_level_idc = atoi(optarg);
  734.                 break;
  735.             case OPT_RATETOL:
  736.                 param->rc.f_rate_tolerance = !strncmp("inf", optarg, 3) ? 1e9 : atof(optarg);
  737.                 break;
  738.             case OPT_VBVMAXRATE:
  739.                 param->rc.i_vbv_max_bitrate = atoi( optarg );
  740.                 break;
  741.             case OPT_VBVBUFSIZE:
  742.                 param->rc.i_vbv_buffer_size = atoi( optarg );
  743.                 break;
  744.             case OPT_VBVINIT:
  745.                 param->rc.f_vbv_buffer_init = atof(optarg);
  746.                 break;
  747.             case OPT_IPRATIO:
  748.                 param->rc.f_ip_factor = atof(optarg);
  749.                 break;
  750.             case OPT_PBRATIO:
  751.                 param->rc.f_pb_factor = atof(optarg);
  752.                 break;
  753.             case OPT_CHROMA_QP:
  754.                 param->analyse.i_chroma_qp_offset = atoi(optarg);
  755.                 break;
  756.             case 'p':
  757.             {
  758.                 int i_pass = atoi(optarg);
  759.                 if( i_pass == 1 )
  760.                     param->rc.b_stat_write = 1;
  761.                 else if( i_pass == 2 )
  762.                     param->rc.b_stat_read = 1;
  763.                 else if( i_pass > 2 )
  764.                     param->rc.b_stat_read =
  765.                     param->rc.b_stat_write = 1;
  766.                 break;
  767.             }
  768.             case OPT_RCSTATS:
  769.                 param->rc.psz_stat_in = optarg;
  770.                 param->rc.psz_stat_out = optarg;
  771.                 break;
  772.             case OPT_RCEQ:
  773.                 param->rc.psz_rc_eq = optarg;
  774.                break;
  775.             case OPT_QCOMP:
  776.                 param->rc.f_qcompress = atof(optarg);
  777.                 break;
  778.             case OPT_QBLUR:
  779.                 param->rc.f_qblur = atof(optarg);
  780.                 break;
  781.             case OPT_CPLXBLUR:
  782.                 param->rc.f_complexity_blur = atof(optarg);
  783.                 break;
  784.             case OPT_ZONES:
  785.                 param->rc.psz_zones = optarg;
  786.                 break;
  787.             case OPT_THREADS:
  788.                 param->i_threads = atoi(optarg);
  789.                 break;
  790.             case OPT_NOPSNR:
  791.                 param->analyse.b_psnr = 0;
  792.                 break;
  793.             case OPT_QUIET:
  794.                 param->i_log_level = X264_LOG_NONE;
  795.                 break;
  796.             case 'v':
  797.                 param->i_log_level = X264_LOG_DEBUG;
  798.                 break;
  799.             case OPT_AUD:
  800.                 param->b_aud = 1;
  801.                 break;
  802.             case OPT_PROGRESS:
  803.                 opt->b_progress = 1;
  804.                 break;
  805.             case OPT_VISUALIZE:
  806. #ifdef VISUALIZE
  807.                 param->b_visualize = 1;
  808.                 b_exit_on_ctrl_c = 1;
  809. #else
  810.                 fprintf( stderr, "not compiled with visualization supportn" );
  811. #endif
  812.                 break;
  813.             case OPT_NR:
  814.                 param->analyse.i_noise_reduction = atoi(optarg);
  815.                 break;
  816.             case OPT_CQM:
  817.                 if( strstr( optarg, "flat" ) )
  818.                     param->i_cqm_preset = X264_CQM_FLAT;
  819.                 else if( strstr( optarg, "jvt" ) )
  820.                     param->i_cqm_preset = X264_CQM_JVT;
  821.                 else
  822.                 {
  823.                     fprintf( stderr, "bad CQM preset `%s'n", optarg );
  824.                     return -1;
  825.                 }
  826.                 break;
  827.             case OPT_CQMFILE:
  828.                 param->psz_cqm_file = optarg;
  829.                 break;
  830.             case OPT_CQM4:
  831.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  832.                 b_error |= parse_cqm( optarg, param->cqm_4iy, 16 );
  833.                 b_error |= parse_cqm( optarg, param->cqm_4ic, 16 );
  834.                 b_error |= parse_cqm( optarg, param->cqm_4py, 16 );
  835.                 b_error |= parse_cqm( optarg, param->cqm_4pc, 16 );
  836.                 break;
  837.             case OPT_CQM8:
  838.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  839.                 b_error |= parse_cqm( optarg, param->cqm_8iy, 64 );
  840.                 b_error |= parse_cqm( optarg, param->cqm_8py, 64 );
  841.                 break;
  842.             case OPT_CQM4I:
  843.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  844.                 b_error |= parse_cqm( optarg, param->cqm_4iy, 16 );
  845.                 b_error |= parse_cqm( optarg, param->cqm_4ic, 16 );
  846.                 break;
  847.             case OPT_CQM4P:
  848.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  849.                 b_error |= parse_cqm( optarg, param->cqm_4py, 16 );
  850.                 b_error |= parse_cqm( optarg, param->cqm_4pc, 16 );
  851.                 break;
  852.             case OPT_CQM4IY:
  853.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  854.                 b_error |= parse_cqm( optarg, param->cqm_4iy, 16 );
  855.                 break;
  856.             case OPT_CQM4IC:
  857.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  858.                 b_error |= parse_cqm( optarg, param->cqm_4ic, 16 );
  859.                 break;
  860.             case OPT_CQM4PY:
  861.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  862.                 b_error |= parse_cqm( optarg, param->cqm_4py, 16 );
  863.                 break;
  864.             case OPT_CQM4PC:
  865.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  866.                 b_error |= parse_cqm( optarg, param->cqm_4pc, 16 );
  867.                 break;
  868.             case OPT_CQM8I:
  869.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  870.                 b_error |= parse_cqm( optarg, param->cqm_8iy, 64 );
  871.                 break;
  872.             case OPT_CQM8P:
  873.                 param->i_cqm_preset = X264_CQM_CUSTOM;
  874.                 b_error |= parse_cqm( optarg, param->cqm_8py, 64 );
  875.                 break;
  876.             case OPT_OVERSCAN:
  877.                 b_error |= parse_enum( optarg, overscan_str, &param->vui.i_overscan );
  878.                 break;
  879.             case OPT_VIDFORMAT:
  880.                 b_error |= parse_enum( optarg, vidformat_str, &param->vui.i_vidformat );
  881.                 break;
  882.             case OPT_FULLRANGE:
  883.                 b_error |= parse_enum( optarg, fullrange_str, &param->vui.b_fullrange );
  884.                 break;
  885.             case OPT_COLOURPRIM:
  886.                 b_error |= parse_enum( optarg, colorprim_str, &param->vui.i_colorprim );
  887.                 break;
  888.             case OPT_TRANSFER:
  889.                 b_error |= parse_enum( optarg, transfer_str, &param->vui.i_transfer );
  890.                 break;
  891.             case OPT_COLOURMATRIX:
  892.                 b_error |= parse_enum( optarg, colmatrix_str, &param->vui.i_colmatrix );
  893.                 break;
  894.             case OPT_CHROMALOC:
  895.                 param->vui.i_chroma_loc = atoi( optarg );
  896.                 b_error = ( param->vui.i_chroma_loc < 0 || param->vui.i_chroma_loc > 5 );
  897.                 break;
  898.             default:
  899.                 fprintf( stderr, "unknown option (%c)n", optopt );
  900.                 return -1;
  901.         }
  902.         if( b_error )
  903.         {
  904.             fprintf( stderr, "bad argument: %s %sn", argv[optind-2], optarg );
  905.             return -1;
  906.         }
  907.     }
  908.     /* Get the file name */
  909.     if( optind > argc - 1 || !opt->hout )
  910.     {
  911.         Help( &defaults );
  912.         return -1;
  913.     }
  914.     psz_filename = argv[optind++];
  915.     if( !opt->b_decompress )
  916.     {
  917.         if( optind > argc - 1 )
  918.         {
  919.             /* try to parse the file name */
  920.             for( psz = psz_filename; *psz; psz++ )
  921.             {
  922.                 if( *psz >= '0' && *psz <= '9'
  923.                     && sscanf( psz, "%ux%u", &param->i_width, &param->i_height ) == 2 )
  924.                 {
  925.                     if( param->i_log_level >= X264_LOG_INFO )
  926.                         fprintf( stderr, "x264 [info]: file name gives %dx%dn", param->i_width, param->i_height );
  927.                     break;
  928.                 }
  929.             }
  930.         }
  931.         else
  932.         {
  933.             sscanf( argv[optind++], "%ux%u", &param->i_width, &param->i_height );
  934.         }
  935.         
  936.         /* check avis input */
  937.         psz = psz_filename + strlen(psz_filename) - 1;
  938.         while( psz > psz_filename && *psz != '.' )
  939.             psz--;
  940.         if( !strncasecmp( psz, ".avi", 4 ) || !strncasecmp( psz, ".avs", 4 ) )
  941.             b_avis = 1;
  942.         if( !b_avis && ( !param->i_width || !param->i_height ) )
  943.         {
  944.             Help( &defaults );
  945.             return -1;
  946.         }
  947.     }
  948.     /* open the input */
  949.     if( !strcmp( psz_filename, "-" ) )
  950.     {
  951.         opt->hin = stdin;
  952.         optind++;
  953.     }
  954.     else
  955.     {
  956.         if( b_avis )
  957.         {
  958. #ifdef AVIS_INPUT
  959.             p_open_infile = open_file_avis;
  960.             p_get_frame_total = get_frame_total_avis;
  961.             p_read_frame = read_frame_avis;
  962.             p_close_infile = close_file_avis;
  963. #else
  964.             fprintf( stderr, "not compiled with AVIS input supportn" );
  965.             return -1;
  966. #endif
  967.         }
  968.         if( p_open_infile( psz_filename, &opt->hin, param ) )
  969.         {
  970.             fprintf( stderr, "could not open input file '%s'n", psz_filename );
  971.             return -1;
  972.         }
  973.     }
  974.     return 0;
  975. }
  976. /*****************************************************************************
  977.  * Decode:
  978.  *****************************************************************************/
  979. static int  Encode_frame( x264_t *h, hnd_t hout, x264_picture_t *pic )
  980. {
  981.     x264_picture_t pic_out;
  982.     x264_nal_t *nal;
  983.     int i_nal, i;
  984.     int i_file = 0;
  985.     /* Do not force any parameters */
  986.     if( pic )
  987.     {
  988.         pic->i_type = X264_TYPE_AUTO;
  989.         pic->i_qpplus1 = 0;
  990.     }
  991.     if( x264_encoder_encode( h, &nal, &i_nal, pic, &pic_out ) < 0 )
  992.     {
  993.         fprintf( stderr, "x264_encoder_encode failedn" );
  994.     }
  995.     for( i = 0; i < i_nal; i++ )
  996.     {
  997.         int i_size;
  998.         int i_data;
  999.         i_data = DATA_MAX;
  1000.         if( ( i_size = x264_nal_encode( data, &i_data, 1, &nal[i] ) ) > 0 )
  1001.         {
  1002.             i_file += p_write_nalu( hout, data, i_size );
  1003.         }
  1004.         else if( i_size < 0 )
  1005.         {
  1006.             fprintf( stderr, "need to increase buffer size (size=%d)n", -i_size );
  1007.         }
  1008.     }
  1009.     if (i_nal)
  1010.         p_set_eop( hout, &pic_out );
  1011.     return i_file;
  1012. }
  1013. /*****************************************************************************
  1014.  * Encode:
  1015.  *****************************************************************************/
  1016. static int  Encode( x264_param_t *param, cli_opt_t *opt )
  1017. {
  1018.     x264_t *h;
  1019.     x264_picture_t pic;
  1020.     int     i_frame, i_frame_total;
  1021.     int64_t i_start, i_end;
  1022.     int64_t i_file;
  1023.     int     i_frame_size;
  1024.     int     i_progress;
  1025.     i_frame_total = p_get_frame_total( opt->hin, param->i_width, param->i_height );
  1026.     i_frame_total -= opt->i_seek;
  1027.     if( ( i_frame_total == 0 || param->i_frame_total < i_frame_total )
  1028.         && param->i_frame_total > 0 )
  1029.         i_frame_total = param->i_frame_total;
  1030.     param->i_frame_total = i_frame_total;
  1031.     if( ( h = x264_encoder_open( param ) ) == NULL )
  1032.     {
  1033.         fprintf( stderr, "x264_encoder_open failedn" );
  1034.         p_close_infile( opt->hin );
  1035.         p_close_outfile( opt->hout );
  1036.         return -1;
  1037.     }
  1038.     if( p_set_outfile_param( opt->hout, param ) )
  1039.     {
  1040.         fprintf( stderr, "can't set outfile paramn" );
  1041.         p_close_infile( opt->hin );
  1042.         p_close_outfile( opt->hout );
  1043.         return -1;
  1044.     }
  1045.     /* Create a new pic */
  1046.     x264_picture_alloc( &pic, X264_CSP_I420, param->i_width, param->i_height );
  1047.     i_start = x264_mdate();
  1048.     /* Encode frames */
  1049.     for( i_frame = 0, i_file = 0, i_progress = 0;
  1050.          b_ctrl_c == 0 && (i_frame < i_frame_total || i_frame_total == 0); )
  1051.     {
  1052.         if( p_read_frame( &pic, opt->hin, i_frame + opt->i_seek, param->i_width, param->i_height ) )
  1053.             break;
  1054.         pic.i_pts = (int64_t)i_frame * param->i_fps_den;
  1055.         i_file += Encode_frame( h, opt->hout, &pic );
  1056.         i_frame++;
  1057.         /* update status line (up to 1000 times per input file) */
  1058. #if 0 
  1059. if( opt->b_progress && param->i_log_level < X264_LOG_DEBUG && 
  1060.             ( i_frame_total ? i_frame * 1000 / i_frame_total > i_progress
  1061.                             : i_frame % 10 == 0 ) )
  1062. #else 
  1063.  if (1)
  1064. #endif
  1065.         {
  1066.             int64_t i_elapsed = x264_mdate() - i_start;
  1067.             double fps = i_elapsed > 0 ? i_frame * 1000000. / i_elapsed : 0;
  1068.             if( i_frame_total )
  1069.             {
  1070.                 int eta = i_elapsed * (i_frame_total - i_frame) / ((int64_t)i_frame * 1000000);
  1071.                 i_progress = i_frame * 1000 / i_frame_total;
  1072.                 fprintf( stderr, "encoded frames: %d/%d (%.1f%%), %.2f fps, eta %d:%02d:%02d  r",
  1073.                          i_frame, i_frame_total, (float)i_progress / 10, fps,
  1074.                          eta/3600, (eta/60)%60, eta%60 );
  1075.             }
  1076.             else
  1077.                 fprintf( stderr, "encoded frames: %d, %.2f fps   r", i_frame, fps );
  1078.             fflush( stderr ); // needed in windows
  1079.         }
  1080.     }
  1081.     /* Flush delayed B-frames */
  1082.     do {
  1083.         i_file +=
  1084.         i_frame_size = Encode_frame( h, opt->hout, NULL );
  1085.     } while( i_frame_size );
  1086.     i_end = x264_mdate();
  1087.     x264_picture_clean( &pic );
  1088.     x264_encoder_close( h );
  1089.     fprintf( stderr, "n" );
  1090.     if( b_ctrl_c )
  1091.         fprintf( stderr, "aborted at input frame %dn", opt->i_seek + i_frame );
  1092.     p_close_infile( opt->hin );
  1093.     p_close_outfile( opt->hout );
  1094.     if( i_frame > 0 )
  1095.     {
  1096.         double fps = (double)i_frame * (double)1000000 /
  1097.                      (double)( i_end - i_start );
  1098.         fprintf( stderr, "encoded %d frames, %.2f fps, %.2f kb/sn", i_frame, fps,
  1099.                  (double) i_file * 8 * param->i_fps_num /
  1100.                  ( (double) param->i_fps_den * i_frame * 1000 ) );
  1101.     }
  1102.     return 0;
  1103. }
  1104. /* raw 420 yuv file operation */
  1105. static int open_file_yuv( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
  1106. {
  1107.     if ((*p_handle = fopen(psz_filename, "rb")) == NULL)
  1108.         return -1;
  1109.     return 0;
  1110. }
  1111. static int get_frame_total_yuv( hnd_t handle, int i_width, int i_height )
  1112. {
  1113.     FILE *f = (FILE *)handle;
  1114.     int i_frame_total = 0;
  1115.     if( !fseek( f, 0, SEEK_END ) )
  1116.     {
  1117.         uint64_t i_size = ftell( f );
  1118.         fseek( f, 0, SEEK_SET );
  1119.         i_frame_total = (int)(i_size / ( i_width * i_height * 3 / 2 ));
  1120.     }
  1121.     return i_frame_total;
  1122. }
  1123. static int read_frame_yuv( x264_picture_t *p_pic, hnd_t handle, int i_frame, int i_width, int i_height )
  1124. {
  1125.     static int prev_frame = -1;
  1126.     FILE *f = (FILE *)handle;
  1127.     if( i_frame != prev_frame+1 )
  1128.         if( fseek( f, (uint64_t)i_frame * i_width * i_height * 3 / 2, SEEK_SET ) )
  1129.             return -1;
  1130.     if( fread( p_pic->img.plane[0], 1, i_width * i_height, f ) <= 0
  1131.             || fread( p_pic->img.plane[1], 1, i_width * i_height / 4, f ) <= 0
  1132.             || fread( p_pic->img.plane[2], 1, i_width * i_height / 4, f ) <= 0 )
  1133.         return -1;
  1134.     prev_frame = i_frame;
  1135.     return 0;
  1136. }
  1137. static int close_file_yuv(hnd_t handle)
  1138. {
  1139.     if (handle == NULL)
  1140.         return 0;
  1141.     return fclose((FILE *)handle);
  1142. }
  1143. /* avs/avi input file support under cygwin */
  1144. #ifdef AVIS_INPUT
  1145. static int gcd(int a, int b)
  1146. {
  1147.     int c;
  1148.     while (1)
  1149.     {
  1150.         c = a % b;
  1151.         if (!c)
  1152.             return b;
  1153.         a = b;
  1154.         b = c;
  1155.     }
  1156. }
  1157. static int open_file_avis( char *psz_filename, hnd_t *p_handle, x264_param_t *p_param )
  1158. {
  1159.     AVISTREAMINFO info;
  1160.     PAVISTREAM p_avi = NULL;
  1161.     int i;
  1162.     *p_handle = NULL;
  1163.     AVIFileInit();
  1164.     if( AVIStreamOpenFromFile( &p_avi, psz_filename, streamtypeVIDEO, 0, OF_READ, NULL ) )
  1165.     {
  1166.         AVIFileExit();
  1167.         return -1;
  1168.     }
  1169.     if( AVIStreamInfo(p_avi, &info, sizeof(AVISTREAMINFO)) )
  1170.     {
  1171.         AVIStreamRelease(p_avi);
  1172.         AVIFileExit();
  1173.         return -1;
  1174.     }
  1175.     // check input format
  1176.     if (info.fccHandler != MAKEFOURCC('Y', 'V', '1', '2'))
  1177.     {
  1178.         fprintf( stderr, "avis [error]: unsupported input format (%c%c%c%c)n",
  1179.             (char)(info.fccHandler & 0xff), (char)((info.fccHandler >> 8) & 0xff),
  1180.             (char)((info.fccHandler >> 16) & 0xff), (char)((info.fccHandler >> 24)) );
  1181.         AVIStreamRelease(p_avi);
  1182.         AVIFileExit();
  1183.         return -1;
  1184.     }
  1185.     p_param->i_width = info.rcFrame.right - info.rcFrame.left;
  1186.     p_param->i_height = info.rcFrame.bottom - info.rcFrame.top;
  1187.     i = gcd(info.dwRate, info.dwScale);
  1188.     p_param->i_fps_den = info.dwScale / i;
  1189.     p_param->i_fps_num = info.dwRate / i;
  1190.     fprintf( stderr, "avis [info]: %dx%d @ %.2f fps (%d frames)n",  
  1191.         p_param->i_width, p_param->i_height,
  1192.         (double)p_param->i_fps_num / (double)p_param->i_fps_den,
  1193.         (int)info.dwLength );
  1194.     *p_handle = (hnd_t)p_avi;
  1195.     return 0;
  1196. }
  1197. static int get_frame_total_avis( hnd_t handle, int i_width, int i_height )
  1198. {
  1199.     PAVISTREAM p_avi = (PAVISTREAM)handle;
  1200.     AVISTREAMINFO info;
  1201.     if( AVIStreamInfo(p_avi, &info, sizeof(AVISTREAMINFO)) )
  1202.         return -1;
  1203.     return info.dwLength;
  1204. }
  1205. static int read_frame_avis( x264_picture_t *p_pic, hnd_t handle, int i_frame, int i_width, int i_height )
  1206. {
  1207.     PAVISTREAM p_avi = (PAVISTREAM)handle;
  1208.     
  1209.     p_pic->img.i_csp = X264_CSP_YV12;
  1210.     
  1211.     if( AVIStreamRead(p_avi, i_frame, 1, p_pic->img.plane[0], i_width * i_height * 3 / 2, NULL, NULL ) )
  1212.         return -1;
  1213.     return 0;
  1214. }
  1215. static int close_file_avis( hnd_t handle )
  1216. {
  1217.     PAVISTREAM p_avi = (PAVISTREAM)handle;
  1218.     AVIStreamRelease(p_avi);
  1219.     AVIFileExit();
  1220.     return 0;
  1221. }
  1222. #endif
  1223. static int open_file_bsf( char *psz_filename, hnd_t *p_handle )
  1224. {
  1225.     if ((*p_handle = fopen(psz_filename, "w+b")) == NULL)
  1226.         return -1;
  1227.     return 0;
  1228. }
  1229. static int set_param_bsf( hnd_t handle, x264_param_t *p_param )
  1230. {
  1231.     return 0;
  1232. }
  1233. static int write_nalu_bsf( hnd_t handle, uint8_t *p_nalu, int i_size )
  1234. {
  1235.     if (fwrite(p_nalu, i_size, 1, (FILE *)handle) > 0)
  1236.         return i_size;
  1237.     return -1;
  1238. }
  1239. static int set_eop_bsf( hnd_t handle,  x264_picture_t *p_picture )
  1240. {
  1241.     return 0;
  1242. }
  1243. static int close_file_bsf( hnd_t handle )
  1244. {
  1245.     if ((handle == NULL) || (handle == stdout))
  1246.         return 0;
  1247.     return fclose((FILE *)handle);
  1248. }
  1249. /* -- mp4 muxing support ------------------------------------------------- */
  1250. #ifdef MP4_OUTPUT
  1251. typedef struct
  1252. {
  1253.     GF_ISOFile *p_file;
  1254.     GF_AVCConfig *p_config;
  1255.     GF_ISOSample *p_sample;
  1256.     int i_track;
  1257.     int i_descidx;
  1258.     int i_time_inc;
  1259.     int i_time_res;
  1260.     int i_numframe;
  1261.     int i_init_delay;
  1262.     uint8_t b_sps;
  1263.     uint8_t b_pps;
  1264. } mp4_t;
  1265. static void recompute_bitrate_mp4(GF_ISOFile *p_file, int i_track)
  1266. {
  1267.     u32 i, count, di, timescale, time_wnd, rate;
  1268.     u64 offset;
  1269.     Double br;
  1270.     GF_ESD *esd;
  1271.     esd = gf_isom_get_esd(p_file, i_track, 1);
  1272.     if (!esd) return;
  1273.     esd->decoderConfig->avgBitrate = 0;
  1274.     esd->decoderConfig->maxBitrate = 0;
  1275.     rate = time_wnd = 0;
  1276.     timescale = gf_isom_get_media_timescale(p_file, i_track);
  1277.     count = gf_isom_get_sample_count(p_file, i_track);
  1278.     for (i=0; i<count; i++) {
  1279.         GF_ISOSample *samp = gf_isom_get_sample_info(p_file, i_track, i+1, &di, &offset);
  1280.         if (samp->dataLength>esd->decoderConfig->bufferSizeDB) esd->decoderConfig->bufferSizeDB = samp->dataLength;
  1281.         if (esd->decoderConfig->bufferSizeDB < samp->dataLength) esd->decoderConfig->bufferSizeDB = samp->dataLength;
  1282.         esd->decoderConfig->avgBitrate += samp->dataLength;
  1283.         rate += samp->dataLength;
  1284.         if (samp->DTS > time_wnd + timescale) {
  1285.             if (rate > esd->decoderConfig->maxBitrate) esd->decoderConfig->maxBitrate = rate;
  1286.             time_wnd = samp->DTS;
  1287.             rate = 0;
  1288.         }
  1289.         gf_isom_sample_del(&samp);
  1290.     }
  1291.     br = (Double) (s64) gf_isom_get_media_duration(p_file, i_track);
  1292.     br /= timescale;
  1293.     esd->decoderConfig->avgBitrate = (u32) (esd->decoderConfig->avgBitrate / br);
  1294.     /*move to bps*/
  1295.     esd->decoderConfig->avgBitrate *= 8;
  1296.     esd->decoderConfig->maxBitrate *= 8;
  1297.     gf_isom_change_mpeg4_description(p_file, i_track, 1, esd);
  1298.     gf_odf_desc_del((GF_Descriptor *) esd);
  1299. }
  1300. static int close_file_mp4( hnd_t handle )
  1301. {
  1302.     mp4_t *p_mp4 = (mp4_t *)handle;
  1303.     if (p_mp4 == NULL)
  1304.         return 0;
  1305.     if (p_mp4->p_config)
  1306.         gf_odf_avc_cfg_del(p_mp4->p_config);
  1307.     if (p_mp4->p_sample)
  1308.     {
  1309.         if (p_mp4->p_sample->data)
  1310.             free(p_mp4->p_sample->data);
  1311.         gf_isom_sample_del(&p_mp4->p_sample);
  1312.     }
  1313.     if (p_mp4->p_file)
  1314.     {
  1315.         recompute_bitrate_mp4(p_mp4->p_file, p_mp4->i_track);
  1316.         gf_isom_set_pl_indication(p_mp4->p_file, GF_ISOM_PL_VISUAL, 0x15);
  1317.         gf_isom_set_storage_mode(p_mp4->p_file, GF_ISOM_STORE_FLAT);
  1318.         gf_isom_close(p_mp4->p_file);
  1319.     }
  1320.     free(p_mp4);
  1321.     return 0;
  1322. }
  1323. static int open_file_mp4( char *psz_filename, hnd_t *p_handle )
  1324. {
  1325.     mp4_t *p_mp4;
  1326.     *p_handle = NULL;
  1327.     if ((p_mp4 = (mp4_t *)malloc(sizeof(mp4_t))) == NULL)
  1328.         return -1;
  1329.     memset(p_mp4, 0, sizeof(mp4_t));
  1330.     p_mp4->p_file = gf_isom_open(psz_filename, GF_ISOM_OPEN_WRITE, NULL);
  1331.     if ((p_mp4->p_sample = gf_isom_sample_new()) == NULL)
  1332.     {
  1333.         close_file_mp4( p_mp4 );
  1334.         return -1;
  1335.     }
  1336.     gf_isom_set_brand_info(p_mp4->p_file, GF_ISOM_BRAND_AVC1, 0);
  1337.     *p_handle = p_mp4;
  1338.     return 0;
  1339. }
  1340. static int set_param_mp4( hnd_t handle, x264_param_t *p_param )
  1341. {
  1342.     mp4_t *p_mp4 = (mp4_t *)handle;
  1343.     p_mp4->i_track = gf_isom_new_track(p_mp4->p_file, 0, GF_ISOM_MEDIA_VISUAL, 
  1344.         p_param->i_fps_num);
  1345.     p_mp4->p_config = gf_odf_avc_cfg_new();
  1346.     gf_isom_avc_config_new(p_mp4->p_file, p_mp4->i_track, p_mp4->p_config, 
  1347.         NULL, NULL, &p_mp4->i_descidx);
  1348.     gf_isom_set_track_enabled(p_mp4->p_file, p_mp4->i_track, 1);
  1349.     gf_isom_set_visual_info(p_mp4->p_file, p_mp4->i_track, p_mp4->i_descidx, 
  1350.         p_param->i_width, p_param->i_height);
  1351.     p_mp4->p_sample->data = (char *)malloc(p_param->i_width * p_param->i_height * 3 / 2);
  1352.     if (p_mp4->p_sample->data == NULL)
  1353.         return -1;
  1354.     p_mp4->i_time_res = p_param->i_fps_num;
  1355.     p_mp4->i_time_inc = p_param->i_fps_den;
  1356.     p_mp4->i_init_delay = p_param->i_bframe ? (p_param->b_bframe_pyramid ? 2 : 1) : 0;
  1357.     p_mp4->i_init_delay *= p_mp4->i_time_inc;
  1358.     fprintf(stderr, "mp4 [info]: initial delay %d (scale %d)n", 
  1359.         p_mp4->i_init_delay, p_mp4->i_time_res);
  1360.     return 0;
  1361. }
  1362. static int write_nalu_mp4( hnd_t handle, uint8_t *p_nalu, int i_size )
  1363. {
  1364.     mp4_t *p_mp4 = (mp4_t *)handle;
  1365.     GF_AVCConfigSlot *p_slot;
  1366.     uint8_t type = p_nalu[4] & 0x1f;
  1367.     int psize;
  1368.     switch(type)
  1369.     {
  1370.     // sps
  1371.     case 0x07:
  1372.         if (!p_mp4->b_sps)
  1373.         {
  1374.             p_mp4->p_config->configurationVersion = 1;
  1375.             p_mp4->p_config->AVCProfileIndication = p_nalu[5];
  1376.             p_mp4->p_config->profile_compatibility = p_nalu[6];
  1377.             p_mp4->p_config->AVCLevelIndication = p_nalu[7];
  1378.             p_slot = (GF_AVCConfigSlot *)malloc(sizeof(GF_AVCConfigSlot));
  1379.             p_slot->size = i_size - 4;
  1380.             p_slot->data = (char *)malloc(p_slot->size);
  1381.             memcpy(p_slot->data, p_nalu + 4, i_size - 4);
  1382.             gf_list_add(p_mp4->p_config->sequenceParameterSets, p_slot);
  1383.             p_slot = NULL;
  1384.             p_mp4->b_sps = 1;
  1385.         }
  1386.         break;
  1387.     // pps      
  1388.     case 0x08:
  1389.         if (!p_mp4->b_pps)
  1390.         {
  1391.             p_slot = (GF_AVCConfigSlot *)malloc(sizeof(GF_AVCConfigSlot));
  1392.             p_slot->size = i_size - 4;
  1393.             p_slot->data = (char *)malloc(p_slot->size);
  1394.             memcpy(p_slot->data, p_nalu + 4, i_size - 4);
  1395.             gf_list_add(p_mp4->p_config->pictureParameterSets, p_slot);
  1396.             p_slot = NULL;
  1397.             p_mp4->b_pps = 1;
  1398.             if (p_mp4->b_sps)
  1399.                 gf_isom_avc_config_update(p_mp4->p_file, p_mp4->i_track, 1, p_mp4->p_config);
  1400.         }
  1401.         break;
  1402.     // slice, sei
  1403.     case 0x1:
  1404.     case 0x5:
  1405.     case 0x6:
  1406.         psize = i_size - 4 ;
  1407.         memcpy(p_mp4->p_sample->data + p_mp4->p_sample->dataLength, p_nalu, i_size);
  1408.         p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 0] = (psize >> 24) & 0xff;
  1409.         p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 1] = (psize >> 16) & 0xff;
  1410.         p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 2] = (psize >> 8) & 0xff;
  1411.         p_mp4->p_sample->data[p_mp4->p_sample->dataLength + 3] = (psize >> 0) & 0xff;
  1412.         p_mp4->p_sample->dataLength += i_size;
  1413.         break;
  1414.     }
  1415.     return i_size;
  1416. }
  1417. static int set_eop_mp4( hnd_t handle, x264_picture_t *p_picture )
  1418. {
  1419.     mp4_t *p_mp4 = (mp4_t *)handle;
  1420.     uint64_t dts = (uint64_t)p_mp4->i_numframe * p_mp4->i_time_inc;
  1421.     uint64_t pts = (uint64_t)p_picture->i_pts;
  1422.     int32_t offset = p_mp4->i_init_delay + pts - dts;
  1423.     p_mp4->p_sample->IsRAP = p_picture->i_type == X264_TYPE_IDR ? 1 : 0;
  1424.     p_mp4->p_sample->DTS = dts;
  1425.     p_mp4->p_sample->CTS_Offset = offset;
  1426.     gf_isom_add_sample(p_mp4->p_file, p_mp4->i_track, p_mp4->i_descidx, p_mp4->p_sample);
  1427.     p_mp4->p_sample->dataLength = 0;
  1428.     p_mp4->i_numframe++;
  1429.     return 0;
  1430. }
  1431. #endif
  1432. #if 0
  1433. /* -- mkv muxing support ------------------------------------------------- */
  1434. typedef struct
  1435. {
  1436.     mk_Writer *w;
  1437.     uint8_t   *sps, *pps;
  1438.     int       sps_len, pps_len;
  1439.     int       width, height, d_width, d_height;
  1440.     int64_t   frame_duration;
  1441.     int       fps_num;
  1442.     int       b_header_written;
  1443.     char      b_writing_frame;
  1444. } mkv_t;
  1445. static int write_header_mkv( mkv_t *p_mkv )
  1446. {
  1447.     int       ret;
  1448.     uint8_t   *avcC;
  1449.     int  avcC_len;
  1450.     if( p_mkv->sps == NULL || p_mkv->pps == NULL ||
  1451.         p_mkv->width == 0 || p_mkv->height == 0 ||
  1452.         p_mkv->d_width == 0 || p_mkv->d_height == 0)
  1453.         return -1;
  1454.     avcC_len = 5 + 1 + 2 + p_mkv->sps_len + 1 + 2 + p_mkv->pps_len;
  1455.     avcC = malloc(avcC_len);
  1456.     if (avcC == NULL)
  1457.         return -1;
  1458.     avcC[0] = 1;
  1459.     avcC[1] = p_mkv->sps[1];
  1460.     avcC[2] = p_mkv->sps[2];
  1461.     avcC[3] = p_mkv->sps[3];
  1462.     avcC[4] = 0xff; // nalu size length is four bytes
  1463.     avcC[5] = 0xe1; // one sps
  1464.     avcC[6] = p_mkv->sps_len >> 8;
  1465.     avcC[7] = p_mkv->sps_len;
  1466.     memcpy(avcC+8, p_mkv->sps, p_mkv->sps_len);
  1467.     avcC[8+p_mkv->sps_len] = 1; // one pps
  1468.     avcC[9+p_mkv->sps_len] = p_mkv->pps_len >> 8;
  1469.     avcC[10+p_mkv->sps_len] = p_mkv->pps_len;
  1470.     memcpy( avcC+11+p_mkv->sps_len, p_mkv->pps, p_mkv->pps_len );
  1471.     ret = mk_writeHeader( p_mkv->w, "x264", "V_MPEG4/ISO/AVC",
  1472.                           avcC, avcC_len, p_mkv->frame_duration, 50000,
  1473.                           p_mkv->width, p_mkv->height,
  1474.                           p_mkv->d_width, p_mkv->d_height );
  1475.     free( avcC );
  1476.     p_mkv->b_header_written = 1;
  1477.     return ret;
  1478. }
  1479. static int open_file_mkv( char *psz_filename, hnd_t *p_handle )
  1480. {
  1481.     mkv_t *p_mkv;
  1482.     *p_handle = NULL;
  1483.     p_mkv  = malloc(sizeof(*p_mkv));
  1484.     if (p_mkv == NULL)
  1485.         return -1;
  1486.     memset(p_mkv, 0, sizeof(*p_mkv));
  1487.     p_mkv->w = mk_createWriter(psz_filename);
  1488.     if (p_mkv->w == NULL)
  1489.     {
  1490.         free(p_mkv);
  1491.         return -1;
  1492.     }
  1493.     *p_handle = p_mkv;
  1494.     return 0;
  1495. }
  1496. static int set_param_mkv( hnd_t handle, x264_param_t *p_param )
  1497. {
  1498.     mkv_t   *p_mkv = handle;
  1499.     int64_t dw, dh;
  1500.     if( p_param->i_fps_num > 0 )
  1501.     {
  1502.         p_mkv->frame_duration = (int64_t)p_param->i_fps_den *
  1503.                                 (int64_t)1000000000 / p_param->i_fps_num;
  1504.         p_mkv->fps_num = p_param->i_fps_num;
  1505.     }
  1506.     else
  1507.     {
  1508.         p_mkv->frame_duration = 0;
  1509.         p_mkv->fps_num = 1;
  1510.     }
  1511.     p_mkv->width = p_param->i_width;
  1512.     p_mkv->height = p_param->i_height;
  1513.     if( p_param->vui.i_sar_width && p_param->vui.i_sar_height )
  1514.     {
  1515.         dw = (int64_t)p_param->i_width  * p_param->vui.i_sar_width;
  1516.         dh = (int64_t)p_param->i_height * p_param->vui.i_sar_height;
  1517.     }
  1518.     else
  1519.     {
  1520.         dw = p_param->i_width;
  1521.         dh = p_param->i_height;
  1522.     }
  1523.     if( dw > 0 && dh > 0 )
  1524.     {
  1525.         int64_t a = dw, b = dh;
  1526.         for (;;)
  1527.         {
  1528.             int64_t c = a % b;
  1529.             if( c == 0 )
  1530.               break;
  1531.             a = b;
  1532.             b = c;
  1533.         }
  1534.         dw /= b;
  1535.         dh /= b;
  1536.     }
  1537.     p_mkv->d_width = (int)dw;
  1538.     p_mkv->d_height = (int)dh;
  1539.     return 0;
  1540. }
  1541. static int write_nalu_mkv( hnd_t handle, uint8_t *p_nalu, int i_size )
  1542. {
  1543.     mkv_t *p_mkv = handle;
  1544.     uint8_t type = p_nalu[4] & 0x1f;
  1545.     uint8_t dsize[4];
  1546.     int psize;
  1547.     switch( type )
  1548.     {
  1549.     // sps
  1550.     case 0x07:
  1551.         if( !p_mkv->sps )
  1552.         {
  1553.             p_mkv->sps = malloc(i_size - 4);
  1554.             if (p_mkv->sps == NULL)
  1555.                 return -1;
  1556.             p_mkv->sps_len = i_size - 4;
  1557.             memcpy(p_mkv->sps, p_nalu + 4, i_size - 4);
  1558.         }
  1559.         break;
  1560.     // pps
  1561.     case 0x08:
  1562.         if( !p_mkv->pps )
  1563.         {
  1564.             p_mkv->pps = malloc(i_size - 4);
  1565.             if (p_mkv->pps == NULL)
  1566.                 return -1;
  1567.             p_mkv->pps_len = i_size - 4;
  1568.             memcpy(p_mkv->pps, p_nalu + 4, i_size - 4);
  1569.         }
  1570.         break;
  1571.     // slice, sei
  1572.     case 0x1:
  1573.     case 0x5:
  1574.     case 0x6:
  1575.         if( !p_mkv->b_writing_frame )
  1576.         {
  1577.             if( mk_startFrame(p_mkv->w) < 0 )
  1578.                 return -1;
  1579.             p_mkv->b_writing_frame = 1;
  1580.         }
  1581.         psize = i_size - 4 ;
  1582.         dsize[0] = psize >> 24;
  1583.         dsize[1] = psize >> 16;
  1584.         dsize[2] = psize >> 8;
  1585.         dsize[3] = psize;
  1586.         if( mk_addFrameData(p_mkv->w, dsize, 4) < 0 ||
  1587.             mk_addFrameData(p_mkv->w, p_nalu + 4, i_size - 4) < 0 )
  1588.             return -1;
  1589.         break;
  1590.     default:
  1591.         break;
  1592.     }
  1593.     if( !p_mkv->b_header_written && p_mkv->pps && p_mkv->sps &&
  1594.         write_header_mkv(p_mkv) < 0 )
  1595.         return -1;
  1596.     return i_size;
  1597. }
  1598. static int set_eop_mkv( hnd_t handle, x264_picture_t *p_picture )
  1599. {
  1600.     mkv_t *p_mkv = handle;
  1601.     int64_t i_stamp = (int64_t)(p_picture->i_pts * 1e9 / p_mkv->fps_num);
  1602.     p_mkv->b_writing_frame = 0;
  1603.     return mk_setFrameFlags( p_mkv->w, i_stamp,
  1604.                              p_picture->i_type == X264_TYPE_IDR );
  1605. }
  1606. static int close_file_mkv( hnd_t handle )
  1607. {
  1608.     mkv_t *p_mkv = handle;
  1609.     int   ret;
  1610.     if( p_mkv->sps )
  1611.         free( p_mkv->sps );
  1612.     if( p_mkv->pps )
  1613.         free( p_mkv->pps );
  1614.     ret = mk_close(p_mkv->w);
  1615.     free( p_mkv );
  1616.     return ret;
  1617. }
  1618. #endif