diff options
| author | phintuka <phintuka> | 2011-11-29 10:02:26 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2011-11-29 10:02:26 +0000 |
| commit | 0f41e1925e35fd539f6bc2a37c3708473be78a3a (patch) | |
| tree | fa8254917647b37e555e5ab4707281916ccdce3f | |
| parent | e46490ac59114439fbb9c2dfb92397da7f5ae6b2 (diff) | |
| download | xineliboutput-0f41e1925e35fd539f6bc2a37c3708473be78a3a.tar.gz xineliboutput-0f41e1925e35fd539f6bc2a37c3708473be78a3a.tar.bz2 | |
Speakers entry in setup menu has no effect on remote frontends.
Use config_xineliboutput to change the setting.
| -rw-r--r-- | xine_input_vdr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index 987c8a22..cec5bb34 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.349 2011-11-22 09:51:12 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.350 2011-11-29 10:02:26 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.349 2011-11-22 09:51:12 phintuka Exp $"; +static const char module_revision[] = "$Id: xine_input_vdr.c,v 1.350 2011-11-29 10:02:26 phintuka Exp $"; static const char log_module_input_vdr[] = "[input_vdr] "; #define LOG_MODULENAME log_module_input_vdr #define SysLogLevel iSysLogLevel @@ -3319,6 +3319,7 @@ static int vdr_plugin_parse_control(vdr_input_plugin_if_t *this_if, const char * } else if(!strncasecmp(cmd, "SPEAKERS ",9)) { if(1 == sscanf(cmd+9, "%d", &tmp32)) { + if (this->fd_control < 0) this->class->xine->config->update_num(this->class->xine->config, "audio.output.speaker_arrangement", tmp32); } else |
