diff options
author | phintuka <phintuka> | 2008-04-12 19:37:41 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-04-12 19:37:41 +0000 |
commit | f031cd8f5164e19af162cefdf8747519b21eae65 (patch) | |
tree | 04800f2e56cd31f383959a7dd805ef5235f12577 /device.c | |
parent | ac5be1ecd19c309aff1439b7f22f302c30b2562b (diff) | |
download | xineliboutput-f031cd8f5164e19af162cefdf8747519b21eae65.tar.gz xineliboutput-f031cd8f5164e19af162cefdf8747519b21eae65.tar.bz2 |
Remove option to disable OSD downscaling (useless ...?)
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: device.c,v 1.55 2008-04-10 22:25:02 phelin Exp $ + * $Id: device.c,v 1.56 2008-04-12 19:37:41 phintuka Exp $ * */ @@ -414,14 +414,11 @@ void cXinelibDevice::MainThreadHook(void) // Configuration // -void cXinelibDevice::ConfigureOSD(bool prescale_osd, bool unscaled_osd) +void cXinelibDevice::ConfigureOSD(void) { TRACEF("cXinelibDevice::ConfigureOSD"); - if(m_local) - m_local->ConfigureOSD(prescale_osd, unscaled_osd); - if(m_server) - m_server->ConfigureOSD(prescale_osd, unscaled_osd); + ForEach(m_clients, &cXinelibThread::ConfigureOSD); } void cXinelibDevice::ConfigurePostprocessing(const char *deinterlace_method, |