diff options
author | cehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2011-03-14 00:07:11 +0000 |
---|---|---|
committer | Uoti Urpala <uau@mplayer2.org> | 2011-04-13 03:17:05 +0300 |
commit | 4b5a86c78e67d0412c65f8d8b0830e8e450cd2ed (patch) | |
tree | a7c870d7293689f2ac336376287fc26d82b30480 /stream | |
parent | 3cb235736ea9655419386542c59fdc77be7042c5 (diff) |
stream_dvdnav: output ID_DVD_VOLUME_ID also for dvdnav://
Patch by Mike Castle, dalgoda+mplayer gmail
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33081 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r-- | stream/stream_dvdnav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_dvdnav.c b/stream/stream_dvdnav.c index 73a2e11b6a..ff0e715716 100644 --- a/stream/stream_dvdnav.c +++ b/stream/stream_dvdnav.c @@ -134,7 +134,7 @@ static dvdnav_priv_t * new_dvdnav_stream(char * filename) { mp_msg(MSGT_OPEN,MSGL_ERR,"stream_dvdnav, failed to set PGC positioning\n"); /* report the title?! */ if (dvdnav_get_title_string(priv->dvdnav,&title_str)==DVDNAV_STATUS_OK) { - mp_msg(MSGT_IDENTIFY, MSGL_INFO,"Title: '%s'\n",title_str); + mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_DVD_VOLUME_ID=%s\n", title_str); } //dvdnav_event_clear(priv); |