summaryrefslogtreecommitdiff
path: root/xine_input_vdr.c
diff options
context:
space:
mode:
authorphelin <phelin>2007-09-17 20:01:52 +0000
committerphelin <phelin>2007-09-17 20:01:52 +0000
commite0b76acfcda4d3074415c9ed9c13674bc45d77b3 (patch)
tree17dc8343a61d36afc71cdd0ee807700b9d6cfbd4 /xine_input_vdr.c
parentd9306e51b4b8cb472ff3b21747d3803911713118 (diff)
downloadxineliboutput-e0b76acfcda4d3074415c9ed9c13674bc45d77b3.tar.gz
xineliboutput-e0b76acfcda4d3074415c9ed9c13674bc45d77b3.tar.bz2
Fix DVD menu domain detection
Diffstat (limited to 'xine_input_vdr.c')
-rw-r--r--xine_input_vdr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c
index 8ce72daf..8927a805 100644
--- a/xine_input_vdr.c
+++ b/xine_input_vdr.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_input_vdr.c,v 1.94 2007-09-14 22:56:10 phintuka Exp $
+ * $Id: xine_input_vdr.c,v 1.95 2007-09-17 20:01:52 phelin Exp $
*
*/
@@ -3811,7 +3811,7 @@ static void slave_track_maps_changed(vdr_input_plugin_t *this)
}
#ifdef XINE_STREAM_INFO_DVD_TITLE_NUMBER
- i = _x_stream_info_get(this->stream,XINE_STREAM_INFO_DVD_TITLE_NUMBER);
+ i = _x_stream_info_get(this->slave_stream,XINE_STREAM_INFO_DVD_TITLE_NUMBER);
if(i >= 0) {
sprintf(tracks, "INFO DVDTITLE %d\r\n", i);
if(this->funcs.xine_input_event)
@@ -3935,7 +3935,7 @@ static void vdr_event_cb (void *user_data, const xine_event_t *event)
LOGMSG("XINE_EVENT_UI_SET_TITLE: %s", data->str);
#ifdef XINE_STREAM_INFO_DVD_TITLE_NUMBER
- int tt = _x_stream_info_get(this->stream,XINE_STREAM_INFO_DVD_TITLE_NUMBER);
+ int tt = _x_stream_info_get(this->slave_stream,XINE_STREAM_INFO_DVD_TITLE_NUMBER);
snprintf(titlen, sizeof(titlen), "INFO DVDTITLE %d\r\n", tt);
#endif
snprintf(msg, sizeof(msg), "INFO TITLE %s\r\n%s", data->str, titlen);