diff options
Diffstat (limited to 'xine_input_vdr.c')
-rw-r--r-- | xine_input_vdr.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index 32078532..c53d48b0 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.363 2012-07-18 11:55:33 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.364 2013-01-15 20:33:29 phintuka Exp $ * */ @@ -136,7 +136,7 @@ typedef struct { # include <linux/unistd.h> /* syscall(__NR_gettid) */ #endif -static const char module_revision[] = "$Id: xine_input_vdr.c,v 1.363 2012-07-18 11:55:33 phintuka Exp $"; +static const char module_revision[] = "$Id: xine_input_vdr.c,v 1.364 2013-01-15 20:33:29 phintuka Exp $"; static const char log_module_input_vdr[] = "[input_vdr] "; #define LOG_MODULENAME log_module_input_vdr #define SysLogLevel iSysLogLevel @@ -3602,6 +3602,11 @@ static void *vdr_control_thread(void *this_gen) counter--; } + if (this->osd_manager && this->osd_manager->argb_supported(this->stream)) { + LOGMSG("ARGB OSD supported by video driver"); + puts_vdr(this, "INFO ARGBOSD\r\n"); + } + write_control(this, "CONFIG\r\n"); while(this->control_running) { |