summaryrefslogtreecommitdiffstats
path: root/libhb/dvd.c
diff options
context:
space:
mode:
authoreddyg <[email protected]>2008-06-19 01:21:38 +0000
committereddyg <[email protected]>2008-06-19 01:21:38 +0000
commitd69befea6b55289cdfc735972273676ae54efae3 (patch)
tree4f7f78011189bacd945c7a6e83d6b9ae9f7773cb /libhb/dvd.c
parent211c12a5e341cf80147e88f0e332f6e709074e37 (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.c5
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;
}