OSDN Git Service

Mcdeint is broken, so avoid using it as a deinterlacer. No more "Slowest," "Slow...
[handbrake-jp/handbrake-jp-git.git] / test / test.c
1 /* $Id: test.c,v 1.82 2005/11/19 08:25:54 titer Exp $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.m0k.org/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #include <signal.h>
8 #include <getopt.h>
9 #include <sys/time.h>
10 #include <time.h>
11 #include <unistd.h>
12
13 #include "hb.h"
14 #include "parsecsv.h"
15
16 /* Options */
17 static int    debug       = HB_DEBUG_NONE;
18 static int    update      = 0;
19 static char * input       = NULL;
20 static char * output      = NULL;
21 static char * format      = NULL;
22 static int    titleindex  = 1;
23 static int    longest_title = 0;
24 static int    subtitle_scan = 0;
25 static int    subtitle_force = 0;
26 static char * native_language = NULL;
27 static int    twoPass     = 0;
28 static int    deinterlace           = 0;
29 static char * deinterlace_opt       = 0;
30 static int    deblock               = 0;
31 static char * deblock_opt           = 0;
32 static int    denoise               = 0;
33 static char * denoise_opt           = 0;
34 static int    detelecine            = 0;
35 static char * detelecine_opt        = 0;
36 static int    grayscale   = 0;
37 static int    vcodec      = HB_VCODEC_FFMPEG;
38 static int    h264_13     = 0;
39 static int    h264_30     = 0;
40 static char * audios      = NULL;
41 static int    audio_mixdown = HB_AMIXDOWN_DOLBYPLII;
42 static float  dynamic_range_compression = 0;
43 static int    sub         = 0;
44 static int    width       = 0;
45 static int    height      = 0;
46 static int    crop[4]     = { -1,-1,-1,-1 };
47 static int    cpu         = 0;
48 static int    vrate       = 0;
49 static int    arate       = 0;
50 static float  vquality    = -1.0;
51 static int    vbitrate    = 0;
52 static int    size        = 0;
53 static int    abitrate    = 0;
54 static int    mux         = 0;
55 static int    acodec      = 0;
56 static int    pixelratio  = 0;
57 static int    loosePixelratio = 0;
58 static int    modulus       = 0;
59 static int    chapter_start = 0;
60 static int    chapter_end   = 0;
61 static int    chapter_markers = 0;
62 static char * marker_file   = NULL;
63 static int        crf                   = 1;
64 static char       *x264opts             = NULL;
65 static char       *x264opts2    = NULL;
66 static int        maxHeight             = 0;
67 static int        maxWidth              = 0;
68 static int    turbo_opts_enabled = 0;
69 static char * turbo_opts = "ref=1:subme=1:me=dia:analyse=none:trellis=0:no-fast-pskip=0:8x8dct=0:weightb=0";
70 static int    largeFileSize = 0;
71 static int    preset        = 0;
72 static char * preset_name   = 0;
73 static int    vfr           = 0;
74 static int    mp4_optimize  = 0;
75 static int    ipod_atom     = 0;
76
77 /* Exit cleanly on Ctrl-C */
78 static volatile int die = 0;
79 static void SigHandler( int );
80
81 /* Utils */
82 static void ShowCommands();
83 static void ShowHelp();
84 static void ShowPresets();
85
86 static int  ParseOptions( int argc, char ** argv );
87 static int  CheckOptions( int argc, char ** argv );
88 static int  HandleEvents( hb_handle_t * h );
89
90 /****************************************************************************
91  * hb_error_handler
92  * 
93  * When using the CLI just display using hb_log as we always did in the past
94  * make sure that we prefix with a nice ERROR message to catch peoples eyes.
95  ****************************************************************************/
96 static void hb_cli_error_handler ( const char *errmsg )
97 {
98     fprintf( stderr, "ERROR: %s", errmsg );
99 }
100
101 int main( int argc, char ** argv )
102 {
103     hb_handle_t * h;
104     int           build;
105     char        * version;
106
107     /* Parse command line */
108     if( ParseOptions( argc, argv ) ||
109         CheckOptions( argc, argv ) )
110     {
111         return 1;
112     }
113
114     /* Register our error handler */
115     hb_register_error_handler(&hb_cli_error_handler);
116
117     /* Init libhb */
118     h = hb_init( debug, update );
119
120     /* Show version */
121     fprintf( stderr, "HandBrake %s (%d) - http://handbrake.m0k.org/\n",
122              hb_get_version( h ), hb_get_build( h ) );
123
124     /* Check for update */
125     if( update )
126     {
127         if( ( build = hb_check_update( h, &version ) ) > -1 )
128         {
129             fprintf( stderr, "You are using an old version of "
130                      "HandBrake.\nLatest is %s (build %d).\n", version,
131                      build );
132         }
133         else
134         {
135             fprintf( stderr, "Your version of HandBrake is up to "
136                      "date.\n" );
137         }
138         hb_close( &h );
139         return 0;
140     }
141
142     /* Geeky */
143     fprintf( stderr, "%d CPU%s detected\n", hb_get_cpu_count(),
144              hb_get_cpu_count( h ) > 1 ? "s" : "" );
145     if( cpu )
146     {
147         fprintf( stderr, "Forcing %d CPU%s\n", cpu,
148                  cpu > 1 ? "s" : "" );
149         hb_set_cpu_count( h, cpu );
150     }
151
152     /* Exit ASAP on Ctrl-C */
153     signal( SIGINT, SigHandler );
154
155     /* Feed libhb with a DVD to scan */
156     fprintf( stderr, "Opening %s...\n", input );
157
158     if (longest_title) {
159         /*
160          * We need to scan for all the titles in order to find the longest
161          */
162         titleindex = 0;
163     }
164     hb_scan( h, input, titleindex );
165
166     /* Wait... */
167     while( !die )
168     {
169 #if !defined(SYS_BEOS)
170         fd_set         fds;
171         struct timeval tv;
172         int            ret;
173         char           buf[257];
174
175         tv.tv_sec  = 0;
176         tv.tv_usec = 100000;
177
178         FD_ZERO( &fds );
179         FD_SET( STDIN_FILENO, &fds );
180         ret = select( STDIN_FILENO + 1, &fds, NULL, NULL, &tv );
181
182         if( ret > 0 )
183         {
184             int size = 0;
185
186             while( size < 256 &&
187                    read( STDIN_FILENO, &buf[size], 1 ) > 0 )
188             {
189                 if( buf[size] == '\n' )
190                 {
191                     break;
192                 }
193                 size++;
194             }
195
196             if( size >= 256 || buf[size] == '\n' )
197             {
198                 switch( buf[0] )
199                 {
200                     case 'q':
201                         fprintf( stdout, "\nEncoding Quit by user command\n" );
202                         die = 1;
203                         break;
204                     case 'p':
205                         fprintf( stdout, "\nEncoding Paused by user command, 'r' to resume\n" );
206                         hb_pause( h );
207                         break;
208                     case 'r':
209                         hb_resume( h );
210                         break;
211                     case 'h':
212                         ShowCommands();
213                         break;
214                 }
215             }
216         }
217         hb_snooze( 200 );
218 #else
219         hb_snooze( 200 );
220 #endif
221
222         HandleEvents( h );
223     }
224
225     /* Clean up */
226     hb_close( &h );
227     if( input )  free( input );
228     if( output ) free( output );
229     if( format ) free( format );
230     if( audios ) free( audios );
231     if (native_language ) free (native_language );
232         if( x264opts ) free (x264opts );
233         if( x264opts2 ) free (x264opts2 );
234     if (preset_name) free (preset_name);
235         
236     fprintf( stderr, "HandBrake has exited.\n" );
237
238     return 0;
239 }
240
241 static void ShowCommands()
242 {
243     fprintf( stdout, "\nCommands:\n" );
244     fprintf( stdout, " [h]elp    Show this message\n" );
245     fprintf( stdout, " [q]uit    Exit HandBrakeCLI\n" );
246     fprintf( stdout, " [p]ause   Pause encoding\n" );
247     fprintf( stdout, " [r]esume  Resume encoding\n" );
248 }
249
250 static void PrintTitleInfo( hb_title_t * title )
251 {
252     hb_chapter_t  * chapter;
253     hb_audio_t    * audio;
254     hb_subtitle_t * subtitle;
255     int i;
256
257     fprintf( stderr, "+ title %d:\n", title->index );
258     fprintf( stderr, "  + vts %d, ttn %d, cells %d->%d (%d blocks)\n",
259              title->vts, title->ttn, title->cell_start, title->cell_end,
260              title->block_count );
261     fprintf( stderr, "  + duration: %02d:%02d:%02d\n",
262              title->hours, title->minutes, title->seconds );
263     fprintf( stderr, "  + size: %dx%d, aspect: %.2f, %.3f fps\n",
264              title->width, title->height,
265              (float) title->aspect / HB_ASPECT_BASE,
266              (float) title->rate / title->rate_base );
267     fprintf( stderr, "  + autocrop: %d/%d/%d/%d\n", title->crop[0],
268              title->crop[1], title->crop[2], title->crop[3] );
269     fprintf( stderr, "  + chapters:\n" );
270     for( i = 0; i < hb_list_count( title->list_chapter ); i++ )
271     {
272         chapter = hb_list_item( title->list_chapter, i );
273         fprintf( stderr, "    + %d: cells %d->%d, %d blocks, duration "
274                  "%02d:%02d:%02d\n", chapter->index,
275                  chapter->cell_start, chapter->cell_end,
276                  chapter->block_count, chapter->hours, chapter->minutes,
277                  chapter->seconds );
278     }
279     fprintf( stderr, "  + audio tracks:\n" );
280     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
281     {
282         audio = hb_list_item( title->list_audio, i );
283         if( ( audio->codec & HB_ACODEC_AC3 ) || ( audio->codec & HB_ACODEC_DCA) )
284         {
285             fprintf( stderr, "    + %d, %s, %dHz, %dbps\n", i + 1,
286                      audio->lang, audio->rate, audio->bitrate );
287         }
288         else
289         {
290             fprintf( stderr, "    + %d, %s\n", i + 1, audio->lang );
291         }
292     }
293     fprintf( stderr, "  + subtitle tracks:\n" );
294     for( i = 0; i < hb_list_count( title->list_subtitle ); i++ )
295     {
296         subtitle = hb_list_item( title->list_subtitle, i );
297         fprintf( stderr, "    + %d, %s (iso639-2: %s)\n", i + 1, subtitle->lang,
298             subtitle->iso639_2);
299     }
300 }
301
302 static int HandleEvents( hb_handle_t * h )
303 {
304     hb_state_t s;
305     hb_get_state( h, &s );
306     switch( s.state )
307     {
308         case HB_STATE_IDLE:
309             /* Nothing to do */
310             break;
311
312 #define p s.param.scanning
313         case HB_STATE_SCANNING:
314             /* Show what title is currently being scanned */
315             fprintf( stderr, "Scanning title %d", p.title_cur );
316             if( !titleindex )
317                 fprintf( stderr, " of %d", p.title_count );
318             fprintf( stderr, "...\n" );
319             break;
320 #undef p
321
322         case HB_STATE_SCANDONE:
323         {
324             hb_list_t  * list;
325             hb_title_t * title;
326             hb_job_t   * job;
327
328             list = hb_get_titles( h );
329
330             if( !hb_list_count( list ) )
331             {
332                 /* No valid title, stop right there */
333                 fprintf( stderr, "No title found.\n" );
334                 die = 1;
335                 break;
336             }
337             if( longest_title )
338             {
339                 int i;
340                 int longest_title_idx=0;
341                 int longest_title_pos=-1;
342                 int longest_title_time=0;
343                 int title_time;
344                 
345                 fprintf( stderr, "Searching for longest title...\n" );
346
347                 for( i = 0; i < hb_list_count( list ); i++ )
348                 {
349                     title = hb_list_item( list, i );
350                     title_time = (title->hours*60*60 ) + (title->minutes *60) + (title->seconds);
351                     fprintf( stderr, " + Title (%d) index %d has length %dsec\n", 
352                              i, title->index, title_time );
353                     if( longest_title_time < title_time )
354                     {
355                         longest_title_time = title_time;
356                         longest_title_pos = i;
357                         longest_title_idx = title->index;
358                     }               
359                 }
360                 if( longest_title_pos == -1 ) 
361                 {
362                     fprintf( stderr, "No longest title found.\n" );
363                     die = 1;
364                     break;
365                 }
366                 titleindex = longest_title_idx;
367                 fprintf( stderr, "Found longest title, setting title to %d\n", 
368                          longest_title_idx);
369
370                 title = hb_list_item( list, longest_title_pos);
371             } else {
372                 title = hb_list_item( list, 0 );
373             }
374
375             if( !titleindex )
376             {
377                 /* Scan-only mode, print infos and exit */
378                 int i;
379                 for( i = 0; i < hb_list_count( list ); i++ )
380                 {
381                     title = hb_list_item( list, i );
382                     PrintTitleInfo( title );
383                 }
384                 die = 1;
385                 break;
386             }
387
388             /* Set job settings */
389             job   = title->job;
390
391             PrintTitleInfo( title );
392
393             if( chapter_start && chapter_end )
394             {
395                 job->chapter_start = MAX( job->chapter_start,
396                                           chapter_start );
397                 job->chapter_end   = MIN( job->chapter_end,
398                                           chapter_end );
399                 job->chapter_end   = MAX( job->chapter_start,
400                                           job->chapter_end );
401             }
402
403             if (preset)
404             {
405                 fprintf( stderr, "+ Using preset: %s", preset_name);
406                 
407                 if (!strcmp(preset_name, "Animation"))
408                 {
409                     mux = HB_MUX_MKV;
410                     vcodec = HB_VCODEC_X264;
411                     job->vbitrate = 1000;
412                     job->abitrate = 160;
413                     job->arate = 48000;
414                     acodec = HB_ACODEC_FAAC;
415                     x264opts = strdup("ref=5:mixed-refs:bframes=16:bime:weightb:b-rdo:direct=auto:b-pyramid:me=umh:subme=5:analyse=all:8x8dct:trellis=1:nr=150:no-fast-pskip:filter=2,2");
416                     deinterlace = 1;
417                     deinterlace_opt = "2:-1:1";
418                     job->chapter_markers = 1;
419                     pixelratio = 1;
420                     twoPass = 1;
421                     turbo_opts_enabled = 1;
422                 }
423
424                 if (!strcmp(preset_name, "AppleTV"))
425                 {
426                     mux = HB_MUX_MP4;
427                     vcodec = HB_VCODEC_X264;
428                     job->vbitrate = 2500;
429                     job->abitrate = 160;
430                     job->arate = 48000;
431                     acodec = HB_ACODEC_FAAC;
432                     x264opts = strdup("bframes=3:ref=1:subme=5:me=umh:no-fast-pskip=1:trellis=1:cabac=0");
433                     job->chapter_markers = 1;
434                     pixelratio = 1;
435                 }
436
437                 if (!strcmp(preset_name, "Bedlam"))
438                 {
439                     mux = HB_MUX_MKV;
440                     vcodec = HB_VCODEC_X264;
441                     job->vbitrate = 1800;
442                     acodec = HB_ACODEC_AC3;
443                     x264opts = strdup("ref=16:mixed-refs:bframes=16:bime:weightb:b-rdo:direct=auto:b-pyramid:me=umh:subme=7:me-range=64:analyse=all:8x8dct:trellis=2:no-fast-pskip:no-dct-decimate:filter=-2,-1");
444                     job->chapter_markers = 1;
445                     pixelratio = 1;
446                     twoPass = 1;
447                     turbo_opts_enabled = 1;
448                 }
449
450                 if (!strcmp(preset_name, "Blind"))
451                 {
452                     mux = HB_MUX_MP4;
453                     job->vbitrate = 512;
454                     job->abitrate = 128;
455                     job->arate = 48000;
456                     acodec = HB_ACODEC_FAAC;
457                     job->width = 512;
458                     job->chapter_markers = 1;
459                 }
460
461                 if (!strcmp(preset_name, "Broke"))
462                 {
463                     mux = HB_MUX_MP4;
464                     vcodec = HB_VCODEC_X264;
465                     size = 695;
466                     job->abitrate = 128;
467                     job->arate = 48000;
468                     acodec = HB_ACODEC_FAAC;
469                     job->width = 640;
470                     x264opts = strdup("ref=3:mixed-refs:bframes=16:bime:weightb:b-rdo:b-pyramid:direct=auto:me=umh:subme=6:trellis=1:analyse=all:8x8dct:no-fast-pskip");
471                     job->chapter_markers = 1;
472                     twoPass = 1;
473                     turbo_opts_enabled = 1;
474                 }
475
476                 if (!strcmp(preset_name, "Classic"))
477                 {
478                     mux = HB_MUX_MP4;
479                     job->vbitrate = 1000;
480                     job->abitrate = 160;
481                     job->arate = 48000;
482                     acodec = HB_ACODEC_FAAC;
483                 }
484
485                 if (!strcmp(preset_name, "Constant Quality Rate"))
486                 {
487                     mux = HB_MUX_MKV;
488                     vcodec = HB_VCODEC_X264;
489                     job->vquality = 0.64709997177124023;
490                     job->crf = 1;
491                     acodec = HB_ACODEC_AC3;
492                     x264opts = strdup("ref=3:mixed-refs:bframes=3:b-pyramid:b-rdo:bime:weightb:filter=-2,-1:subme=6:trellis=1:analyse=all:8x8dct:me=umh");
493                     job->chapter_markers = 1;
494                     pixelratio = 1;
495                 }
496
497                 if (!strcmp(preset_name, "Deux Six Quatre"))
498                 {
499                     mux = HB_MUX_MKV;
500                     vcodec = HB_VCODEC_X264;
501                     job->vbitrate = 1600;
502                     acodec = HB_ACODEC_AC3;
503                     x264opts = strdup("ref=5:mixed-refs:bframes=3:bime:weightb:b-rdo:b-pyramid:me=umh:subme=7:trellis=1:analyse=all:8x8dct:no-fast-pskip");
504                     job->chapter_markers = 1;
505                     pixelratio = 1;
506                     twoPass = 1;
507                     turbo_opts_enabled = 1;
508                 }
509
510                 if (!strcmp(preset_name, "Film"))
511                 {
512                     mux = HB_MUX_MKV;
513                     vcodec = HB_VCODEC_X264;
514                     job->vbitrate = 1800;
515                     acodec = HB_ACODEC_AC3;
516                     x264opts = strdup("ref=3:mixed-refs:bframes=16:bime:weightb:b-rdo:direct=auto:b-pyramid:me=umh:subme=7:analyse=all:8x8dct:trellis=1:no-fast-pskip");
517                     job->chapter_markers = 1;
518                     pixelratio = 1;
519                     twoPass = 1;
520                     turbo_opts_enabled = 1;
521                 }
522
523                 if (!strcmp(preset_name, "iPhone / iPod Touch"))
524                 {
525                     mux = HB_MUX_MP4;
526                     job->ipod_atom = 1;
527                     vcodec = HB_VCODEC_X264;
528                     job->vbitrate = 960;
529                     job->abitrate = 128;
530                     job->arate = 48000;
531                     acodec = HB_ACODEC_FAAC;
532                     job->width = 480;
533                     x264opts = strdup("level=30:cabac=0:ref=1:analyse=all:me=umh:subme=6:no-fast-pskip=1:trellis=1");
534                     job->chapter_markers = 1;
535                 }
536
537                 if (!strcmp(preset_name, "iPod High-Rez"))
538                 {
539                     mux = HB_MUX_MP4;
540                     job->ipod_atom = 1;
541                     vcodec = HB_VCODEC_X264;
542                     job->vbitrate = 1500;
543                     job->abitrate = 160;
544                     job->arate = 48000;
545                     acodec = HB_ACODEC_FAAC;
546                     job->width = 640;
547                     x264opts = strdup("level=30:bframes=0:cabac=0:ref=1:vbv-maxrate=1500:vbv-bufsize=2000:analyse=all:me=umh:subme=6:no-fast-pskip=1");
548                     job->chapter_markers = 1;
549                 }
550
551                 if (!strcmp(preset_name, "iPod Low-Rez"))
552                 {
553                     mux = HB_MUX_MP4;
554                     job->ipod_atom = 1;
555                     vcodec = HB_VCODEC_X264;
556                     job->vbitrate = 700;
557                     job->abitrate = 160;
558                     job->arate = 48000;
559                     acodec = HB_ACODEC_FAAC;
560                     job->width = 320;
561                     x264opts = strdup("level=30:bframes=0:cabac=0:ref=1:vbv-maxrate=768:vbv-bufsize=2000:analyse=all:me=umh:subme=6:no-fast-pskip=1");
562                     job->chapter_markers = 1;
563                 }
564
565                 if (!strcmp(preset_name, "Normal"))
566                 {
567                     mux = HB_MUX_MP4;
568                     vcodec = HB_VCODEC_X264;
569                     job->vbitrate = 1500;
570                     job->abitrate = 160;
571                     job->arate = 48000;
572                     acodec = HB_ACODEC_FAAC;
573                     x264opts = strdup("ref=2:bframes=2:subme=5:me=umh");
574                     job->chapter_markers = 1;
575                     pixelratio = 1;
576                     twoPass = 1;
577                     turbo_opts_enabled = 1;
578                 }
579
580                 if (!strcmp(preset_name, "PS3"))
581                 {
582                     mux = HB_MUX_MP4;
583                     vcodec = HB_VCODEC_X264;
584                     job->vbitrate = 2500;
585                     job->abitrate = 160;
586                     job->arate = 48000;
587                     acodec = HB_ACODEC_FAAC;
588                     x264opts = strdup("level=41:subme=5:me=umh");
589                     pixelratio = 1;
590                 }
591
592                 if (!strcmp(preset_name, "PSP"))
593                 {
594                     mux = HB_MUX_MP4;
595                     job->vbitrate = 1024;
596                     job->abitrate = 128;
597                     job->arate = 48000;
598                     acodec = HB_ACODEC_FAAC;
599                     job->width = 368;
600                     job->height = 208;
601                     job->chapter_markers = 1;
602                 }
603
604                 if (!strcmp(preset_name, "QuickTime"))
605                 {
606                     mux = HB_MUX_MP4;
607                     vcodec = HB_VCODEC_X264;
608                     job->vbitrate = 2000;
609                     job->abitrate = 160;
610                     job->arate = 48000;
611                     acodec = HB_ACODEC_FAAC;
612                     x264opts = strdup("ref=3:mixed-refs:bframes=3:bime:weightb:b-rdo:direct=auto:me=umh:subme=5:analyse=all:trellis=1:no-fast-pskip");
613                     job->chapter_markers = 1;
614                     pixelratio = 1;
615                     twoPass = 1;
616                     turbo_opts_enabled = 1;
617                 }
618
619                 if (!strcmp(preset_name, "Television"))
620                 {
621                     mux = HB_MUX_MKV;
622                     vcodec = HB_VCODEC_X264;
623                     job->vbitrate = 1300;
624                     job->abitrate = 160;
625                     job->arate = 48000;
626                     acodec = HB_ACODEC_FAAC;
627                     x264opts = strdup("ref=3:mixed-refs:bframes=16:bime:weightb:direct=auto:b-pyramid:me=umh:subme=6:analyse=all:8x8dct:trellis=1:nr=150:no-fast-pskip");
628                     deinterlace = 1;
629                     deinterlace_opt = "2:-1:1";
630                     denoise = 1;
631                     denoise_opt = "2:1:2:3";
632                     job->chapter_markers = 1;
633                     twoPass = 1;
634                     turbo_opts_enabled = 1;
635                 }
636
637                 if (!strcmp(preset_name, "Xbox 360"))
638                 {
639                     mux = HB_MUX_MP4;
640                     vcodec = HB_VCODEC_X264;
641                     job->vbitrate = 2000;
642                     job->abitrate = 160;
643                     job->arate = 48000;
644                     acodec = HB_ACODEC_FAAC;
645                     x264opts = strdup("level=40:ref=3:mixed-refs:bframes=16:bime:weightb:b-rdo:direct=auto:b-pyramid:me=umh:subme=7:analyse=all:8x8dct:trellis=1:no-fast-pskip:filter=-2,-1");
646                     pixelratio = 1;
647                 }
648             }
649             
650                         if ( chapter_markers )
651                         {
652                                 job->chapter_markers = chapter_markers;
653
654                 if( marker_file != NULL )
655                 {
656                     hb_csv_file_t * file = hb_open_csv_file( marker_file );
657                     hb_csv_cell_t * cell;
658                     int row = 0;
659                     int chapter = 0;
660                     
661                     fprintf( stderr, "Reading chapter markers from file %s\n", marker_file );
662                     
663                     if( file == NULL )
664                     {
665                          fprintf( stderr, "Cannot open chapter marker file, using defaults\n" );
666                     }
667                     else
668                     {
669                         /* Parse the cells */
670                         while( NULL != ( cell = hb_read_next_cell( file ) ) )
671                         {                            
672                             /* We have a chapter number */
673                             if( cell->cell_col == 0 )
674                             {
675                                 row = cell->cell_row;
676                                 chapter = atoi( cell->cell_text );
677                             }
678                              
679                             /* We have a chapter name */
680                             if( cell->cell_col == 1 && row == cell->cell_row )
681                             {
682                                 /* If we have a valid chapter, copy the string an terminate it */
683                                 if( chapter >= job->chapter_start && chapter <= job->chapter_end )
684                                 {
685                                     hb_chapter_t * chapter_s;
686                                     
687                                     chapter_s = hb_list_item( job->title->list_chapter, chapter - 1);
688                                     strncpy(chapter_s->title, cell->cell_text, 1023);
689                                     chapter_s->title[1023] = '\0';
690                                 }
691                             }                               
692                         
693                                                            
694                             hb_dispose_cell( cell );
695                         }
696                         
697                         hb_close_csv_file( file );
698                     }
699                 }
700                         }
701
702             if( crop[0] >= 0 && crop[1] >= 0 &&
703                 crop[2] >= 0 && crop[3] >= 0 )
704             {
705                 memcpy( job->crop, crop, 4 * sizeof( int ) );
706             }
707
708             job->deinterlace = deinterlace;
709             job->grayscale   = grayscale;
710             if (loosePixelratio)
711             {
712                 job->pixel_ratio = 2;
713                 if (modulus)
714                 {
715                     job->modulus = modulus;
716                 }
717             }
718             else
719             {
720                 job->pixel_ratio = pixelratio;
721             }
722             /* Add selected filters */
723             job->filters = hb_list_init();
724             if( detelecine )
725             {
726                 hb_filter_detelecine.settings = detelecine_opt;
727                 hb_list_add( job->filters, &hb_filter_detelecine );
728             }
729             if( deinterlace )
730             {
731                 hb_filter_deinterlace.settings = deinterlace_opt;
732                 hb_list_add( job->filters, &hb_filter_deinterlace );
733             }
734             if( deblock )
735             {
736                 hb_filter_deblock.settings = deblock_opt;
737                 hb_list_add( job->filters, &hb_filter_deblock );
738             }
739             if( denoise )
740             {
741                 hb_filter_denoise.settings = denoise_opt;
742                 hb_list_add( job->filters, &hb_filter_denoise );
743             }
744             
745             if( width && height )
746             {
747                 job->width  = width;
748                 job->height = height;
749             }
750             else if( width )
751             {
752                 job->width = width;
753                 hb_fix_aspect( job, HB_KEEP_WIDTH );
754             }
755             else if( height && !loosePixelratio)
756             {
757                 job->height = height;
758                 hb_fix_aspect( job, HB_KEEP_HEIGHT );
759             }
760             else if( !width && !height && !pixelratio && !loosePixelratio )
761             {
762                 hb_fix_aspect( job, HB_KEEP_WIDTH );
763             }
764             else if (!width && loosePixelratio)
765             {
766                 /* Default to full width when one isn't specified for loose anamorphic */
767                 job->width = title->width - job->crop[2] - job->crop[3];
768                 /* The height will be thrown away in hb.c but calculate it anyway */
769                 hb_fix_aspect( job, HB_KEEP_WIDTH );
770             }
771             
772             if( vquality >= 0.0 && vquality <= 1.0 )
773             {
774                 job->vquality = vquality;
775                 job->vbitrate = 0;
776             }
777             else if( vbitrate )
778             {
779                 job->vquality = -1.0;
780                 job->vbitrate = vbitrate;
781             }
782             if( vcodec )
783             {
784                 job->vcodec = vcodec;
785             }
786             if( h264_13 ) 
787             { 
788                 job->h264_level = 13; 
789             }
790                 if( h264_30 )
791                 {
792                     job->h264_level = 30;
793             }
794             if( vrate )
795             {
796                 job->vrate = 27000000;
797                 job->vrate_base = vrate;
798             }
799             if( arate )
800             {
801                 job->arate = arate;
802             }
803
804             if( audios )
805             {
806                 if( strcasecmp( audios, "none" ) )
807                 {
808                     int    audio_count = 0;
809                     char * tmp         = audios;
810                     while( *tmp )
811                     {
812                         if( *tmp < '0' || *tmp > '9' )
813                         {
814                             /* Skip non numeric char */
815                             tmp++;
816                             continue;
817                         }
818                                                 job->audio_mixdowns[audio_count] = audio_mixdown;
819                         job->audios[audio_count++] =
820                             strtol( tmp, &tmp, 0 ) - 1;
821                     }
822                     job->audios[audio_count] = -1;
823                 }
824                 else
825                 {
826                     job->audios[0] = -1;
827                 }
828             }
829                         else
830                         {
831                             /* default to the first audio track if none has been specified */
832                             job->audios[0] = 0;
833                             job->audio_mixdowns[0] = audio_mixdown;
834                         }
835                         
836                         if( audio_mixdown == HB_AMIXDOWN_DOLBYPLII_AC3)
837                         {
838                int i;
839                for( i = 3 ; i > 0; i--)
840                {                   
841                    job->audios[i*2+1] = job->audios[i];
842                    job->audios[i*2] = job->audios[i];
843                    if(job->audios[i] != -1  )
844                    {
845                        job->audio_mixdowns[i*2+1] = HB_AMIXDOWN_AC3;
846                        job->audio_mixdowns[i*2] = HB_AMIXDOWN_DOLBYPLII;
847                    }
848                }
849                
850                job->audios[1] = job->audios[0];
851                job->audio_mixdowns[1] = HB_AMIXDOWN_AC3;
852                job->audio_mixdowns[0] = HB_AMIXDOWN_DOLBYPLII;
853             }
854                         
855             if( abitrate )
856             {
857                 job->abitrate = abitrate;
858             }
859             if( acodec )
860             {
861                 job->acodec = acodec;
862             }
863             if ( dynamic_range_compression )
864             {
865                 job->dynamic_range_compression = dynamic_range_compression;
866             }
867             
868             if( size )
869             {
870                 job->vbitrate = hb_calc_bitrate( job, size );
871                 fprintf( stderr, "Calculated bitrate: %d kbps\n",
872                          job->vbitrate );
873             }
874
875             if( sub )
876             {
877                 job->subtitle = sub - 1;
878             }
879
880             if( native_language )
881             {
882                 job->native_language = strdup( native_language );
883             }
884
885             if( job->mux )
886             {
887                 job->mux = mux;
888             }
889             
890             if ( largeFileSize )
891             {
892                 job->largeFileSize = 1;
893             }
894             if ( mp4_optimize )
895             {
896                 job->mp4_optimize = 1;
897             }
898             if ( ipod_atom )
899             {
900                 job->ipod_atom = 1;
901             }
902             
903             job->file = strdup( output );
904
905             if( crf )
906             {
907                 job->crf = 1;
908             }
909
910             if( x264opts != NULL && *x264opts != '\0' )
911             {
912                 job->x264opts = x264opts;
913             }
914             else /*avoids a bus error crash when options aren't specified*/
915             {
916                 job->x264opts =  NULL;
917             }
918             if (maxWidth)
919                 job->maxWidth = maxWidth;
920             if (maxHeight)
921                 job->maxHeight = maxHeight;
922             
923             if (vfr)
924                 job->vfr = 1;
925         
926             if( subtitle_force )
927             {
928                 job->subtitle_force = subtitle_force;
929             }
930
931             if( subtitle_scan )
932             {
933                 char *x264opts_tmp;
934
935                 /*
936                  * When subtitle scan is enabled do a fast pre-scan job
937                  * which will determine which subtitles to enable, if any.
938                  */
939                 job->pass = -1;
940                 
941                 x264opts_tmp = job->x264opts;
942
943                 job->x264opts = NULL;
944
945                 job->indepth_scan = subtitle_scan;  
946                 fprintf( stderr, "Subtitle Scan Enabled - enabling "
947                          "subtitles if found for foreign language segments\n");
948                 job->select_subtitle = malloc(sizeof(hb_subtitle_t*));
949                 *(job->select_subtitle) = NULL;
950                 
951                 /*
952                  * Add the pre-scan job
953                  */
954                 hb_add( h, job );
955
956                 job->x264opts = x264opts_tmp;
957             }
958
959             if( twoPass )
960             {
961                 /*
962                  * If subtitle_scan is enabled then only turn it on
963                  * for the first pass and then off again for the
964                  * second. 
965                  */
966                 hb_subtitle_t **subtitle_tmp = job->select_subtitle;
967
968                 job->select_subtitle = NULL;
969
970                 job->pass = 1;
971
972                 job->indepth_scan = 0;
973                 
974                 if (x264opts)
975                 {
976                     x264opts2 = strdup(x264opts);
977                 }
978
979                 /*
980                  * If turbo options have been selected then append them
981                  * to the x264opts now (size includes one ':' and the '\0')
982                  */
983                 if( turbo_opts_enabled ) 
984                 {
985                     int size = (x264opts ? strlen(x264opts) : 0) + strlen(turbo_opts) + 2;
986                     char *tmp_x264opts;
987                         
988                     tmp_x264opts = malloc(size * sizeof(char));
989                     if( x264opts ) 
990                     {
991                         snprintf( tmp_x264opts, size, "%s:%s", 
992                                   x264opts, turbo_opts );  
993                         free( x264opts );
994                     } else {
995                         /*
996                          * No x264opts to modify, but apply the turbo options
997                          * anyway as they may be modifying defaults
998                          */
999                         snprintf( tmp_x264opts, size, "%s", 
1000                                   turbo_opts );
1001                     }
1002                     x264opts = tmp_x264opts;
1003
1004                     fprintf( stderr, "Modified x264 options for pass 1 to append turbo options: %s\n",
1005                              x264opts );
1006
1007                     job->x264opts = x264opts;
1008                 }     
1009                 hb_add( h, job );
1010
1011                 job->select_subtitle = subtitle_tmp;
1012
1013                 job->pass = 2;
1014                 /*
1015                  * On the second pass we turn off subtitle scan so that we
1016                  * can actually encode using any subtitles that were auto
1017                  * selected in the first pass (using the whacky select-subtitle
1018                  * attribute of the job).
1019                  */
1020                 job->indepth_scan = 0;
1021
1022                 job->x264opts = x264opts2;
1023                 
1024                 hb_add( h, job );
1025             }
1026             else
1027             {
1028                 /*
1029                  * Turn on subtitle scan if requested, note that this option
1030                  * precludes encoding of any actual subtitles.
1031                  */ 
1032
1033                 job->indepth_scan = 0;
1034                 job->pass = 0;
1035                 hb_add( h, job );
1036             }
1037             hb_start( h );
1038             break;
1039         }
1040
1041 #define p s.param.working
1042         case HB_STATE_WORKING:
1043             fprintf( stdout, "\rEncoding: task %d of %d, %.2f %%",
1044                      p.job_cur, p.job_count, 100.0 * p.progress );
1045             if( p.seconds > -1 )
1046             {
1047                 fprintf( stdout, " (%.2f fps, avg %.2f fps, ETA "
1048                          "%02dh%02dm%02ds)", p.rate_cur, p.rate_avg,
1049                          p.hours, p.minutes, p.seconds );
1050             }
1051             fflush(stdout);
1052             break;
1053 #undef p
1054
1055 #define p s.param.muxing
1056         case HB_STATE_MUXING:
1057         {
1058             fprintf( stdout, "\rMuxing: %.2f %%", 100.0 * p.progress );
1059             fflush(stdout);
1060             break;
1061         }
1062 #undef p
1063
1064 #define p s.param.workdone
1065         case HB_STATE_WORKDONE:
1066             /* Print error if any, then exit */
1067             switch( p.error )
1068             {
1069                 case HB_ERROR_NONE:
1070                     fprintf( stderr, "\nRip done!\n" );
1071                     break;
1072                 case HB_ERROR_CANCELED:
1073                     fprintf( stderr, "\nRip canceled.\n" );
1074                     break;
1075                 default:
1076                     fprintf( stderr, "\nRip failed (error %x).\n",
1077                              p.error );
1078             }
1079             die = 1;
1080             break;
1081 #undef p
1082     }
1083     return 0;
1084 }
1085
1086 /****************************************************************************
1087  * SigHandler:
1088  ****************************************************************************/
1089 static volatile int64_t i_die_date = 0;
1090 void SigHandler( int i_signal )
1091 {
1092     if( die == 0 )
1093     {
1094         die = 1;
1095         i_die_date = hb_get_date();
1096         fprintf( stderr, "Signal %d received, terminating - do it "
1097                  "again in case it gets stuck\n", i_signal );
1098     }
1099     else if( i_die_date + 500 < hb_get_date() )
1100     {
1101         fprintf( stderr, "Dying badly, files might remain in your /tmp\n" );
1102         exit( 1 );
1103     }
1104 }
1105
1106 /****************************************************************************
1107  * ShowHelp:
1108  ****************************************************************************/
1109 static void ShowHelp()
1110 {
1111     int i;
1112     
1113     fprintf( stderr,
1114     "Syntax: HandBrakeCLI [options] -i <device> -o <file>\n"
1115     "\n"
1116         "### General Handbrake Options------------------------------------------------\n\n"
1117     "    -h, --help              Print help\n"
1118     "    -u, --update            Check for updates and exit\n"
1119     "    -v, --verbose           Be verbose\n"
1120     "    -C, --cpu               Set CPU count (default: autodetected)\n"
1121     "    -Z. --preset <string>   Use a built-in preset. Capitalization matters, and\n"
1122     "                            if the preset name has spaces, surround it with\n"
1123     "                            double quotation marks\n"
1124     "    -z, --preset-list       See a list of available built-in presets\n"
1125     "\n"
1126         
1127         "### Source Options-----------------------------------------------------------\n\n"
1128         "    -i, --input <string>    Set input device\n"
1129         "    -t, --title <number>    Select a title to encode (0 to scan only,\n"
1130     "                            default: 1)\n"
1131     "    -L, --longest           Select the longest title\n"
1132     "    -c, --chapters <string> Select chapters (e.g. \"1-3\" for chapters\n"
1133     "                            1 to 3, or \"3\" for chapter 3 only,\n"
1134     "                            default: all chapters)\n"
1135         "\n"
1136         
1137         "### Destination Options------------------------------------------------------\n\n"
1138     "    -o, --output <string>   Set output file name\n"
1139         "    -f, --format <string>   Set output format (avi/mp4/ogm/mkv, default:\n"
1140     "                            autodetected from file name)\n"
1141     "    -4, --large-file        Use 64-bit mp4 files that can hold more than\n"
1142     "                            4 GB. Note: Breaks iPod, @TV, PS3 compatibility.\n"""
1143     "    -O, --optimize          Optimize mp4 files for HTTP streaming\n"
1144     "    -I, --ipod-atom         Mark mp4 files so iPods will accept them\n"
1145     "\n"
1146         
1147         "### Picture Settings---------------------------------------------------------\n\n"
1148     "    -w, --width <number>    Set picture width\n"
1149     "    -l, --height <number>   Set picture height\n"
1150     "        --crop <T:B:L:R>    Set cropping values (default: autocrop)\n"
1151         "    -Y, --maxHeight <#>     Set maximum height\n"
1152         "    -X, --maxWidth <#>      Set maximum width\n"
1153         "    -s, --subtitle <number> Select subtitle (default: none)\n"
1154     "    -U, --subtitle-scan     Scan for subtitles in an extra 1st pass, and choose\n"
1155     "                            the one that's only used 10 percent of the time\n"
1156     "                            or less. This should locate subtitles for short\n"
1157     "                            foreign language segments. Best used in conjunction\n"
1158     "                            with --subtitle-forced.\n"
1159     "    -F, --subtitle-forced   Only display subtitles from the selected stream if\n"
1160     "                            the subtitle has the forced flag set. May be used in\n"
1161     "                            conjunction with --subtitle-scan to auto-select\n"
1162     "                            a stream if it contains forced subtitles.\n"
1163     "    -N, --native-language   Select subtitles with this language if it does not\n"
1164     "          <string>          match the Audio language. Provide the language's\n"
1165     "                            iso639-2 code (fre, eng, spa, dut, et cetera)\n"
1166         "    -m, --markers           Add chapter markers (mp4 output format only)\n"
1167         "\n"
1168         
1169         "### Video Options------------------------------------------------------------\n\n"
1170         "    -e, --encoder <string>  Set video library encoder (ffmpeg,xvid,\n"
1171     "                            x264,x264b13,x264b30 default: ffmpeg)\n"
1172         "    -q, --quality <float>   Set video quality (0.0..1.0)\n"
1173         "    -Q, --cqp               Use with -q for CQP instead of CRF\n"
1174     "    -S, --size <MB>         Set target size\n"
1175         "    -b, --vb <kb/s>         Set video bitrate (default: 1000)\n"
1176         "    -r, --rate              Set video framerate (" );
1177     for( i = 0; i < hb_video_rates_count; i++ )
1178     {
1179         fprintf( stderr, hb_video_rates[i].string );
1180         if( i != hb_video_rates_count - 1 )
1181             fprintf( stderr, "/" );
1182     }
1183     fprintf( stderr, ")\n"
1184         "\n"
1185         "    -2, --two-pass          Use two-pass mode\n"
1186      "    -d, --deinterlace       Deinterlace video with yadif/mcdeint filter\n"
1187      "          <YM:FD:MM:QP>     (default 0:-1:-1:1)\n"
1188      "           or\n"
1189      "          <fast/slow/slower>\n"            
1190      "    -7, --deblock           Deblock video with pp7 filter\n"
1191      "          <QP:M>            (default 0:2)\n"
1192      "    -8, --denoise           Denoise video with hqdn3d filter\n"
1193      "          <SL:SC:TL:TC>     (default 4:3:6:4.5)\n"
1194      "           or\n"
1195      "          <weak/medium/strong>\n"
1196      "    -9, --detelecine        Detelecine video with pullup filter\n"
1197      "          <L:R:T:B:SB:MP>   (default 1:1:4:4:0:0)\n"
1198     "    -g, --grayscale         Grayscale encoding\n"
1199     "    -p, --pixelratio        Store pixel aspect ratio in video stream\n"
1200     "    -P, --loosePixelratio   Store pixel aspect ratio with specified width\n"
1201     "           <modulus>        Takes as optional argument what number you want\n"
1202     "                            the dimensions to divide cleanly by (default 16)\n"
1203     
1204         
1205         "\n"
1206         
1207         
1208         "### Audio Options-----------------------------------------------------------\n\n"
1209         "    -E, --aencoder <string> Audio encoder (faac/lame/vorbis/ac3/aac+ac3) \n"
1210         "                            ac3 meaning passthrough, aac+ac3 meaning an\n"
1211         "                            aac dpl2 mixdown paired with ac3 pass-thru\n"
1212         "                            (default: guessed)\n"
1213         "    -B, --ab <kb/s>         Set audio bitrate (default: 128)\n"
1214         "    -a, --audio <string>    Select audio channel(s), separated by commas\n"
1215         "                            (\"none\" for no audio, \"1,2,3\" for multiple\n"
1216         "                             tracks, default: first one,\n"
1217         "                             max 8 normally, max 4 with aac+ac3)\n"
1218     "    -6, --mixdown <string>  Format for surround sound downmixing\n"
1219     "                            (mono/stereo/dpl1/dpl2/6ch, default: dpl2)\n"
1220     "    -R, --arate             Set audio samplerate (" );
1221     for( i = 0; i < hb_audio_rates_count; i++ )
1222     {
1223         fprintf( stderr, hb_audio_rates[i].string );
1224         if( i != hb_audio_rates_count - 1 )
1225             fprintf( stderr, "/" );
1226     }
1227     fprintf( stderr, " kHz)\n"
1228     "    -D, --drc <float>       Apply extra dynamic range compression to the audio,\n"
1229     "                            making soft sounds louder. Range is 1.0 to 4.0\n"
1230     "                            (too loud), with 1.5 - 2.5 being a useful range.\n"
1231     
1232         
1233         "\n"
1234         
1235         
1236     "### Advanced Options---------------------------------------------------------\n\n"
1237     "    -x, --x264opts <string> Specify advanced x264 options in the\n"
1238     "                            same style as mencoder:\n"
1239     "                            option1=value1:option2=value2\n"
1240     "    -T, --turbo             When using 2-pass use the turbo options\n"
1241     "                            on the first pass to improve speed\n"
1242     "                            (only works with x264, affects PSNR by about 0.05dB,\n"
1243     "                            and increases first pass speed two to four times)\n"
1244     "    -V, --vfr               Perform variable framerate detelecine on NTSC video\n"
1245     );
1246 }
1247
1248 /****************************************************************************
1249  * ShowPresets:
1250  ****************************************************************************/
1251 static void ShowPresets()
1252 {
1253     printf("\n+ Animation:  -e x264 -b 1000 -B 160 -R 48 -E faac -f mkv --deinterlace=\"slower\" -m -p -2 -T -x ref=5:mixed-refs:bframes=16:bime:weightb:b-rdo:direct=auto:b-pyramid:me=umh:subme=5:analyse=all:8x8dct:trellis=1:nr=150:no-fast-pskip:filter=2,2\n");
1254
1255     printf("\n+ AppleTV:  -e x264 -b 2500 -B 160 -R 48 -E faac -f mp4 -m -p -x bframes=3:ref=1:subme=5:me=umh:no-fast-pskip=1:trellis=1:cabac=0\n");
1256
1257     printf("\n+ Bedlam:  -e x264 -b 1800 -E ac3 -f mkv -m -p -2 -T -x ref=16:mixed-refs:bframes=16:bime:weightb:b-rdo:direct=auto:b-pyramid:me=umh:subme=7:me-range=64:analyse=all:8x8dct:trellis=2:no-fast-pskip:no-dct-decimate:filter=-2,-1\n");
1258
1259     printf("\n+ Blind:  -b 512 -B 128 -R 48 -E faac -f mp4 -w 512 -m\n");
1260
1261     printf("\n+ Broke:  -e x264 -S 695 -B 128 -R 48 -E faac -f mp4 -w 640 -m -2 -T -x ref=3:mixed-refs:bframes=16:bime:weightb:b-rdo:b-pyramid:direct=auto:me=umh:subme=6:trellis=1:analyse=all:8x8dct:no-fast-pskip\n");
1262
1263     printf("\n+ Classic:  -b 1000 -B 160 -R 48 -E faac -f mp4\n");
1264
1265     printf("\n+ Constant Quality Rate:  -e x264 -q 0.64709997177124023 -Q  -E ac3 -f mkv -m -p -x ref=3:mixed-refs:bframes=3:b-pyramid:b-rdo:bime:weightb:filter=-2,-1:subme=6:trellis=1:analyse=all:8x8dct:me=umh\n");
1266
1267     printf("\n+ Deux Six Quatre:  -e x264 -b 1600 -E ac3 -f mkv -m -p -2 -T -x ref=5:mixed-refs:bframes=3:bime:weightb:b-rdo:b-pyramid:me=umh:subme=7:trellis=1:analyse=all:8x8dct:no-fast-pskip\n");
1268
1269     printf("\n+ Film:  -e x264 -b 1800 -E ac3 -f mkv -m -p -2 -T -x ref=3:mixed-refs:bframes=16:bime:weightb:b-rdo:direct=auto:b-pyramid:me=umh:subme=7:analyse=all:8x8dct:trellis=1:no-fast-pskip\n");
1270
1271     printf("\n+ iPhone / iPod Touch:  -e x264 -b 960 -B 128 -R 48 -E faac -f mp4 -I -w 480 -m -x level=30:cabac=0:ref=1:analyse=all:me=umh:subme=6:no-fast-pskip=1:trellis=1\n");
1272
1273     printf("\n+ iPod High-Rez:  -e x264 -b 1500 -B 160 -R 48 -E faac -f mp4 -I -w 640 -m -x level=30:bframes=0:cabac=0:ref=1:vbv-maxrate=1500:vbv-bufsize=2000:analyse=all:me=umh:subme=6:no-fast-pskip=1\n");
1274
1275     printf("\n+ iPod Low-Rez:  -e x264 -b 700 -B 160 -R 48 -E faac -f mp4 -I -w 320 -m -x level=30:bframes=0:cabac=0:ref=1:vbv-maxrate=768:vbv-bufsize=2000:analyse=all:me=umh:subme=6:no-fast-pskip=1\n");
1276
1277     printf("\n+ Normal:  -e x264 -b 1500 -B 160 -R 48 -E faac -f mp4 -m -p -2 -T -x ref=2:bframes=2:subme=5:me=umh\n");
1278
1279     printf("\n+ PS3:  -e x264 -b 2500 -B 160 -R 48 -E faac -f mp4 -p -x level=41:subme=5:me=umh\n");
1280
1281     printf("\n+ PSP:  -b 1024 -B 128 -R 48 -E faac -f mp4 -w 368 -l 208 -m\n");
1282
1283     printf("\n+ QuickTime:  -e x264 -b 2000 -B 160 -R 48 -E faac -f mp4 -m -p -2 -T -x ref=3:mixed-refs:bframes=3:bime:weightb:b-rdo:direct=auto:me=umh:subme=5:analyse=all:trellis=1:no-fast-pskip\n");
1284
1285     printf("\n+ Television:  -e x264 -b 1300 -B 160 -R 48 -E faac -f mkv --deinterlace=\"slower\" --denoise=\"weak\" -m -2 -T -x ref=3:mixed-refs:bframes=16:bime:weightb:direct=auto:b-pyramid:me=umh:subme=6:analyse=all:8x8dct:trellis=1:nr=150:no-fast-pskip\n");
1286
1287     printf("\n+ Xbox 360:  -e x264 -b 2000 -B 160 -R 48 -E faac -f mp4 -p -x level=40:ref=3:mixed-refs:bframes=16:bime:weightb:b-rdo:direct=auto:b-pyramid:me=umh:subme=7:analyse=all:8x8dct:trellis=1:no-fast-pskip:filter=-2,-1\n");
1288 }
1289
1290 /****************************************************************************
1291  * ParseOptions:
1292  ****************************************************************************/
1293 static int ParseOptions( int argc, char ** argv )
1294 {
1295     for( ;; )
1296     {
1297         static struct option long_options[] =
1298           {
1299             { "help",        no_argument,       NULL,    'h' },
1300             { "update",      no_argument,       NULL,    'u' },
1301             { "verbose",     no_argument,       NULL,    'v' },
1302             { "cpu",         required_argument, NULL,    'C' },
1303
1304             { "format",      required_argument, NULL,    'f' },
1305             { "input",       required_argument, NULL,    'i' },
1306             { "output",      required_argument, NULL,    'o' },
1307             { "large-file",  no_argument,       NULL,    '4' },
1308             { "optimize",    no_argument,       NULL,    'O' },
1309             { "ipod-atom",   no_argument,       NULL,    'I' },
1310             
1311             { "title",       required_argument, NULL,    't' },
1312             { "longest",     no_argument,       NULL,    'L' },
1313             { "chapters",    required_argument, NULL,    'c' },
1314             { "markers",     optional_argument, NULL,    'm' },
1315             { "audio",       required_argument, NULL,    'a' },
1316             { "mixdown",     required_argument, NULL,    '6' },
1317             { "drc",         required_argument, NULL,    'D' },
1318             { "subtitle",    required_argument, NULL,    's' },
1319             { "subtitle-scan", no_argument,     NULL,    'U' },
1320             { "subtitle-forced", no_argument,   NULL,    'F' },
1321             { "native-language", required_argument, NULL,'N' },
1322
1323             { "encoder",     required_argument, NULL,    'e' },
1324             { "aencoder",    required_argument, NULL,    'E' },
1325             { "two-pass",    no_argument,       NULL,    '2' },
1326             { "deinterlace", optional_argument, NULL,    'd' },
1327             { "deblock",     optional_argument, NULL,    '7' },
1328             { "denoise",     optional_argument, NULL,    '8' },
1329             { "detelecine",  optional_argument, NULL,    '9' },
1330             { "grayscale",   no_argument,       NULL,    'g' },
1331             { "pixelratio",  no_argument,       NULL,    'p' },
1332             { "loosePixelratio", optional_argument,   NULL,    'P' },
1333             { "width",       required_argument, NULL,    'w' },
1334             { "height",      required_argument, NULL,    'l' },
1335             { "crop",        required_argument, NULL,    'n' },
1336
1337             { "vb",          required_argument, NULL,    'b' },
1338             { "quality",     required_argument, NULL,    'q' },
1339             { "size",        required_argument, NULL,    'S' },
1340             { "ab",          required_argument, NULL,    'B' },
1341             { "rate",        required_argument, NULL,    'r' },
1342             { "arate",       required_argument, NULL,    'R' },
1343             { "cqp",         no_argument,       NULL,    'Q' },
1344             { "x264opts",    required_argument, NULL,    'x' },
1345             { "turbo",       no_argument,       NULL,    'T' },
1346             { "maxHeight",   required_argument, NULL,    'Y' },
1347             { "maxWidth",    required_argument, NULL,    'X' },
1348             { "preset",      required_argument, NULL,    'Z' },
1349             { "preset-list", no_argument,       NULL,    'z' },
1350             { "vfr",         no_argument,       NULL,    'V' },
1351                         
1352             { 0, 0, 0, 0 }
1353           };
1354
1355         int option_index = 0;
1356         int c;
1357
1358                 c = getopt_long( argc, argv,
1359                                                  "hvuC:f:4i:Io:t:Lc:m::a:6:s:UFN:e:E:2dD:789gpOP::w:l:n:b:q:S:B:r:R:Qx:TY:X:VZ:z",
1360                          long_options, &option_index );
1361         if( c < 0 )
1362         {
1363             break;
1364         }
1365
1366         switch( c )
1367         {
1368             case 'h':
1369                 ShowHelp();
1370                 exit( 0 );
1371             case 'u':
1372                 update = 1;
1373                 break;
1374             case 'v':
1375                 debug = HB_DEBUG_ALL;
1376                 break;
1377             case 'C':
1378                 cpu = atoi( optarg );
1379                 break;
1380             
1381             case 'Z':
1382                 preset = 1;
1383                 preset_name = strdup(optarg);
1384                 break;
1385             case 'z':
1386                 ShowPresets();
1387                 exit ( 0 );
1388                 
1389             case 'f':
1390                 format = strdup( optarg );
1391                 break;
1392             case 'i':
1393                 input = strdup( optarg );
1394                 break;
1395             case 'o':
1396                 output = strdup( optarg );
1397                 break;
1398             case '4':
1399                 largeFileSize = 1;
1400                 break;
1401             case 'O':
1402                 mp4_optimize = 1;
1403                 break;
1404             case 'I':
1405                 ipod_atom = 1;
1406                 break;
1407             
1408             case 't':
1409                 titleindex = atoi( optarg );
1410                 break;
1411             case 'L':
1412                 longest_title = 1;
1413                 break;
1414             case 'c':
1415             {
1416                 int start, end;
1417                 if( sscanf( optarg, "%d-%d", &start, &end ) == 2 )
1418                 {
1419                     chapter_start = start;
1420                     chapter_end   = end;
1421                 }
1422                 else if( sscanf( optarg, "%d", &start ) == 1 )
1423                 {
1424                     chapter_start = start;
1425                     chapter_end   = chapter_start;
1426                 }
1427                 else
1428                 {
1429                     fprintf( stderr, "chapters: invalid syntax (%s)\n",
1430                              optarg );
1431                     return -1;
1432                 }
1433                 break;
1434             }
1435             case 'm':
1436                 if( optarg != NULL )
1437                 {
1438                     marker_file = strdup( optarg );
1439                 }
1440                 chapter_markers = 1;
1441                 break;
1442             case 'a':
1443                 audios = strdup( optarg );
1444                 break;
1445             case '6':
1446                 if( !strcasecmp( optarg, "mono" ) )
1447                 {
1448                     audio_mixdown = HB_AMIXDOWN_MONO;
1449                 }
1450                 else if( !strcasecmp( optarg, "stereo" ) )
1451                 {
1452                     audio_mixdown = HB_AMIXDOWN_STEREO;
1453                 }
1454                 else if( !strcasecmp( optarg, "dpl1" ) )
1455                 {
1456                     audio_mixdown = HB_AMIXDOWN_DOLBY;
1457                 }
1458                 else if( !strcasecmp( optarg, "dpl2" ) )
1459                 {
1460                     audio_mixdown = HB_AMIXDOWN_DOLBYPLII;
1461                 }
1462                 else if( !strcasecmp( optarg, "6ch" ) )
1463                 {
1464                     audio_mixdown = HB_AMIXDOWN_6CH;
1465                 }
1466                 break;
1467             case 'D':
1468                 dynamic_range_compression = atof( optarg );
1469                 break;
1470             case 's':
1471                 sub = atoi( optarg );
1472                 break;
1473             case 'U':
1474                 subtitle_scan = 1;
1475                 break;
1476             case 'F':
1477                 subtitle_force = 1;
1478                 break;
1479             case 'N':
1480                 native_language = strdup( optarg );
1481                 break;
1482             case '2':
1483                 twoPass = 1;
1484                 break;
1485             case 'd':
1486                 if( optarg != NULL )
1487                 {
1488                     if (!( strcmp( optarg, "fast" ) ))
1489                     {
1490                         deinterlace_opt = "-1";
1491                     }
1492                     else if (!( strcmp( optarg, "slow" ) ))
1493                     {
1494                         deinterlace_opt = "2";
1495                     }
1496                     else if (!( strcmp( optarg, "slower" ) ))
1497                     {
1498                         deinterlace_opt = "0";
1499                     }
1500                     else
1501                     {
1502                         deinterlace_opt = strdup( optarg );
1503                     }
1504                 }
1505                 deinterlace = 1;
1506                 break;
1507             case '7':
1508                 if( optarg != NULL )
1509                 {
1510                     deblock_opt = strdup( optarg );
1511                 }
1512                 deblock = 1;
1513                 break;
1514             case '8':
1515                 if( optarg != NULL )
1516                 {
1517                     if (!( strcmp( optarg, "weak" ) ))
1518                     {
1519                         denoise_opt = "2:1:2:3";
1520                     }
1521                     else if (!( strcmp( optarg, "medium" ) ))
1522                     {
1523                         denoise_opt = "3:2:2:3";
1524                     }
1525                     else if (!( strcmp( optarg, "strong" ) ))
1526                     {
1527                         denoise_opt = "7:7:5:5";
1528                     }
1529                     else
1530                     {
1531                         denoise_opt = strdup( optarg );
1532                     }
1533                 }
1534                 denoise = 1;
1535                 break;                
1536             case '9':
1537                 if( optarg != NULL )
1538                 {
1539                     detelecine_opt = strdup( optarg );
1540                 }
1541                 detelecine = 1;
1542                 break;                
1543             case 'g':
1544                 grayscale = 1;
1545                 break;
1546             case 'p':
1547                 pixelratio = 1;
1548                 break;
1549             case 'P':
1550                 loosePixelratio = 1;
1551                 if( optarg != NULL )
1552                 {
1553                     modulus = atoi( optarg );
1554                 }
1555                 break;
1556             case 'e':
1557                 if( !strcasecmp( optarg, "ffmpeg" ) )
1558                 {
1559                     vcodec = HB_VCODEC_FFMPEG;
1560                 }
1561                 else if( !strcasecmp( optarg, "xvid" ) )
1562                 {
1563                     vcodec = HB_VCODEC_XVID;
1564                 }
1565                 else if( !strcasecmp( optarg, "x264" ) )
1566                 {
1567                     vcodec = HB_VCODEC_X264;
1568                 }
1569                 else if( !strcasecmp( optarg, "x264b13" ) )
1570                 {
1571                     vcodec = HB_VCODEC_X264;
1572                     h264_13 = 1;
1573                 }
1574                 else if( !strcasecmp( optarg, "x264b30" ) )
1575                 {
1576                     vcodec = HB_VCODEC_X264;
1577                     h264_30 = 1;
1578                 }
1579                 else
1580                 {
1581                     fprintf( stderr, "invalid codec (%s)\n", optarg );
1582                     return -1;
1583                 }
1584                 break;
1585             case 'E':
1586                 if( !strcasecmp( optarg, "ac3" ) )
1587                 {
1588                     acodec = HB_ACODEC_AC3;
1589                 }
1590                 else if( !strcasecmp( optarg, "lame" ) )
1591                 {
1592                     acodec = HB_ACODEC_LAME;
1593                 }
1594                 else if( !strcasecmp( optarg, "faac" ) )
1595                 {
1596                     acodec = HB_ACODEC_FAAC;
1597                 }
1598                 else if( !strcasecmp( optarg, "vorbis") )
1599                 {
1600                     acodec = HB_ACODEC_VORBIS;
1601                 }
1602                 else if( !strcasecmp( optarg, "aac+ac3") )
1603                 {
1604                     acodec = HB_ACODEC_FAAC;
1605                     audio_mixdown = HB_AMIXDOWN_DOLBYPLII_AC3;
1606                     arate = 48000;
1607                 }
1608                 break;
1609             case 'w':
1610                 width = atoi( optarg );
1611                 break;
1612             case 'l':
1613                 height = atoi( optarg );
1614                 break;
1615             case 'n':
1616             {
1617                 int    i;
1618                 char * tmp = optarg;
1619                 for( i = 0; i < 4; i++ )
1620                 {
1621                     if( !*tmp )
1622                         break;
1623                     crop[i] = strtol( tmp, &tmp, 0 );
1624                     tmp++;
1625                 }
1626                 break;
1627             }
1628             case 'r':
1629             {
1630                 int i;
1631                 vrate = 0;
1632                 for( i = 0; i < hb_video_rates_count; i++ )
1633                 {
1634                     if( !strcmp( optarg, hb_video_rates[i].string ) )
1635                     {
1636                         vrate = hb_video_rates[i].rate;
1637                         break;
1638                     }
1639                 }
1640                 if( !vrate )
1641                 {
1642                     fprintf( stderr, "invalid framerate %s\n", optarg );
1643                 }
1644                 break;
1645             }
1646             case 'R':
1647             {
1648                 int i;
1649                 arate = 0;
1650                 for( i = 0; i < hb_audio_rates_count; i++ )
1651                 {
1652                     if( !strcmp( optarg, hb_audio_rates[i].string ) )
1653                     {
1654                         arate = hb_audio_rates[i].rate;
1655                         break;
1656                     }
1657                 }
1658                 if( !arate )
1659                 {
1660                     fprintf( stderr, "invalid framerate %s\n", optarg );
1661                 }
1662                 break;
1663             }
1664             case 'b':
1665                 vbitrate = atoi( optarg );
1666                 break;
1667             case 'q':
1668                 vquality = atof( optarg );
1669                 break;
1670             case 'S':
1671                 size = atoi( optarg );
1672                 break;
1673             case 'B':
1674                 abitrate = atoi( optarg );
1675                 break;
1676             case 'Q':
1677                 crf = 0;
1678                 break;
1679             case 'x':
1680                 x264opts = strdup( optarg );
1681                 break;
1682             case 'T':
1683                 turbo_opts_enabled = 1;
1684                 break;
1685             case 'Y':
1686                 maxHeight = atoi( optarg );
1687                 break;
1688             case 'X':
1689                 maxWidth = atoi (optarg );
1690                 break;
1691             case 'V':
1692                 vfr = 1;
1693                 break;
1694                                 
1695             default:
1696                 fprintf( stderr, "unknown option (%s)\n", argv[optind] );
1697                 return -1;
1698         }
1699     }
1700
1701     return 0;
1702 }
1703
1704 static int CheckOptions( int argc, char ** argv )
1705 {
1706     if( update )
1707     {
1708         return 0;
1709     }
1710
1711     if( input == NULL || *input == '\0' )
1712     {
1713         fprintf( stderr, "Missing input device. Run %s --help for "
1714                  "syntax.\n", argv[0] );
1715         return 1;
1716     }
1717
1718     /* Parse format */
1719     if( titleindex > 0 )
1720     {
1721         if( output == NULL || *output == '\0' )
1722         {
1723             fprintf( stderr, "Missing output file name. Run %s --help "
1724                      "for syntax.\n", argv[0] );
1725             return 1;
1726         }
1727
1728         if( !format )
1729         {
1730             char * p = strrchr( output, '.' );
1731
1732             /* autodetect */
1733             if( p && !strcasecmp( p, ".avi" ) )
1734             {
1735                 mux = HB_MUX_AVI;
1736             }
1737             else if( p && ( !strcasecmp( p, ".mp4" )  ||
1738                             !strcasecmp( p, ".m4v" ) ) )
1739             {
1740                 if ( h264_30 == 1 )
1741                     mux = HB_MUX_IPOD;
1742                 else
1743                     mux = HB_MUX_MP4;
1744             }
1745             else if( p && ( !strcasecmp( p, ".ogm" ) ||
1746                             !strcasecmp( p, ".ogg" ) ) )
1747             {
1748                 mux = HB_MUX_OGM;
1749             }
1750             else if( p && !strcasecmp(p, ".mkv" ) )
1751             {
1752                 mux = HB_MUX_MKV;
1753             }
1754             else
1755             {
1756                 fprintf( stderr, "Output format couldn't be guessed "
1757                          "from file name, using default.\n" );
1758                 return 0;
1759             }
1760         }
1761         else if( !strcasecmp( format, "avi" ) )
1762         {
1763             mux = HB_MUX_AVI;
1764         }
1765         else if( !strcasecmp( format, "mp4" ) )
1766         {
1767             if ( h264_30 == 1)
1768                 mux = HB_MUX_IPOD;
1769             else
1770                 mux = HB_MUX_MP4;
1771         }
1772         else if( !strcasecmp( format, "ogm" ) ||
1773                  !strcasecmp( format, "ogg" ) )
1774         {
1775             mux = HB_MUX_OGM;
1776         }
1777         else if( !strcasecmp( format, "mkv" ) )
1778         {
1779             mux = HB_MUX_MKV;
1780         }
1781         else
1782         {
1783             fprintf( stderr, "Invalid output format (%s). Possible "
1784                      "choices are avi, mp4, m4v, ogm, ogg and mkv\n.", format );
1785             return 1;
1786         }
1787
1788         if( !acodec )
1789         {
1790             if( mux == HB_MUX_MP4 || mux == HB_MUX_IPOD )
1791             {
1792                 acodec = HB_ACODEC_FAAC;
1793             }
1794             else if( mux == HB_MUX_AVI )
1795             {
1796                 acodec = HB_ACODEC_LAME;
1797             }
1798             else if( mux == HB_MUX_OGM )
1799             {
1800                 acodec = HB_ACODEC_VORBIS;
1801             }
1802             else if( mux == HB_MUX_MKV )
1803             {
1804                 acodec = HB_ACODEC_AC3;
1805             }
1806         }
1807
1808     }
1809
1810     return 0;
1811 }