summaryrefslogtreecommitdiff
path: root/frontend.c
diff options
context:
space:
mode:
Diffstat (limited to 'frontend.c')
-rw-r--r--frontend.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/frontend.c b/frontend.c
index fd30a378..2c038a97 100644
--- a/frontend.c
+++ b/frontend.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: frontend.c,v 1.24 2006-12-23 20:22:30 phintuka Exp $
+ * $Id: frontend.c,v 1.25 2006-12-24 16:22:35 phintuka Exp $
*
*/
@@ -163,6 +163,12 @@ void cXinelibThread::InfoHandler(const char *info)
cXinelibDevice::Instance().SetMetaInfo(miTitle, map);
}
+ else if(!strncmp(info, "DVDTITLE ", 9)) {
+ map += 9;
+ while(*map == ' ') map++;
+ cXinelibDevice::Instance().SetMetaInfo(miDvdTitleNo, map);
+ }
+
free(pmap);
}