summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
Diffstat (limited to 'libhb')
-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;
}