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