diff options
author | eddyg <[email protected]> | 2008-06-19 01:21:38 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-06-19 01:21:38 +0000 |
commit | d69befea6b55289cdfc735972273676ae54efae3 (patch) | |
tree | 4f7f78011189bacd945c7a6e83d6b9ae9f7773cb /libhb/dvd.c | |
parent | 211c12a5e341cf80147e88f0e332f6e709074e37 (diff) |
Getting rid of dvd open failure error, it is not an error when
the input is a file.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1529 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/dvd.c')
-rw-r--r-- | libhb/dvd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libhb/dvd.c b/libhb/dvd.c index d2a8d72fa..3cfc1b91e 100644 --- a/libhb/dvd.c +++ b/libhb/dvd.c @@ -83,7 +83,10 @@ hb_dvd_t * hb_dvd_init( char * path ) /* Open device */ if( !( d->reader = DVDOpen( path ) ) ) { - hb_error( "dvd: DVDOpen failed (%s)", path ); + /* + * Not an error, may be a stream - which we'll try in a moment. + */ + hb_log( "dvd: not a dvd - trying as a stream/file instead" ); goto fail; } |