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