]> git.sesse.net Git - x264/blob - x264.c
Support custom cropping rectangles
[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     H2( "      --crop-rect <string>    Add 'left,top,right,bottom' to the bitstream-level\n"
684         "                              cropping rectangle\n" );
685
686     H0( "\n" );
687     H0( "Input/Output:\n" );
688     H0( "\n" );
689     H0( "  -o, --output                Specify output file\n" );
690     H1( "      --muxer <string>        Specify output container format [\"%s\"]\n"
691         "                                  - %s\n", muxer_names[0], stringify_names( buf, muxer_names ) );
692     H1( "      --demuxer <string>      Specify input container format [\"%s\"]\n"
693         "                                  - %s\n", demuxer_names[0], stringify_names( buf, demuxer_names ) );
694     H1( "      --input-csp <string>    Specify input colorspace format for raw input\n" );
695     print_csp_names( longhelp );
696     H1( "      --input-depth <integer> Specify input bit depth for raw input\n" );
697     H1( "      --input-res <intxint>   Specify input resolution (width x height)\n" );
698     H1( "      --index <string>        Filename for input index file\n" );
699     H0( "      --sar width:height      Specify Sample Aspect Ratio\n" );
700     H0( "      --fps <float|rational>  Specify framerate\n" );
701     H0( "      --seek <integer>        First frame to encode\n" );
702     H0( "      --frames <integer>      Maximum number of frames to encode\n" );
703     H0( "      --level <string>        Specify level (as defined by Annex A)\n" );
704     H1( "\n" );
705     H1( "  -v, --verbose               Print stats for each frame\n" );
706     H1( "      --no-progress           Don't show the progress indicator while encoding\n" );
707     H0( "      --quiet                 Quiet Mode\n" );
708     H1( "      --log-level <string>    Specify the maximum level of logging [\"%s\"]\n"
709         "                                  - %s\n", strtable_lookup( log_level_names, cli_log_level - X264_LOG_NONE ),
710                                        stringify_names( buf, log_level_names ) );
711     H1( "      --psnr                  Enable PSNR computation\n" );
712     H1( "      --ssim                  Enable SSIM computation\n" );
713     H1( "      --threads <integer>     Force a specific number of threads\n" );
714     H2( "      --sliced-threads        Low-latency but lower-efficiency threading\n" );
715     H2( "      --thread-input          Run Avisynth in its own thread\n" );
716     H2( "      --sync-lookahead <integer> Number of buffer frames for threaded lookahead\n" );
717     H2( "      --non-deterministic     Slightly improve quality of SMP, at the cost of repeatability\n" );
718     H2( "      --asm <integer>         Override CPU detection\n" );
719     H2( "      --no-asm                Disable all CPU optimizations\n" );
720     H2( "      --visualize             Show MB types overlayed on the encoded video\n" );
721     H2( "      --dump-yuv <string>     Save reconstructed frames\n" );
722     H2( "      --sps-id <integer>      Set SPS and PPS id numbers [%d]\n", defaults->i_sps_id );
723     H2( "      --aud                   Use access unit delimiters\n" );
724     H2( "      --force-cfr             Force constant framerate timestamp generation\n" );
725     H2( "      --tcfile-in <string>    Force timestamp generation with timecode file\n" );
726     H2( "      --tcfile-out <string>   Output timecode v2 file from input timestamps\n" );
727     H2( "      --timebase <int/int>    Specify timebase numerator and denominator\n"
728         "                 <integer>    Specify timebase numerator for input timecode file\n"
729         "                              or specify timebase denominator for other input\n" );
730     H2( "      --dts-compress          Eliminate initial delay with container DTS hack\n" );
731     H0( "\n" );
732     H0( "Filtering:\n" );
733     H0( "\n" );
734     H0( "      --vf, --video-filter <filter0>/<filter1>/... Apply video filtering to the input file\n" );
735     H0( "\n" );
736     H0( "      Filter options may be specified in <filter>:<option>=<value> format.\n" );
737     H0( "\n" );
738     H0( "      Available filters:\n" );
739     x264_register_vid_filters();
740     x264_vid_filter_help( longhelp );
741     H0( "\n" );
742 }
743
744 enum
745 {
746     OPT_FRAMES = 256,
747     OPT_SEEK,
748     OPT_QPFILE,
749     OPT_THREAD_INPUT,
750     OPT_QUIET,
751     OPT_NOPROGRESS,
752     OPT_VISUALIZE,
753     OPT_LONGHELP,
754     OPT_PROFILE,
755     OPT_PRESET,
756     OPT_TUNE,
757     OPT_SLOWFIRSTPASS,
758     OPT_FULLHELP,
759     OPT_FPS,
760     OPT_MUXER,
761     OPT_DEMUXER,
762     OPT_INDEX,
763     OPT_INTERLACED,
764     OPT_TCFILE_IN,
765     OPT_TCFILE_OUT,
766     OPT_TIMEBASE,
767     OPT_PULLDOWN,
768     OPT_LOG_LEVEL,
769     OPT_VIDEO_FILTER,
770     OPT_INPUT_RES,
771     OPT_INPUT_CSP,
772     OPT_INPUT_DEPTH,
773     OPT_DTS_COMPRESSION
774 } OptionsOPT;
775
776 static char short_options[] = "8A:B:b:f:hI:i:m:o:p:q:r:t:Vvw";
777 static struct option long_options[] =
778 {
779     { "help",              no_argument, NULL, 'h' },
780     { "longhelp",          no_argument, NULL, OPT_LONGHELP },
781     { "fullhelp",          no_argument, NULL, OPT_FULLHELP },
782     { "version",           no_argument, NULL, 'V' },
783     { "profile",     required_argument, NULL, OPT_PROFILE },
784     { "preset",      required_argument, NULL, OPT_PRESET },
785     { "tune",        required_argument, NULL, OPT_TUNE },
786     { "slow-firstpass",    no_argument, NULL, OPT_SLOWFIRSTPASS },
787     { "bitrate",     required_argument, NULL, 'B' },
788     { "bframes",     required_argument, NULL, 'b' },
789     { "b-adapt",     required_argument, NULL, 0 },
790     { "no-b-adapt",        no_argument, NULL, 0 },
791     { "b-bias",      required_argument, NULL, 0 },
792     { "b-pyramid",   required_argument, NULL, 0 },
793     { "open-gop",    required_argument, NULL, 0 },
794     { "min-keyint",  required_argument, NULL, 'i' },
795     { "keyint",      required_argument, NULL, 'I' },
796     { "intra-refresh",     no_argument, NULL, 0 },
797     { "scenecut",    required_argument, NULL, 0 },
798     { "no-scenecut",       no_argument, NULL, 0 },
799     { "nf",                no_argument, NULL, 0 },
800     { "no-deblock",        no_argument, NULL, 0 },
801     { "filter",      required_argument, NULL, 0 },
802     { "deblock",     required_argument, NULL, 'f' },
803     { "interlaced",        no_argument, NULL, OPT_INTERLACED },
804     { "tff",               no_argument, NULL, OPT_INTERLACED },
805     { "bff",               no_argument, NULL, OPT_INTERLACED },
806     { "no-interlaced",     no_argument, NULL, OPT_INTERLACED },
807     { "constrained-intra", no_argument, NULL, 0 },
808     { "cabac",             no_argument, NULL, 0 },
809     { "no-cabac",          no_argument, NULL, 0 },
810     { "qp",          required_argument, NULL, 'q' },
811     { "qpmin",       required_argument, NULL, 0 },
812     { "qpmax",       required_argument, NULL, 0 },
813     { "qpstep",      required_argument, NULL, 0 },
814     { "crf",         required_argument, NULL, 0 },
815     { "rc-lookahead",required_argument, NULL, 0 },
816     { "ref",         required_argument, NULL, 'r' },
817     { "asm",         required_argument, NULL, 0 },
818     { "no-asm",            no_argument, NULL, 0 },
819     { "sar",         required_argument, NULL, 0 },
820     { "fps",         required_argument, NULL, OPT_FPS },
821     { "frames",      required_argument, NULL, OPT_FRAMES },
822     { "seek",        required_argument, NULL, OPT_SEEK },
823     { "output",      required_argument, NULL, 'o' },
824     { "muxer",       required_argument, NULL, OPT_MUXER },
825     { "demuxer",     required_argument, NULL, OPT_DEMUXER },
826     { "stdout",      required_argument, NULL, OPT_MUXER },
827     { "stdin",       required_argument, NULL, OPT_DEMUXER },
828     { "index",       required_argument, NULL, OPT_INDEX },
829     { "analyse",     required_argument, NULL, 0 },
830     { "partitions",  required_argument, NULL, 'A' },
831     { "direct",      required_argument, NULL, 0 },
832     { "weightb",           no_argument, NULL, 'w' },
833     { "no-weightb",        no_argument, NULL, 0 },
834     { "weightp",     required_argument, NULL, 0 },
835     { "me",          required_argument, NULL, 0 },
836     { "merange",     required_argument, NULL, 0 },
837     { "mvrange",     required_argument, NULL, 0 },
838     { "mvrange-thread", required_argument, NULL, 0 },
839     { "subme",       required_argument, NULL, 'm' },
840     { "psy-rd",      required_argument, NULL, 0 },
841     { "no-psy",            no_argument, NULL, 0 },
842     { "psy",               no_argument, NULL, 0 },
843     { "mixed-refs",        no_argument, NULL, 0 },
844     { "no-mixed-refs",     no_argument, NULL, 0 },
845     { "no-chroma-me",      no_argument, NULL, 0 },
846     { "8x8dct",            no_argument, NULL, '8' },
847     { "no-8x8dct",         no_argument, NULL, 0 },
848     { "trellis",     required_argument, NULL, 't' },
849     { "fast-pskip",        no_argument, NULL, 0 },
850     { "no-fast-pskip",     no_argument, NULL, 0 },
851     { "no-dct-decimate",   no_argument, NULL, 0 },
852     { "aq-strength", required_argument, NULL, 0 },
853     { "aq-mode",     required_argument, NULL, 0 },
854     { "deadzone-inter", required_argument, NULL, 0 },
855     { "deadzone-intra", required_argument, NULL, 0 },
856     { "level",       required_argument, NULL, 0 },
857     { "ratetol",     required_argument, NULL, 0 },
858     { "vbv-maxrate", required_argument, NULL, 0 },
859     { "vbv-bufsize", required_argument, NULL, 0 },
860     { "vbv-init",    required_argument, NULL, 0 },
861     { "crf-max",     required_argument, NULL, 0 },
862     { "ipratio",     required_argument, NULL, 0 },
863     { "pbratio",     required_argument, NULL, 0 },
864     { "chroma-qp-offset", required_argument, NULL, 0 },
865     { "pass",        required_argument, NULL, 'p' },
866     { "stats",       required_argument, NULL, 0 },
867     { "qcomp",       required_argument, NULL, 0 },
868     { "mbtree",            no_argument, NULL, 0 },
869     { "no-mbtree",         no_argument, NULL, 0 },
870     { "qblur",       required_argument, NULL, 0 },
871     { "cplxblur",    required_argument, NULL, 0 },
872     { "zones",       required_argument, NULL, 0 },
873     { "qpfile",      required_argument, NULL, OPT_QPFILE },
874     { "threads",     required_argument, NULL, 0 },
875     { "sliced-threads",    no_argument, NULL, 0 },
876     { "no-sliced-threads", no_argument, NULL, 0 },
877     { "slice-max-size",    required_argument, NULL, 0 },
878     { "slice-max-mbs",     required_argument, NULL, 0 },
879     { "slices",            required_argument, NULL, 0 },
880     { "thread-input",      no_argument, NULL, OPT_THREAD_INPUT },
881     { "sync-lookahead",    required_argument, NULL, 0 },
882     { "non-deterministic", no_argument, NULL, 0 },
883     { "psnr",              no_argument, NULL, 0 },
884     { "ssim",              no_argument, NULL, 0 },
885     { "quiet",             no_argument, NULL, OPT_QUIET },
886     { "verbose",           no_argument, NULL, 'v' },
887     { "log-level",   required_argument, NULL, OPT_LOG_LEVEL },
888     { "no-progress",       no_argument, NULL, OPT_NOPROGRESS },
889     { "visualize",         no_argument, NULL, OPT_VISUALIZE },
890     { "dump-yuv",    required_argument, NULL, 0 },
891     { "sps-id",      required_argument, NULL, 0 },
892     { "aud",               no_argument, NULL, 0 },
893     { "nr",          required_argument, NULL, 0 },
894     { "cqm",         required_argument, NULL, 0 },
895     { "cqmfile",     required_argument, NULL, 0 },
896     { "cqm4",        required_argument, NULL, 0 },
897     { "cqm4i",       required_argument, NULL, 0 },
898     { "cqm4iy",      required_argument, NULL, 0 },
899     { "cqm4ic",      required_argument, NULL, 0 },
900     { "cqm4p",       required_argument, NULL, 0 },
901     { "cqm4py",      required_argument, NULL, 0 },
902     { "cqm4pc",      required_argument, NULL, 0 },
903     { "cqm8",        required_argument, NULL, 0 },
904     { "cqm8i",       required_argument, NULL, 0 },
905     { "cqm8p",       required_argument, NULL, 0 },
906     { "overscan",    required_argument, NULL, 0 },
907     { "videoformat", required_argument, NULL, 0 },
908     { "fullrange",   required_argument, NULL, 0 },
909     { "colorprim",   required_argument, NULL, 0 },
910     { "transfer",    required_argument, NULL, 0 },
911     { "colormatrix", required_argument, NULL, 0 },
912     { "chromaloc",   required_argument, NULL, 0 },
913     { "force-cfr",         no_argument, NULL, 0 },
914     { "tcfile-in",   required_argument, NULL, OPT_TCFILE_IN },
915     { "tcfile-out",  required_argument, NULL, OPT_TCFILE_OUT },
916     { "timebase",    required_argument, NULL, OPT_TIMEBASE },
917     { "pic-struct",        no_argument, NULL, 0 },
918     { "crop-rect",   required_argument, NULL, 0 },
919     { "nal-hrd",     required_argument, NULL, 0 },
920     { "pulldown",    required_argument, NULL, OPT_PULLDOWN },
921     { "fake-interlaced",   no_argument, NULL, 0 },
922     { "vf",          required_argument, NULL, OPT_VIDEO_FILTER },
923     { "video-filter", required_argument, NULL, OPT_VIDEO_FILTER },
924     { "input-res",   required_argument, NULL, OPT_INPUT_RES },
925     { "input-csp",   required_argument, NULL, OPT_INPUT_CSP },
926     { "input-depth", required_argument, NULL, OPT_INPUT_DEPTH },
927     { "dts-compress",      no_argument, NULL, OPT_DTS_COMPRESSION },
928     {0, 0, 0, 0}
929 };
930
931 static int select_output( const char *muxer, char *filename, x264_param_t *param )
932 {
933     const char *ext = get_filename_extension( filename );
934     if( !strcmp( filename, "-" ) || strcasecmp( muxer, "auto" ) )
935         ext = muxer;
936
937     if( !strcasecmp( ext, "mp4" ) )
938     {
939 #if HAVE_GPAC
940         output = mp4_output;
941         param->b_annexb = 0;
942         param->b_repeat_headers = 0;
943         if( param->i_nal_hrd == X264_NAL_HRD_CBR )
944         {
945             x264_cli_log( "x264", X264_LOG_WARNING, "cbr nal-hrd is not compatible with mp4\n" );
946             param->i_nal_hrd = X264_NAL_HRD_VBR;
947         }
948 #else
949         x264_cli_log( "x264", X264_LOG_ERROR, "not compiled with MP4 output support\n" );
950         return -1;
951 #endif
952     }
953     else if( !strcasecmp( ext, "mkv" ) )
954     {
955         output = mkv_output;
956         param->b_annexb = 0;
957         param->b_repeat_headers = 0;
958     }
959     else if( !strcasecmp( ext, "flv" ) )
960     {
961         output = flv_output;
962         param->b_annexb = 0;
963         param->b_repeat_headers = 0;
964     }
965     else
966         output = raw_output;
967     return 0;
968 }
969
970 static int select_input( const char *demuxer, char *used_demuxer, char *filename,
971                          hnd_t *p_handle, video_info_t *info, cli_input_opt_t *opt )
972 {
973     int b_auto = !strcasecmp( demuxer, "auto" );
974     const char *ext = b_auto ? get_filename_extension( filename ) : "";
975     int b_regular = strcmp( filename, "-" );
976     if( !b_regular && b_auto )
977         ext = "raw";
978     b_regular = b_regular && x264_is_regular_file_path( filename );
979     if( b_regular )
980     {
981         FILE *f = fopen( filename, "r" );
982         if( f )
983         {
984             b_regular = x264_is_regular_file( f );
985             fclose( f );
986         }
987     }
988     const char *module = b_auto ? ext : demuxer;
989
990     if( !strcasecmp( module, "avs" ) || !strcasecmp( ext, "d2v" ) || !strcasecmp( ext, "dga" ) )
991     {
992 #if HAVE_AVS
993         input = avs_input;
994         module = "avs";
995 #else
996         x264_cli_log( "x264", X264_LOG_ERROR, "not compiled with AVS input support\n" );
997         return -1;
998 #endif
999     }
1000     else if( !strcasecmp( module, "y4m" ) )
1001         input = y4m_input;
1002     else if( !strcasecmp( module, "raw" ) || !strcasecmp( ext, "yuv" ) )
1003         input = raw_input;
1004     else
1005     {
1006 #if HAVE_FFMS
1007         if( b_regular && (b_auto || !strcasecmp( demuxer, "ffms" )) &&
1008             !ffms_input.open_file( filename, p_handle, info, opt ) )
1009         {
1010             module = "ffms";
1011             b_auto = 0;
1012             input = ffms_input;
1013         }
1014 #endif
1015 #if HAVE_LAVF
1016         if( (b_auto || !strcasecmp( demuxer, "lavf" )) &&
1017             !lavf_input.open_file( filename, p_handle, info, opt ) )
1018         {
1019             module = "lavf";
1020             b_auto = 0;
1021             input = lavf_input;
1022         }
1023 #endif
1024 #if HAVE_AVS
1025         if( b_regular && (b_auto || !strcasecmp( demuxer, "avs" )) &&
1026             !avs_input.open_file( filename, p_handle, info, opt ) )
1027         {
1028             module = "avs";
1029             b_auto = 0;
1030             input = avs_input;
1031         }
1032 #endif
1033         if( b_auto && !raw_input.open_file( filename, p_handle, info, opt ) )
1034         {
1035             module = "raw";
1036             b_auto = 0;
1037             input = raw_input;
1038         }
1039
1040         FAIL_IF_ERROR( !(*p_handle), "could not open input file `%s' via any method!\n", filename )
1041     }
1042     strcpy( used_demuxer, module );
1043
1044     return 0;
1045 }
1046
1047 static int init_vid_filters( char *sequence, hnd_t *handle, video_info_t *info, x264_param_t *param )
1048 {
1049     x264_register_vid_filters();
1050
1051     /* intialize baseline filters */
1052     if( x264_init_vid_filter( "source", handle, &filter, info, param, NULL ) ) /* wrap demuxer into a filter */
1053         return -1;
1054     if( x264_init_vid_filter( "resize", handle, &filter, info, param, "normcsp" ) ) /* normalize csps to be of a known/supported format */
1055         return -1;
1056     if( x264_init_vid_filter( "fix_vfr_pts", handle, &filter, info, param, NULL ) ) /* fix vfr pts */
1057         return -1;
1058
1059     /* parse filter chain */
1060     for( char *p = sequence; p && *p; )
1061     {
1062         int tok_len = strcspn( p, "/" );
1063         int p_len = strlen( p );
1064         p[tok_len] = 0;
1065         int name_len = strcspn( p, ":" );
1066         p[name_len] = 0;
1067         name_len += name_len != tok_len;
1068         if( x264_init_vid_filter( p, handle, &filter, info, param, p + name_len ) )
1069             return -1;
1070         p += X264_MIN( tok_len+1, p_len );
1071     }
1072
1073     /* force end result resolution */
1074     if( !param->i_width && !param->i_height )
1075     {
1076         param->i_height = info->height;
1077         param->i_width  = info->width;
1078     }
1079     /* if the current csp is supported by libx264, have libx264 use this csp.
1080      * otherwise change the csp to I420 and have libx264 use this.
1081      * when more colorspaces are supported, this decision will need to be updated. */
1082     int csp = info->csp & X264_CSP_MASK;
1083     if( csp > X264_CSP_NONE && csp < X264_CSP_MAX )
1084         param->i_csp = info->csp;
1085     else
1086         param->i_csp = X264_CSP_I420 | ( info->csp & X264_CSP_HIGH_DEPTH );
1087     if( x264_init_vid_filter( "resize", handle, &filter, info, param, NULL ) )
1088         return -1;
1089
1090     char args[20];
1091     sprintf( args, "bit_depth=%d", x264_bit_depth );
1092
1093     if( x264_init_vid_filter( "depth", handle, &filter, info, param, args ) )
1094         return -1;
1095
1096     return 0;
1097 }
1098
1099 static int parse_enum_name( const char *arg, const char * const *names, const char **dst )
1100 {
1101     for( int i = 0; names[i]; i++ )
1102         if( !strcasecmp( arg, names[i] ) )
1103         {
1104             *dst = names[i];
1105             return 0;
1106         }
1107     return -1;
1108 }
1109
1110 static int parse_enum_value( const char *arg, const char * const *names, int *dst )
1111 {
1112     for( int i = 0; names[i]; i++ )
1113         if( !strcasecmp( arg, names[i] ) )
1114         {
1115             *dst = i;
1116             return 0;
1117         }
1118     return -1;
1119 }
1120
1121 static int parse( int argc, char **argv, x264_param_t *param, cli_opt_t *opt )
1122 {
1123     char *input_filename = NULL;
1124     const char *demuxer = demuxer_names[0];
1125     char *output_filename = NULL;
1126     const char *muxer = muxer_names[0];
1127     char *tcfile_name = NULL;
1128     x264_param_t defaults;
1129     char *profile = NULL;
1130     char *vid_filters = NULL;
1131     int b_thread_input = 0;
1132     int b_turbo = 1;
1133     int b_user_ref = 0;
1134     int b_user_fps = 0;
1135     int b_user_interlaced = 0;
1136     cli_input_opt_t input_opt;
1137     cli_output_opt_t output_opt;
1138     char *preset = NULL;
1139     char *tune = NULL;
1140
1141     x264_param_default( &defaults );
1142     cli_log_level = defaults.i_log_level;
1143
1144     memset( opt, 0, sizeof(cli_opt_t) );
1145     memset( &input_opt, 0, sizeof(cli_input_opt_t) );
1146     memset( &output_opt, 0, sizeof(cli_output_opt_t) );
1147     input_opt.bit_depth = 8;
1148     opt->b_progress = 1;
1149
1150     /* Presets are applied before all other options. */
1151     for( optind = 0;; )
1152     {
1153         int c = getopt_long( argc, argv, short_options, long_options, NULL );
1154         if( c == -1 )
1155             break;
1156         if( c == OPT_PRESET )
1157             preset = optarg;
1158         if( c == OPT_TUNE )
1159             tune = optarg;
1160         else if( c == '?' )
1161             return -1;
1162     }
1163
1164     if( preset && !strcasecmp( preset, "placebo" ) )
1165         b_turbo = 0;
1166
1167     if( x264_param_default_preset( param, preset, tune ) < 0 )
1168         return -1;
1169
1170     /* Parse command line options */
1171     for( optind = 0;; )
1172     {
1173         int b_error = 0;
1174         int long_options_index = -1;
1175
1176         int c = getopt_long( argc, argv, short_options, long_options, &long_options_index );
1177
1178         if( c == -1 )
1179         {
1180             break;
1181         }
1182
1183         switch( c )
1184         {
1185             case 'h':
1186                 help( &defaults, 0 );
1187                 exit(0);
1188             case OPT_LONGHELP:
1189                 help( &defaults, 1 );
1190                 exit(0);
1191             case OPT_FULLHELP:
1192                 help( &defaults, 2 );
1193                 exit(0);
1194             case 'V':
1195                 print_version_info();
1196                 exit(0);
1197             case OPT_FRAMES:
1198                 param->i_frame_total = X264_MAX( atoi( optarg ), 0 );
1199                 break;
1200             case OPT_SEEK:
1201                 opt->i_seek = input_opt.seek = X264_MAX( atoi( optarg ), 0 );
1202                 break;
1203             case 'o':
1204                 output_filename = optarg;
1205                 break;
1206             case OPT_MUXER:
1207                 FAIL_IF_ERROR( parse_enum_name( optarg, muxer_names, &muxer ), "Unknown muxer `%s'\n", optarg )
1208                 break;
1209             case OPT_DEMUXER:
1210                 FAIL_IF_ERROR( parse_enum_name( optarg, demuxer_names, &demuxer ), "Unknown demuxer `%s'\n", optarg )
1211                 break;
1212             case OPT_INDEX:
1213                 input_opt.index_file = optarg;
1214                 break;
1215             case OPT_QPFILE:
1216                 opt->qpfile = fopen( optarg, "rb" );
1217                 FAIL_IF_ERROR( !opt->qpfile, "can't open qpfile `%s'\n", optarg )
1218                 if( !x264_is_regular_file( opt->qpfile ) )
1219                 {
1220                     x264_cli_log( "x264", X264_LOG_ERROR, "qpfile incompatible with non-regular file `%s'\n", optarg );
1221                     fclose( opt->qpfile );
1222                     return -1;
1223                 }
1224                 break;
1225             case OPT_THREAD_INPUT:
1226                 b_thread_input = 1;
1227                 break;
1228             case OPT_QUIET:
1229                 cli_log_level = param->i_log_level = X264_LOG_NONE;
1230                 break;
1231             case 'v':
1232                 cli_log_level = param->i_log_level = X264_LOG_DEBUG;
1233                 break;
1234             case OPT_LOG_LEVEL:
1235                 if( !parse_enum_value( optarg, log_level_names, &cli_log_level ) )
1236                     cli_log_level += X264_LOG_NONE;
1237                 else
1238                     cli_log_level = atoi( optarg );
1239                 param->i_log_level = cli_log_level;
1240                 break;
1241             case OPT_NOPROGRESS:
1242                 opt->b_progress = 0;
1243                 break;
1244             case OPT_VISUALIZE:
1245 #if HAVE_VISUALIZE
1246                 param->b_visualize = 1;
1247                 b_exit_on_ctrl_c = 1;
1248 #else
1249                 x264_cli_log( "x264", X264_LOG_WARNING, "not compiled with visualization support\n" );
1250 #endif
1251                 break;
1252             case OPT_TUNE:
1253             case OPT_PRESET:
1254                 break;
1255             case OPT_PROFILE:
1256                 profile = optarg;
1257                 break;
1258             case OPT_SLOWFIRSTPASS:
1259                 b_turbo = 0;
1260                 break;
1261             case 'r':
1262                 b_user_ref = 1;
1263                 goto generic_option;
1264             case OPT_FPS:
1265                 b_user_fps = 1;
1266                 param->b_vfr_input = 0;
1267                 goto generic_option;
1268             case OPT_INTERLACED:
1269                 b_user_interlaced = 1;
1270                 goto generic_option;
1271             case OPT_TCFILE_IN:
1272                 tcfile_name = optarg;
1273                 break;
1274             case OPT_TCFILE_OUT:
1275                 opt->tcfile_out = fopen( optarg, "wb" );
1276                 FAIL_IF_ERROR( !opt->tcfile_out, "can't open `%s'\n", optarg )
1277                 break;
1278             case OPT_TIMEBASE:
1279                 input_opt.timebase = optarg;
1280                 break;
1281             case OPT_PULLDOWN:
1282                 FAIL_IF_ERROR( parse_enum_value( optarg, pulldown_names, &opt->i_pulldown ), "Unknown pulldown `%s'\n", optarg )
1283                 break;
1284             case OPT_VIDEO_FILTER:
1285                 vid_filters = optarg;
1286                 break;
1287             case OPT_INPUT_RES:
1288                 input_opt.resolution = optarg;
1289                 break;
1290             case OPT_INPUT_CSP:
1291                 input_opt.colorspace = optarg;
1292                 break;
1293             case OPT_INPUT_DEPTH:
1294                 input_opt.bit_depth = atoi( optarg );
1295                 break;
1296             case OPT_DTS_COMPRESSION:
1297                 output_opt.use_dts_compress = 1;
1298                 break;
1299             default:
1300 generic_option:
1301             {
1302                 if( long_options_index < 0 )
1303                 {
1304                     for( int i = 0; long_options[i].name; i++ )
1305                         if( long_options[i].val == c )
1306                         {
1307                             long_options_index = i;
1308                             break;
1309                         }
1310                     if( long_options_index < 0 )
1311                     {
1312                         /* getopt_long already printed an error message */
1313                         return -1;
1314                     }
1315                 }
1316
1317                 b_error |= x264_param_parse( param, long_options[long_options_index].name, optarg );
1318             }
1319         }
1320
1321         if( b_error )
1322         {
1323             const char *name = long_options_index > 0 ? long_options[long_options_index].name : argv[optind-2];
1324             x264_cli_log( "x264", X264_LOG_ERROR, "invalid argument: %s = %s\n", name, optarg );
1325             return -1;
1326         }
1327     }
1328
1329     /* If first pass mode is used, apply faster settings. */
1330     if( b_turbo )
1331         x264_param_apply_fastfirstpass( param );
1332
1333     /* Apply profile restrictions. */
1334     if( x264_param_apply_profile( param, profile ) < 0 )
1335         return -1;
1336
1337     /* Get the file name */
1338     FAIL_IF_ERROR( optind > argc - 1 || !output_filename, "No %s file. Run x264 --help for a list of options.\n",
1339                    optind > argc - 1 ? "input" : "output" )
1340
1341     if( select_output( muxer, output_filename, param ) )
1342         return -1;
1343     FAIL_IF_ERROR( output.open_file( output_filename, &opt->hout, &output_opt ), "could not open output file `%s'\n", output_filename )
1344
1345     input_filename = argv[optind++];
1346     video_info_t info = {0};
1347     char demuxername[5];
1348
1349     /* set info flags to param flags to be overwritten by demuxer as necessary. */
1350     info.csp        = param->i_csp;
1351     info.fps_num    = param->i_fps_num;
1352     info.fps_den    = param->i_fps_den;
1353     info.interlaced = param->b_interlaced;
1354     info.sar_width  = param->vui.i_sar_width;
1355     info.sar_height = param->vui.i_sar_height;
1356     info.tff        = param->b_tff;
1357     info.vfr        = param->b_vfr_input;
1358
1359     if( select_input( demuxer, demuxername, input_filename, &opt->hin, &info, &input_opt ) )
1360         return -1;
1361
1362     FAIL_IF_ERROR( !opt->hin && input.open_file( input_filename, &opt->hin, &info, &input_opt ),
1363                    "could not open input file `%s'\n", input_filename )
1364
1365     x264_reduce_fraction( &info.sar_width, &info.sar_height );
1366     x264_reduce_fraction( &info.fps_num, &info.fps_den );
1367     x264_cli_log( demuxername, X264_LOG_INFO, "%dx%d%c %d:%d @ %d/%d fps (%cfr)\n", info.width,
1368                   info.height, info.interlaced ? 'i' : 'p', info.sar_width, info.sar_height,
1369                   info.fps_num, info.fps_den, info.vfr ? 'v' : 'c' );
1370
1371     if( tcfile_name )
1372     {
1373         FAIL_IF_ERROR( b_user_fps, "--fps + --tcfile-in is incompatible.\n" )
1374         FAIL_IF_ERROR( timecode_input.open_file( tcfile_name, &opt->hin, &info, &input_opt ), "timecode input failed\n" )
1375         input = timecode_input;
1376     }
1377     else FAIL_IF_ERROR( !info.vfr && input_opt.timebase, "--timebase is incompatible with cfr input\n" )
1378
1379     /* init threaded input while the information about the input video is unaltered by filtering */
1380 #if HAVE_PTHREAD
1381     if( info.thread_safe && (b_thread_input || param->i_threads > 1
1382         || (param->i_threads == X264_THREADS_AUTO && x264_cpu_num_processors() > 1)) )
1383     {
1384         if( thread_input.open_file( NULL, &opt->hin, &info, NULL ) )
1385         {
1386             fprintf( stderr, "x264 [error]: threaded input failed\n" );
1387             return -1;
1388         }
1389         input = thread_input;
1390     }
1391 #endif
1392
1393     /* override detected values by those specified by the user */
1394     if( param->vui.i_sar_width && param->vui.i_sar_height )
1395     {
1396         info.sar_width  = param->vui.i_sar_width;
1397         info.sar_height = param->vui.i_sar_height;
1398     }
1399     if( b_user_fps )
1400     {
1401         info.fps_num = param->i_fps_num;
1402         info.fps_den = param->i_fps_den;
1403     }
1404     if( !info.vfr )
1405     {
1406         info.timebase_num = info.fps_den;
1407         info.timebase_den = info.fps_num;
1408     }
1409     if( !tcfile_name && input_opt.timebase )
1410     {
1411         uint64_t i_user_timebase_num;
1412         uint64_t i_user_timebase_den;
1413         int ret = sscanf( input_opt.timebase, "%"SCNu64"/%"SCNu64, &i_user_timebase_num, &i_user_timebase_den );
1414         FAIL_IF_ERROR( !ret, "invalid argument: timebase = %s\n", input_opt.timebase )
1415         else if( ret == 1 )
1416         {
1417             i_user_timebase_num = info.timebase_num;
1418             i_user_timebase_den = strtoul( input_opt.timebase, NULL, 10 );
1419         }
1420         FAIL_IF_ERROR( i_user_timebase_num > UINT32_MAX || i_user_timebase_den > UINT32_MAX,
1421                        "timebase you specified exceeds H.264 maximum\n" )
1422         opt->timebase_convert_multiplier = ((double)i_user_timebase_den / info.timebase_den)
1423                                          * ((double)info.timebase_num / i_user_timebase_num);
1424         info.timebase_num = i_user_timebase_num;
1425         info.timebase_den = i_user_timebase_den;
1426         info.vfr = 1;
1427     }
1428     if( b_user_interlaced )
1429     {
1430         info.interlaced = param->b_interlaced;
1431         info.tff = param->b_tff;
1432     }
1433
1434     if( init_vid_filters( vid_filters, &opt->hin, &info, param ) )
1435         return -1;
1436
1437     /* set param flags from the post-filtered video */
1438     param->b_vfr_input = info.vfr;
1439     param->i_fps_num = info.fps_num;
1440     param->i_fps_den = info.fps_den;
1441     param->i_timebase_num = info.timebase_num;
1442     param->i_timebase_den = info.timebase_den;
1443     param->vui.i_sar_width  = info.sar_width;
1444     param->vui.i_sar_height = info.sar_height;
1445
1446     info.num_frames = X264_MAX( info.num_frames - opt->i_seek, 0 );
1447     if( (!info.num_frames || param->i_frame_total < info.num_frames)
1448         && param->i_frame_total > 0 )
1449         info.num_frames = param->i_frame_total;
1450     param->i_frame_total = info.num_frames;
1451
1452     if( !b_user_interlaced && info.interlaced )
1453     {
1454         x264_cli_log( "x264", X264_LOG_WARNING, "input appears to be interlaced, enabling %cff interlaced mode.\n"
1455                       "                If you want otherwise, use --no-interlaced or --%cff\n",
1456                       info.tff ? 't' : 'b', info.tff ? 'b' : 't' );
1457         param->b_interlaced = 1;
1458         param->b_tff = !!info.tff;
1459     }
1460
1461     /* Automatically reduce reference frame count to match the user's target level
1462      * if the user didn't explicitly set a reference frame count. */
1463     if( !b_user_ref )
1464     {
1465         int mbs = (((param->i_width)+15)>>4) * (((param->i_height)+15)>>4);
1466         for( int i = 0; x264_levels[i].level_idc != 0; i++ )
1467             if( param->i_level_idc == x264_levels[i].level_idc )
1468             {
1469                 while( mbs * 384 * param->i_frame_reference > x264_levels[i].dpb &&
1470                        param->i_frame_reference > 1 )
1471                 {
1472                     param->i_frame_reference--;
1473                 }
1474                 break;
1475             }
1476     }
1477
1478
1479     return 0;
1480 }
1481
1482 static void parse_qpfile( cli_opt_t *opt, x264_picture_t *pic, int i_frame )
1483 {
1484     int num = -1, qp, ret;
1485     char type;
1486     uint64_t file_pos;
1487     while( num < i_frame )
1488     {
1489         file_pos = ftell( opt->qpfile );
1490         qp = -1;
1491         ret = fscanf( opt->qpfile, "%d %c%*[ \t]%d\n", &num, &type, &qp );
1492         pic->i_type = X264_TYPE_AUTO;
1493         pic->i_qpplus1 = X264_QP_AUTO;
1494         if( num > i_frame || ret == EOF )
1495         {
1496             fseek( opt->qpfile, file_pos, SEEK_SET );
1497             break;
1498         }
1499         if( num < i_frame && ret >= 2 )
1500             continue;
1501         if( ret == 3 && qp >= 0 )
1502             pic->i_qpplus1 = qp+1;
1503         if     ( type == 'I' ) pic->i_type = X264_TYPE_IDR;
1504         else if( type == 'i' ) pic->i_type = X264_TYPE_I;
1505         else if( type == 'K' ) pic->i_type = X264_TYPE_KEYFRAME;
1506         else if( type == 'P' ) pic->i_type = X264_TYPE_P;
1507         else if( type == 'B' ) pic->i_type = X264_TYPE_BREF;
1508         else if( type == 'b' ) pic->i_type = X264_TYPE_B;
1509         else ret = 0;
1510         if( ret < 2 || qp < -1 || qp > QP_MAX )
1511         {
1512             x264_cli_log( "x264", X264_LOG_ERROR, "can't parse qpfile for frame %d\n", i_frame );
1513             fclose( opt->qpfile );
1514             opt->qpfile = NULL;
1515             break;
1516         }
1517     }
1518 }
1519
1520 static int encode_frame( x264_t *h, hnd_t hout, x264_picture_t *pic, int64_t *last_dts )
1521 {
1522     x264_picture_t pic_out;
1523     x264_nal_t *nal;
1524     int i_nal;
1525     int i_frame_size = 0;
1526
1527     i_frame_size = x264_encoder_encode( h, &nal, &i_nal, pic, &pic_out );
1528
1529     FAIL_IF_ERROR( i_frame_size < 0, "x264_encoder_encode failed\n" );
1530
1531     if( i_frame_size )
1532     {
1533         i_frame_size = output.write_frame( hout, nal[0].p_payload, i_frame_size, &pic_out );
1534         *last_dts = pic_out.i_dts;
1535     }
1536
1537     return i_frame_size;
1538 }
1539
1540 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 )
1541 {
1542     char buf[200];
1543     int64_t i_elapsed = x264_mdate() - i_start;
1544     double fps = i_elapsed > 0 ? i_frame * 1000000. / i_elapsed : 0;
1545     double bitrate;
1546     if( last_ts )
1547         bitrate = (double) i_file * 8 / ( (double) last_ts * 1000 * param->i_timebase_num / param->i_timebase_den );
1548     else
1549         bitrate = (double) i_file * 8 / ( (double) 1000 * param->i_fps_den / param->i_fps_num );
1550     if( i_frame_total )
1551     {
1552         int eta = i_elapsed * (i_frame_total - i_frame) / ((int64_t)i_frame * 1000000);
1553         sprintf( buf, "x264 [%.1f%%] %d/%d frames, %.2f fps, %.2f kb/s, eta %d:%02d:%02d",
1554                  100. * i_frame / i_frame_total, i_frame, i_frame_total, fps, bitrate,
1555                  eta/3600, (eta/60)%60, eta%60 );
1556     }
1557     else
1558     {
1559         sprintf( buf, "x264 %d frames: %.2f fps, %.2f kb/s", i_frame, fps, bitrate );
1560     }
1561     fprintf( stderr, "%s  \r", buf+5 );
1562     SetConsoleTitle( buf );
1563     fflush( stderr ); // needed in windows
1564 }
1565
1566 static void convert_cli_to_lib_pic( x264_picture_t *lib, cli_pic_t *cli )
1567 {
1568     memcpy( lib->img.i_stride, cli->img.stride, sizeof(cli->img.stride) );
1569     memcpy( lib->img.plane, cli->img.plane, sizeof(cli->img.plane) );
1570     lib->img.i_plane = cli->img.planes;
1571     lib->img.i_csp = cli->img.csp;
1572     lib->i_pts = cli->pts;
1573 }
1574
1575 static int encode( x264_param_t *param, cli_opt_t *opt )
1576 {
1577     x264_t *h;
1578     x264_picture_t pic;
1579     cli_pic_t cli_pic;
1580     const cli_pulldown_t *pulldown = NULL; // shut up gcc
1581
1582     int     i_frame, i_frame_output;
1583     int64_t i_start, i_end;
1584     int64_t i_file = 0;
1585     int     i_frame_size;
1586     int     i_update_interval;
1587     int64_t last_dts = 0;
1588     int64_t prev_dts = 0;
1589     int64_t first_dts = 0;
1590 #   define  MAX_PTS_WARNING 3 /* arbitrary */
1591     int     pts_warning_cnt = 0;
1592     int64_t largest_pts = -1;
1593     int64_t second_largest_pts = -1;
1594     int64_t ticks_per_frame;
1595     double  duration;
1596     double  pulldown_pts = 0;
1597
1598     opt->b_progress &= param->i_log_level < X264_LOG_DEBUG;
1599     i_update_interval = param->i_frame_total ? x264_clip3( param->i_frame_total / 1000, 1, 10 ) : 10;
1600
1601     /* set up pulldown */
1602     if( opt->i_pulldown && !param->b_vfr_input )
1603     {
1604         param->b_pulldown = 1;
1605         param->b_pic_struct = 1;
1606         pulldown = &pulldown_values[opt->i_pulldown];
1607         param->i_timebase_num = param->i_fps_den;
1608         FAIL_IF_ERROR( fmod( param->i_fps_num * pulldown->fps_factor, 1 ),
1609                        "unsupported framerate for chosen pulldown\n" )
1610         param->i_timebase_den = param->i_fps_num * pulldown->fps_factor;
1611     }
1612
1613     if( ( h = x264_encoder_open( param ) ) == NULL )
1614     {
1615         x264_cli_log( "x264", X264_LOG_ERROR, "x264_encoder_open failed\n" );
1616         filter.free( opt->hin );
1617         return -1;
1618     }
1619
1620     x264_encoder_parameters( h, param );
1621
1622     if( output.set_param( opt->hout, param ) )
1623     {
1624         x264_cli_log( "x264", X264_LOG_ERROR, "can't set outfile param\n" );
1625         filter.free( opt->hin );
1626         output.close_file( opt->hout, largest_pts, second_largest_pts );
1627         return -1;
1628     }
1629
1630     i_start = x264_mdate();
1631     /* ticks/frame = ticks/second / frames/second */
1632     ticks_per_frame = (int64_t)param->i_timebase_den * param->i_fps_den / param->i_timebase_num / param->i_fps_num;
1633     FAIL_IF_ERROR( ticks_per_frame < 1, "ticks_per_frame invalid: %"PRId64"\n", ticks_per_frame )
1634
1635     if( !param->b_repeat_headers )
1636     {
1637         // Write SPS/PPS/SEI
1638         x264_nal_t *headers;
1639         int i_nal;
1640
1641         FAIL_IF_ERROR( x264_encoder_headers( h, &headers, &i_nal ) < 0, "x264_encoder_headers failed\n" )
1642         if( (i_file = output.write_headers( opt->hout, headers )) < 0 )
1643             return -1;
1644     }
1645
1646     if( opt->tcfile_out )
1647         fprintf( opt->tcfile_out, "# timecode format v2\n" );
1648
1649     /* Encode frames */
1650     for( i_frame = 0, i_frame_output = 0; !b_ctrl_c && (i_frame < param->i_frame_total || !param->i_frame_total); i_frame++ )
1651     {
1652         if( filter.get_frame( opt->hin, &cli_pic, i_frame + opt->i_seek ) )
1653             break;
1654         x264_picture_init( &pic );
1655         convert_cli_to_lib_pic( &pic, &cli_pic );
1656
1657         if( !param->b_vfr_input )
1658             pic.i_pts = i_frame;
1659
1660         if( opt->i_pulldown && !param->b_vfr_input )
1661         {
1662             pic.i_pic_struct = pulldown->pattern[ i_frame % pulldown->mod ];
1663             pic.i_pts = (int64_t)( pulldown_pts + 0.5 );
1664             pulldown_pts += pulldown_frame_duration[pic.i_pic_struct];
1665         }
1666         else if( opt->timebase_convert_multiplier )
1667             pic.i_pts = (int64_t)( pic.i_pts * opt->timebase_convert_multiplier + 0.5 );
1668
1669         if( pic.i_pts <= largest_pts )
1670         {
1671             if( cli_log_level >= X264_LOG_DEBUG || pts_warning_cnt < MAX_PTS_WARNING )
1672                 x264_cli_log( "x264", X264_LOG_WARNING, "non-strictly-monotonic pts at frame %d (%"PRId64" <= %"PRId64")\n",
1673                              i_frame, pic.i_pts, largest_pts );
1674             else if( pts_warning_cnt == MAX_PTS_WARNING )
1675                 x264_cli_log( "x264", X264_LOG_WARNING, "too many nonmonotonic pts warnings, suppressing further ones\n" );
1676             pts_warning_cnt++;
1677             pic.i_pts = largest_pts + ticks_per_frame;
1678         }
1679
1680         second_largest_pts = largest_pts;
1681         largest_pts = pic.i_pts;
1682         if( opt->tcfile_out )
1683             fprintf( opt->tcfile_out, "%.6f\n", pic.i_pts * ((double)param->i_timebase_num / param->i_timebase_den) * 1e3 );
1684
1685         if( opt->qpfile )
1686             parse_qpfile( opt, &pic, i_frame + opt->i_seek );
1687
1688         prev_dts = last_dts;
1689         i_frame_size = encode_frame( h, opt->hout, &pic, &last_dts );
1690         if( i_frame_size < 0 )
1691             return -1;
1692         i_file += i_frame_size;
1693         if( i_frame_size )
1694         {
1695             i_frame_output++;
1696             if( i_frame_output == 1 )
1697                 first_dts = prev_dts = last_dts;
1698         }
1699
1700         if( filter.release_frame( opt->hin, &cli_pic, i_frame + opt->i_seek ) )
1701             break;
1702
1703         /* update status line (up to 1000 times per input file) */
1704         if( opt->b_progress && i_frame_output % i_update_interval == 0 && i_frame_output )
1705             print_status( i_start, i_frame_output, param->i_frame_total, i_file, param, 2 * last_dts - prev_dts - first_dts );
1706     }
1707     /* Flush delayed frames */
1708     while( !b_ctrl_c && x264_encoder_delayed_frames( h ) )
1709     {
1710         prev_dts = last_dts;
1711         i_frame_size = encode_frame( h, opt->hout, NULL, &last_dts );
1712         if( i_frame_size < 0 )
1713             return -1;
1714         i_file += i_frame_size;
1715         if( i_frame_size )
1716         {
1717             i_frame_output++;
1718             if( i_frame_output == 1 )
1719                 first_dts = prev_dts = last_dts;
1720         }
1721         if( opt->b_progress && i_frame_output % i_update_interval == 0 && i_frame_output )
1722             print_status( i_start, i_frame_output, param->i_frame_total, i_file, param, 2 * last_dts - prev_dts - first_dts );
1723     }
1724     if( pts_warning_cnt >= MAX_PTS_WARNING && cli_log_level < X264_LOG_DEBUG )
1725         x264_cli_log( "x264", X264_LOG_WARNING, "%d suppressed nonmonotonic pts warnings\n", pts_warning_cnt-MAX_PTS_WARNING );
1726
1727     /* duration algorithm fails when only 1 frame is output */
1728     if( i_frame_output == 1 )
1729         duration = (double)param->i_fps_den / param->i_fps_num;
1730     else if( b_ctrl_c )
1731         duration = (double)(2 * last_dts - prev_dts - first_dts) * param->i_timebase_num / param->i_timebase_den;
1732     else
1733         duration = (double)(2 * largest_pts - second_largest_pts) * param->i_timebase_num / param->i_timebase_den;
1734
1735     i_end = x264_mdate();
1736     /* Erase progress indicator before printing encoding stats. */
1737     if( opt->b_progress )
1738         fprintf( stderr, "                                                                               \r" );
1739     x264_encoder_close( h );
1740     fprintf( stderr, "\n" );
1741
1742     if( b_ctrl_c )
1743         fprintf( stderr, "aborted at input frame %d, output frame %d\n", opt->i_seek + i_frame, i_frame_output );
1744
1745     if( opt->tcfile_out )
1746     {
1747         fclose( opt->tcfile_out );
1748         opt->tcfile_out = NULL;
1749     }
1750
1751     filter.free( opt->hin );
1752     output.close_file( opt->hout, largest_pts, second_largest_pts );
1753
1754     if( i_frame_output > 0 )
1755     {
1756         double fps = (double)i_frame_output * (double)1000000 /
1757                      (double)( i_end - i_start );
1758
1759         fprintf( stderr, "encoded %d frames, %.2f fps, %.2f kb/s\n", i_frame_output, fps,
1760                  (double) i_file * 8 / ( 1000 * duration ) );
1761     }
1762
1763     return 0;
1764 }