summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorhandbrake <[email protected]>2006-01-14 13:21:55 +0000
committerhandbrake <[email protected]>2006-01-14 13:21:55 +0000
commitdc8de40de13c3f3e643b980a95ef48ccafb542e3 (patch)
tree953b97afe7082bbe2ce4247c703a51aa8e29a3c9 /test
parent4beb6a8b483c9d84677b21cc271ce315f136335c (diff)
HandBrake 0.6.0-test1
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@10 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r--test/test.c614
1 files changed, 445 insertions, 169 deletions
diff --git a/test/test.c b/test/test.c
index d59e7ee3e..1a693fde7 100644
--- a/test/test.c
+++ b/test/test.c
@@ -1,240 +1,516 @@
-/* $Id: test.c,v 1.7 2003/11/13 01:18:52 titer Exp $
+/* $Id: test.c,v 1.26 2004/01/22 19:36:55 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.m0k.org/>.
It may be used under the terms of the GNU General Public License. */
#include <signal.h>
+#include <getopt.h>
#include "HandBrake.h"
-volatile int die;
+/* Options */
+static int verbose = 0;
+static char * input = NULL;
+static char * output = NULL;
+static char * format = NULL;
+static int titleindex = 1;
+static int twoPass = 0;
+static int deinterlace = 0;
+static int vcodec = HB_CODEC_FFMPEG;
+static char * audios = NULL;
+static int width = 0;
+static int top = 0;
+static int bottom = 0;
+static int left = 0;
+static int right = 0;
+static int autocrop = 0;
+static int cpu = 0;
+static int vbitrate = 1024;
+static int size = 0;
+static int abitrate = 128;
+static int mux = 0;
+static int acodec = 0;
+
+/* Exit cleanly on Ctrl-C */
+static volatile int die = 0;
+static void SigHandler( int );
+
+/* Utils */
+static void ShowHelp();
+static int ParseOptions( int argc, char ** argv );
+static int CheckOptions( int argc, char ** argv );
+
+/* libhb callbacks */
+static void Scanning( void * data, int title, int titleCount );
+static void ScanDone( void * data, HBList * titleList );
+static void Encoding( void * data, float position, int pass,
+ int passCount, float frameRate,
+ float avgFrameRate, int remainingTime );
+static void RipDone( void * data, int result );
-void SigHandler( int signal )
+int main( int argc, char ** argv )
{
- die = 1;
+ HBHandle * h;
+ HBCallbacks callbacks;
+
+ fprintf( stderr, "HandBrake " HB_VERSION
+ " - http://handbrake.m0k.org/\n" );
+
+ if( ParseOptions( argc, argv ) ||
+ CheckOptions( argc, argv ) )
+ {
+ return 1;
+ }
+
+ /* Exit ASAP on Ctrl-C */
+ signal( SIGINT, SigHandler );
+
+ /* Init libhb */
+ h = HBInit( verbose, cpu );
+
+ /* Set libhb callbacks */
+ callbacks.data = h;
+ callbacks.scanning = Scanning;
+ callbacks.scanDone = ScanDone;
+ callbacks.encoding = Encoding;
+ callbacks.ripDone = RipDone;
+ HBSetCallbacks( h, callbacks );
+
+ /* Feed libhb with a DVD to scan */
+ fprintf( stderr, "Opening %s...\n", input );
+ HBScanDVD( h, input, titleindex );
+
+ /* Wait... */
+ while( !die )
+ {
+ HBSnooze( 500000 );
+ }
+
+ /* Clean up */
+ HBClose( &h );
+
+ fprintf( stderr, "HandBrake has exited cleanly.\n" );
+
+ return 0;
}
-int main( int argc, char ** argv )
+/****************************************************************************
+ * SigHandler:
+ ****************************************************************************/
+static volatile int64_t i_die_date = 0;
+void SigHandler( int i_signal )
{
- int c;
- HBHandle * h;
- HBStatus s;
-
- /* Default values */
- int debug = 1;
- char * device = NULL;
- char * file = NULL;
- int titleIdx = 1;
- int audio1Idx = 1;
- int audio2Idx = 0;
- int twoPass = 0;
- int deinterlace = 0;
- int width = 0;
- int topCrop = 0;
- int bottomCrop = 0;
- int leftCrop = 0;
- int rightCrop = 0;
- int cpuCount = 0;
- int vBitrate = 1024;
- int aBitrate = 128;
- int xvid = 0;
-
- die = 0;
+ if( die == 0 )
+ {
+ i_die_date = HBGetDate();
+ fprintf( stderr, "Signal %d received, terminating - do it "
+ "again in case it gets stuck\n", i_signal );
+ }
+ else if( i_die_date + 500000 < HBGetDate() )
+ {
+ fprintf( stderr, "Dying badly, files might remain in your /tmp\n" );
+ exit( 1 );
+ }
+ die = 1;
+}
- /* Exit ASAP on Ctrl-C */
- signal( SIGINT, SigHandler );
+/****************************************************************************
+ * ShowHelp:
+ ****************************************************************************/
+static void ShowHelp()
+{
+ fprintf( stderr,
+ "Syntax: HBTest [options] -i <device> -o <file>\n"
+ "\n"
+ " -h, --help Print help\n"
+ " -v, --verbose Be verbose\n"
+ " -C, --cpu Set CPU count (default: autodetected)\n"
+ "\n"
+ " -f, --format <string> Set output format (avi/mp4/ogm, default:\n"
+ " autodetected)\n"
+ " -i, --input <string> Set input device\n"
+ " -o, --output <string> Set output file name\n"
+ "\n"
+ " --scan Only scan the device\n"
+ " -t, --title <number> Select a title to encode (0 to scan only,\n"
+ " default: 1)\n"
+ " -a, --audio <string> Select audio channel(s) (none for no audio,\n"
+ " default: first one)\n"
+ " --noaudio Disable audio\n"
+ "\n"
+ " -c, --codec <string> Set video library encoder (ffmpeg/xvid/x264,\n"
+ " default: ffmpeg)\n"
+ " -2, --two-pass Use two-pass mode\n"
+ " -d, --deinterlace Deinterlace video\n"
+ "\n"
+ " -b, --vb <kb/s> Set video bitrate (default: 1024)\n"
+ " -s, --size <MB> Set target size instead of bitrate\n"
+ " -B, --ab <kb/s> Set audio bitrate (default: 128)\n"
+ " -w, --width <number> Set picture width\n"
+ " --crop <T:B:L:R> Set cropping values\n"
+ " --autocrop Use autodetected cropping values\n" );
+}
- fprintf( stderr, "Welcome to HandBrake " VERSION "\n" );
- /* Parse command line */
- while( ( c = getopt( argc, argv,
- "qd:o:t:a:b:piw:j:k:l:m:c:e:f:x" ) ) != -1 )
+/****************************************************************************
+ * ParseOptions:
+ ****************************************************************************/
+static int ParseOptions( int argc, char ** argv )
+{
+ for( ;; )
{
+ static struct option long_options[] =
+ {
+ { "help", no_argument, NULL, 'h' },
+ { "verbose", no_argument, NULL, 'v' },
+ { "cpu", required_argument, NULL, 'C' },
+
+ { "format", required_argument, NULL, 'f' },
+ { "input", required_argument, NULL, 'i' },
+ { "output", required_argument, NULL, 'o' },
+
+ { "scan", no_argument, NULL, 'S' },
+ { "title", required_argument, NULL, 't' },
+ { "audio", required_argument, NULL, 'a' },
+ { "noaudio", no_argument, NULL, 'a' },
+
+ { "codec", required_argument, NULL, 'c' },
+ { "two-pass", no_argument, NULL, '2' },
+ { "deinterlace", no_argument, NULL, 'd' },
+ { "width", required_argument, NULL, 'w' },
+ { "crop", required_argument, NULL, 'n' },
+ { "autocrop", no_argument, NULL, 'z' },
+
+ { "vb", required_argument, NULL, 'b' },
+ { "size", required_argument, NULL, 's' },
+ { "ab", required_argument, NULL, 'B' },
+
+ { 0, 0, 0, 0 }
+ };
+
+ int option_index = 0;
+ int c;
+
+ c = getopt_long( argc, argv, "hvC:f:i:o:St:a:c:2dw:n:zb:s:B:",
+ long_options, &option_index );
+ if( c < 0 )
+ {
+ break;
+ }
+
switch( c )
{
- case 'q':
- debug = 0;
+ case 'h':
+ ShowHelp();
+ exit( 0 );
+ case 'v':
+ verbose = 1;
break;
-
- case 'd':
- device = strdup( optarg );
+ case 'C':
+ cpu = atoi( optarg );
break;
+ case 'f':
+ format = strdup( optarg );
+ break;
+ case 'i':
+ input = strdup( optarg );
+ break;
case 'o':
- file = strdup( optarg );
+ output = strdup( optarg );
break;
+ case 'S':
+ titleindex = 0;
+ break;
case 't':
- titleIdx = atoi( optarg );
+ titleindex = atoi( optarg );
break;
-
case 'a':
- audio1Idx = atoi( optarg );
+ audios = strdup( optarg ? optarg : "none" );
break;
- case 'b':
- audio2Idx = atoi( optarg );
- break;
-
- case 'p':
+ case '2':
twoPass = 1;
break;
-
- case 'i':
+ case 'd':
deinterlace = 1;
break;
-
+ case 'c':
+ if( !strcasecmp( optarg, "ffmpeg" ) )
+ {
+ vcodec = HB_CODEC_FFMPEG;
+ }
+ else if( !strcasecmp( optarg, "xvid" ) )
+ {
+ vcodec = HB_CODEC_XVID;
+ }
+ else if( !strcasecmp( optarg, "x264" ) )
+ {
+ vcodec = HB_CODEC_X264;
+ }
+ else
+ {
+ fprintf( stderr, "invalid codec (%s)\n", optarg );
+ return -1;
+ }
+ break;
case 'w':
width = atoi( optarg );
break;
-
- case 'j':
- topCrop = atoi( optarg );
- break;
-
- case 'k':
- bottomCrop = atoi( optarg );
- break;
-
- case 'l':
- leftCrop = atoi( optarg );
- break;
-
- case 'm':
- rightCrop = atoi( optarg );
+ case 'n':
+ {
+ char * crop = strdup( optarg );
+ char * _2be3 = crop;
+
+ if( *crop )
+ {
+ top = strtol( crop, &crop, 0 ); crop++;
+ }
+ if( *crop )
+ {
+ bottom = strtol( crop, &crop, 0 ); crop++;
+ }
+ if( *crop )
+ {
+ left = strtol( crop, &crop, 0 ); crop++;
+ }
+ if( *crop )
+ {
+ right = strtol( crop, &crop, 0 ); crop++;
+ }
+
+ free( _2be3 );
break;
+ }
+ case 'z':
+ autocrop = 1;
+ break;
- case 'c':
- cpuCount = atoi( optarg );
+ case 'b':
+ vbitrate = atoi( optarg );
break;
-
- case 'e':
- vBitrate = atoi( optarg );
+ case 's':
+ size = atoi( optarg );
break;
-
- case 'f':
- aBitrate = atoi( optarg );
- break;
-
- case 'x':
- xvid = 1;
+ case 'B':
+ abitrate = atoi( optarg );
break;
default:
- break;
+ fprintf( stderr, "unknown option (%s)\n", argv[optind] );
+ return -1;
}
}
- /* Check parsed options */
- if( !device || !file )
- {
- fprintf( stderr,
- "Syntax: HBTest [options] -d <device> -o <file>\n"
- "Possible options are :\n"
- " -q quiet output\n"
- " -t <value> select a title (default is 1)\n"
- " -a <value> primary audio channel (default is 1)\n"
- " -b <value> secondary audio channel (default is none)\n"
- " -p 2-pass encoding\n"
- " -i deinterlace picture\n"
- " -w output width\n"
- " -j <value> top cropping\n"
- " -k <value> bottom cropping\n"
- " -l <value> left cropping\n"
- " -m <value> right cropping\n"
- " -c <value> CPU count (default: autodetected)\n"
- " -e <value> Video bitrate (default is 1024)\n"
- " -f <value> Audio bitrate (default is 128)\n"
- " -x Use XviD instead of Ffmpeg\n" );
+ return 0;
+}
+
+static int CheckOptions( int argc, char ** argv )
+{
+ if( input == NULL || *input == '\0' )
+ {
+ fprintf( stderr, "Missing input device. Run %s --help for "
+ "syntax.\n", argv[0] );
return 1;
}
- /* Create the lihb thread & init things */
- h = HBInit( debug, cpuCount );
-
- while( !die )
+ /* Parse format */
+ if( titleindex > 0 )
{
- HBSnooze( 100000 );
+ if( output == NULL || *output == '\0' )
+ {
+ fprintf( stderr, "Missing output file name. Run %s --help "
+ "for syntax.\n", argv[0] );
+ return 1;
+ }
- if( !HBGetStatus( h, &s ) )
- continue;
+ if( !format )
+ {
+ char *p = strrchr( output, '.' );
+ /* autodetect */
+ if( p && !strcasecmp( p, ".avi" ) )
+ {
+ mux = HB_MUX_AVI;
+ }
+ else if( p && !strcasecmp( p, ".mp4" ) )
+ {
+ mux = HB_MUX_MP4;
+ }
+ else if( p && ( !strcasecmp( p, ".ogm" ) ||
+ !strcasecmp( p, ".ogg" ) ) )
+ {
+ mux = HB_MUX_OGM;
+ }
- switch( s.mode )
+ else
+ {
+ fprintf( stderr, "Output format couldn't be guessed "
+ "from file name, please use --format.\n" );
+ return 1;
+ }
+ }
+ else if( !strcasecmp( format, "avi" ) )
{
- case HB_MODE_UNDEF:
- /* Will never happen */
- break;
+ mux = HB_MUX_AVI;
+ }
+ else if( !strcasecmp( format, "mp4" ) )
+ {
+ mux = HB_MUX_MP4;
+ }
+ else if( !strcasecmp( format, "ogm" ) ||
+ !strcasecmp( format, "ogg" ) )
+ {
+ mux = HB_MUX_OGM;
+ }
+ else
+ {
+ fprintf( stderr, "Invalid output format (%s). Possible "
+ "choices are avi, mp4 and ogm\n.", format );
+ return 1;
+ }
+ if( mux == HB_MUX_MP4 )
+ {
+ acodec = HB_CODEC_AAC;
+ }
+ else if( mux == HB_MUX_AVI )
+ {
+ acodec = HB_CODEC_MP3;
+ }
+ else if( mux == HB_MUX_OGM )
+ {
+ acodec = HB_CODEC_VORBIS;
+ }
+ }
- case HB_MODE_NEED_DEVICE:
- /* Feed libhb with a DVD to scan */
- HBScanDevice( h, device, titleIdx );
- break;
+ return 0;
+}
- case HB_MODE_SCANNING:
- /* s.scannedTitle: title scanned at the moment */
- break;
+static void Scanning( void * data, int title, int titleCount )
+{
+ if( titleindex )
+ {
+ fprintf( stderr, "Scanning title %d...\n", title );
+ }
+ else
+ {
+ fprintf( stderr, "Scanning title %d/%d...\n", title, titleCount );
+ }
+}
- case HB_MODE_INVALID_DEVICE:
- die = 1;
- break;
+static void ScanDone( void * data, HBList * titleList )
+{
+ HBHandle * h = (HBHandle*) data;
+ HBAudio * audio;
+ HBTitle * title;
- case HB_MODE_READY_TO_RIP:
- {
- HBAudio * audio1, * audio2;
- HBTitle * title = HBListItemAt( s.titleList, 0 );
-
- title->file = strdup( file );
- title->twoPass = twoPass;
- title->deinterlace = deinterlace;
- if( width ) title->outWidth = width;
- title->topCrop = topCrop;
- title->bottomCrop = bottomCrop;
- title->leftCrop = leftCrop;
- title->rightCrop = rightCrop;
- title->bitrate = vBitrate;
- title->codec = xvid ? HB_CODEC_XVID : HB_CODEC_FFMPEG;
-
- audio1 = HBListItemAt( title->audioList,
- audio1Idx - 1 );
- audio2 = HBListItemAt( title->audioList,
- audio2Idx - 1 );
- if( audio1 ) audio1->outBitrate = aBitrate;
- if( audio2 ) audio2->outBitrate = aBitrate;
-
- HBStartRip( h, title, audio1, audio2 );
- break;
- }
+ if( !titleList )
+ {
+ fprintf( stderr, "No title found. Invalid device?\n" );
+ die = 1;
+ return;
+ }
+ if( !titleindex )
+ {
+ die = 1;
+ return;
+ }
- case HB_MODE_ENCODING:
- /* s.position : current progress (0.0->1.0)
- s.frameRate : average framerate
- s.remainingTime: ... (in seconds) */
- break;
+ title = HBListItemAt( titleList, 0 );
+ title->file = strdup( output );
+ title->twoPass = twoPass;
+ title->deinterlace = deinterlace;
+ if( width )
+ {
+ title->outWidth = width;
+ }
+ if( autocrop )
+ {
+ title->topCrop = title->autoTopCrop;
+ title->bottomCrop = title->autoBottomCrop;
+ title->leftCrop = title->autoLeftCrop;
+ title->rightCrop = title->autoRightCrop;
+ }
+ else
+ {
+ title->topCrop = top;
+ title->bottomCrop = bottom;
+ title->leftCrop = left;
+ title->rightCrop = right;
+ }
+ fprintf( stderr, "Cropping: T=%d,B=%d,L=%d,R=%d\n",
+ title->topCrop, title->bottomCrop,
+ title->leftCrop, title->rightCrop );
+ title->bitrate = vbitrate;
+ title->codec = vcodec;
+ title->mux = mux;
+
+ if( audios == NULL )
+ {
+ audio = HBListItemAt( title->audioList, 0 );
+ audio->outBitrate = abitrate;
+ audio->codec = acodec;
+ HBListAdd( title->ripAudioList, audio );
+ }
+ else if( strcasecmp( audios, "none" ) )
+ {
+ char *tmp = audios;
- case HB_MODE_DONE:
- die = 1;
- break;
+ while( *tmp )
+ {
+ int i;
- case HB_MODE_CANCELED:
- die = 1;
- break;
+ if( *tmp < '0' || *tmp > '9' )
+ {
+ /* Skip non numeric char */
+ tmp++;
+ continue;
+ }
- case HB_MODE_ERROR:
- /* s.error: error code */
- die = 1;
- break;
+ i = strtol( tmp, &tmp, 0 );
+ audio = HBListItemAt( title->audioList, i - 1 );
+ audio->outBitrate = abitrate;
+ audio->codec = acodec;
+ HBListAdd( title->ripAudioList, audio );
- default:
- break;
+ tmp++;
}
}
+ if( size )
+ {
+ title->bitrate = HBGetBitrateForSize( title, size, title->mux,
+ HBListCount( title->ripAudioList ), abitrate );
+ fprintf( stderr, "Calculated bitrate: %d kbps\n", title->bitrate );
+ }
- HBClose( &h );
+ HBStartRip( h, title );
+}
- if( device ) free( device );
- if( file ) free( file );
+static void Encoding( void * data, float position, int pass,
+ int passCount, float frameRate,
+ float avgFrameRate, int remainingTime )
+{
+ fprintf( stderr, "%6.2f %% (pass: %d/%d, cur/avg speed: "
+ "%5.2f/%5.2f fps, %02d:%02d:%02d remaining)\n",
+ 100.0 * position, pass, passCount, frameRate, avgFrameRate,
+ remainingTime / 3600, ( remainingTime / 60 ) % 60,
+ remainingTime % 60 );
+}
- return 0;
+static void RipDone( void * data, int result )
+{
+ switch( result )
+ {
+ case HB_SUCCESS:
+ fprintf( stderr, "Rip done!\n" );
+ break;
+ case HB_CANCELED:
+ fprintf( stderr, "Rip canceled.\n" );
+ break;
+ default:
+ fprintf( stderr, "Rip failed (error %x).\n", result );
+ }
+ die = 1;
}