OSDN Git Service

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