]> git.sesse.net Git - x264/blob - x264.c
Threaded lookahead
[x264] / x264.c
1 /*****************************************************************************
2  * x264: top-level x264cli functions
3  *****************************************************************************
4  * Copyright (C) 2003-2012 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  *          Fiona Glaser <fiona@x264.com>
10  *          Kieran Kunhya <kieran@kunhya.com>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
25  *
26  * This program is also available under a commercial proprietary license.
27  * For more information, contact us at licensing@x264.com.
28  *****************************************************************************/
29
30 #include <signal.h>
31 #define _GNU_SOURCE
32 #include <getopt.h>
33 #include "common/common.h"
34 #include "x264cli.h"
35 #include "input/input.h"
36 #include "output/output.h"
37 #include "filters/filters.h"
38
39 #define FAIL_IF_ERROR( cond, ... ) FAIL_IF_ERR( cond, "x264", __VA_ARGS__ )
40
41 #ifdef _WIN32
42 #include <windows.h>
43 #else
44 #define GetConsoleTitle(t,n)
45 #define SetConsoleTitle(t)
46 #endif
47
48 #if HAVE_LAVF
49 #undef DECLARE_ALIGNED
50 #include <libavformat/avformat.h>
51 #include <libavutil/pixfmt.h>
52 #include <libavutil/pixdesc.h>
53 #endif
54
55 #if HAVE_SWSCALE
56 #undef DECLARE_ALIGNED
57 #include <libswscale/swscale.h>
58 #endif
59
60 #if HAVE_FFMS
61 #include <ffms.h>
62 #endif
63
64 /* Ctrl-C handler */
65 static volatile int b_ctrl_c = 0;
66 static int          b_exit_on_ctrl_c = 0;
67 static void sigint_handler( int a )
68 {
69     if( b_exit_on_ctrl_c )
70         exit(0);
71     b_ctrl_c = 1;
72 }
73
74 static char UNUSED originalCTitle[200] = "";
75
76 typedef struct {
77     int b_progress;
78     int i_seek;
79     hnd_t hin;
80     hnd_t hout;
81     FILE *qpfile;
82     FILE *tcfile_out;
83     double timebase_convert_multiplier;
84     int i_pulldown;
85 } cli_opt_t;
86
87 /* file i/o operation structs */
88 cli_input_t cli_input;
89 static cli_output_t cli_output;
90
91 /* video filter operation struct */
92 static cli_vid_filter_t filter;
93
94 static const char * const demuxer_names[] =
95 {
96     "auto",
97     "raw",
98     "y4m",
99 #if HAVE_AVS
100     "avs",
101 #endif
102 #if HAVE_LAVF
103     "lavf",
104 #endif
105 #if HAVE_FFMS
106     "ffms",
107 #endif
108     0
109 };
110
111 static const char * const muxer_names[] =
112 {
113     "auto",
114     "raw",
115     "mkv",
116     "flv",
117 #if HAVE_GPAC
118     "mp4",
119 #endif
120     0
121 };
122
123 static const char * const pulldown_names[] = { "none", "22", "32", "64", "double", "triple", "euro", 0 };
124 static const char * const log_level_names[] = { "none", "error", "warning", "info", "debug", 0 };
125 static const char * const output_csp_names[] =
126 {
127 #if !X264_CHROMA_FORMAT || X264_CHROMA_FORMAT == X264_CSP_I420
128     "i420",
129 #endif
130 #if !X264_CHROMA_FORMAT || X264_CHROMA_FORMAT == X264_CSP_I422
131     "i422",
132 #endif
133 #if !X264_CHROMA_FORMAT || X264_CHROMA_FORMAT == X264_CSP_I444
134     "i444", "rgb",
135 #endif
136     0
137 };
138
139 static const char * const range_names[] = { "auto", "tv", "pc", 0 };
140
141 typedef struct
142 {
143     int mod;
144     uint8_t pattern[24];
145     float fps_factor;
146 } cli_pulldown_t;
147
148 enum pulldown_type_e
149 {
150     X264_PULLDOWN_22 = 1,
151     X264_PULLDOWN_32,
152     X264_PULLDOWN_64,
153     X264_PULLDOWN_DOUBLE,
154     X264_PULLDOWN_TRIPLE,
155     X264_PULLDOWN_EURO
156 };
157
158 #define TB  PIC_STRUCT_TOP_BOTTOM
159 #define BT  PIC_STRUCT_BOTTOM_TOP
160 #define TBT PIC_STRUCT_TOP_BOTTOM_TOP
161 #define BTB PIC_STRUCT_BOTTOM_TOP_BOTTOM
162
163 static const cli_pulldown_t pulldown_values[] =
164 {
165     [X264_PULLDOWN_22]     = {1,  {TB},                                   1.0},
166     [X264_PULLDOWN_32]     = {4,  {TBT, BT, BTB, TB},                     1.25},
167     [X264_PULLDOWN_64]     = {2,  {PIC_STRUCT_DOUBLE, PIC_STRUCT_TRIPLE}, 1.0},
168     [X264_PULLDOWN_DOUBLE] = {1,  {PIC_STRUCT_DOUBLE},                    2.0},
169     [X264_PULLDOWN_TRIPLE] = {1,  {PIC_STRUCT_TRIPLE},                    3.0},
170     [X264_PULLDOWN_EURO]   = {24, {TBT, BT, BT, BT, BT, BT, BT, BT, BT, BT, BT, BT,
171                                    BTB, TB, TB, TB, TB, TB, TB, TB, TB, TB, TB, TB}, 25.0/24.0}
172 };
173
174 #undef TB
175 #undef BT
176 #undef TBT
177 #undef BTB
178
179 // indexed by pic_struct enum
180 static const float pulldown_frame_duration[10] = { 0.0, 1, 0.5, 0.5, 1, 1, 1.5, 1.5, 2, 3 };
181
182 static void help( x264_param_t *defaults, int longhelp );
183 static int  parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt );
184 static int  encode( x264_param_t *param, cli_opt_t *opt );
185
186 /* logging and printing for within the cli system */
187 static int cli_log_level;
188 void x264_cli_log( const char *name, int i_level, const char *fmt, ... )
189 {
190     if( i_level > cli_log_level )
191         return;
192     char *s_level;
193     switch( i_level )
194     {
195         case X264_LOG_ERROR:
196             s_level = "error";
197             break;
198         case X264_LOG_WARNING:
199             s_level = "warning";
200             break;
201         case X264_LOG_INFO:
202             s_level = "info";
203             break;
204         case X264_LOG_DEBUG:
205             s_level = "debug";
206             break;
207         default:
208             s_level = "unknown";
209             break;
210     }
211     fprintf( stderr, "%s [%s]: ", name, s_level );
212     va_list arg;
213     va_start( arg, fmt );
214     vfprintf( stderr, fmt, arg );
215     va_end( arg );
216 }
217
218 void x264_cli_printf( int i_level, const char *fmt, ... )
219 {
220     if( i_level > cli_log_level )
221         return;
222     va_list arg;
223     va_start( arg, fmt );
224     vfprintf( stderr, fmt, arg );
225     va_end( arg );
226 }
227
228 static void print_version_info()
229 {
230 #ifdef X264_POINTVER
231     printf( "x264 "X264_POINTVER"\n" );
232 #else
233     printf( "x264 0.%d.X\n", X264_BUILD );
234 #endif
235 #if HAVE_SWSCALE
236     printf( "(libswscale %d.%d.%d)\n", LIBSWSCALE_VERSION_MAJOR, LIBSWSCALE_VERSION_MINOR, LIBSWSCALE_VERSION_MICRO );
237 #endif
238 #if HAVE_LAVF
239     printf( "(libavformat %d.%d.%d)\n", LIBAVFORMAT_VERSION_MAJOR, LIBAVFORMAT_VERSION_MINOR, LIBAVFORMAT_VERSION_MICRO );
240 #endif
241 #if HAVE_FFMS
242     printf( "(ffmpegsource %d.%d.%d.%d)\n", FFMS_VERSION >> 24, (FFMS_VERSION & 0xff0000) >> 16, (FFMS_VERSION & 0xff00) >> 8, FFMS_VERSION & 0xff );
243 #endif
244     printf( "built on " __DATE__ ", " );
245 #ifdef __INTEL_COMPILER
246     printf( "intel: %.2f (%d)\n", __INTEL_COMPILER / 100.f, __INTEL_COMPILER_BUILD_DATE );
247 #elif defined(__GNUC__)
248     printf( "gcc: " __VERSION__ "\n" );
249 #else
250     printf( "using an unknown compiler\n" );
251 #endif
252     printf( "configuration: --bit-depth=%d --chroma-format=%s\n", x264_bit_depth, X264_CHROMA_FORMAT ? (output_csp_names[0]+1) : "all" );
253     printf( "x264 license: " );
254 #if HAVE_GPL
255     printf( "GPL version 2 or later\n" );
256 #else
257     printf( "Non-GPL commercial\n" );
258 #endif
259 #if HAVE_SWSCALE
260     const char *license = swscale_license();
261     printf( "libswscale%s%s license: %s\n", HAVE_LAVF ? "/libavformat" : "", HAVE_FFMS ? "/ffmpegsource" : "" , license );
262     if( !strcmp( license, "nonfree and unredistributable" ) ||
263        (!HAVE_GPL && (!strcmp( license, "GPL version 2 or later" )
264                   ||  !strcmp( license, "GPL version 3 or later" ))))
265         printf( "WARNING: This binary is unredistributable!\n" );
266 #endif
267 }
268
269 int main( int argc, char **argv )
270 {
271     x264_param_t param;
272     cli_opt_t opt = {0};
273     int ret = 0;
274
275     FAIL_IF_ERROR( x264_threading_init(), "unable to initialize threading\n" )
276
277 #ifdef _WIN32
278     _setmode(_fileno(stdin), _O_BINARY);
279     _setmode(_fileno(stdout), _O_BINARY);
280 #endif
281
282     GetConsoleTitle( originalCTitle, sizeof(originalCTitle) );
283
284     /* Parse command line */
285     if( parse( argc, argv, &param, &opt ) < 0 )
286         ret = -1;
287
288     /* Restore title; it can be changed by input modules */
289     SetConsoleTitle( originalCTitle );
290
291     /* Control-C handler */
292     signal( SIGINT, sigint_handler );
293
294     if( !ret )
295         ret = encode( &param, &opt );
296
297     /* clean up handles */
298     if( filter.free )
299         filter.free( opt.hin );
300     else if( opt.hin )
301         cli_input.close_file( opt.hin );
302     if( opt.hout )
303         cli_output.close_file( opt.hout, 0, 0 );
304     if( opt.tcfile_out )
305         fclose( opt.tcfile_out );
306     if( opt.qpfile )
307         fclose( opt.qpfile );
308
309     SetConsoleTitle( originalCTitle );
310
311     return ret;
312 }
313
314 static char const *strtable_lookup( const char * const table[], int idx )
315 {
316     int i = 0; while( table[i] ) i++;
317     return ( ( idx >= 0 && idx < i ) ? table[ idx ] : "???" );
318 }
319
320 static char *stringify_names( char *buf, const char * const names[] )
321 {
322     int i = 0;
323     char *p = buf;
324     for( p[0] = 0; names[i]; i++ )
325     {
326         p += sprintf( p, "%s", names[i] );
327         if( names[i+1] )
328             p += sprintf( p, ", " );
329     }
330     return buf;
331 }
332
333 static void print_csp_names( int longhelp )
334 {
335     if( longhelp < 2 )
336         return;
337 #   define INDENT "                                "
338     printf( "                              - valid csps for `raw' demuxer:\n" );
339     printf( INDENT );
340     for( int i = X264_CSP_NONE+1; i < X264_CSP_CLI_MAX; i++ )
341     {
342         printf( "%s", x264_cli_csps[i].name );
343         if( i+1 < X264_CSP_CLI_MAX )
344             printf( ", " );
345     }
346 #if HAVE_LAVF
347     printf( "\n" );
348     printf( "                              - valid csps for `lavf' demuxer:\n" );
349     printf( INDENT );
350     size_t line_len = strlen( INDENT );
351     for( enum PixelFormat i = PIX_FMT_NONE+1; i < PIX_FMT_NB; i++ )
352     {
353         const char *pfname = av_get_pix_fmt_name( i );
354         if( pfname )
355         {
356             size_t name_len = strlen( pfname );
357             if( line_len + name_len > (80 - strlen( ", " )) )
358             {
359                 printf( "\n" INDENT );
360                 line_len = strlen( INDENT );
361             }
362             printf( "%s", pfname );
363             line_len += name_len;
364             if( i+1 < PIX_FMT_NB )
365             {
366                 printf( ", " );
367                 line_len += 2;
368             }
369         }
370     }
371 #endif
372     printf( "\n" );
373 }
374
375 static void help( x264_param_t *defaults, int longhelp )
376 {
377     char buf[50];
378 #define H0 printf
379 #define H1 if(longhelp>=1) printf
380 #define H2 if(longhelp==2) printf
381     H0( "x264 core:%d%s\n"
382         "Syntax: x264 [options] -o outfile infile\n"
383         "\n"
384         "Infile can be raw (in which case resolution is required),\n"
385         "  or YUV4MPEG (*.y4m),\n"
386         "  or Avisynth if compiled with support (%s).\n"
387         "  or libav* formats if compiled with lavf support (%s) or ffms support (%s).\n"
388         "Outfile type is selected by filename:\n"
389         " .264 -> Raw bytestream\n"
390         " .mkv -> Matroska\n"
391         " .flv -> Flash Video\n"
392         " .mp4 -> MP4 if compiled with GPAC support (%s)\n"
393         "Output bit depth: %d (configured at compile time)\n"
394         "\n"
395         "Options:\n"
396         "\n"
397         "  -h, --help                  List basic options\n"
398         "      --longhelp              List more options\n"
399         "      --fullhelp              List all options\n"
400         "\n",
401         X264_BUILD, X264_VERSION,
402 #if HAVE_AVS
403         "yes",
404 #else
405         "no",
406 #endif
407 #if HAVE_LAVF
408         "yes",
409 #else
410         "no",
411 #endif
412 #if HAVE_FFMS
413         "yes",
414 #else
415         "no",
416 #endif
417 #if HAVE_GPAC
418         "yes",
419 #else
420         "no",
421 #endif
422         x264_bit_depth
423       );
424     H0( "Example usage:\n" );
425     H0( "\n" );
426     H0( "      Constant quality mode:\n" );
427     H0( "            x264 --crf 24 -o <output> <input>\n" );
428     H0( "\n" );
429     H0( "      Two-pass with a bitrate of 1000kbps:\n" );
430     H0( "            x264 --pass 1 --bitrate 1000 -o <output> <input>\n" );
431     H0( "            x264 --pass 2 --bitrate 1000 -o <output> <input>\n" );
432     H0( "\n" );
433     H0( "      Lossless:\n" );
434     H0( "            x264 --qp 0 -o <output> <input>\n" );
435     H0( "\n" );
436     H0( "      Maximum PSNR at the cost of speed and visual quality:\n" );
437     H0( "            x264 --preset placebo --tune psnr -o <output> <input>\n" );
438     H0( "\n" );
439     H0( "      Constant bitrate at 1000kbps with a 2 second-buffer:\n");
440     H0( "            x264 --vbv-bufsize 2000 --bitrate 1000 -o <output> <input>\n" );
441     H0( "\n" );
442     H0( "Presets:\n" );
443     H0( "\n" );
444     H0( "      --profile <string>      Force the limits of an H.264 profile\n"
445         "                                  Overrides all settings.\n" );
446     H2(
447 #if X264_CHROMA_FORMAT <= X264_CSP_I420
448 #if BIT_DEPTH==8
449         "                                  - baseline:\n"
450         "                                    --no-8x8dct --bframes 0 --no-cabac\n"
451         "                                    --cqm flat --weightp 0\n"
452         "                                    No interlaced.\n"
453         "                                    No lossless.\n"
454         "                                  - main:\n"
455         "                                    --no-8x8dct --cqm flat\n"
456         "                                    No lossless.\n"
457         "                                  - high:\n"
458         "                                    No lossless.\n"
459 #endif
460         "                                  - high10:\n"
461         "                                    No lossless.\n"
462         "                                    Support for bit depth 8-10.\n"
463 #endif
464 #if X264_CHROMA_FORMAT <= X264_CSP_I422
465         "                                  - high422:\n"
466         "                                    No lossless.\n"
467         "                                    Support for bit depth 8-10.\n"
468         "                                    Support for 4:2:0/4:2:2 chroma subsampling.\n"
469 #endif
470         "                                  - high444:\n"
471         "                                    Support for bit depth 8-10.\n"
472         "                                    Support for 4:2:0/4:2:2/4:4:4 chroma subsampling.\n" );
473         else H0(
474         "                                  - "
475 #if X264_CHROMA_FORMAT <= X264_CSP_I420
476 #if BIT_DEPTH==8
477         "baseline,main,high,"
478 #endif
479         "high10,"
480 #endif
481 #if X264_CHROMA_FORMAT <= X264_CSP_I422
482         "high422,"
483 #endif
484         "high444\n"
485                );
486     H0( "      --preset <string>       Use a preset to select encoding settings [medium]\n"
487         "                                  Overridden by user settings.\n" );
488     H2( "                                  - ultrafast:\n"
489         "                                    --no-8x8dct --aq-mode 0 --b-adapt 0\n"
490         "                                    --bframes 0 --no-cabac --no-deblock\n"
491         "                                    --no-mbtree --me dia --no-mixed-refs\n"
492         "                                    --partitions none --rc-lookahead 0 --ref 1\n"
493         "                                    --scenecut 0 --subme 0 --trellis 0\n"
494         "                                    --no-weightb --weightp 0\n"
495         "                                  - superfast:\n"
496         "                                    --no-mbtree --me dia --no-mixed-refs\n"
497         "                                    --partitions i8x8,i4x4 --rc-lookahead 0\n"
498         "                                    --ref 1 --subme 1 --trellis 0 --weightp 1\n"
499         "                                  - veryfast:\n"
500         "                                    --no-mixed-refs --rc-lookahead 10\n"
501         "                                    --ref 1 --subme 2 --trellis 0 --weightp 1\n"
502         "                                  - faster:\n"
503         "                                    --no-mixed-refs --rc-lookahead 20\n"
504         "                                    --ref 2 --subme 4 --weightp 1\n"
505         "                                  - fast:\n"
506         "                                    --rc-lookahead 30 --ref 2 --subme 6\n"
507         "                                    --weightp 1\n"
508         "                                  - medium:\n"
509         "                                    Default settings apply.\n"
510         "                                  - slow:\n"
511         "                                    --b-adapt 2 --direct auto --me umh\n"
512         "                                    --rc-lookahead 50 --ref 5 --subme 8\n"
513         "                                  - slower:\n"
514         "                                    --b-adapt 2 --direct auto --me umh\n"
515         "                                    --partitions all --rc-lookahead 60\n"
516         "                                    --ref 8 --subme 9 --trellis 2\n"
517         "                                  - veryslow:\n"
518         "                                    --b-adapt 2 --bframes 8 --direct auto\n"
519         "                                    --me umh --merange 24 --partitions all\n"
520         "                                    --ref 16 --subme 10 --trellis 2\n"
521         "                                    --rc-lookahead 60\n"
522         "                                  - placebo:\n"
523         "                                    --bframes 16 --b-adapt 2 --direct auto\n"
524         "                                    --slow-firstpass --no-fast-pskip\n"
525         "                                    --me tesa --merange 24 --partitions all\n"
526         "                                    --rc-lookahead 60 --ref 16 --subme 11\n"
527         "                                    --trellis 2\n" );
528     else H0( "                                  - ultrafast,superfast,veryfast,faster,fast\n"
529              "                                  - medium,slow,slower,veryslow,placebo\n" );
530     H0( "      --tune <string>         Tune the settings for a particular type of source\n"
531         "                              or situation\n"
532         "                                  Overridden by user settings.\n"
533         "                                  Multiple tunings are separated by commas.\n"
534         "                                  Only one psy tuning can be used at a time.\n" );
535     H2( "                                  - film (psy tuning):\n"
536         "                                    --deblock -1:-1 --psy-rd <unset>:0.15\n"
537         "                                  - animation (psy tuning):\n"
538         "                                    --bframes {+2} --deblock 1:1\n"
539         "                                    --psy-rd 0.4:<unset> --aq-strength 0.6\n"
540         "                                    --ref {Double if >1 else 1}\n"
541         "                                  - grain (psy tuning):\n"
542         "                                    --aq-strength 0.5 --no-dct-decimate\n"
543         "                                    --deadzone-inter 6 --deadzone-intra 6\n"
544         "                                    --deblock -2:-2 --ipratio 1.1 \n"
545         "                                    --pbratio 1.1 --psy-rd <unset>:0.25\n"
546         "                                    --qcomp 0.8\n"
547         "                                  - stillimage (psy tuning):\n"
548         "                                    --aq-strength 1.2 --deblock -3:-3\n"
549         "                                    --psy-rd 2.0:0.7\n"
550         "                                  - psnr (psy tuning):\n"
551         "                                    --aq-mode 0 --no-psy\n"
552         "                                  - ssim (psy tuning):\n"
553         "                                    --aq-mode 2 --no-psy\n"
554         "                                  - fastdecode:\n"
555         "                                    --no-cabac --no-deblock --no-weightb\n"
556         "                                    --weightp 0\n"
557         "                                  - zerolatency:\n"
558         "                                    --bframes 0 --force-cfr --no-mbtree\n"
559         "                                    --sync-lookahead 0 --sliced-threads\n"
560         "                                    --rc-lookahead 0\n" );
561     else H0( "                                  - psy tunings: film,animation,grain,\n"
562              "                                                 stillimage,psnr,ssim\n"
563              "                                  - other tunings: fastdecode,zerolatency\n" );
564     H2( "      --slow-firstpass        Don't force these faster settings with --pass 1:\n"
565         "                                  --no-8x8dct --me dia --partitions none\n"
566         "                                  --ref 1 --subme {2 if >2 else unchanged}\n"
567         "                                  --trellis 0 --fast-pskip\n" );
568     else H1( "      --slow-firstpass        Don't force faster settings with --pass 1\n" );
569     H0( "\n" );
570     H0( "Frame-type options:\n" );
571     H0( "\n" );
572     H0( "  -I, --keyint <integer or \"infinite\"> Maximum GOP size [%d]\n", defaults->i_keyint_max );
573     H2( "  -i, --min-keyint <integer>  Minimum GOP size [auto]\n" );
574     H2( "      --no-scenecut           Disable adaptive I-frame decision\n" );
575     H2( "      --scenecut <integer>    How aggressively to insert extra I-frames [%d]\n", defaults->i_scenecut_threshold );
576     H2( "      --intra-refresh         Use Periodic Intra Refresh instead of IDR frames\n" );
577     H1( "  -b, --bframes <integer>     Number of B-frames between I and P [%d]\n", defaults->i_bframe );
578     H1( "      --b-adapt <integer>     Adaptive B-frame decision method [%d]\n"
579         "                                  Higher values may lower threading efficiency.\n"
580         "                                  - 0: Disabled\n"
581         "                                  - 1: Fast\n"
582         "                                  - 2: Optimal (slow with high --bframes)\n", defaults->i_bframe_adaptive );
583     H2( "      --b-bias <integer>      Influences how often B-frames are used [%d]\n", defaults->i_bframe_bias );
584     H1( "      --b-pyramid <string>    Keep some B-frames as references [%s]\n"
585         "                                  - none: Disabled\n"
586         "                                  - strict: Strictly hierarchical pyramid\n"
587         "                                  - normal: Non-strict (not Blu-ray compatible)\n",
588         strtable_lookup( x264_b_pyramid_names, defaults->i_bframe_pyramid ) );
589     H1( "      --open-gop              Use recovery points to close GOPs\n"
590         "                              Only available with b-frames\n" );
591     H1( "      --no-cabac              Disable CABAC\n" );
592     H1( "  -r, --ref <integer>         Number of reference frames [%d]\n", defaults->i_frame_reference );
593     H1( "      --no-deblock            Disable loop filter\n" );
594     H1( "  -f, --deblock <alpha:beta>  Loop filter parameters [%d:%d]\n",
595                                        defaults->i_deblocking_filter_alphac0, defaults->i_deblocking_filter_beta );
596     H2( "      --slices <integer>      Number of slices per frame; forces rectangular\n"
597         "                              slices and is overridden by other slicing options\n" );
598     else H1( "      --slices <integer>      Number of slices per frame\n" );
599     H2( "      --slice-max-size <integer> Limit the size of each slice in bytes\n");
600     H2( "      --slice-max-mbs <integer> Limit the size of each slice in macroblocks\n");
601     H0( "      --tff                   Enable interlaced mode (top field first)\n" );
602     H0( "      --bff                   Enable interlaced mode (bottom field first)\n" );
603     H2( "      --constrained-intra     Enable constrained intra prediction.\n" );
604     H0( "      --pulldown <string>     Use soft pulldown to change frame rate\n"
605         "                                  - none, 22, 32, 64, double, triple, euro (requires cfr input)\n" );
606     H2( "      --fake-interlaced       Flag stream as interlaced but encode progressive.\n"
607         "                              Makes it possible to encode 25p and 30p Blu-Ray\n"
608         "                              streams. Ignored in interlaced mode.\n" );
609     H2( "      --frame-packing <integer> For stereoscopic videos define frame arrangement\n"
610         "                                  - 0: checkerboard - pixels are alternatively from L and R\n"
611         "                                  - 1: column alternation - L and R are interlaced by column\n"
612         "                                  - 2: row alternation - L and R are interlaced by row\n"
613         "                                  - 3: side by side - L is on the left, R on the right\n"
614         "                                  - 4: top bottom - L is on top, R on bottom\n"
615         "                                  - 5: frame alternation - one view per frame\n" );
616     H0( "\n" );
617     H0( "Ratecontrol:\n" );
618     H0( "\n" );
619     H1( "  -q, --qp <integer>          Force constant QP (0-%d, 0=lossless)\n", QP_MAX );
620     H0( "  -B, --bitrate <integer>     Set bitrate (kbit/s)\n" );
621     H0( "      --crf <float>           Quality-based VBR (%d-51) [%.1f]\n", 51 - QP_MAX_SPEC, defaults->rc.f_rf_constant );
622     H1( "      --rc-lookahead <integer> Number of frames for frametype lookahead [%d]\n", defaults->rc.i_lookahead );
623     H0( "      --vbv-maxrate <integer> Max local bitrate (kbit/s) [%d]\n", defaults->rc.i_vbv_max_bitrate );
624     H0( "      --vbv-bufsize <integer> Set size of the VBV buffer (kbit) [%d]\n", defaults->rc.i_vbv_buffer_size );
625     H2( "      --vbv-init <float>      Initial VBV buffer occupancy [%.1f]\n", defaults->rc.f_vbv_buffer_init );
626     H2( "      --crf-max <float>       With CRF+VBV, limit RF to this value\n"
627         "                                  May cause VBV underflows!\n" );
628     H2( "      --qpmin <integer>       Set min QP [%d]\n", defaults->rc.i_qp_min );
629     H2( "      --qpmax <integer>       Set max QP [%d]\n", defaults->rc.i_qp_max );
630     H2( "      --qpstep <integer>      Set max QP step [%d]\n", defaults->rc.i_qp_step );
631     H2( "      --ratetol <float>       Tolerance of ABR ratecontrol and VBV [%.1f]\n", defaults->rc.f_rate_tolerance );
632     H2( "      --ipratio <float>       QP factor between I and P [%.2f]\n", defaults->rc.f_ip_factor );
633     H2( "      --pbratio <float>       QP factor between P and B [%.2f]\n", defaults->rc.f_pb_factor );
634     H2( "      --chroma-qp-offset <integer>  QP difference between chroma and luma [%d]\n", defaults->analyse.i_chroma_qp_offset );
635     H2( "      --aq-mode <integer>     AQ method [%d]\n"
636         "                                  - 0: Disabled\n"
637         "                                  - 1: Variance AQ (complexity mask)\n"
638         "                                  - 2: Auto-variance AQ (experimental)\n", defaults->rc.i_aq_mode );
639     H1( "      --aq-strength <float>   Reduces blocking and blurring in flat and\n"
640         "                              textured areas. [%.1f]\n", defaults->rc.f_aq_strength );
641     H1( "\n" );
642     H0( "  -p, --pass <integer>        Enable multipass ratecontrol\n"
643         "                                  - 1: First pass, creates stats file\n"
644         "                                  - 2: Last pass, does not overwrite stats file\n" );
645     H2( "                                  - 3: Nth pass, overwrites stats file\n" );
646     H1( "      --stats <string>        Filename for 2 pass stats [\"%s\"]\n", defaults->rc.psz_stat_out );
647     H2( "      --no-mbtree             Disable mb-tree ratecontrol.\n");
648     H2( "      --qcomp <float>         QP curve compression [%.2f]\n", defaults->rc.f_qcompress );
649     H2( "      --cplxblur <float>      Reduce fluctuations in QP (before curve compression) [%.1f]\n", defaults->rc.f_complexity_blur );
650     H2( "      --qblur <float>         Reduce fluctuations in QP (after curve compression) [%.1f]\n", defaults->rc.f_qblur );
651     H2( "      --zones <zone0>/<zone1>/...  Tweak the bitrate of regions of the video\n" );
652     H2( "                              Each zone is of the form\n"
653         "                                  <start frame>,<end frame>,<option>\n"
654         "                                  where <option> is either\n"
655         "                                      q=<integer> (force QP)\n"
656         "                                  or  b=<float> (bitrate multiplier)\n" );
657     H2( "      --qpfile <string>       Force frametypes and QPs for some or all frames\n"
658         "                              Format of each line: framenumber frametype QP\n"
659         "                              QP is optional (none lets x264 choose). Frametypes: I,i,K,P,B,b.\n"
660         "                                  K=<I or i> depending on open-gop setting\n"
661         "                              QPs are restricted by qpmin/qpmax.\n" );
662     H1( "\n" );
663     H1( "Analysis:\n" );
664     H1( "\n" );
665     H1( "  -A, --partitions <string>   Partitions to consider [\"p8x8,b8x8,i8x8,i4x4\"]\n"
666         "                                  - p8x8, p4x4, b8x8, i8x8, i4x4\n"
667         "                                  - none, all\n"
668         "                                  (p4x4 requires p8x8. i8x8 requires --8x8dct.)\n" );
669     H1( "      --direct <string>       Direct MV prediction mode [\"%s\"]\n"
670         "                                  - none, spatial, temporal, auto\n",
671                                        strtable_lookup( x264_direct_pred_names, defaults->analyse.i_direct_mv_pred ) );
672     H2( "      --no-weightb            Disable weighted prediction for B-frames\n" );
673     H1( "      --weightp <integer>     Weighted prediction for P-frames [%d]\n"
674         "                                  - 0: Disabled\n"
675         "                                  - 1: Weighted refs\n"
676         "                                  - 2: Weighted refs + Duplicates\n", defaults->analyse.i_weighted_pred );
677     H1( "      --me <string>           Integer pixel motion estimation method [\"%s\"]\n",
678                                        strtable_lookup( x264_motion_est_names, defaults->analyse.i_me_method ) );
679     H2( "                                  - dia: diamond search, radius 1 (fast)\n"
680         "                                  - hex: hexagonal search, radius 2\n"
681         "                                  - umh: uneven multi-hexagon search\n"
682         "                                  - esa: exhaustive search\n"
683         "                                  - tesa: hadamard exhaustive search (slow)\n" );
684     else H1( "                                  - dia, hex, umh\n" );
685     H2( "      --merange <integer>     Maximum motion vector search range [%d]\n", defaults->analyse.i_me_range );
686     H2( "      --mvrange <integer>     Maximum motion vector length [-1 (auto)]\n" );
687     H2( "      --mvrange-thread <int>  Minimum buffer between threads [-1 (auto)]\n" );
688     H1( "  -m, --subme <integer>       Subpixel motion estimation and mode decision [%d]\n", defaults->analyse.i_subpel_refine );
689     H2( "                                  - 0: fullpel only (not recommended)\n"
690         "                                  - 1: SAD mode decision, one qpel iteration\n"
691         "                                  - 2: SATD mode decision\n"
692         "                                  - 3-5: Progressively more qpel\n"
693         "                                  - 6: RD mode decision for I/P-frames\n"
694         "                                  - 7: RD mode decision for all frames\n"
695         "                                  - 8: RD refinement for I/P-frames\n"
696         "                                  - 9: RD refinement for all frames\n"
697         "                                  - 10: QP-RD - requires trellis=2, aq-mode>0\n"
698         "                                  - 11: Full RD: disable all early terminations\n" );
699     else H1( "                                  decision quality: 1=fast, 11=best\n" );
700     H1( "      --psy-rd <float:float>  Strength of psychovisual optimization [\"%.1f:%.1f\"]\n"
701         "                                  #1: RD (requires subme>=6)\n"
702         "                                  #2: Trellis (requires trellis, experimental)\n",
703                                        defaults->analyse.f_psy_rd, defaults->analyse.f_psy_trellis );
704     H2( "      --no-psy                Disable all visual optimizations that worsen\n"
705         "                              both PSNR and SSIM.\n" );
706     H2( "      --no-mixed-refs         Don't decide references on a per partition basis\n" );
707     H2( "      --no-chroma-me          Ignore chroma in motion estimation\n" );
708     H1( "      --no-8x8dct             Disable adaptive spatial transform size\n" );
709     H1( "  -t, --trellis <integer>     Trellis RD quantization. [%d]\n"
710         "                                  - 0: disabled\n"
711         "                                  - 1: enabled only on the final encode of a MB\n"
712         "                                  - 2: enabled on all mode decisions\n", defaults->analyse.i_trellis );
713     H2( "      --no-fast-pskip         Disables early SKIP detection on P-frames\n" );
714     H2( "      --no-dct-decimate       Disables coefficient thresholding on P-frames\n" );
715     H1( "      --nr <integer>          Noise reduction [%d]\n", defaults->analyse.i_noise_reduction );
716     H2( "\n" );
717     H2( "      --deadzone-inter <int>  Set the size of the inter luma quantization deadzone [%d]\n", defaults->analyse.i_luma_deadzone[0] );
718     H2( "      --deadzone-intra <int>  Set the size of the intra luma quantization deadzone [%d]\n", defaults->analyse.i_luma_deadzone[1] );
719     H2( "                                  Deadzones should be in the range 0 - 32.\n" );
720     H2( "      --cqm <string>          Preset quant matrices [\"flat\"]\n"
721         "                                  - jvt, flat\n" );
722     H1( "      --cqmfile <string>      Read custom quant matrices from a JM-compatible file\n" );
723     H2( "                                  Overrides any other --cqm* options.\n" );
724     H2( "      --cqm4 <list>           Set all 4x4 quant matrices\n"
725         "                                  Takes a comma-separated list of 16 integers.\n" );
726     H2( "      --cqm8 <list>           Set all 8x8 quant matrices\n"
727         "                                  Takes a comma-separated list of 64 integers.\n" );
728     H2( "      --cqm4i, --cqm4p, --cqm8i, --cqm8p <list>\n"
729         "                              Set both luma and chroma quant matrices\n" );
730     H2( "      --cqm4iy, --cqm4ic, --cqm4py, --cqm4pc <list>\n"
731         "                              Set individual quant matrices\n" );
732     H2( "\n" );
733     H2( "Video Usability Info (Annex E):\n" );
734     H2( "The VUI settings are not used by the encoder but are merely suggestions to\n" );
735     H2( "the playback equipment. See doc/vui.txt for details. Use at your own risk.\n" );
736     H2( "\n" );
737     H2( "      --overscan <string>     Specify crop overscan setting [\"%s\"]\n"
738         "                                  - undef, show, crop\n",
739                                        strtable_lookup( x264_overscan_names, defaults->vui.i_overscan ) );
740     H2( "      --videoformat <string>  Specify video format [\"%s\"]\n"
741         "                                  - component, pal, ntsc, secam, mac, undef\n",
742                                        strtable_lookup( x264_vidformat_names, defaults->vui.i_vidformat ) );
743     H2( "      --range <string>        Specify color range [\"%s\"]\n"
744         "                                  - %s\n", range_names[0], stringify_names( buf, range_names ) );
745     H2( "      --colorprim <string>    Specify color primaries [\"%s\"]\n"
746         "                                  - undef, bt709, bt470m, bt470bg\n"
747         "                                    smpte170m, smpte240m, film\n",
748                                        strtable_lookup( x264_colorprim_names, defaults->vui.i_colorprim ) );
749     H2( "      --transfer <string>     Specify transfer characteristics [\"%s\"]\n"
750         "                                  - undef, bt709, bt470m, bt470bg, linear,\n"
751         "                                    log100, log316, smpte170m, smpte240m\n",
752                                        strtable_lookup( x264_transfer_names, defaults->vui.i_transfer ) );
753     H2( "      --colormatrix <string>  Specify color matrix setting [\"%s\"]\n"
754         "                                  - undef, bt709, fcc, bt470bg\n"
755         "                                    smpte170m, smpte240m, GBR, YCgCo\n",
756                                        strtable_lookup( x264_colmatrix_names, defaults->vui.i_colmatrix ) );
757     H2( "      --chromaloc <integer>   Specify chroma sample location (0 to 5) [%d]\n",
758                                        defaults->vui.i_chroma_loc );
759
760     H2( "      --nal-hrd <string>      Signal HRD information (requires vbv-bufsize)\n"
761         "                                  - none, vbr, cbr (cbr not allowed in .mp4)\n" );
762     H2( "      --pic-struct            Force pic_struct in Picture Timing SEI\n" );
763     H2( "      --crop-rect <string>    Add 'left,top,right,bottom' to the bitstream-level\n"
764         "                              cropping rectangle\n" );
765
766     H0( "\n" );
767     H0( "Input/Output:\n" );
768     H0( "\n" );
769     H0( "  -o, --output <string>       Specify output file\n" );
770     H1( "      --muxer <string>        Specify output container format [\"%s\"]\n"
771         "                                  - %s\n", muxer_names[0], stringify_names( buf, muxer_names ) );
772     H1( "      --demuxer <string>      Specify input container format [\"%s\"]\n"
773         "                                  - %s\n", demuxer_names[0], stringify_names( buf, demuxer_names ) );
774     H1( "      --input-fmt <string>    Specify input file format (requires lavf support)\n" );
775     H1( "      --input-csp <string>    Specify input colorspace format for raw input\n" );
776     print_csp_names( longhelp );
777     H1( "      --output-csp <string>   Specify output colorspace [\"%s\"]\n"
778         "                                  - %s\n", output_csp_names[0], stringify_names( buf, output_csp_names ) );
779     H1( "      --input-depth <integer> Specify input bit depth for raw input\n" );
780     H1( "      --input-range <string>  Specify input color range [\"%s\"]\n"
781         "                                  - %s\n", range_names[0], stringify_names( buf, range_names ) );
782     H1( "      --input-res <intxint>   Specify input resolution (width x height)\n" );
783     H1( "      --index <string>        Filename for input index file\n" );
784     H0( "      --sar width:height      Specify Sample Aspect Ratio\n" );
785     H0( "      --fps <float|rational>  Specify framerate\n" );
786     H0( "      --seek <integer>        First frame to encode\n" );
787     H0( "      --frames <integer>      Maximum number of frames to encode\n" );
788     H0( "      --level <string>        Specify level (as defined by Annex A)\n" );
789     H1( "      --bluray-compat         Enable compatibility hacks for Blu-ray support\n" );
790     H1( "\n" );
791     H1( "  -v, --verbose               Print stats for each frame\n" );
792     H1( "      --no-progress           Don't show the progress indicator while encoding\n" );
793     H0( "      --quiet                 Quiet Mode\n" );
794     H1( "      --log-level <string>    Specify the maximum level of logging [\"%s\"]\n"
795         "                                  - %s\n", strtable_lookup( log_level_names, cli_log_level - X264_LOG_NONE ),
796                                        stringify_names( buf, log_level_names ) );
797     H1( "      --psnr                  Enable PSNR computation\n" );
798     H1( "      --ssim                  Enable SSIM computation\n" );
799     H1( "      --threads <integer>     Force a specific number of threads\n" );
800     H2( "      --lookahead-threads <integer> Force a specific number of lookahead threads\n" );
801     H2( "      --sliced-threads        Low-latency but lower-efficiency threading\n" );
802     H2( "      --thread-input          Run Avisynth in its own thread\n" );
803     H2( "      --sync-lookahead <integer> Number of buffer frames for threaded lookahead\n" );
804     H2( "      --non-deterministic     Slightly improve quality of SMP, at the cost of repeatability\n" );
805     H2( "      --cpu-independent       Ensure exact reproducibility across different cpus,\n"
806         "                                  as opposed to letting them select different algorithms\n" );
807     H2( "      --asm <integer>         Override CPU detection\n" );
808     H2( "      --no-asm                Disable all CPU optimizations\n" );
809     H2( "      --visualize             Show MB types overlayed on the encoded video\n" );
810     H2( "      --dump-yuv <string>     Save reconstructed frames\n" );
811     H2( "      --sps-id <integer>      Set SPS and PPS id numbers [%d]\n", defaults->i_sps_id );
812     H2( "      --aud                   Use access unit delimiters\n" );
813     H2( "      --force-cfr             Force constant framerate timestamp generation\n" );
814     H2( "      --tcfile-in <string>    Force timestamp generation with timecode file\n" );
815     H2( "      --tcfile-out <string>   Output timecode v2 file from input timestamps\n" );
816     H2( "      --timebase <int/int>    Specify timebase numerator and denominator\n"
817         "                 <integer>    Specify timebase numerator for input timecode file\n"
818         "                              or specify timebase denominator for other input\n" );
819     H2( "      --dts-compress          Eliminate initial delay with container DTS hack\n" );
820     H0( "\n" );
821     H0( "Filtering:\n" );
822     H0( "\n" );
823     H0( "      --vf, --video-filter <filter0>/<filter1>/... Apply video filtering to the input file\n" );
824     H0( "\n" );
825     H0( "      Filter options may be specified in <filter>:<option>=<value> format.\n" );
826     H0( "\n" );
827     H0( "      Available filters:\n" );
828     x264_register_vid_filters();
829     x264_vid_filter_help( longhelp );
830     H0( "\n" );
831 }
832
833 typedef enum
834 {
835     OPT_FRAMES = 256,
836     OPT_SEEK,
837     OPT_QPFILE,
838     OPT_THREAD_INPUT,
839     OPT_QUIET,
840     OPT_NOPROGRESS,
841     OPT_VISUALIZE,
842     OPT_LONGHELP,
843     OPT_PROFILE,
844     OPT_PRESET,
845     OPT_TUNE,
846     OPT_SLOWFIRSTPASS,
847     OPT_FULLHELP,
848     OPT_FPS,
849     OPT_MUXER,
850     OPT_DEMUXER,
851     OPT_INDEX,
852     OPT_INTERLACED,
853     OPT_TCFILE_IN,
854     OPT_TCFILE_OUT,
855     OPT_TIMEBASE,
856     OPT_PULLDOWN,
857     OPT_LOG_LEVEL,
858     OPT_VIDEO_FILTER,
859     OPT_INPUT_FMT,
860     OPT_INPUT_RES,
861     OPT_INPUT_CSP,
862     OPT_INPUT_DEPTH,
863     OPT_DTS_COMPRESSION,
864     OPT_OUTPUT_CSP,
865     OPT_INPUT_RANGE,
866     OPT_RANGE
867 } OptionsOPT;
868
869 static char short_options[] = "8A:B:b:f:hI:i:m:o:p:q:r:t:Vvw";
870 static struct option long_options[] =
871 {
872     { "help",              no_argument, NULL, 'h' },
873     { "longhelp",          no_argument, NULL, OPT_LONGHELP },
874     { "fullhelp",          no_argument, NULL, OPT_FULLHELP },
875     { "version",           no_argument, NULL, 'V' },
876     { "profile",     required_argument, NULL, OPT_PROFILE },
877     { "preset",      required_argument, NULL, OPT_PRESET },
878     { "tune",        required_argument, NULL, OPT_TUNE },
879     { "slow-firstpass",    no_argument, NULL, OPT_SLOWFIRSTPASS },
880     { "bitrate",     required_argument, NULL, 'B' },
881     { "bframes",     required_argument, NULL, 'b' },
882     { "b-adapt",     required_argument, NULL, 0 },
883     { "no-b-adapt",        no_argument, NULL, 0 },
884     { "b-bias",      required_argument, NULL, 0 },
885     { "b-pyramid",   required_argument, NULL, 0 },
886     { "open-gop",          no_argument, NULL, 0 },
887     { "bluray-compat",     no_argument, NULL, 0 },
888     { "min-keyint",  required_argument, NULL, 'i' },
889     { "keyint",      required_argument, NULL, 'I' },
890     { "intra-refresh",     no_argument, NULL, 0 },
891     { "scenecut",    required_argument, NULL, 0 },
892     { "no-scenecut",       no_argument, NULL, 0 },
893     { "nf",                no_argument, NULL, 0 },
894     { "no-deblock",        no_argument, NULL, 0 },
895     { "filter",      required_argument, NULL, 0 },
896     { "deblock",     required_argument, NULL, 'f' },
897     { "interlaced",        no_argument, NULL, OPT_INTERLACED },
898     { "tff",               no_argument, NULL, OPT_INTERLACED },
899     { "bff",               no_argument, NULL, OPT_INTERLACED },
900     { "no-interlaced",     no_argument, NULL, OPT_INTERLACED },
901     { "constrained-intra", no_argument, NULL, 0 },
902     { "cabac",             no_argument, NULL, 0 },
903     { "no-cabac",          no_argument, NULL, 0 },
904     { "qp",          required_argument, NULL, 'q' },
905     { "qpmin",       required_argument, NULL, 0 },
906     { "qpmax",       required_argument, NULL, 0 },
907     { "qpstep",      required_argument, NULL, 0 },
908     { "crf",         required_argument, NULL, 0 },
909     { "rc-lookahead",required_argument, NULL, 0 },
910     { "ref",         required_argument, NULL, 'r' },
911     { "asm",         required_argument, NULL, 0 },
912     { "no-asm",            no_argument, NULL, 0 },
913     { "sar",         required_argument, NULL, 0 },
914     { "fps",         required_argument, NULL, OPT_FPS },
915     { "frames",      required_argument, NULL, OPT_FRAMES },
916     { "seek",        required_argument, NULL, OPT_SEEK },
917     { "output",      required_argument, NULL, 'o' },
918     { "muxer",       required_argument, NULL, OPT_MUXER },
919     { "demuxer",     required_argument, NULL, OPT_DEMUXER },
920     { "stdout",      required_argument, NULL, OPT_MUXER },
921     { "stdin",       required_argument, NULL, OPT_DEMUXER },
922     { "index",       required_argument, NULL, OPT_INDEX },
923     { "analyse",     required_argument, NULL, 0 },
924     { "partitions",  required_argument, NULL, 'A' },
925     { "direct",      required_argument, NULL, 0 },
926     { "weightb",           no_argument, NULL, 'w' },
927     { "no-weightb",        no_argument, NULL, 0 },
928     { "weightp",     required_argument, NULL, 0 },
929     { "me",          required_argument, NULL, 0 },
930     { "merange",     required_argument, NULL, 0 },
931     { "mvrange",     required_argument, NULL, 0 },
932     { "mvrange-thread", required_argument, NULL, 0 },
933     { "subme",       required_argument, NULL, 'm' },
934     { "psy-rd",      required_argument, NULL, 0 },
935     { "no-psy",            no_argument, NULL, 0 },
936     { "psy",               no_argument, NULL, 0 },
937     { "mixed-refs",        no_argument, NULL, 0 },
938     { "no-mixed-refs",     no_argument, NULL, 0 },
939     { "no-chroma-me",      no_argument, NULL, 0 },
940     { "8x8dct",            no_argument, NULL, '8' },
941     { "no-8x8dct",         no_argument, NULL, 0 },
942     { "trellis",     required_argument, NULL, 't' },
943     { "fast-pskip",        no_argument, NULL, 0 },
944     { "no-fast-pskip",     no_argument, NULL, 0 },
945     { "no-dct-decimate",   no_argument, NULL, 0 },
946     { "aq-strength", required_argument, NULL, 0 },
947     { "aq-mode",     required_argument, NULL, 0 },
948     { "deadzone-inter", required_argument, NULL, 0 },
949     { "deadzone-intra", required_argument, NULL, 0 },
950     { "level",       required_argument, NULL, 0 },
951     { "ratetol",     required_argument, NULL, 0 },
952     { "vbv-maxrate", required_argument, NULL, 0 },
953     { "vbv-bufsize", required_argument, NULL, 0 },
954     { "vbv-init",    required_argument, NULL, 0 },
955     { "crf-max",     required_argument, NULL, 0 },
956     { "ipratio",     required_argument, NULL, 0 },
957     { "pbratio",     required_argument, NULL, 0 },
958     { "chroma-qp-offset", required_argument, NULL, 0 },
959     { "pass",        required_argument, NULL, 'p' },
960     { "stats",       required_argument, NULL, 0 },
961     { "qcomp",       required_argument, NULL, 0 },
962     { "mbtree",            no_argument, NULL, 0 },
963     { "no-mbtree",         no_argument, NULL, 0 },
964     { "qblur",       required_argument, NULL, 0 },
965     { "cplxblur",    required_argument, NULL, 0 },
966     { "zones",       required_argument, NULL, 0 },
967     { "qpfile",      required_argument, NULL, OPT_QPFILE },
968     { "threads",     required_argument, NULL, 0 },
969     { "lookahead-threads", required_argument, NULL, 0 },
970     { "sliced-threads",    no_argument, NULL, 0 },
971     { "no-sliced-threads", no_argument, NULL, 0 },
972     { "slice-max-size",    required_argument, NULL, 0 },
973     { "slice-max-mbs",     required_argument, NULL, 0 },
974     { "slices",            required_argument, NULL, 0 },
975     { "thread-input",      no_argument, NULL, OPT_THREAD_INPUT },
976     { "sync-lookahead",    required_argument, NULL, 0 },
977     { "non-deterministic", no_argument, NULL, 0 },
978     { "cpu-independent",   no_argument, NULL, 0 },
979     { "psnr",              no_argument, NULL, 0 },
980     { "ssim",              no_argument, NULL, 0 },
981     { "quiet",             no_argument, NULL, OPT_QUIET },
982     { "verbose",           no_argument, NULL, 'v' },
983     { "log-level",   required_argument, NULL, OPT_LOG_LEVEL },
984     { "no-progress",       no_argument, NULL, OPT_NOPROGRESS },
985     { "visualize",         no_argument, NULL, OPT_VISUALIZE },
986     { "dump-yuv",    required_argument, NULL, 0 },
987     { "sps-id",      required_argument, NULL, 0 },
988     { "aud",               no_argument, NULL, 0 },
989     { "nr",          required_argument, NULL, 0 },
990     { "cqm",         required_argument, NULL, 0 },
991     { "cqmfile",     required_argument, NULL, 0 },
992     { "cqm4",        required_argument, NULL, 0 },
993     { "cqm4i",       required_argument, NULL, 0 },
994     { "cqm4iy",      required_argument, NULL, 0 },
995     { "cqm4ic",      required_argument, NULL, 0 },
996     { "cqm4p",       required_argument, NULL, 0 },
997     { "cqm4py",      required_argument, NULL, 0 },
998     { "cqm4pc",      required_argument, NULL, 0 },
999     { "cqm8",        required_argument, NULL, 0 },
1000     { "cqm8i",       required_argument, NULL, 0 },
1001     { "cqm8p",       required_argument, NULL, 0 },
1002     { "overscan",    required_argument, NULL, 0 },
1003     { "videoformat", required_argument, NULL, 0 },
1004     { "range",       required_argument, NULL, OPT_RANGE },
1005     { "colorprim",   required_argument, NULL, 0 },
1006     { "transfer",    required_argument, NULL, 0 },
1007     { "colormatrix", required_argument, NULL, 0 },
1008     { "chromaloc",   required_argument, NULL, 0 },
1009     { "force-cfr",         no_argument, NULL, 0 },
1010     { "tcfile-in",   required_argument, NULL, OPT_TCFILE_IN },
1011     { "tcfile-out",  required_argument, NULL, OPT_TCFILE_OUT },
1012     { "timebase",    required_argument, NULL, OPT_TIMEBASE },
1013     { "pic-struct",        no_argument, NULL, 0 },
1014     { "crop-rect",   required_argument, NULL, 0 },
1015     { "nal-hrd",     required_argument, NULL, 0 },
1016     { "pulldown",    required_argument, NULL, OPT_PULLDOWN },
1017     { "fake-interlaced",   no_argument, NULL, 0 },
1018     { "frame-packing",     required_argument, NULL, 0 },
1019     { "vf",          required_argument, NULL, OPT_VIDEO_FILTER },
1020     { "video-filter", required_argument, NULL, OPT_VIDEO_FILTER },
1021     { "input-fmt",   required_argument, NULL, OPT_INPUT_FMT },
1022     { "input-res",   required_argument, NULL, OPT_INPUT_RES },
1023     { "input-csp",   required_argument, NULL, OPT_INPUT_CSP },
1024     { "input-depth", required_argument, NULL, OPT_INPUT_DEPTH },
1025     { "dts-compress",      no_argument, NULL, OPT_DTS_COMPRESSION },
1026     { "output-csp",  required_argument, NULL, OPT_OUTPUT_CSP },
1027     { "input-range", required_argument, NULL, OPT_INPUT_RANGE },
1028     {0, 0, 0, 0}
1029 };
1030
1031 static int select_output( const char *muxer, char *filename, x264_param_t *param )
1032 {
1033     const char *ext = get_filename_extension( filename );
1034     if( !strcmp( filename, "-" ) || strcasecmp( muxer, "auto" ) )
1035         ext = muxer;
1036
1037     if( !strcasecmp( ext, "mp4" ) )
1038     {
1039 #if HAVE_GPAC
1040         cli_output = mp4_output;
1041         param->b_annexb = 0;
1042         param->b_repeat_headers = 0;
1043         if( param->i_nal_hrd == X264_NAL_HRD_CBR )
1044         {
1045             x264_cli_log( "x264", X264_LOG_WARNING, "cbr nal-hrd is not compatible with mp4\n" );
1046             param->i_nal_hrd = X264_NAL_HRD_VBR;
1047         }
1048 #else
1049         x264_cli_log( "x264", X264_LOG_ERROR, "not compiled with MP4 output support\n" );
1050         return -1;
1051 #endif
1052     }
1053     else if( !strcasecmp( ext, "mkv" ) )
1054     {
1055         cli_output = mkv_output;
1056         param->b_annexb = 0;
1057         param->b_repeat_headers = 0;
1058     }
1059     else if( !strcasecmp( ext, "flv" ) )
1060     {
1061         cli_output = flv_output;
1062         param->b_annexb = 0;
1063         param->b_repeat_headers = 0;
1064     }
1065     else
1066         cli_output = raw_output;
1067     return 0;
1068 }
1069
1070 static int select_input( const char *demuxer, char *used_demuxer, char *filename,
1071                          hnd_t *p_handle, video_info_t *info, cli_input_opt_t *opt )
1072 {
1073     int b_auto = !strcasecmp( demuxer, "auto" );
1074     const char *ext = b_auto ? get_filename_extension( filename ) : "";
1075     int b_regular = strcmp( filename, "-" );
1076     if( !b_regular && b_auto )
1077         ext = "raw";
1078     b_regular = b_regular && x264_is_regular_file_path( filename );
1079     if( b_regular )
1080     {
1081         FILE *f = fopen( filename, "r" );
1082         if( f )
1083         {
1084             b_regular = x264_is_regular_file( f );
1085             fclose( f );
1086         }
1087     }
1088     const char *module = b_auto ? ext : demuxer;
1089
1090     if( !strcasecmp( module, "avs" ) || !strcasecmp( ext, "d2v" ) || !strcasecmp( ext, "dga" ) )
1091     {
1092 #if HAVE_AVS
1093         cli_input = avs_input;
1094         module = "avs";
1095 #else
1096         x264_cli_log( "x264", X264_LOG_ERROR, "not compiled with AVS input support\n" );
1097         return -1;
1098 #endif
1099     }
1100     else if( !strcasecmp( module, "y4m" ) )
1101         cli_input = y4m_input;
1102     else if( !strcasecmp( module, "raw" ) || !strcasecmp( ext, "yuv" ) )
1103         cli_input = raw_input;
1104     else
1105     {
1106 #if HAVE_FFMS
1107         if( b_regular && (b_auto || !strcasecmp( demuxer, "ffms" )) &&
1108             !ffms_input.open_file( filename, p_handle, info, opt ) )
1109         {
1110             module = "ffms";
1111             b_auto = 0;
1112             cli_input = ffms_input;
1113         }
1114 #endif
1115 #if HAVE_LAVF
1116         if( (b_auto || !strcasecmp( demuxer, "lavf" )) &&
1117             !lavf_input.open_file( filename, p_handle, info, opt ) )
1118         {
1119             module = "lavf";
1120             b_auto = 0;
1121             cli_input = lavf_input;
1122         }
1123 #endif
1124 #if HAVE_AVS
1125         if( b_regular && (b_auto || !strcasecmp( demuxer, "avs" )) &&
1126             !avs_input.open_file( filename, p_handle, info, opt ) )
1127         {
1128             module = "avs";
1129             b_auto = 0;
1130             cli_input = avs_input;
1131         }
1132 #endif
1133         if( b_auto && !raw_input.open_file( filename, p_handle, info, opt ) )
1134         {
1135             module = "raw";
1136             b_auto = 0;
1137             cli_input = raw_input;
1138         }
1139
1140         FAIL_IF_ERROR( !(*p_handle), "could not open input file `%s' via any method!\n", filename )
1141     }
1142     strcpy( used_demuxer, module );
1143
1144     return 0;
1145 }
1146
1147 static int init_vid_filters( char *sequence, hnd_t *handle, video_info_t *info, x264_param_t *param, int output_csp )
1148 {
1149     x264_register_vid_filters();
1150
1151     /* intialize baseline filters */
1152     if( x264_init_vid_filter( "source", handle, &filter, info, param, NULL ) ) /* wrap demuxer into a filter */
1153         return -1;
1154     if( x264_init_vid_filter( "resize", handle, &filter, info, param, "normcsp" ) ) /* normalize csps to be of a known/supported format */
1155         return -1;
1156     if( x264_init_vid_filter( "fix_vfr_pts", handle, &filter, info, param, NULL ) ) /* fix vfr pts */
1157         return -1;
1158
1159     /* parse filter chain */
1160     for( char *p = sequence; p && *p; )
1161     {
1162         int tok_len = strcspn( p, "/" );
1163         int p_len = strlen( p );
1164         p[tok_len] = 0;
1165         int name_len = strcspn( p, ":" );
1166         p[name_len] = 0;
1167         name_len += name_len != tok_len;
1168         if( x264_init_vid_filter( p, handle, &filter, info, param, p + name_len ) )
1169             return -1;
1170         p += X264_MIN( tok_len+1, p_len );
1171     }
1172
1173     /* force end result resolution */
1174     if( !param->i_width && !param->i_height )
1175     {
1176         param->i_height = info->height;
1177         param->i_width  = info->width;
1178     }
1179     /* force the output csp to what the user specified (or the default) */
1180     param->i_csp = info->csp;
1181     int csp = info->csp & X264_CSP_MASK;
1182     if( output_csp == X264_CSP_I420 && (csp < X264_CSP_I420 || csp > X264_CSP_NV12) )
1183         param->i_csp = X264_CSP_I420;
1184     else if( output_csp == X264_CSP_I422 && (csp < X264_CSP_I422 || csp > X264_CSP_NV16) )
1185         param->i_csp = X264_CSP_I422;
1186     else if( output_csp == X264_CSP_I444 && (csp < X264_CSP_I444 || csp > X264_CSP_YV24) )
1187         param->i_csp = X264_CSP_I444;
1188     else if( output_csp == X264_CSP_RGB && (csp < X264_CSP_BGR || csp > X264_CSP_RGB) )
1189         param->i_csp = X264_CSP_RGB;
1190     param->i_csp |= info->csp & X264_CSP_HIGH_DEPTH;
1191     /* if the output range is not forced, assign it to the input one now */
1192     if( param->vui.b_fullrange == RANGE_AUTO )
1193         param->vui.b_fullrange = info->fullrange;
1194
1195     if( x264_init_vid_filter( "resize", handle, &filter, info, param, NULL ) )
1196         return -1;
1197
1198     char args[20];
1199     sprintf( args, "bit_depth=%d", x264_bit_depth );
1200
1201     if( x264_init_vid_filter( "depth", handle, &filter, info, param, args ) )
1202         return -1;
1203
1204     return 0;
1205 }
1206
1207 static int parse_enum_name( const char *arg, const char * const *names, const char **dst )
1208 {
1209     for( int i = 0; names[i]; i++ )
1210         if( !strcasecmp( arg, names[i] ) )
1211         {
1212             *dst = names[i];
1213             return 0;
1214         }
1215     return -1;
1216 }
1217
1218 static int parse_enum_value( const char *arg, const char * const *names, int *dst )
1219 {
1220     for( int i = 0; names[i]; i++ )
1221         if( !strcasecmp( arg, names[i] ) )
1222         {
1223             *dst = i;
1224             return 0;
1225         }
1226     return -1;
1227 }
1228
1229 static int parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt )
1230 {
1231     char *input_filename = NULL;
1232     const char *demuxer = demuxer_names[0];
1233     char *output_filename = NULL;
1234     const char *muxer = muxer_names[0];
1235     char *tcfile_name = NULL;
1236     x264_param_t defaults;
1237     char *profile = NULL;
1238     char *vid_filters = NULL;
1239     int b_thread_input = 0;
1240     int b_turbo = 1;
1241     int b_user_ref = 0;
1242     int b_user_fps = 0;
1243     int b_user_interlaced = 0;
1244     cli_input_opt_t input_opt;
1245     cli_output_opt_t output_opt;
1246     char *preset = NULL;
1247     char *tune = NULL;
1248
1249     x264_param_default( &defaults );
1250     cli_log_level = defaults.i_log_level;
1251
1252     memset( &input_opt, 0, sizeof(cli_input_opt_t) );
1253     memset( &output_opt, 0, sizeof(cli_output_opt_t) );
1254     input_opt.bit_depth = 8;
1255     input_opt.input_range = input_opt.output_range = param->vui.b_fullrange = RANGE_AUTO;
1256     int output_csp = defaults.i_csp;
1257     opt->b_progress = 1;
1258
1259     /* Presets are applied before all other options. */
1260     for( optind = 0;; )
1261     {
1262         int c = getopt_long( argc, argv, short_options, long_options, NULL );
1263         if( c == -1 )
1264             break;
1265         if( c == OPT_PRESET )
1266             preset = optarg;
1267         if( c == OPT_TUNE )
1268             tune = optarg;
1269         else if( c == '?' )
1270             return -1;
1271     }
1272
1273     if( preset && !strcasecmp( preset, "placebo" ) )
1274         b_turbo = 0;
1275
1276     if( x264_param_default_preset( param, preset, tune ) < 0 )
1277         return -1;
1278
1279     /* Parse command line options */
1280     for( optind = 0;; )
1281     {
1282         int b_error = 0;
1283         int long_options_index = -1;
1284
1285         int c = getopt_long( argc, argv, short_options, long_options, &long_options_index );
1286
1287         if( c == -1 )
1288         {
1289             break;
1290         }
1291
1292         switch( c )
1293         {
1294             case 'h':
1295                 help( &defaults, 0 );
1296                 exit(0);
1297             case OPT_LONGHELP:
1298                 help( &defaults, 1 );
1299                 exit(0);
1300             case OPT_FULLHELP:
1301                 help( &defaults, 2 );
1302                 exit(0);
1303             case 'V':
1304                 print_version_info();
1305                 exit(0);
1306             case OPT_FRAMES:
1307                 param->i_frame_total = X264_MAX( atoi( optarg ), 0 );
1308                 break;
1309             case OPT_SEEK:
1310                 opt->i_seek = X264_MAX( atoi( optarg ), 0 );
1311                 break;
1312             case 'o':
1313                 output_filename = optarg;
1314                 break;
1315             case OPT_MUXER:
1316                 FAIL_IF_ERROR( parse_enum_name( optarg, muxer_names, &muxer ), "Unknown muxer `%s'\n", optarg )
1317                 break;
1318             case OPT_DEMUXER:
1319                 FAIL_IF_ERROR( parse_enum_name( optarg, demuxer_names, &demuxer ), "Unknown demuxer `%s'\n", optarg )
1320                 break;
1321             case OPT_INDEX:
1322                 input_opt.index_file = optarg;
1323                 break;
1324             case OPT_QPFILE:
1325                 opt->qpfile = fopen( optarg, "rb" );
1326                 FAIL_IF_ERROR( !opt->qpfile, "can't open qpfile `%s'\n", optarg )
1327                 if( !x264_is_regular_file( opt->qpfile ) )
1328                 {
1329                     x264_cli_log( "x264", X264_LOG_ERROR, "qpfile incompatible with non-regular file `%s'\n", optarg );
1330                     fclose( opt->qpfile );
1331                     return -1;
1332                 }
1333                 break;
1334             case OPT_THREAD_INPUT:
1335                 b_thread_input = 1;
1336                 break;
1337             case OPT_QUIET:
1338                 cli_log_level = param->i_log_level = X264_LOG_NONE;
1339                 break;
1340             case 'v':
1341                 cli_log_level = param->i_log_level = X264_LOG_DEBUG;
1342                 break;
1343             case OPT_LOG_LEVEL:
1344                 if( !parse_enum_value( optarg, log_level_names, &cli_log_level ) )
1345                     cli_log_level += X264_LOG_NONE;
1346                 else
1347                     cli_log_level = atoi( optarg );
1348                 param->i_log_level = cli_log_level;
1349                 break;
1350             case OPT_NOPROGRESS:
1351                 opt->b_progress = 0;
1352                 break;
1353             case OPT_VISUALIZE:
1354 #if HAVE_VISUALIZE
1355                 param->b_visualize = 1;
1356                 b_exit_on_ctrl_c = 1;
1357 #else
1358                 x264_cli_log( "x264", X264_LOG_WARNING, "not compiled with visualization support\n" );
1359 #endif
1360                 break;
1361             case OPT_TUNE:
1362             case OPT_PRESET:
1363                 break;
1364             case OPT_PROFILE:
1365                 profile = optarg;
1366                 break;
1367             case OPT_SLOWFIRSTPASS:
1368                 b_turbo = 0;
1369                 break;
1370             case 'r':
1371                 b_user_ref = 1;
1372                 goto generic_option;
1373             case OPT_FPS:
1374                 b_user_fps = 1;
1375                 param->b_vfr_input = 0;
1376                 goto generic_option;
1377             case OPT_INTERLACED:
1378                 b_user_interlaced = 1;
1379                 goto generic_option;
1380             case OPT_TCFILE_IN:
1381                 tcfile_name = optarg;
1382                 break;
1383             case OPT_TCFILE_OUT:
1384                 opt->tcfile_out = fopen( optarg, "wb" );
1385                 FAIL_IF_ERROR( !opt->tcfile_out, "can't open `%s'\n", optarg )
1386                 break;
1387             case OPT_TIMEBASE:
1388                 input_opt.timebase = optarg;
1389                 break;
1390             case OPT_PULLDOWN:
1391                 FAIL_IF_ERROR( parse_enum_value( optarg, pulldown_names, &opt->i_pulldown ), "Unknown pulldown `%s'\n", optarg )
1392                 break;
1393             case OPT_VIDEO_FILTER:
1394                 vid_filters = optarg;
1395                 break;
1396             case OPT_INPUT_FMT:
1397                 input_opt.format = optarg;
1398                 break;
1399             case OPT_INPUT_RES:
1400                 input_opt.resolution = optarg;
1401                 break;
1402             case OPT_INPUT_CSP:
1403                 input_opt.colorspace = optarg;
1404                 break;
1405             case OPT_INPUT_DEPTH:
1406                 input_opt.bit_depth = atoi( optarg );
1407                 break;
1408             case OPT_DTS_COMPRESSION:
1409                 output_opt.use_dts_compress = 1;
1410                 break;
1411             case OPT_OUTPUT_CSP:
1412                 FAIL_IF_ERROR( parse_enum_value( optarg, output_csp_names, &output_csp ), "Unknown output csp `%s'\n", optarg )
1413                 // correct the parsed value to the libx264 csp value
1414 #if X264_CHROMA_FORMAT
1415                 static const uint8_t output_csp_fix[] = { X264_CHROMA_FORMAT, X264_CSP_RGB };
1416 #else
1417                 static const uint8_t output_csp_fix[] = { X264_CSP_I420, X264_CSP_I422, X264_CSP_I444, X264_CSP_RGB };
1418 #endif
1419                 param->i_csp = output_csp = output_csp_fix[output_csp];
1420                 break;
1421             case OPT_INPUT_RANGE:
1422                 FAIL_IF_ERROR( parse_enum_value( optarg, range_names, &input_opt.input_range ), "Unknown input range `%s'\n", optarg )
1423                 input_opt.input_range += RANGE_AUTO;
1424                 break;
1425             case OPT_RANGE:
1426                 FAIL_IF_ERROR( parse_enum_value( optarg, range_names, &param->vui.b_fullrange ), "Unknown range `%s'\n", optarg );
1427                 input_opt.output_range = param->vui.b_fullrange += RANGE_AUTO;
1428                 break;
1429             default:
1430 generic_option:
1431             {
1432                 if( long_options_index < 0 )
1433                 {
1434                     for( int i = 0; long_options[i].name; i++ )
1435                         if( long_options[i].val == c )
1436                         {
1437                             long_options_index = i;
1438                             break;
1439                         }
1440                     if( long_options_index < 0 )
1441                     {
1442                         /* getopt_long already printed an error message */
1443                         return -1;
1444                     }
1445                 }
1446
1447                 b_error |= x264_param_parse( param, long_options[long_options_index].name, optarg );
1448             }
1449         }
1450
1451         if( b_error )
1452         {
1453             const char *name = long_options_index > 0 ? long_options[long_options_index].name : argv[optind-2];
1454             x264_cli_log( "x264", X264_LOG_ERROR, "invalid argument: %s = %s\n", name, optarg );
1455             return -1;
1456         }
1457     }
1458
1459     /* If first pass mode is used, apply faster settings. */
1460     if( b_turbo )
1461         x264_param_apply_fastfirstpass( param );
1462
1463     /* Apply profile restrictions. */
1464     if( x264_param_apply_profile( param, profile ) < 0 )
1465         return -1;
1466
1467     /* Get the file name */
1468     FAIL_IF_ERROR( optind > argc - 1 || !output_filename, "No %s file. Run x264 --help for a list of options.\n",
1469                    optind > argc - 1 ? "input" : "output" )
1470
1471     if( select_output( muxer, output_filename, param ) )
1472         return -1;
1473     FAIL_IF_ERROR( cli_output.open_file( output_filename, &opt->hout, &output_opt ), "could not open output file `%s'\n", output_filename )
1474
1475     input_filename = argv[optind++];
1476     video_info_t info = {0};
1477     char demuxername[5];
1478
1479     /* set info flags to be overwritten by demuxer as necessary. */
1480     info.csp        = param->i_csp;
1481     info.fps_num    = param->i_fps_num;
1482     info.fps_den    = param->i_fps_den;
1483     info.fullrange  = input_opt.input_range == RANGE_PC;
1484     info.interlaced = param->b_interlaced;
1485     info.sar_width  = param->vui.i_sar_width;
1486     info.sar_height = param->vui.i_sar_height;
1487     info.tff        = param->b_tff;
1488     info.vfr        = param->b_vfr_input;
1489
1490     input_opt.seek = opt->i_seek;
1491     input_opt.progress = opt->b_progress;
1492     input_opt.output_csp = output_csp;
1493
1494     if( select_input( demuxer, demuxername, input_filename, &opt->hin, &info, &input_opt ) )
1495         return -1;
1496
1497     FAIL_IF_ERROR( !opt->hin && cli_input.open_file( input_filename, &opt->hin, &info, &input_opt ),
1498                    "could not open input file `%s'\n", input_filename )
1499
1500     x264_reduce_fraction( &info.sar_width, &info.sar_height );
1501     x264_reduce_fraction( &info.fps_num, &info.fps_den );
1502     x264_cli_log( demuxername, X264_LOG_INFO, "%dx%d%c %d:%d @ %d/%d fps (%cfr)\n", info.width,
1503                   info.height, info.interlaced ? 'i' : 'p', info.sar_width, info.sar_height,
1504                   info.fps_num, info.fps_den, info.vfr ? 'v' : 'c' );
1505
1506     if( tcfile_name )
1507     {
1508         FAIL_IF_ERROR( b_user_fps, "--fps + --tcfile-in is incompatible.\n" )
1509         FAIL_IF_ERROR( timecode_input.open_file( tcfile_name, &opt->hin, &info, &input_opt ), "timecode input failed\n" )
1510         cli_input = timecode_input;
1511     }
1512     else FAIL_IF_ERROR( !info.vfr && input_opt.timebase, "--timebase is incompatible with cfr input\n" )
1513
1514     /* init threaded input while the information about the input video is unaltered by filtering */
1515 #if HAVE_THREAD
1516     if( info.thread_safe && (b_thread_input || param->i_threads > 1
1517         || (param->i_threads == X264_THREADS_AUTO && x264_cpu_num_processors() > 1)) )
1518     {
1519         if( thread_input.open_file( NULL, &opt->hin, &info, NULL ) )
1520         {
1521             fprintf( stderr, "x264 [error]: threaded input failed\n" );
1522             return -1;
1523         }
1524         cli_input = thread_input;
1525     }
1526 #endif
1527
1528     /* override detected values by those specified by the user */
1529     if( param->vui.i_sar_width && param->vui.i_sar_height )
1530     {
1531         info.sar_width  = param->vui.i_sar_width;
1532         info.sar_height = param->vui.i_sar_height;
1533     }
1534     if( b_user_fps )
1535     {
1536         info.fps_num = param->i_fps_num;
1537         info.fps_den = param->i_fps_den;
1538     }
1539     if( !info.vfr )
1540     {
1541         info.timebase_num = info.fps_den;
1542         info.timebase_den = info.fps_num;
1543     }
1544     if( !tcfile_name && input_opt.timebase )
1545     {
1546         uint64_t i_user_timebase_num;
1547         uint64_t i_user_timebase_den;
1548         int ret = sscanf( input_opt.timebase, "%"SCNu64"/%"SCNu64, &i_user_timebase_num, &i_user_timebase_den );
1549         FAIL_IF_ERROR( !ret, "invalid argument: timebase = %s\n", input_opt.timebase )
1550         else if( ret == 1 )
1551         {
1552             i_user_timebase_num = info.timebase_num;
1553             i_user_timebase_den = strtoul( input_opt.timebase, NULL, 10 );
1554         }
1555         FAIL_IF_ERROR( i_user_timebase_num > UINT32_MAX || i_user_timebase_den > UINT32_MAX,
1556                        "timebase you specified exceeds H.264 maximum\n" )
1557         opt->timebase_convert_multiplier = ((double)i_user_timebase_den / info.timebase_den)
1558                                          * ((double)info.timebase_num / i_user_timebase_num);
1559         info.timebase_num = i_user_timebase_num;
1560         info.timebase_den = i_user_timebase_den;
1561         info.vfr = 1;
1562     }
1563     if( b_user_interlaced )
1564     {
1565         info.interlaced = param->b_interlaced;
1566         info.tff = param->b_tff;
1567     }
1568     if( input_opt.input_range != RANGE_AUTO )
1569         info.fullrange = input_opt.input_range;
1570
1571     if( init_vid_filters( vid_filters, &opt->hin, &info, param, output_csp ) )
1572         return -1;
1573
1574     /* set param flags from the post-filtered video */
1575     param->b_vfr_input = info.vfr;
1576     param->i_fps_num = info.fps_num;
1577     param->i_fps_den = info.fps_den;
1578     param->i_timebase_num = info.timebase_num;
1579     param->i_timebase_den = info.timebase_den;
1580     param->vui.i_sar_width  = info.sar_width;
1581     param->vui.i_sar_height = info.sar_height;
1582
1583     info.num_frames = X264_MAX( info.num_frames - opt->i_seek, 0 );
1584     if( (!info.num_frames || param->i_frame_total < info.num_frames)
1585         && param->i_frame_total > 0 )
1586         info.num_frames = param->i_frame_total;
1587     param->i_frame_total = info.num_frames;
1588
1589     if( !b_user_interlaced && info.interlaced )
1590     {
1591 #if HAVE_INTERLACED
1592         x264_cli_log( "x264", X264_LOG_WARNING, "input appears to be interlaced, enabling %cff interlaced mode.\n"
1593                       "                If you want otherwise, use --no-interlaced or --%cff\n",
1594                       info.tff ? 't' : 'b', info.tff ? 'b' : 't' );
1595         param->b_interlaced = 1;
1596         param->b_tff = !!info.tff;
1597 #else
1598         x264_cli_log( "x264", X264_LOG_WARNING, "input appears to be interlaced, but not compiled with interlaced support\n" );
1599 #endif
1600     }
1601     /* if the user never specified the output range and the input is now rgb, default it to pc */
1602     int csp = param->i_csp & X264_CSP_MASK;
1603     if( csp >= X264_CSP_BGR && csp <= X264_CSP_RGB )
1604     {
1605         if( input_opt.output_range == RANGE_AUTO )
1606             param->vui.b_fullrange = RANGE_PC;
1607         /* otherwise fail if they specified tv */
1608         FAIL_IF_ERROR( !param->vui.b_fullrange, "RGB must be PC range" )
1609     }
1610
1611     /* Automatically reduce reference frame count to match the user's target level
1612      * if the user didn't explicitly set a reference frame count. */
1613     if( !b_user_ref )
1614     {
1615         int mbs = (((param->i_width)+15)>>4) * (((param->i_height)+15)>>4);
1616         for( int i = 0; x264_levels[i].level_idc != 0; i++ )
1617             if( param->i_level_idc == x264_levels[i].level_idc )
1618             {
1619                 while( mbs * 384 * param->i_frame_reference > x264_levels[i].dpb &&
1620                        param->i_frame_reference > 1 )
1621                 {
1622                     param->i_frame_reference--;
1623                 }
1624                 break;
1625             }
1626     }
1627
1628
1629     return 0;
1630 }
1631
1632 static void parse_qpfile( cli_opt_t *opt, x264_picture_t *pic, int i_frame )
1633 {
1634     int num = -1, qp, ret;
1635     char type;
1636     uint64_t file_pos;
1637     while( num < i_frame )
1638     {
1639         file_pos = ftell( opt->qpfile );
1640         qp = -1;
1641         ret = fscanf( opt->qpfile, "%d %c%*[ \t]%d\n", &num, &type, &qp );
1642         pic->i_type = X264_TYPE_AUTO;
1643         pic->i_qpplus1 = X264_QP_AUTO;
1644         if( num > i_frame || ret == EOF )
1645         {
1646             fseek( opt->qpfile, file_pos, SEEK_SET );
1647             break;
1648         }
1649         if( num < i_frame && ret >= 2 )
1650             continue;
1651         if( ret == 3 && qp >= 0 )
1652             pic->i_qpplus1 = qp+1;
1653         if     ( type == 'I' ) pic->i_type = X264_TYPE_IDR;
1654         else if( type == 'i' ) pic->i_type = X264_TYPE_I;
1655         else if( type == 'K' ) pic->i_type = X264_TYPE_KEYFRAME;
1656         else if( type == 'P' ) pic->i_type = X264_TYPE_P;
1657         else if( type == 'B' ) pic->i_type = X264_TYPE_BREF;
1658         else if( type == 'b' ) pic->i_type = X264_TYPE_B;
1659         else ret = 0;
1660         if( ret < 2 || qp < -1 || qp > QP_MAX )
1661         {
1662             x264_cli_log( "x264", X264_LOG_ERROR, "can't parse qpfile for frame %d\n", i_frame );
1663             fclose( opt->qpfile );
1664             opt->qpfile = NULL;
1665             break;
1666         }
1667     }
1668 }
1669
1670 static int encode_frame( x264_t *h, hnd_t hout, x264_picture_t *pic, int64_t *last_dts )
1671 {
1672     x264_picture_t pic_out;
1673     x264_nal_t *nal;
1674     int i_nal;
1675     int i_frame_size = 0;
1676
1677     i_frame_size = x264_encoder_encode( h, &nal, &i_nal, pic, &pic_out );
1678
1679     FAIL_IF_ERROR( i_frame_size < 0, "x264_encoder_encode failed\n" );
1680
1681     if( i_frame_size )
1682     {
1683         i_frame_size = cli_output.write_frame( hout, nal[0].p_payload, i_frame_size, &pic_out );
1684         *last_dts = pic_out.i_dts;
1685     }
1686
1687     return i_frame_size;
1688 }
1689
1690 static int64_t print_status( int64_t i_start, int64_t i_previous, int i_frame, int i_frame_total, int64_t i_file, x264_param_t *param, int64_t last_ts )
1691 {
1692     char buf[200];
1693     int64_t i_time = x264_mdate();
1694     if( i_previous && i_time - i_previous < UPDATE_INTERVAL )
1695         return i_previous;
1696     int64_t i_elapsed = i_time - i_start;
1697     double fps = i_elapsed > 0 ? i_frame * 1000000. / i_elapsed : 0;
1698     double bitrate;
1699     if( last_ts )
1700         bitrate = (double) i_file * 8 / ( (double) last_ts * 1000 * param->i_timebase_num / param->i_timebase_den );
1701     else
1702         bitrate = (double) i_file * 8 / ( (double) 1000 * param->i_fps_den / param->i_fps_num );
1703     if( i_frame_total )
1704     {
1705         int eta = i_elapsed * (i_frame_total - i_frame) / ((int64_t)i_frame * 1000000);
1706         sprintf( buf, "x264 [%.1f%%] %d/%d frames, %.2f fps, %.2f kb/s, eta %d:%02d:%02d",
1707                  100. * i_frame / i_frame_total, i_frame, i_frame_total, fps, bitrate,
1708                  eta/3600, (eta/60)%60, eta%60 );
1709     }
1710     else
1711     {
1712         sprintf( buf, "x264 %d frames: %.2f fps, %.2f kb/s", i_frame, fps, bitrate );
1713     }
1714     fprintf( stderr, "%s  \r", buf+5 );
1715     SetConsoleTitle( buf );
1716     fflush( stderr ); // needed in windows
1717     return i_time;
1718 }
1719
1720 static void convert_cli_to_lib_pic( x264_picture_t *lib, cli_pic_t *cli )
1721 {
1722     memcpy( lib->img.i_stride, cli->img.stride, sizeof(cli->img.stride) );
1723     memcpy( lib->img.plane, cli->img.plane, sizeof(cli->img.plane) );
1724     lib->img.i_plane = cli->img.planes;
1725     lib->img.i_csp = cli->img.csp;
1726     lib->i_pts = cli->pts;
1727 }
1728
1729 #define FAIL_IF_ERROR2( cond, ... )\
1730 if( cond )\
1731 {\
1732     x264_cli_log( "x264", X264_LOG_ERROR, __VA_ARGS__ );\
1733     retval = -1;\
1734     goto fail;\
1735 }
1736
1737 static int encode( x264_param_t *param, cli_opt_t *opt )
1738 {
1739     x264_t *h = NULL;
1740     x264_picture_t pic;
1741     cli_pic_t cli_pic;
1742     const cli_pulldown_t *pulldown = NULL; // shut up gcc
1743
1744     int     i_frame = 0;
1745     int     i_frame_output = 0;
1746     int64_t i_end, i_previous = 0, i_start = 0;
1747     int64_t i_file = 0;
1748     int     i_frame_size;
1749     int64_t last_dts = 0;
1750     int64_t prev_dts = 0;
1751     int64_t first_dts = 0;
1752 #   define  MAX_PTS_WARNING 3 /* arbitrary */
1753     int     pts_warning_cnt = 0;
1754     int64_t largest_pts = -1;
1755     int64_t second_largest_pts = -1;
1756     int64_t ticks_per_frame;
1757     double  duration;
1758     double  pulldown_pts = 0;
1759     int     retval = 0;
1760
1761     opt->b_progress &= param->i_log_level < X264_LOG_DEBUG;
1762
1763     /* set up pulldown */
1764     if( opt->i_pulldown && !param->b_vfr_input )
1765     {
1766         param->b_pulldown = 1;
1767         param->b_pic_struct = 1;
1768         pulldown = &pulldown_values[opt->i_pulldown];
1769         param->i_timebase_num = param->i_fps_den;
1770         FAIL_IF_ERROR2( fmod( param->i_fps_num * pulldown->fps_factor, 1 ),
1771                         "unsupported framerate for chosen pulldown\n" )
1772         param->i_timebase_den = param->i_fps_num * pulldown->fps_factor;
1773     }
1774
1775     h = x264_encoder_open( param );
1776     FAIL_IF_ERROR2( !h, "x264_encoder_open failed\n" );
1777
1778     x264_encoder_parameters( h, param );
1779
1780     FAIL_IF_ERROR2( cli_output.set_param( opt->hout, param ), "can't set outfile param\n" );
1781
1782     i_start = x264_mdate();
1783
1784     /* ticks/frame = ticks/second / frames/second */
1785     ticks_per_frame = (int64_t)param->i_timebase_den * param->i_fps_den / param->i_timebase_num / param->i_fps_num;
1786     FAIL_IF_ERROR2( ticks_per_frame < 1 && !param->b_vfr_input, "ticks_per_frame invalid: %"PRId64"\n", ticks_per_frame )
1787     ticks_per_frame = X264_MAX( ticks_per_frame, 1 );
1788
1789     if( !param->b_repeat_headers )
1790     {
1791         // Write SPS/PPS/SEI
1792         x264_nal_t *headers;
1793         int i_nal;
1794
1795         FAIL_IF_ERROR2( x264_encoder_headers( h, &headers, &i_nal ) < 0, "x264_encoder_headers failed\n" )
1796         FAIL_IF_ERROR2( (i_file = cli_output.write_headers( opt->hout, headers )) < 0, "error writing headers to output file\n" );
1797     }
1798
1799     if( opt->tcfile_out )
1800         fprintf( opt->tcfile_out, "# timecode format v2\n" );
1801
1802     /* Encode frames */
1803     for( ; !b_ctrl_c && (i_frame < param->i_frame_total || !param->i_frame_total); i_frame++ )
1804     {
1805         if( filter.get_frame( opt->hin, &cli_pic, i_frame + opt->i_seek ) )
1806             break;
1807         x264_picture_init( &pic );
1808         convert_cli_to_lib_pic( &pic, &cli_pic );
1809
1810         if( !param->b_vfr_input )
1811             pic.i_pts = i_frame;
1812
1813         if( opt->i_pulldown && !param->b_vfr_input )
1814         {
1815             pic.i_pic_struct = pulldown->pattern[ i_frame % pulldown->mod ];
1816             pic.i_pts = (int64_t)( pulldown_pts + 0.5 );
1817             pulldown_pts += pulldown_frame_duration[pic.i_pic_struct];
1818         }
1819         else if( opt->timebase_convert_multiplier )
1820             pic.i_pts = (int64_t)( pic.i_pts * opt->timebase_convert_multiplier + 0.5 );
1821
1822         if( pic.i_pts <= largest_pts )
1823         {
1824             if( cli_log_level >= X264_LOG_DEBUG || pts_warning_cnt < MAX_PTS_WARNING )
1825                 x264_cli_log( "x264", X264_LOG_WARNING, "non-strictly-monotonic pts at frame %d (%"PRId64" <= %"PRId64")\n",
1826                              i_frame, pic.i_pts, largest_pts );
1827             else if( pts_warning_cnt == MAX_PTS_WARNING )
1828                 x264_cli_log( "x264", X264_LOG_WARNING, "too many nonmonotonic pts warnings, suppressing further ones\n" );
1829             pts_warning_cnt++;
1830             pic.i_pts = largest_pts + ticks_per_frame;
1831         }
1832
1833         second_largest_pts = largest_pts;
1834         largest_pts = pic.i_pts;
1835         if( opt->tcfile_out )
1836             fprintf( opt->tcfile_out, "%.6f\n", pic.i_pts * ((double)param->i_timebase_num / param->i_timebase_den) * 1e3 );
1837
1838         if( opt->qpfile )
1839             parse_qpfile( opt, &pic, i_frame + opt->i_seek );
1840
1841         prev_dts = last_dts;
1842         i_frame_size = encode_frame( h, opt->hout, &pic, &last_dts );
1843         if( i_frame_size < 0 )
1844         {
1845             b_ctrl_c = 1; /* lie to exit the loop */
1846             retval = -1;
1847         }
1848         else if( i_frame_size )
1849         {
1850             i_file += i_frame_size;
1851             i_frame_output++;
1852             if( i_frame_output == 1 )
1853                 first_dts = prev_dts = last_dts;
1854         }
1855
1856         if( filter.release_frame( opt->hin, &cli_pic, i_frame + opt->i_seek ) )
1857             break;
1858
1859         /* update status line (up to 1000 times per input file) */
1860         if( opt->b_progress && i_frame_output )
1861             i_previous = print_status( i_start, i_previous, i_frame_output, param->i_frame_total, i_file, param, 2 * last_dts - prev_dts - first_dts );
1862     }
1863     /* Flush delayed frames */
1864     while( !b_ctrl_c && x264_encoder_delayed_frames( h ) )
1865     {
1866         prev_dts = last_dts;
1867         i_frame_size = encode_frame( h, opt->hout, NULL, &last_dts );
1868         if( i_frame_size < 0 )
1869         {
1870             b_ctrl_c = 1; /* lie to exit the loop */
1871             retval = -1;
1872         }
1873         else if( i_frame_size )
1874         {
1875             i_file += i_frame_size;
1876             i_frame_output++;
1877             if( i_frame_output == 1 )
1878                 first_dts = prev_dts = last_dts;
1879         }
1880         if( opt->b_progress && i_frame_output )
1881             i_previous = print_status( i_start, i_previous, i_frame_output, param->i_frame_total, i_file, param, 2 * last_dts - prev_dts - first_dts );
1882     }
1883 fail:
1884     if( pts_warning_cnt >= MAX_PTS_WARNING && cli_log_level < X264_LOG_DEBUG )
1885         x264_cli_log( "x264", X264_LOG_WARNING, "%d suppressed nonmonotonic pts warnings\n", pts_warning_cnt-MAX_PTS_WARNING );
1886
1887     /* duration algorithm fails when only 1 frame is output */
1888     if( i_frame_output == 1 )
1889         duration = (double)param->i_fps_den / param->i_fps_num;
1890     else if( b_ctrl_c )
1891         duration = (double)(2 * last_dts - prev_dts - first_dts) * param->i_timebase_num / param->i_timebase_den;
1892     else
1893         duration = (double)(2 * largest_pts - second_largest_pts) * param->i_timebase_num / param->i_timebase_den;
1894
1895     i_end = x264_mdate();
1896     /* Erase progress indicator before printing encoding stats. */
1897     if( opt->b_progress )
1898         fprintf( stderr, "                                                                               \r" );
1899     if( h )
1900         x264_encoder_close( h );
1901     fprintf( stderr, "\n" );
1902
1903     if( b_ctrl_c )
1904         fprintf( stderr, "aborted at input frame %d, output frame %d\n", opt->i_seek + i_frame, i_frame_output );
1905
1906     cli_output.close_file( opt->hout, largest_pts, second_largest_pts );
1907     opt->hout = NULL;
1908
1909     if( i_frame_output > 0 )
1910     {
1911         double fps = (double)i_frame_output * (double)1000000 /
1912                      (double)( i_end - i_start );
1913
1914         fprintf( stderr, "encoded %d frames, %.2f fps, %.2f kb/s\n", i_frame_output, fps,
1915                  (double) i_file * 8 / ( 1000 * duration ) );
1916     }
1917
1918     return retval;
1919 }