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