diff options
author | phintuka <phintuka> | 2008-09-18 18:11:35 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-09-18 18:11:35 +0000 |
commit | 1957bb22d79b73164bbe0467d48ba740dc2d8a13 (patch) | |
tree | 7ebb81fdd93a6ce20c0c1acb39f7c432e3e28c87 | |
parent | 689e25aa3c614135b03a07e023a2e458c1b96189 (diff) | |
download | xineliboutput-1957bb22d79b73164bbe0467d48ba740dc2d8a13.tar.gz xineliboutput-1957bb22d79b73164bbe0467d48ba740dc2d8a13.tar.bz2 |
Added INFO DVDBUTTONS handler
-rw-r--r-- | frontend.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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.61 2008-09-16 07:38:42 phintuka Exp $ + * $Id: frontend.c,v 1.62 2008-09-18 18:11:35 phintuka Exp $ * */ @@ -199,6 +199,12 @@ void cXinelibThread::InfoHandler(const char *info) } } + else if(!strncmp(info, "DVDBUTTONS ", 11)) { + map += 11; + while(*map == ' ') map++; + cXinelibDevice::Instance().SetMetaInfo(miDvdButtons, map); + } + else if(!strncmp(info, "TITLE ", 6)) { map += 6; while(*map == ' ') map++; |