diff options
Diffstat (limited to 'frontend_svr.h')
-rw-r--r-- | frontend_svr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend_svr.h b/frontend_svr.h index 198e3065..f2720110 100644 --- a/frontend_svr.h +++ b/frontend_svr.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend_svr.h,v 1.29 2010-03-13 12:04:29 phintuka Exp $ + * $Id: frontend_svr.h,v 1.30 2011-03-20 20:59:25 phintuka Exp $ * */ @@ -60,6 +60,8 @@ class cXinelibServer : public cXinelibThread // Configuration virtual bool Listen(int port); + virtual int SupportsTrueColorOSD(void); + protected: // Playback control virtual int Xine_Control(const char *cmd); @@ -114,6 +116,7 @@ protected: bool m_bUdp [MAXCLIENTS]; // Client uses UDP transport bool m_bMulticast [MAXCLIENTS]; // Client uses multicast RTP bool m_bConfigOk [MAXCLIENTS]; // Client has been configured + bool m_bArgbOSD [MAXCLIENTS]; // Client supports ARGB OSD int m_iMulticastMask; // bit [cli] is 1 or 0. 1 == multicast in use. int m_MasterCli; // Master client (controls playback speed) |