[MPlayer-cvslog] r19770 - trunk/stream/stream_dvdnav.c
nicodvb
subversion at mplayerhq.hu
Sat Sep 9 22:51:29 CEST 2006
Author: nicodvb
Date: Sat Sep 9 22:51:29 2006
New Revision: 19770
Modified:
trunk/stream/stream_dvdnav.c
Log:
if no track number specified play the whole disc, or the menus can't be shown at start
Modified: trunk/stream/stream_dvdnav.c
==============================================================================
--- trunk/stream/stream_dvdnav.c (original)
+++ trunk/stream/stream_dvdnav.c Sat Sep 9 22:51:29 2006
@@ -23,7 +23,7 @@
int track;
char* device;
} stream_priv_dflts = {
- 1,
+ 0,
NULL
};
@@ -405,10 +405,13 @@
return STREAM_UNSUPORTED;
}
+ if(p->track > 0) {
if(dvdnav_title_play(dvdnav_priv->dvdnav, p->track) != DVDNAV_STATUS_OK) {
mp_msg(MSGT_OPEN,MSGL_FATAL,"dvdnav_stream, couldn't select title %d, error '%s'\n", p->track, dvdnav_err_to_string(dvdnav_priv->dvdnav));
return STREAM_UNSUPORTED;
}
+ } else
+ mp_msg(MSGT_OPEN,MSGL_INFO,"dvdnav_stream, you didn't specify a track number (as in dvdnav://1), playing whole disc\n");
stream->sector_size = 2048;
stream->flags = STREAM_READ | STREAM_SEEK;
More information about the MPlayer-cvslog
mailing list