]> git.sesse.net Git - x264/blob - x264.c
ec342d4e4922ea0c106f396b4a0fa1a4dc6a3d6c
[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  *          Steven Walters <kemuri9@gmail.com>
9  *          Kieran Kunhya <kieran@kunhya.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 #include <stdlib.h>
27 #include <math.h>
28
29 #include <signal.h>
30 #define _GNU_SOURCE
31 #include <getopt.h>
32
33 #include "common/common.h"
34 #include "common/cpu.h"
35 #include "x264.h"
36 #include "muxers.h"
37
38 #ifdef _WIN32
39 #include <windows.h>
40 #else
41 #define SetConsoleTitle(t)
42 #endif
43
44 /* Ctrl-C handler */
45 static int     b_ctrl_c = 0;
46 static int     b_exit_on_ctrl_c = 0;
47 static void    SigIntHandler( int a )
48 {
49     if( b_exit_on_ctrl_c )
50         exit(0);
51     b_ctrl_c = 1;
52 }
53
54 typedef struct {
55     int b_progress;
56     int i_seek;
57     hnd_t hin;
58     hnd_t hout;
59     FILE *qpfile;
60     FILE *tcfile_out;
61     double timebase_convert_multiplier;
62     int i_pulldown;
63 } cli_opt_t;
64
65 /* i/o file operation function pointer structs */
66 cli_input_t input;
67 static cli_output_t output;
68
69 static const char * const demuxer_names[] =
70 {
71     "auto",
72     "yuv",
73     "y4m",
74 #ifdef AVS_INPUT
75     "avs",
76 #endif
77 #ifdef LAVF_INPUT
78     "lavf",
79 #endif
80 #ifdef FFMS_INPUT
81     "ffms",
82 #endif
83     0
84 };
85
86 static const char * const muxer_names[] =
87 {
88     "auto",
89     "raw",
90     "mkv",
91     "flv",
92 #ifdef MP4_OUTPUT
93     "mp4",
94 #endif
95     0
96 };
97
98 static const char * const pulldown_names[] = { "none", "22", "32", "64", "double", "triple", "euro", 0 };
99
100 typedef struct{
101     int mod;
102     uint8_t pattern[24];
103     float fps_factor;
104 } cli_pulldown_t;
105
106 enum pulldown_type_e
107 {
108     X264_PULLDOWN_22 = 1,
109     X264_PULLDOWN_32,
110     X264_PULLDOWN_64,
111     X264_PULLDOWN_DOUBLE,
112     X264_PULLDOWN_TRIPLE,
113     X264_PULLDOWN_EURO
114 };
115
116 #define TB  PIC_STRUCT_TOP_BOTTOM
117 #define BT  PIC_STRUCT_BOTTOM_TOP
118 #define TBT PIC_STRUCT_TOP_BOTTOM_TOP
119 #define BTB PIC_STRUCT_BOTTOM_TOP_BOTTOM
120
121 static const cli_pulldown_t pulldown_values[] =
122 {
123     [X264_PULLDOWN_22]     = {1,  {TB},                                   2.0},
124     [X264_PULLDOWN_32]     = {4,  {TBT, BT, BTB, TB},                     1.25},
125     [X264_PULLDOWN_64]     = {2,  {PIC_STRUCT_DOUBLE, PIC_STRUCT_TRIPLE}, 1.0},
126     [X264_PULLDOWN_DOUBLE] = {1,  {PIC_STRUCT_DOUBLE},                    2.0},
127     [X264_PULLDOWN_TRIPLE] = {1,  {PIC_STRUCT_TRIPLE},                    3.0},
128     [X264_PULLDOWN_EURO]   = {24, {TBT, BT, BT, BT, BT, BT, BT, BT, BT, BT, BT, BT,
129                                    BTB, TB, TB, TB, TB, TB, TB, TB, TB, TB, TB, TB}, 25.0/24.0}
130 };
131
132 #undef TB
133 #undef BT
134 #undef TBT
135 #undef BTB
136
137 // indexed by pic_struct enum
138 static const float pulldown_frame_duration[10] = { 0.0, 1, 0.5, 0.5, 1, 1, 1.5, 1.5, 2, 3 };
139
140 static void Help( x264_param_t *defaults, int longhelp );
141 static int  Parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt );
142 static int  Encode( x264_param_t *param, cli_opt_t *opt );
143
144 /****************************************************************************
145  * main:
146  ****************************************************************************/
147 int main( int argc, char **argv )
148 {
149     x264_param_t param;
150     cli_opt_t opt;
151     int ret;
152
153 #ifdef PTW32_STATIC_LIB
154     pthread_win32_process_attach_np();
155     pthread_win32_thread_attach_np();
156 #endif
157
158 #ifdef _WIN32
159     _setmode(_fileno(stdin), _O_BINARY);
160     _setmode(_fileno(stdout), _O_BINARY);
161 #endif
162
163     /* Parse command line */
164     if( Parse( argc, argv, &param, &opt ) < 0 )
165         return -1;
166
167     /* Control-C handler */
168     signal( SIGINT, SigIntHandler );
169
170     ret = Encode( &param, &opt );
171
172 #ifdef PTW32_STATIC_LIB
173     pthread_win32_thread_detach_np();
174     pthread_win32_process_detach_np();
175 #endif
176
177     return ret;
178 }
179
180 static char const *strtable_lookup( const char * const table[], int index )
181 {
182     int i = 0; while( table[i] ) i++;
183     return ( ( index >= 0 && index < i ) ? table[ index ] : "???" );
184 }
185
186 static char *stringify_names( char *buf, const char * const names[] )
187 {
188     int i = 0;
189     char *p = buf;
190     for( p[0] = 0; names[i]; i++ )
191     {
192         p += sprintf( p, "%s", names[i] );
193         if( names[i+1] )
194             p += sprintf( p, ", " );
195     }
196     return buf;
197 }
198
199 /*****************************************************************************
200  * Help:
201  *****************************************************************************/
202 static void Help( x264_param_t *defaults, int longhelp )
203 {
204     char buf[50];
205 #define H0 printf
206 #define H1 if(longhelp>=1) printf
207 #define H2 if(longhelp==2) printf
208     H0( "x264 core:%d%s\n"
209         "Syntax: x264 [options] -o outfile infile [widthxheight]\n"
210         "\n"
211         "Infile can be raw YUV 4:2:0 (in which case resolution is required),\n"
212         "  or YUV4MPEG 4:2:0 (*.y4m),\n"
213         "  or Avisynth if compiled with support (%s).\n"
214         "  or libav* formats if compiled with lavf support (%s) or ffms support (%s).\n"
215         "Outfile type is selected by filename:\n"
216         " .264 -> Raw bytestream\n"
217         " .mkv -> Matroska\n"
218         " .flv -> Flash Video\n"
219         " .mp4 -> MP4 if compiled with GPAC support (%s)\n"
220         "\n"
221         "Options:\n"
222         "\n"
223         "  -h, --help                  List basic options\n"
224         "      --longhelp              List more options\n"
225         "      --fullhelp              List all options\n"
226         "\n",
227         X264_BUILD, X264_VERSION,
228 #ifdef AVS_INPUT
229         "yes",
230 #else
231         "no",
232 #endif
233 #ifdef LAVF_INPUT
234         "yes",
235 #else
236         "no",
237 #endif
238 #ifdef FFMS_INPUT
239         "yes",
240 #else
241         "no",
242 #endif
243 #ifdef MP4_OUTPUT
244         "yes"
245 #else
246         "no"
247 #endif
248       );
249     H0( "Example usage:\n" );
250     H0( "\n" );
251     H0( "      Constant quality mode:\n" );
252     H0( "            x264 --crf 24 -o <output> <input>\n" );
253     H0( "\n" );
254     H0( "      Two-pass with a bitrate of 1000kbps:\n" );
255     H0( "            x264 --pass 1 --bitrate 1000 -o <output> <input>\n" );
256     H0( "            x264 --pass 2 --bitrate 1000 -o <output> <input>\n" );
257     H0( "\n" );
258     H0( "      Lossless:\n" );
259     H0( "            x264 --crf 0 -o <output> <input>\n" );
260     H0( "\n" );
261     H0( "      Maximum PSNR at the cost of speed and visual quality:\n" );
262     H0( "            x264 --preset placebo --tune psnr -o <output> <input>\n" );
263     H0( "\n" );
264     H0( "      Constant bitrate at 1000kbps with a 2 second-buffer:\n");
265     H0( "            x264 --vbv-bufsize 2000 --bitrate 1000 -o <output> <input>\n" );
266     H0( "\n" );
267     H0( "Presets:\n" );
268     H0( "\n" );
269     H0( "      --profile               Force the limits of an H.264 profile [high]\n"
270         "                                  Overrides all settings.\n" );
271     H2( "                                  - baseline:\n"
272         "                                    --no-8x8dct --bframes 0 --no-cabac\n"
273         "                                    --cqm flat --weightp 0 No interlaced\n"
274         "                                    No lossless\n"
275         "                                  - main:\n"
276         "                                    --no-8x8dct --cqm flat No lossless\n"
277         "                                  - high:\n"
278         "                                    No lossless\n" );
279         else H0( "                                  - baseline,main,high\n" );
280     H0( "      --preset                Use a preset to select encoding settings [medium]\n"
281         "                                  Overridden by user settings.\n" );
282     H2( "                                  - ultrafast:\n"
283         "                                    --no-8x8dct --aq-mode 0 --b-adapt 0\n"
284         "                                    --bframes 0 --no-cabac --no-deblock\n"
285         "                                    --no-mbtree --me dia --no-mixed-refs\n"
286         "                                    --partitions none --ref 1 --scenecut 0\n"
287         "                                    --subme 0 --trellis 0 --no-weightb\n"
288         "                                    --weightp 0\n"
289         "                                  - veryfast:\n"
290         "                                    --no-mbtree --me dia --no-mixed-refs\n"
291         "                                    --partitions i8x8,i4x4 --ref 1\n"
292         "                                    --subme 1 --trellis 0 --weightp 0\n"
293         "                                  - faster:\n"
294         "                                    --no-mbtree --no-mixed-refs --ref 2\n"
295         "                                    --subme 4 --weightp 1\n"
296         "                                  - fast:\n"
297         "                                    --rc-lookahead 30 --ref 2 --subme 6\n"
298         "                                  - medium:\n"
299         "                                    Default settings apply.\n"
300         "                                  - slow:\n"
301         "                                    --b-adapt 2 --direct auto --me umh\n"
302         "                                    --rc-lookahead 50 --ref 5 --subme 8\n"
303         "                                  - slower:\n"
304         "                                    --b-adapt 2 --direct auto --me umh\n"
305         "                                    --partitions all --rc-lookahead 60\n"
306         "                                    --ref 8 --subme 9 --trellis 2\n"
307         "                                  - veryslow:\n"
308         "                                    --b-adapt 2 --bframes 8 --direct auto\n"
309         "                                    --me umh --merange 24 --partitions all\n"
310         "                                    --ref 16 --subme 10 --trellis 2\n"
311         "                                    --rc-lookahead 60\n"
312         "                                  - placebo:\n"
313         "                                    --bframes 16 --b-adapt 2 --direct auto\n"
314         "                                    --slow-firstpass --no-fast-pskip\n"
315         "                                    --me tesa --merange 24 --partitions all\n"
316         "                                    --rc-lookahead 60 --ref 16 --subme 10\n"
317         "                                    --trellis 2\n" );
318     else H0( "                                  - ultrafast,veryfast,faster,fast,medium\n"
319              "                                  - slow,slower,veryslow,placebo\n" );
320     H0( "      --tune                  Tune the settings for a particular type of source\n"
321         "                              or situation\n"
322         "                                  Overridden by user settings.\n"
323         "                                  Multiple tunings are separated by commas.\n"
324         "                                  Only one psy tuning can be used at a time.\n" );
325     H2( "                                  - film (psy tuning):\n"
326         "                                    --deblock -1:-1 --psy-rd <unset>:0.15\n"
327         "                                  - animation (psy tuning):\n"
328         "                                    --bframes {+2} --deblock 1:1\n"
329         "                                    --psy-rd 0.4:<unset> --aq-strength 0.6\n"
330         "                                    --ref {Double if >1 else 1}\n"
331         "                                  - grain (psy tuning):\n"
332         "                                    --aq-strength 0.5 --no-dct-decimate\n"
333         "                                    --deadzone-inter 6 --deadzone-intra 6\n"
334         "                                    --deblock -2:-2 --ipratio 1.1 \n"
335         "                                    --pbratio 1.1 --psy-rd <unset>:0.25\n"
336         "                                    --qcomp 0.8\n"
337         "                                  - psnr (psy tuning):\n"
338         "                                    --aq-mode 0 --no-psy\n"
339         "                                  - ssim (psy tuning):\n"
340         "                                    --aq-mode 2 --no-psy\n"
341         "                                  - fastdecode:\n"
342         "                                    --no-cabac --no-deblock --no-weightb\n"
343         "                                    --weightp 0\n"
344         "                                  - zerolatency:\n"
345         "                                    --bframes 0 --force-cfr --rc-lookahead 0\n"
346         "                                    --sync-lookahead 0 --sliced-threads\n" );
347     else H0( "                                  - psy tunings: film,animation,grain,psnr,ssim\n"
348              "                                  - other tunings: fastdecode,zerolatency\n" );
349     H1( "      --slow-firstpass        Don't use faster settings with --pass 1\n" );
350     H0( "\n" );
351     H0( "Frame-type options:\n" );
352     H0( "\n" );
353     H0( "  -I, --keyint <integer>      Maximum GOP size [%d]\n", defaults->i_keyint_max );
354     H2( "  -i, --min-keyint <integer>  Minimum GOP size [%d]\n", defaults->i_keyint_min );
355     H2( "      --no-scenecut           Disable adaptive I-frame decision\n" );
356     H2( "      --scenecut <integer>    How aggressively to insert extra I-frames [%d]\n", defaults->i_scenecut_threshold );
357     H2( "      --intra-refresh         Use Periodic Intra Refresh instead of IDR frames\n" );
358     H1( "  -b, --bframes <integer>     Number of B-frames between I and P [%d]\n", defaults->i_bframe );
359     H1( "      --b-adapt <integer>     Adaptive B-frame decision method [%d]\n"
360         "                                  Higher values may lower threading efficiency.\n"
361         "                                  - 0: Disabled\n"
362         "                                  - 1: Fast\n"
363         "                                  - 2: Optimal (slow with high --bframes)\n", defaults->i_bframe_adaptive );
364     H2( "      --b-bias <integer>      Influences how often B-frames are used [%d]\n", defaults->i_bframe_bias );
365     H1( "      --b-pyramid <string>    Keep some B-frames as references [%s]\n"
366         "                                  - none: Disabled\n"
367         "                                  - strict: Strictly hierarchical pyramid\n"
368         "                                  - normal: Non-strict (not Blu-ray compatible)\n",
369         strtable_lookup( x264_b_pyramid_names, defaults->i_bframe_pyramid ) );
370     H1( "      --no-cabac              Disable CABAC\n" );
371     H1( "  -r, --ref <integer>         Number of reference frames [%d]\n", defaults->i_frame_reference );
372     H1( "      --no-deblock            Disable loop filter\n" );
373     H1( "  -f, --deblock <alpha:beta>  Loop filter parameters [%d:%d]\n",
374                                        defaults->i_deblocking_filter_alphac0, defaults->i_deblocking_filter_beta );
375     H2( "      --slices <integer>      Number of slices per frame; forces rectangular\n"
376         "                              slices and is overridden by other slicing options\n" );
377     else H1( "      --slices <integer>      Number of slices per frame\n" );
378     H2( "      --slice-max-size <integer> Limit the size of each slice in bytes\n");
379     H2( "      --slice-max-mbs <integer> Limit the size of each slice in macroblocks\n");
380     H0( "      --tff                   Enable interlaced mode (top field first)\n" );
381     H0( "      --bff                   Enable interlaced mode (bottom field first)\n" );
382     H2( "      --constrained-intra     Enable constrained intra prediction.\n" );
383     H0( "\n" );
384     H0( "Ratecontrol:\n" );
385     H0( "\n" );
386     H1( "  -q, --qp <integer>          Force constant QP (0-51, 0=lossless)\n" );
387     H0( "  -B, --bitrate <integer>     Set bitrate (kbit/s)\n" );
388     H0( "      --crf <float>           Quality-based VBR (0-51, 0=lossless) [%.1f]\n", defaults->rc.f_rf_constant );
389     H1( "      --rc-lookahead <integer> Number of frames for frametype lookahead [%d]\n", defaults->rc.i_lookahead );
390     H0( "      --vbv-maxrate <integer> Max local bitrate (kbit/s) [%d]\n", defaults->rc.i_vbv_max_bitrate );
391     H0( "      --vbv-bufsize <integer> Set size of the VBV buffer (kbit) [%d]\n", defaults->rc.i_vbv_buffer_size );
392     H2( "      --vbv-init <float>      Initial VBV buffer occupancy [%.1f]\n", defaults->rc.f_vbv_buffer_init );
393     H2( "      --crf-max <float>       With CRF+VBV, limit RF to this value\n"
394         "                                  May cause VBV underflows!\n" );
395     H2( "      --qpmin <integer>       Set min QP [%d]\n", defaults->rc.i_qp_min );
396     H2( "      --qpmax <integer>       Set max QP [%d]\n", defaults->rc.i_qp_max );
397     H2( "      --qpstep <integer>      Set max QP step [%d]\n", defaults->rc.i_qp_step );
398     H2( "      --ratetol <float>       Tolerance of ABR ratecontrol and VBV [%.1f]\n", defaults->rc.f_rate_tolerance );
399     H2( "      --ipratio <float>       QP factor between I and P [%.2f]\n", defaults->rc.f_ip_factor );
400     H2( "      --pbratio <float>       QP factor between P and B [%.2f]\n", defaults->rc.f_pb_factor );
401     H2( "      --chroma-qp-offset <integer>  QP difference between chroma and luma [%d]\n", defaults->analyse.i_chroma_qp_offset );
402     H2( "      --aq-mode <integer>     AQ method [%d]\n"
403         "                                  - 0: Disabled\n"
404         "                                  - 1: Variance AQ (complexity mask)\n"
405         "                                  - 2: Auto-variance AQ (experimental)\n", defaults->rc.i_aq_mode );
406     H1( "      --aq-strength <float>   Reduces blocking and blurring in flat and\n"
407         "                              textured areas. [%.1f]\n", defaults->rc.f_aq_strength );
408     H1( "\n" );
409     H0( "  -p, --pass <integer>        Enable multipass ratecontrol\n"
410         "                                  - 1: First pass, creates stats file\n"
411         "                                  - 2: Last pass, does not overwrite stats file\n" );
412     H2( "                                  - 3: Nth pass, overwrites stats file\n" );
413     H1( "      --stats <string>        Filename for 2 pass stats [\"%s\"]\n", defaults->rc.psz_stat_out );
414     H2( "      --no-mbtree             Disable mb-tree ratecontrol.\n");
415     H2( "      --qcomp <float>         QP curve compression [%.2f]\n", defaults->rc.f_qcompress );
416     H2( "      --cplxblur <float>      Reduce fluctuations in QP (before curve compression) [%.1f]\n", defaults->rc.f_complexity_blur );
417     H2( "      --qblur <float>         Reduce fluctuations in QP (after curve compression) [%.1f]\n", defaults->rc.f_qblur );
418     H2( "      --zones <zone0>/<zone1>/...  Tweak the bitrate of regions of the video\n" );
419     H2( "                              Each zone is of the form\n"
420         "                                  <start frame>,<end frame>,<option>\n"
421         "                                  where <option> is either\n"
422         "                                      q=<integer> (force QP)\n"
423         "                                  or  b=<float> (bitrate multiplier)\n" );
424     H2( "      --qpfile <string>       Force frametypes and QPs for some or all frames\n"
425         "                              Format of each line: framenumber frametype QP\n"
426         "                              QP of -1 lets x264 choose. Frametypes: I,i,P,B,b.\n"
427         "                              QPs are restricted by qpmin/qpmax.\n" );
428     H1( "\n" );
429     H1( "Analysis:\n" );
430     H1( "\n" );
431     H1( "  -A, --partitions <string>   Partitions to consider [\"p8x8,b8x8,i8x8,i4x4\"]\n"
432         "                                  - p8x8, p4x4, b8x8, i8x8, i4x4\n"
433         "                                  - none, all\n"
434         "                                  (p4x4 requires p8x8. i8x8 requires --8x8dct.)\n" );
435     H1( "      --direct <string>       Direct MV prediction mode [\"%s\"]\n"
436         "                                  - none, spatial, temporal, auto\n",
437                                        strtable_lookup( x264_direct_pred_names, defaults->analyse.i_direct_mv_pred ) );
438     H2( "      --no-weightb            Disable weighted prediction for B-frames\n" );
439     H1( "      --weightp <integer>     Weighted prediction for P-frames [%d]\n"
440         "                                  - 0: Disabled\n"
441         "                                  - 1: Blind offset\n"
442         "                                  - 2: Smart analysis\n", defaults->analyse.i_weighted_pred );
443     H1( "      --me <string>           Integer pixel motion estimation method [\"%s\"]\n",
444                                        strtable_lookup( x264_motion_est_names, defaults->analyse.i_me_method ) );
445     H2( "                                  - dia: diamond search, radius 1 (fast)\n"
446         "                                  - hex: hexagonal search, radius 2\n"
447         "                                  - umh: uneven multi-hexagon search\n"
448         "                                  - esa: exhaustive search\n"
449         "                                  - tesa: hadamard exhaustive search (slow)\n" );
450     else H1( "                                  - dia, hex, umh\n" );
451     H2( "      --merange <integer>     Maximum motion vector search range [%d]\n", defaults->analyse.i_me_range );
452     H2( "      --mvrange <integer>     Maximum motion vector length [-1 (auto)]\n" );
453     H2( "      --mvrange-thread <int>  Minimum buffer between threads [-1 (auto)]\n" );
454     H1( "  -m, --subme <integer>       Subpixel motion estimation and mode decision [%d]\n", defaults->analyse.i_subpel_refine );
455     H2( "                                  - 0: fullpel only (not recommended)\n"
456         "                                  - 1: SAD mode decision, one qpel iteration\n"
457         "                                  - 2: SATD mode decision\n"
458         "                                  - 3-5: Progressively more qpel\n"
459         "                                  - 6: RD mode decision for I/P-frames\n"
460         "                                  - 7: RD mode decision for all frames\n"
461         "                                  - 8: RD refinement for I/P-frames\n"
462         "                                  - 9: RD refinement for all frames\n"
463         "                                  - 10: QP-RD - requires trellis=2, aq-mode>0\n" );
464     else H1( "                                  decision quality: 1=fast, 10=best.\n"  );
465     H1( "      --psy-rd                Strength of psychovisual optimization [\"%.1f:%.1f\"]\n"
466         "                                  #1: RD (requires subme>=6)\n"
467         "                                  #2: Trellis (requires trellis, experimental)\n",
468                                        defaults->analyse.f_psy_rd, defaults->analyse.f_psy_trellis );
469     H2( "      --no-psy                Disable all visual optimizations that worsen\n"
470         "                              both PSNR and SSIM.\n" );
471     H2( "      --no-mixed-refs         Don't decide references on a per partition basis\n" );
472     H2( "      --no-chroma-me          Ignore chroma in motion estimation\n" );
473     H1( "      --no-8x8dct             Disable adaptive spatial transform size\n" );
474     H1( "  -t, --trellis <integer>     Trellis RD quantization. Requires CABAC. [%d]\n"
475         "                                  - 0: disabled\n"
476         "                                  - 1: enabled only on the final encode of a MB\n"
477         "                                  - 2: enabled on all mode decisions\n", defaults->analyse.i_trellis );
478     H2( "      --no-fast-pskip         Disables early SKIP detection on P-frames\n" );
479     H2( "      --no-dct-decimate       Disables coefficient thresholding on P-frames\n" );
480     H1( "      --nr <integer>          Noise reduction [%d]\n", defaults->analyse.i_noise_reduction );
481     H2( "\n" );
482     H2( "      --deadzone-inter <int>  Set the size of the inter luma quantization deadzone [%d]\n", defaults->analyse.i_luma_deadzone[0] );
483     H2( "      --deadzone-intra <int>  Set the size of the intra luma quantization deadzone [%d]\n", defaults->analyse.i_luma_deadzone[1] );
484     H2( "                                  Deadzones should be in the range 0 - 32.\n" );
485     H2( "      --cqm <string>          Preset quant matrices [\"flat\"]\n"
486         "                                  - jvt, flat\n" );
487     H1( "      --cqmfile <string>      Read custom quant matrices from a JM-compatible file\n" );
488     H2( "                                  Overrides any other --cqm* options.\n" );
489     H2( "      --cqm4 <list>           Set all 4x4 quant matrices\n"
490         "                                  Takes a comma-separated list of 16 integers.\n" );
491     H2( "      --cqm8 <list>           Set all 8x8 quant matrices\n"
492         "                                  Takes a comma-separated list of 64 integers.\n" );
493     H2( "      --cqm4i, --cqm4p, --cqm8i, --cqm8p\n"
494         "                              Set both luma and chroma quant matrices\n" );
495     H2( "      --cqm4iy, --cqm4ic, --cqm4py, --cqm4pc\n"
496         "                              Set individual quant matrices\n" );
497     H2( "\n" );
498     H2( "Video Usability Info (Annex E):\n" );
499     H2( "The VUI settings are not used by the encoder but are merely suggestions to\n" );
500     H2( "the playback equipment. See doc/vui.txt for details. Use at your own risk.\n" );
501     H2( "\n" );
502     H2( "      --overscan <string>     Specify crop overscan setting [\"%s\"]\n"
503         "                                  - undef, show, crop\n",
504                                        strtable_lookup( x264_overscan_names, defaults->vui.i_overscan ) );
505     H2( "      --videoformat <string>  Specify video format [\"%s\"]\n"
506         "                                  - component, pal, ntsc, secam, mac, undef\n",
507                                        strtable_lookup( x264_vidformat_names, defaults->vui.i_vidformat ) );
508     H2( "      --fullrange <string>    Specify full range samples setting [\"%s\"]\n"
509         "                                  - off, on\n",
510                                        strtable_lookup( x264_fullrange_names, defaults->vui.b_fullrange ) );
511     H2( "      --colorprim <string>    Specify color primaries [\"%s\"]\n"
512         "                                  - undef, bt709, bt470m, bt470bg\n"
513         "                                    smpte170m, smpte240m, film\n",
514                                        strtable_lookup( x264_colorprim_names, defaults->vui.i_colorprim ) );
515     H2( "      --transfer <string>     Specify transfer characteristics [\"%s\"]\n"
516         "                                  - undef, bt709, bt470m, bt470bg, linear,\n"
517         "                                    log100, log316, smpte170m, smpte240m\n",
518                                        strtable_lookup( x264_transfer_names, defaults->vui.i_transfer ) );
519     H2( "      --colormatrix <string>  Specify color matrix setting [\"%s\"]\n"
520         "                                  - undef, bt709, fcc, bt470bg\n"
521         "                                    smpte170m, smpte240m, GBR, YCgCo\n",
522                                        strtable_lookup( x264_colmatrix_names, defaults->vui.i_colmatrix ) );
523     H2( "      --chromaloc <integer>   Specify chroma sample location (0 to 5) [%d]\n",
524                                        defaults->vui.i_chroma_loc );
525
526     H2( "      --nal-hrd <string>      Signal HRD information (requires vbv-bufsize)\n"
527         "                                  - none, vbr, cbr (cbr not allowed in .mp4)\n" );
528     H2( "      --pic-struct            Force pic_struct in Picture Timing SEI\n" );
529
530     H0( "\n" );
531     H0( "Input/Output:\n" );
532     H0( "\n" );
533     H0( "  -o, --output                Specify output file\n" );
534     H1( "      --muxer <string>        Specify output container format [\"%s\"]\n"
535         "                                  - %s\n", muxer_names[0], stringify_names( buf, muxer_names ) );
536     H1( "      --demuxer <string>      Specify input container format [\"%s\"]\n"
537         "                                  - %s\n", demuxer_names[0], stringify_names( buf, demuxer_names ) );
538     H1( "      --index <string>        Filename for input index file\n" );
539     H0( "      --sar width:height      Specify Sample Aspect Ratio\n" );
540     H0( "      --fps <float|rational>  Specify framerate\n" );
541     H0( "      --seek <integer>        First frame to encode\n" );
542     H0( "      --frames <integer>      Maximum number of frames to encode\n" );
543     H0( "      --level <string>        Specify level (as defined by Annex A)\n" );
544     H1( "\n" );
545     H1( "  -v, --verbose               Print stats for each frame\n" );
546     H1( "      --no-progress           Don't show the progress indicator while encoding\n" );
547     H0( "      --quiet                 Quiet Mode\n" );
548     H1( "      --psnr                  Enable PSNR computation\n" );
549     H1( "      --ssim                  Enable SSIM computation\n" );
550     H1( "      --threads <integer>     Force a specific number of threads\n" );
551     H2( "      --sliced-threads        Low-latency but lower-efficiency threading\n" );
552     H2( "      --thread-input          Run Avisynth in its own thread\n" );
553     H2( "      --sync-lookahead <integer> Number of buffer frames for threaded lookahead\n" );
554     H2( "      --non-deterministic     Slightly improve quality of SMP, at the cost of repeatability\n" );
555     H2( "      --asm <integer>         Override CPU detection\n" );
556     H2( "      --no-asm                Disable all CPU optimizations\n" );
557     H2( "      --visualize             Show MB types overlayed on the encoded video\n" );
558     H2( "      --dump-yuv <string>     Save reconstructed frames\n" );
559     H2( "      --sps-id <integer>      Set SPS and PPS id numbers [%d]\n", defaults->i_sps_id );
560     H2( "      --aud                   Use access unit delimiters\n" );
561     H2( "      --force-cfr             Force constant framerate timestamp generation\n" );
562     H2( "      --tcfile-in <string>    Force timestamp generation with timecode file\n" );
563     H2( "      --tcfile-out <string>   Output timecode v2 file from input timestamps\n" );
564     H2( "      --timebase <int/int>    Specify timebase numerator and denominator\n"
565         "                 <integer>    Specify timebase numerator for input timecode file\n"
566         "                              or specify timebase denominator for other input\n" );
567     H0( "      --pulldown <string>     Use soft pulldown to change frame rate\n"
568         "                                  - none, 22, 32, 64, double, triple, euro (requires cfr input)\n" );
569     H0( "\n" );
570 }
571
572 #define OPT_FRAMES 256
573 #define OPT_SEEK 257
574 #define OPT_QPFILE 258
575 #define OPT_THREAD_INPUT 259
576 #define OPT_QUIET 260
577 #define OPT_NOPROGRESS 261
578 #define OPT_VISUALIZE 262
579 #define OPT_LONGHELP 263
580 #define OPT_PROFILE 264
581 #define OPT_PRESET 265
582 #define OPT_TUNE 266
583 #define OPT_SLOWFIRSTPASS 267
584 #define OPT_FULLHELP 268
585 #define OPT_FPS 269
586 #define OPT_MUXER 270
587 #define OPT_DEMUXER 271
588 #define OPT_INDEX 272
589 #define OPT_INTERLACED 273
590 #define OPT_TCFILE_IN 274
591 #define OPT_TCFILE_OUT 275
592 #define OPT_TIMEBASE 276
593 #define OPT_PULLDOWN 277
594
595 static char short_options[] = "8A:B:b:f:hI:i:m:o:p:q:r:t:Vvw";
596 static struct option long_options[] =
597 {
598     { "help",              no_argument, NULL, 'h' },
599     { "longhelp",          no_argument, NULL, OPT_LONGHELP },
600     { "fullhelp",          no_argument, NULL, OPT_FULLHELP },
601     { "version",           no_argument, NULL, 'V' },
602     { "profile",     required_argument, NULL, OPT_PROFILE },
603     { "preset",      required_argument, NULL, OPT_PRESET },
604     { "tune",        required_argument, NULL, OPT_TUNE },
605     { "slow-firstpass",    no_argument, NULL, OPT_SLOWFIRSTPASS },
606     { "bitrate",     required_argument, NULL, 'B' },
607     { "bframes",     required_argument, NULL, 'b' },
608     { "b-adapt",     required_argument, NULL, 0 },
609     { "no-b-adapt",        no_argument, NULL, 0 },
610     { "b-bias",      required_argument, NULL, 0 },
611     { "b-pyramid",   required_argument, NULL, 0 },
612     { "min-keyint",  required_argument, NULL, 'i' },
613     { "keyint",      required_argument, NULL, 'I' },
614     { "intra-refresh",     no_argument, NULL, 0 },
615     { "scenecut",    required_argument, NULL, 0 },
616     { "no-scenecut",       no_argument, NULL, 0 },
617     { "nf",                no_argument, NULL, 0 },
618     { "no-deblock",        no_argument, NULL, 0 },
619     { "filter",      required_argument, NULL, 0 },
620     { "deblock",     required_argument, NULL, 'f' },
621     { "interlaced",        no_argument, NULL, OPT_INTERLACED },
622     { "tff",               no_argument, NULL, OPT_INTERLACED },
623     { "bff",               no_argument, NULL, OPT_INTERLACED },
624     { "no-interlaced",     no_argument, NULL, OPT_INTERLACED },
625     { "constrained-intra", no_argument, NULL, 0 },
626     { "cabac",             no_argument, NULL, 0 },
627     { "no-cabac",          no_argument, NULL, 0 },
628     { "qp",          required_argument, NULL, 'q' },
629     { "qpmin",       required_argument, NULL, 0 },
630     { "qpmax",       required_argument, NULL, 0 },
631     { "qpstep",      required_argument, NULL, 0 },
632     { "crf",         required_argument, NULL, 0 },
633     { "rc-lookahead",required_argument, NULL, 0 },
634     { "ref",         required_argument, NULL, 'r' },
635     { "asm",         required_argument, NULL, 0 },
636     { "no-asm",            no_argument, NULL, 0 },
637     { "sar",         required_argument, NULL, 0 },
638     { "fps",         required_argument, NULL, OPT_FPS },
639     { "frames",      required_argument, NULL, OPT_FRAMES },
640     { "seek",        required_argument, NULL, OPT_SEEK },
641     { "output",      required_argument, NULL, 'o' },
642     { "muxer",       required_argument, NULL, OPT_MUXER },
643     { "demuxer",     required_argument, NULL, OPT_DEMUXER },
644     { "stdout",      required_argument, NULL, OPT_MUXER },
645     { "stdin",       required_argument, NULL, OPT_DEMUXER },
646     { "index",       required_argument, NULL, OPT_INDEX },
647     { "analyse",     required_argument, NULL, 0 },
648     { "partitions",  required_argument, NULL, 'A' },
649     { "direct",      required_argument, NULL, 0 },
650     { "weightb",           no_argument, NULL, 'w' },
651     { "no-weightb",        no_argument, NULL, 0 },
652     { "weightp",     required_argument, NULL, 0 },
653     { "me",          required_argument, NULL, 0 },
654     { "merange",     required_argument, NULL, 0 },
655     { "mvrange",     required_argument, NULL, 0 },
656     { "mvrange-thread", required_argument, NULL, 0 },
657     { "subme",       required_argument, NULL, 'm' },
658     { "psy-rd",      required_argument, NULL, 0 },
659     { "no-psy",            no_argument, NULL, 0 },
660     { "psy",               no_argument, NULL, 0 },
661     { "mixed-refs",        no_argument, NULL, 0 },
662     { "no-mixed-refs",     no_argument, NULL, 0 },
663     { "no-chroma-me",      no_argument, NULL, 0 },
664     { "8x8dct",            no_argument, NULL, 0 },
665     { "no-8x8dct",         no_argument, NULL, 0 },
666     { "trellis",     required_argument, NULL, 't' },
667     { "fast-pskip",        no_argument, NULL, 0 },
668     { "no-fast-pskip",     no_argument, NULL, 0 },
669     { "no-dct-decimate",   no_argument, NULL, 0 },
670     { "aq-strength", required_argument, NULL, 0 },
671     { "aq-mode",     required_argument, NULL, 0 },
672     { "deadzone-inter", required_argument, NULL, '0' },
673     { "deadzone-intra", required_argument, NULL, '0' },
674     { "level",       required_argument, NULL, 0 },
675     { "ratetol",     required_argument, NULL, 0 },
676     { "vbv-maxrate", required_argument, NULL, 0 },
677     { "vbv-bufsize", required_argument, NULL, 0 },
678     { "vbv-init",    required_argument, NULL, 0 },
679     { "crf-max",     required_argument, NULL, 0 },
680     { "ipratio",     required_argument, NULL, 0 },
681     { "pbratio",     required_argument, NULL, 0 },
682     { "chroma-qp-offset", required_argument, NULL, 0 },
683     { "pass",        required_argument, NULL, 'p' },
684     { "stats",       required_argument, NULL, 0 },
685     { "qcomp",       required_argument, NULL, 0 },
686     { "mbtree",            no_argument, NULL, 0 },
687     { "no-mbtree",         no_argument, NULL, 0 },
688     { "qblur",       required_argument, NULL, 0 },
689     { "cplxblur",    required_argument, NULL, 0 },
690     { "zones",       required_argument, NULL, 0 },
691     { "qpfile",      required_argument, NULL, OPT_QPFILE },
692     { "threads",     required_argument, NULL, 0 },
693     { "sliced-threads",    no_argument, NULL, 0 },
694     { "no-sliced-threads", no_argument, NULL, 0 },
695     { "slice-max-size",    required_argument, NULL, 0 },
696     { "slice-max-mbs",     required_argument, NULL, 0 },
697     { "slices",            required_argument, NULL, 0 },
698     { "thread-input",      no_argument, NULL, OPT_THREAD_INPUT },
699     { "sync-lookahead",    required_argument, NULL, 0 },
700     { "non-deterministic", no_argument, NULL, 0 },
701     { "psnr",              no_argument, NULL, 0 },
702     { "ssim",              no_argument, NULL, 0 },
703     { "quiet",             no_argument, NULL, OPT_QUIET },
704     { "verbose",           no_argument, NULL, 'v' },
705     { "no-progress",       no_argument, NULL, OPT_NOPROGRESS },
706     { "visualize",         no_argument, NULL, OPT_VISUALIZE },
707     { "dump-yuv",    required_argument, NULL, 0 },
708     { "sps-id",      required_argument, NULL, 0 },
709     { "aud",               no_argument, NULL, 0 },
710     { "nr",          required_argument, NULL, 0 },
711     { "cqm",         required_argument, NULL, 0 },
712     { "cqmfile",     required_argument, NULL, 0 },
713     { "cqm4",        required_argument, NULL, 0 },
714     { "cqm4i",       required_argument, NULL, 0 },
715     { "cqm4iy",      required_argument, NULL, 0 },
716     { "cqm4ic",      required_argument, NULL, 0 },
717     { "cqm4p",       required_argument, NULL, 0 },
718     { "cqm4py",      required_argument, NULL, 0 },
719     { "cqm4pc",      required_argument, NULL, 0 },
720     { "cqm8",        required_argument, NULL, 0 },
721     { "cqm8i",       required_argument, NULL, 0 },
722     { "cqm8p",       required_argument, NULL, 0 },
723     { "overscan",    required_argument, NULL, 0 },
724     { "videoformat", required_argument, NULL, 0 },
725     { "fullrange",   required_argument, NULL, 0 },
726     { "colorprim",   required_argument, NULL, 0 },
727     { "transfer",    required_argument, NULL, 0 },
728     { "colormatrix", required_argument, NULL, 0 },
729     { "chromaloc",   required_argument, NULL, 0 },
730     { "force-cfr",         no_argument, NULL, 0 },
731     { "tcfile-in",   required_argument, NULL, OPT_TCFILE_IN },
732     { "tcfile-out",  required_argument, NULL, OPT_TCFILE_OUT },
733     { "timebase",    required_argument, NULL, OPT_TIMEBASE },
734     { "pic-struct",        no_argument, NULL, 0 },
735     { "nal-hrd",     required_argument, NULL, 0 },
736     { "pulldown",    required_argument, NULL, OPT_PULLDOWN },
737     {0, 0, 0, 0}
738 };
739
740 static int select_output( const char *muxer, char *filename, x264_param_t *param )
741 {
742     const char *ext = get_filename_extension( filename );
743     if( !strcmp( filename, "-" ) || strcasecmp( muxer, "auto" ) )
744         ext = muxer;
745
746     if( !strcasecmp( ext, "mp4" ) )
747     {
748 #ifdef MP4_OUTPUT
749         output = mp4_output;
750         param->b_annexb = 0;
751         param->b_dts_compress = 0;
752         param->b_repeat_headers = 0;
753         if( param->i_nal_hrd == X264_NAL_HRD_CBR )
754         {
755             fprintf( stderr, "x264 [warning]: cbr nal-hrd is not compatible with mp4\n" );
756             param->i_nal_hrd = X264_NAL_HRD_VBR;
757         }
758 #else
759         fprintf( stderr, "x264 [error]: not compiled with MP4 output support\n" );
760         return -1;
761 #endif
762     }
763     else if( !strcasecmp( ext, "mkv" ) )
764     {
765         output = mkv_output;
766         param->b_annexb = 0;
767         param->b_dts_compress = 0;
768         param->b_repeat_headers = 0;
769     }
770     else if( !strcasecmp( ext, "flv" ) )
771     {
772         output = flv_output;
773         param->b_annexb = 0;
774         param->b_dts_compress = 1;
775         param->b_repeat_headers = 0;
776     }
777     else
778         output = raw_output;
779     return 0;
780 }
781
782 static int select_input( const char *demuxer, char *used_demuxer, char *filename,
783                          hnd_t *p_handle, video_info_t *info, cli_input_opt_t *opt )
784 {
785     const char *ext = get_filename_extension( filename );
786     int b_regular = strcmp( filename, "-" );
787     int b_auto = !strcasecmp( demuxer, "auto" );
788     if( !b_regular && b_auto )
789         ext = "yuv";
790     if( b_regular )
791     {
792         FILE *f = fopen( filename, "r" );
793         if( f )
794         {
795             b_regular = x264_is_regular_file( f );
796             fclose( f );
797         }
798     }
799     const char *module = b_auto ? ext : demuxer;
800
801     if( !strcasecmp( module, "avs" ) || !strcasecmp( ext, "d2v" ) || !strcasecmp( ext, "dga" ) )
802     {
803 #ifdef AVS_INPUT
804         input = avs_input;
805         module = "avs";
806 #else
807         fprintf( stderr, "x264 [error]: not compiled with AVS input support\n" );
808         return -1;
809 #endif
810     }
811     else if( !strcasecmp( module, "y4m" ) )
812         input = y4m_input;
813     else if( !strcasecmp( module, "yuv" ) )
814         input = yuv_input;
815     else
816     {
817 #ifdef FFMS_INPUT
818         if( b_regular && (b_auto || !strcasecmp( demuxer, "ffms" )) &&
819             !ffms_input.open_file( filename, p_handle, info, opt ) )
820         {
821             module = "ffms";
822             b_auto = 0;
823             input = ffms_input;
824         }
825 #endif
826 #ifdef LAVF_INPUT
827         if( (b_auto || !strcasecmp( demuxer, "lavf" )) &&
828             !lavf_input.open_file( filename, p_handle, info, opt ) )
829         {
830             module = "lavf";
831             b_auto = 0;
832             input = lavf_input;
833         }
834 #endif
835 #ifdef AVS_INPUT
836         if( b_regular && (b_auto || !strcasecmp( demuxer, "avs" )) &&
837             !avs_input.open_file( filename, p_handle, info, opt ) )
838         {
839             module = "avs";
840             b_auto = 0;
841             input = avs_input;
842         }
843 #endif
844         if( b_auto && !yuv_input.open_file( filename, p_handle, info, opt ) )
845         {
846             module = "yuv";
847             b_auto = 0;
848             input = yuv_input;
849         }
850
851         if( !(*p_handle) )
852         {
853             fprintf( stderr, "x264 [error]: could not open input file `%s' via any method!\n", filename );
854             return -1;
855         }
856     }
857     strcpy( used_demuxer, module );
858
859     return 0;
860 }
861
862 /*****************************************************************************
863  * Parse:
864  *****************************************************************************/
865 static int Parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt )
866 {
867     char *input_filename = NULL;
868     const char *demuxer = demuxer_names[0];
869     char *output_filename = NULL;
870     const char *muxer = muxer_names[0];
871     char *tcfile_name = NULL;
872     x264_param_t defaults;
873     char *profile = NULL;
874     int b_thread_input = 0;
875     int b_turbo = 1;
876     int b_user_ref = 0;
877     int b_user_fps = 0;
878     int b_user_interlaced = 0;
879     int i;
880     cli_input_opt_t input_opt;
881     char *preset = NULL;
882     char *tune = NULL;
883
884     x264_param_default( &defaults );
885
886     memset( opt, 0, sizeof(cli_opt_t) );
887     memset( &input_opt, 0, sizeof(cli_input_opt_t) );
888     opt->b_progress = 1;
889
890     /* Presets are applied before all other options. */
891     for( optind = 0;; )
892     {
893         int c = getopt_long( argc, argv, short_options, long_options, NULL );
894         if( c == -1 )
895             break;
896         if( c == OPT_PRESET )
897             preset = optarg;
898         if( c == OPT_TUNE )
899             tune = optarg;
900         else if( c == '?' )
901             return -1;
902     }
903
904     if( preset && !strcasecmp( preset, "placebo" ) )
905         b_turbo = 0;
906
907     if( x264_param_default_preset( param, preset, tune ) < 0 )
908         return -1;
909
910     /* Parse command line options */
911     for( optind = 0;; )
912     {
913         int b_error = 0;
914         int long_options_index = -1;
915
916         int c = getopt_long( argc, argv, short_options, long_options, &long_options_index );
917
918         if( c == -1 )
919         {
920             break;
921         }
922
923         switch( c )
924         {
925             case 'h':
926                 Help( &defaults, 0 );
927                 exit(0);
928             case OPT_LONGHELP:
929                 Help( &defaults, 1 );
930                 exit(0);
931             case OPT_FULLHELP:
932                 Help( &defaults, 2 );
933                 exit(0);
934             case 'V':
935 #ifdef X264_POINTVER
936                 printf( "x264 "X264_POINTVER"\n" );
937 #else
938                 printf( "x264 0.%d.X\n", X264_BUILD );
939 #endif
940                 printf( "built on " __DATE__ ", " );
941 #ifdef __GNUC__
942                 printf( "gcc: " __VERSION__ "\n" );
943 #else
944                 printf( "using a non-gcc compiler\n" );
945 #endif
946                 exit(0);
947             case OPT_FRAMES:
948                 param->i_frame_total = X264_MAX( atoi( optarg ), 0 );
949                 break;
950             case OPT_SEEK:
951                 opt->i_seek = input_opt.seek = X264_MAX( atoi( optarg ), 0 );
952                 break;
953             case 'o':
954                 output_filename = optarg;
955                 break;
956             case OPT_MUXER:
957                 for( i = 0; muxer_names[i] && strcasecmp( muxer_names[i], optarg ); )
958                     i++;
959                 if( !muxer_names[i] )
960                 {
961                     fprintf( stderr, "x264 [error]: invalid muxer '%s'\n", optarg );
962                     return -1;
963                 }
964                 muxer = optarg;
965                 break;
966             case OPT_DEMUXER:
967                 for( i = 0; demuxer_names[i] && strcasecmp( demuxer_names[i], optarg ); )
968                     i++;
969                 if( !demuxer_names[i] )
970                 {
971                     fprintf( stderr, "x264 [error]: invalid demuxer '%s'\n", optarg );
972                     return -1;
973                 }
974                 demuxer = optarg;
975                 break;
976             case OPT_INDEX:
977                 input_opt.index = optarg;
978                 break;
979             case OPT_QPFILE:
980                 opt->qpfile = fopen( optarg, "rb" );
981                 if( !opt->qpfile )
982                 {
983                     fprintf( stderr, "x264 [error]: can't open qpfile `%s'\n", optarg );
984                     return -1;
985                 }
986                 else if( !x264_is_regular_file( opt->qpfile ) )
987                 {
988                     fprintf( stderr, "x264 [error]: qpfile incompatible with non-regular file `%s'\n", optarg );
989                     fclose( opt->qpfile );
990                     return -1;
991                 }
992                 break;
993             case OPT_THREAD_INPUT:
994                 b_thread_input = 1;
995                 break;
996             case OPT_QUIET:
997                 param->i_log_level = X264_LOG_NONE;
998                 break;
999             case 'v':
1000                 param->i_log_level = X264_LOG_DEBUG;
1001                 break;
1002             case OPT_NOPROGRESS:
1003                 opt->b_progress = 0;
1004                 break;
1005             case OPT_VISUALIZE:
1006 #ifdef VISUALIZE
1007                 param->b_visualize = 1;
1008                 b_exit_on_ctrl_c = 1;
1009 #else
1010                 fprintf( stderr, "x264 [warning]: not compiled with visualization support\n" );
1011 #endif
1012                 break;
1013             case OPT_TUNE:
1014             case OPT_PRESET:
1015                 break;
1016             case OPT_PROFILE:
1017                 profile = optarg;
1018                 break;
1019             case OPT_SLOWFIRSTPASS:
1020                 b_turbo = 0;
1021                 break;
1022             case 'r':
1023                 b_user_ref = 1;
1024                 goto generic_option;
1025             case OPT_FPS:
1026                 b_user_fps = 1;
1027                 param->b_vfr_input = 0;
1028                 goto generic_option;
1029             case OPT_INTERLACED:
1030                 b_user_interlaced = 1;
1031                 goto generic_option;
1032             case OPT_TCFILE_IN:
1033                 tcfile_name = optarg;
1034                 break;
1035             case OPT_TCFILE_OUT:
1036                 opt->tcfile_out = fopen( optarg, "wb" );
1037                 if( !opt->tcfile_out )
1038                 {
1039                     fprintf( stderr, "x264 [error]: can't open `%s'\n", optarg );
1040                     return -1;
1041                 }
1042                 break;
1043             case OPT_TIMEBASE:
1044                 input_opt.timebase = optarg;
1045                 break;
1046             case OPT_PULLDOWN:
1047                 for( i = 0; pulldown_names[i] && strcasecmp( pulldown_names[i], optarg ); )
1048                     i++;
1049                 if( !pulldown_names[i] )
1050                 {
1051                     fprintf( stderr, "x264 [error]: invalid pulldown '%s'\n", optarg );
1052                     return -1;
1053                 }
1054                 opt->i_pulldown = i;
1055                 break;
1056             default:
1057 generic_option:
1058             {
1059                 int i;
1060                 if( long_options_index < 0 )
1061                 {
1062                     for( i = 0; long_options[i].name; i++ )
1063                         if( long_options[i].val == c )
1064                         {
1065                             long_options_index = i;
1066                             break;
1067                         }
1068                     if( long_options_index < 0 )
1069                     {
1070                         /* getopt_long already printed an error message */
1071                         return -1;
1072                     }
1073                 }
1074
1075                 b_error |= x264_param_parse( param, long_options[long_options_index].name, optarg );
1076             }
1077         }
1078
1079         if( b_error )
1080         {
1081             const char *name = long_options_index > 0 ? long_options[long_options_index].name : argv[optind-2];
1082             fprintf( stderr, "x264 [error]: invalid argument: %s = %s\n", name, optarg );
1083             return -1;
1084         }
1085     }
1086
1087     /* If first pass mode is used, apply faster settings. */
1088     if( b_turbo )
1089         x264_param_apply_fastfirstpass( param );
1090
1091     /* Apply profile restrictions. */
1092     if( x264_param_apply_profile( param, profile ) < 0 )
1093         return -1;
1094
1095     /* Get the file name */
1096     if( optind > argc - 1 || !output_filename )
1097     {
1098         fprintf( stderr, "x264 [error]: No %s file. Run x264 --help for a list of options.\n",
1099                  optind > argc - 1 ? "input" : "output" );
1100         return -1;
1101     }
1102
1103     if( select_output( muxer, output_filename, param ) )
1104         return -1;
1105     if( output.open_file( output_filename, &opt->hout ) )
1106     {
1107         fprintf( stderr, "x264 [error]: could not open output file `%s'\n", output_filename );
1108         return -1;
1109     }
1110
1111     input_filename = argv[optind++];
1112     input_opt.resolution = optind < argc ? argv[optind++] : NULL;
1113     video_info_t info = {0};
1114     char demuxername[5];
1115
1116     /* set info flags to param flags to be overwritten by demuxer as necessary. */
1117     info.csp        = param->i_csp;
1118     info.fps_num    = param->i_fps_num;
1119     info.fps_den    = param->i_fps_den;
1120     info.interlaced = param->b_interlaced;
1121     info.sar_width  = param->vui.i_sar_width;
1122     info.sar_height = param->vui.i_sar_height;
1123     info.vfr        = param->b_vfr_input;
1124
1125     if( select_input( demuxer, demuxername, input_filename, &opt->hin, &info, &input_opt ) )
1126         return -1;
1127
1128     if( !opt->hin && input.open_file( input_filename, &opt->hin, &info, &input_opt ) )
1129     {
1130         fprintf( stderr, "x264 [error]: could not open input file `%s'\n", input_filename );
1131         return -1;
1132     }
1133
1134     x264_reduce_fraction( &info.sar_width, &info.sar_height );
1135     x264_reduce_fraction( &info.fps_num, &info.fps_den );
1136     if( param->i_log_level >= X264_LOG_INFO )
1137         fprintf( stderr, "%s [info]: %dx%d%c %d:%d @ %d/%d fps (%cfr)\n", demuxername, info.width,
1138                  info.height, info.interlaced ? 'i' : 'p', info.sar_width, info.sar_height,
1139                  info.fps_num, info.fps_den, info.vfr ? 'v' : 'c' );
1140
1141     if( tcfile_name )
1142     {
1143         if( b_user_fps )
1144         {
1145             fprintf( stderr, "x264 [error]: --fps + --tcfile-in is incompatible.\n" );
1146             return -1;
1147         }
1148         if( timecode_input.open_file( tcfile_name, &opt->hin, &info, &input_opt ) )
1149         {
1150             fprintf( stderr, "x264 [error]: timecode input failed\n" );
1151             return -1;
1152         }
1153         else
1154             input = timecode_input;
1155     }
1156     else if( !info.vfr && input_opt.timebase )
1157     {
1158         fprintf( stderr, "x264 [error]: --timebase is incompatible with cfr input\n" );
1159         return -1;
1160     }
1161
1162     /* set param flags from the info flags as necessary */
1163     param->i_csp       = info.csp;
1164     param->i_height    = info.height;
1165     param->b_vfr_input = info.vfr;
1166     param->i_width     = info.width;
1167     if( !b_user_interlaced && info.interlaced )
1168     {
1169         fprintf( stderr, "x264 [warning]: input appears to be interlaced, enabling interlaced mode.\n"
1170                          "                If you want otherwise, use --no-interlaced\n" );
1171         param->b_interlaced = 1;
1172     }
1173     if( !b_user_fps )
1174     {
1175         param->i_fps_num = info.fps_num;
1176         param->i_fps_den = info.fps_den;
1177     }
1178     if( param->b_vfr_input )
1179     {
1180         param->i_timebase_num = info.timebase_num;
1181         param->i_timebase_den = info.timebase_den;
1182     }
1183     else
1184     {
1185         param->i_timebase_num = param->i_fps_den;
1186         param->i_timebase_den = param->i_fps_num;
1187     }
1188     if( !tcfile_name && input_opt.timebase )
1189     {
1190         int i_user_timebase_num;
1191         int i_user_timebase_den;
1192         int ret = sscanf( input_opt.timebase, "%d/%d", &i_user_timebase_num, &i_user_timebase_den );
1193         if( !ret )
1194         {
1195             fprintf( stderr, "x264 [error]: invalid argument: timebase = %s\n", input_opt.timebase );
1196             return -1;
1197         }
1198         else if( ret == 1 )
1199         {
1200             i_user_timebase_num = param->i_timebase_num;
1201             i_user_timebase_den = atoi( input_opt.timebase );
1202         }
1203         opt->timebase_convert_multiplier = ((double)i_user_timebase_den / param->i_timebase_den)
1204                                          * ((double)param->i_timebase_num / i_user_timebase_num);
1205         if( opt->timebase_convert_multiplier < 1 )
1206         {
1207             fprintf( stderr, "x264 [error]: timebase you specified will generate nonmonotonic pts: %d/%d\n",
1208                      i_user_timebase_num, i_user_timebase_den );
1209             return -1;
1210         }
1211         param->i_timebase_num = i_user_timebase_num;
1212         param->i_timebase_den = i_user_timebase_den;
1213         param->b_vfr_input = 1;
1214     }
1215     if( !param->vui.i_sar_width || !param->vui.i_sar_height )
1216     {
1217         param->vui.i_sar_width  = info.sar_width;
1218         param->vui.i_sar_height = info.sar_height;
1219     }
1220
1221 #ifdef HAVE_PTHREAD
1222     if( b_thread_input || param->i_threads > 1
1223         || (param->i_threads == X264_THREADS_AUTO && x264_cpu_num_processors() > 1) )
1224     {
1225         if( thread_input.open_file( NULL, &opt->hin, &info, NULL ) )
1226         {
1227             fprintf( stderr, "x264 [error]: threaded input failed\n" );
1228             return -1;
1229         }
1230         else
1231             input = thread_input;
1232     }
1233 #endif
1234
1235
1236     /* Automatically reduce reference frame count to match the user's target level
1237      * if the user didn't explicitly set a reference frame count. */
1238     if( !b_user_ref )
1239     {
1240         int mbs = (((param->i_width)+15)>>4) * (((param->i_height)+15)>>4);
1241         int i;
1242         for( i = 0; x264_levels[i].level_idc != 0; i++ )
1243             if( param->i_level_idc == x264_levels[i].level_idc )
1244             {
1245                 while( mbs * 384 * param->i_frame_reference > x264_levels[i].dpb
1246                        && param->i_frame_reference > 1 )
1247                 {
1248                     param->i_frame_reference--;
1249                 }
1250                 break;
1251             }
1252     }
1253
1254
1255     return 0;
1256 }
1257
1258 static void parse_qpfile( cli_opt_t *opt, x264_picture_t *pic, int i_frame )
1259 {
1260     int num = -1, qp, ret;
1261     char type;
1262     uint64_t file_pos;
1263     while( num < i_frame )
1264     {
1265         file_pos = ftell( opt->qpfile );
1266         ret = fscanf( opt->qpfile, "%d %c %d\n", &num, &type, &qp );
1267         if( num > i_frame || ret == EOF )
1268         {
1269             pic->i_type = X264_TYPE_AUTO;
1270             pic->i_qpplus1 = 0;
1271             fseek( opt->qpfile, file_pos, SEEK_SET );
1272             break;
1273         }
1274         if( num < i_frame && ret == 3 )
1275             continue;
1276         pic->i_qpplus1 = qp+1;
1277         if     ( type == 'I' ) pic->i_type = X264_TYPE_IDR;
1278         else if( type == 'i' ) pic->i_type = X264_TYPE_I;
1279         else if( type == 'P' ) pic->i_type = X264_TYPE_P;
1280         else if( type == 'B' ) pic->i_type = X264_TYPE_BREF;
1281         else if( type == 'b' ) pic->i_type = X264_TYPE_B;
1282         else ret = 0;
1283         if( ret != 3 || qp < -1 || qp > 51 )
1284         {
1285             fprintf( stderr, "x264 [error]: can't parse qpfile for frame %d\n", i_frame );
1286             fclose( opt->qpfile );
1287             opt->qpfile = NULL;
1288             pic->i_type = X264_TYPE_AUTO;
1289             pic->i_qpplus1 = 0;
1290             break;
1291         }
1292     }
1293 }
1294
1295 /*****************************************************************************
1296  * Encode:
1297  *****************************************************************************/
1298
1299 static int  Encode_frame( x264_t *h, hnd_t hout, x264_picture_t *pic, int64_t *last_pts )
1300 {
1301     x264_picture_t pic_out;
1302     x264_nal_t *nal;
1303     int i_nal;
1304     int i_frame_size = 0;
1305
1306     i_frame_size = x264_encoder_encode( h, &nal, &i_nal, pic, &pic_out );
1307
1308     if( i_frame_size < 0 )
1309     {
1310         fprintf( stderr, "x264 [error]: x264_encoder_encode failed\n" );
1311         return -1;
1312     }
1313
1314     if( i_frame_size )
1315     {
1316         i_frame_size = output.write_frame( hout, nal[0].p_payload, i_frame_size, &pic_out );
1317         *last_pts = pic_out.i_pts;
1318     }
1319
1320     return i_frame_size;
1321 }
1322
1323 static void Print_status( int64_t i_start, int i_frame, int i_frame_total, int64_t i_file, x264_param_t *param, int64_t last_pts )
1324 {
1325     char    buf[200];
1326     int64_t i_elapsed = x264_mdate() - i_start;
1327     double fps = i_elapsed > 0 ? i_frame * 1000000. / i_elapsed : 0;
1328     double bitrate = (double) i_file * 8 / ( (double) last_pts * 1000 * param->i_timebase_num / param->i_timebase_den );
1329     if( i_frame_total )
1330     {
1331         int eta = i_elapsed * (i_frame_total - i_frame) / ((int64_t)i_frame * 1000000);
1332         sprintf( buf, "x264 [%.1f%%] %d/%d frames, %.2f fps, %.2f kb/s, eta %d:%02d:%02d",
1333                  100. * i_frame / i_frame_total, i_frame, i_frame_total, fps, bitrate,
1334                  eta/3600, (eta/60)%60, eta%60 );
1335     }
1336     else
1337     {
1338         sprintf( buf, "x264 %d frames: %.2f fps, %.2f kb/s", i_frame, fps, bitrate );
1339     }
1340     fprintf( stderr, "%s  \r", buf+5 );
1341     SetConsoleTitle( buf );
1342     fflush( stderr ); // needed in windows
1343 }
1344
1345 static int  Encode( x264_param_t *param, cli_opt_t *opt )
1346 {
1347     x264_t *h;
1348     x264_picture_t pic;
1349     const cli_pulldown_t *pulldown = NULL; // shut up gcc
1350
1351     int     i_frame, i_frame_total, i_frame_output;
1352     int64_t i_start, i_end;
1353     int64_t i_file = 0;
1354     int     i_frame_size;
1355     int     i_update_interval;
1356     int64_t last_pts = 0;
1357 #   define  MAX_PTS_WARNING 3 /* arbitrary */
1358     int     pts_warning_cnt = 0;
1359     int64_t largest_pts = -1;
1360     int64_t second_largest_pts = -1;
1361     int64_t ticks_per_frame;
1362     double  duration;
1363     int     prev_timebase_den = param->i_timebase_den / gcd( param->i_timebase_num, param->i_timebase_den );
1364     int     dts_compress_multiplier;
1365     double  pulldown_pts = 0;
1366
1367     opt->b_progress &= param->i_log_level < X264_LOG_DEBUG;
1368     i_frame_total = input.get_frame_total( opt->hin );
1369     i_frame_total = X264_MAX( i_frame_total - opt->i_seek, 0 );
1370     if( ( i_frame_total == 0 || param->i_frame_total < i_frame_total )
1371         && param->i_frame_total > 0 )
1372         i_frame_total = param->i_frame_total;
1373     param->i_frame_total = i_frame_total;
1374     i_update_interval = i_frame_total ? x264_clip3( i_frame_total / 1000, 1, 10 ) : 10;
1375
1376     /* set up pulldown */
1377     if( opt->i_pulldown && !param->b_vfr_input )
1378     {
1379         param->b_pic_struct = 1;
1380         pulldown = &pulldown_values[opt->i_pulldown];
1381         param->i_timebase_num = param->i_fps_den;
1382         if( fmod( param->i_fps_num * pulldown->fps_factor, 1 ) )
1383         {
1384             fprintf( stderr, "x264 [error]: unsupported framerate for chosen pulldown\n" );
1385             return -1;
1386         }
1387         param->i_timebase_den = param->i_fps_num * pulldown->fps_factor;
1388     }
1389
1390     if( ( h = x264_encoder_open( param ) ) == NULL )
1391     {
1392         fprintf( stderr, "x264 [error]: x264_encoder_open failed\n" );
1393         input.close_file( opt->hin );
1394         return -1;
1395     }
1396
1397     x264_encoder_parameters( h, param );
1398
1399     dts_compress_multiplier = param->i_timebase_den / prev_timebase_den;
1400
1401     if( output.set_param( opt->hout, param ) )
1402     {
1403         fprintf( stderr, "x264 [error]: can't set outfile param\n" );
1404         input.close_file( opt->hin );
1405         output.close_file( opt->hout, largest_pts, second_largest_pts );
1406         return -1;
1407     }
1408
1409     /* Create a new pic */
1410     if( input.picture_alloc( &pic, param->i_csp, param->i_width, param->i_height ) )
1411     {
1412         fprintf( stderr, "x264 [error]: malloc failed\n" );
1413         return -1;
1414     }
1415
1416     i_start = x264_mdate();
1417     /* ticks/frame = ticks/second / frames/second */
1418     ticks_per_frame = (int64_t)param->i_timebase_den * param->i_fps_den / param->i_timebase_num / param->i_fps_num;
1419     if( ticks_per_frame < 1 )
1420     {
1421         fprintf( stderr, "x264 [error]: ticks_per_frame invalid: %"PRId64"\n", ticks_per_frame );
1422         return -1;
1423     }
1424
1425     if( !param->b_repeat_headers )
1426     {
1427         // Write SPS/PPS/SEI
1428         x264_nal_t *headers;
1429         int i_nal;
1430
1431         if( x264_encoder_headers( h, &headers, &i_nal ) < 0 )
1432         {
1433             fprintf( stderr, "x264 [error]: x264_encoder_headers failed\n" );
1434             return -1;
1435         }
1436
1437         if( (i_file = output.write_headers( opt->hout, headers )) < 0 )
1438             return -1;
1439     }
1440
1441     if( opt->tcfile_out )
1442         fprintf( opt->tcfile_out, "# timecode format v2\n" );
1443
1444     /* Encode frames */
1445     for( i_frame = 0, i_frame_output = 0; b_ctrl_c == 0 && (i_frame < i_frame_total || i_frame_total == 0); )
1446     {
1447         if( input.read_frame( &pic, opt->hin, i_frame + opt->i_seek ) )
1448             break;
1449
1450         if( !param->b_vfr_input )
1451             pic.i_pts = i_frame;
1452
1453         if( opt->i_pulldown && !param->b_vfr_input )
1454         {
1455             pic.i_pic_struct = pulldown->pattern[ i_frame % pulldown->mod ];
1456             pic.i_pts = (int64_t)( pulldown_pts + 0.5 );
1457             pulldown_pts += pulldown_frame_duration[pic.i_pic_struct];
1458         }
1459         else if( opt->timebase_convert_multiplier )
1460             pic.i_pts = (int64_t)( pic.i_pts * opt->timebase_convert_multiplier + 0.5 );
1461
1462         int64_t output_pts = pic.i_pts * dts_compress_multiplier;   /* pts libx264 returns */
1463
1464         if( pic.i_pts <= largest_pts )
1465         {
1466             if( param->i_log_level >= X264_LOG_WARNING )
1467             {
1468                 if( param->i_log_level >= X264_LOG_DEBUG || pts_warning_cnt < MAX_PTS_WARNING )
1469                     fprintf( stderr, "x264 [warning]: non-strictly-monotonic pts at frame %d (%"PRId64" <= %"PRId64")\n",
1470                              i_frame, output_pts, largest_pts * dts_compress_multiplier );
1471                 else if( pts_warning_cnt == MAX_PTS_WARNING )
1472                     fprintf( stderr, "x264 [warning]: too many nonmonotonic pts warnings, suppressing further ones\n" );
1473                 pts_warning_cnt++;
1474             }
1475             pic.i_pts = largest_pts + ticks_per_frame;
1476             output_pts = pic.i_pts * dts_compress_multiplier;
1477         }
1478
1479         second_largest_pts = largest_pts;
1480         largest_pts = pic.i_pts;
1481         if( opt->tcfile_out )
1482             fprintf( opt->tcfile_out, "%.6f\n", output_pts * ((double)param->i_timebase_num / param->i_timebase_den) * 1e3 );
1483
1484         if( opt->qpfile )
1485             parse_qpfile( opt, &pic, i_frame + opt->i_seek );
1486         else
1487         {
1488             /* Do not force any parameters */
1489             pic.i_type = X264_TYPE_AUTO;
1490             pic.i_qpplus1 = 0;
1491         }
1492
1493         i_frame_size = Encode_frame( h, opt->hout, &pic, &last_pts );
1494         if( i_frame_size < 0 )
1495             return -1;
1496         i_file += i_frame_size;
1497         if( i_frame_size )
1498             i_frame_output++;
1499
1500         i_frame++;
1501
1502         if( input.release_frame && input.release_frame( &pic, opt->hin ) )
1503             break;
1504
1505         /* update status line (up to 1000 times per input file) */
1506         if( opt->b_progress && i_frame_output % i_update_interval == 0 && i_frame_output )
1507             Print_status( i_start, i_frame_output, i_frame_total, i_file, param, last_pts );
1508     }
1509     /* Flush delayed frames */
1510     while( !b_ctrl_c && x264_encoder_delayed_frames( h ) )
1511     {
1512         i_frame_size = Encode_frame( h, opt->hout, NULL, &last_pts );
1513         if( i_frame_size < 0 )
1514             return -1;
1515         i_file += i_frame_size;
1516         if( i_frame_size )
1517             i_frame_output++;
1518         if( opt->b_progress && i_frame_output % i_update_interval == 0 && i_frame_output )
1519             Print_status( i_start, i_frame_output, i_frame_total, i_file, param, last_pts );
1520     }
1521     if( pts_warning_cnt >= MAX_PTS_WARNING && param->i_log_level < X264_LOG_DEBUG )
1522         fprintf( stderr, "x264 [warning]: %d suppressed nonmonotonic pts warnings\n", pts_warning_cnt-MAX_PTS_WARNING );
1523
1524     /* duration algorithm fails when only 1 frame is output */
1525     if( i_frame_output == 1 )
1526         duration = (double)param->i_fps_den / param->i_fps_num;
1527     else
1528         duration = (double)(2 * largest_pts - second_largest_pts) * param->i_timebase_num / param->i_timebase_den;
1529     if( !(opt->i_pulldown && !param->b_vfr_input) )
1530         duration *= dts_compress_multiplier;
1531
1532     i_end = x264_mdate();
1533     input.picture_clean( &pic );
1534     /* Erase progress indicator before printing encoding stats. */
1535     if( opt->b_progress )
1536         fprintf( stderr, "                                                                               \r" );
1537     x264_encoder_close( h );
1538     fprintf( stderr, "\n" );
1539
1540     if( b_ctrl_c )
1541         fprintf( stderr, "aborted at input frame %d, output frame %d\n", opt->i_seek + i_frame, i_frame_output );
1542
1543     if( opt->tcfile_out )
1544     {
1545         fclose( opt->tcfile_out );
1546         opt->tcfile_out = NULL;
1547     }
1548
1549     input.close_file( opt->hin );
1550     output.close_file( opt->hout, largest_pts, second_largest_pts );
1551
1552     if( i_frame_output > 0 )
1553     {
1554         double fps = (double)i_frame_output * (double)1000000 /
1555                      (double)( i_end - i_start );
1556
1557         fprintf( stderr, "encoded %d frames, %.2f fps, %.2f kb/s\n", i_frame_output, fps,
1558                  (double) i_file * 8 / ( 1000 * duration ) );
1559     }
1560
1561     return 0;
1562 }