diff options
author | phintuka <phintuka> | 2006-09-06 17:58:07 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-09-06 17:58:07 +0000 |
commit | a61a0bae6790538adbf90b97717aee21241cf014 (patch) | |
tree | e078d7b04b9f52f182d3be454bb233cacbb6c4d9 | |
parent | 0bd99b436f3d6b2ce050ec35b4b318df9bfe08c0 (diff) | |
download | xineliboutput-a61a0bae6790538adbf90b97717aee21241cf014.tar.gz xineliboutput-a61a0bae6790538adbf90b97717aee21241cf014.tar.bz2 |
HD mode signalling
-rw-r--r-- | frontend.h | 3 |
1 files changed, 2 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.h,v 1.8 2006-09-01 11:52:53 phintuka Exp $ + * $Id: frontend.h,v 1.9 2006-09-06 17:58:07 phintuka Exp $ * */ @@ -77,6 +77,7 @@ class cXinelibThread : public cThread, public cListObject virtual int Play_PES(const uchar *buf, int len); virtual void OsdCmd(void *cmd) = 0; virtual int64_t GetSTC(void) { return -1; } + virtual void SetHDMode(bool On) { (void)Xine_Control("HDMODE",On?1:0); }; // Stream type conversions int Play_Mpeg1_PES(const uchar *data, int len); |