summaryrefslogtreecommitdiff
path: root/frontend_svr.c
diff options
context:
space:
mode:
Diffstat (limited to 'frontend_svr.c')
-rw-r--r--frontend_svr.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/frontend_svr.c b/frontend_svr.c
index c4b97bf0..cce9ae27 100644
--- a/frontend_svr.c
+++ b/frontend_svr.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: frontend_svr.c,v 1.14 2006-08-19 23:49:03 phintuka Exp $
+ * $Id: frontend_svr.c,v 1.15 2006-08-22 03:45:34 phintuka Exp $
*
*/
@@ -956,10 +956,11 @@ void cXinelibServer::Handle_Control_CONFIG(int cli)
ConfigureOSD(xc.prescale_osd, xc.unscaled_osd);
ConfigurePostprocessing(xc.deinterlace_method, xc.audio_delay,
xc.audio_compression, xc.audio_equalizer,
- xc.audio_surround);
+ xc.audio_surround, xc.speaker_type);
ConfigureVideo(xc.hue, xc.saturation, xc.brightness, xc.contrast);
ConfigurePostprocessing("upmix", xc.audio_upmix ? true : false, NULL);
- ConfigurePostprocessing("autocrop", xc.autocrop ? true : false, NULL);
+ ConfigurePostprocessing("autocrop", xc.autocrop ? true : false,
+ xc.AutocropOptions());
#ifdef ENABLE_TEST_POSTPLUGINS
ConfigurePostprocessing("headphone", xc.headphone ? true : false, NULL);
#endif