diff options
author | phintuka <phintuka> | 2008-11-10 20:10:33 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-11-10 20:10:33 +0000 |
commit | 76e0a9a02b108385709e25fe41ad6d289cb7475c (patch) | |
tree | 74a8535f65e183207d297d1e147b7989c2bd5a95 | |
parent | cc82e813f8f3c96ee89a97c1a8619d75110431d0 (diff) | |
download | xineliboutput-76e0a9a02b108385709e25fe41ad6d289cb7475c.tar.gz xineliboutput-76e0a9a02b108385709e25fe41ad6d289cb7475c.tar.bz2 |
tunning->tuning
-rw-r--r-- | config.c | 6 | ||||
-rw-r--r-- | config.h | 4 | ||||
-rw-r--r-- | frontend.c | 4 |
3 files changed, 7 insertions, 7 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: config.c,v 1.72 2008-11-01 07:23:00 phintuka Exp $ + * $Id: config.c,v 1.73 2008-11-10 20:10:33 phintuka Exp $ * */ @@ -581,7 +581,7 @@ config_t::config_t() { vo_aspect_ratio = 0; live_mode_sync = 1; // Sync SCR to transponder clock in live mode - scr_tunning = 0; // Fine-tune xine egine SCR (to sync video to graphics output) + scr_tuning = 0; // Fine-tune xine egine SCR (to sync video to graphics output) scr_hz = 90000; // Current SCR speed (Hz), default is 90000 decoder_mpeg2 = DECODER_MPEG2_auto; @@ -854,7 +854,7 @@ bool config_t::SetupParse(const char *Name, const char *Value) else if (!strcasecmp(Name, "Playlist.Album")) playlist_album = atoi(Value); else if (!strcasecmp(Name, "Advanced.LiveModeSync")) live_mode_sync = atoi(Value); - else if (!strcasecmp(Name, "Advanced.AdjustSCR")) scr_tunning = atoi(Value); + else if (!strcasecmp(Name, "Advanced.AdjustSCR")) scr_tuning = atoi(Value); else if (!strcasecmp(Name, "Advanced.SCRSpeed")) scr_hz = atoi(Value); else if (!strcasecmp(Name, "Audio.Equalizer")) @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: config.h,v 1.54 2008-11-01 07:23:00 phintuka Exp $ + * $Id: config.h,v 1.55 2008-11-10 20:10:33 phintuka Exp $ * */ @@ -381,7 +381,7 @@ class config_t { // Advanced settings int live_mode_sync; /* Sync SCR to transponder clock in live mode */ - int scr_tunning; /* Fine-tune xine egine SCR (to sync video to graphics output) */ + int scr_tuning; /* Fine-tune xine egine SCR (to sync video to graphics output) */ int scr_hz; /* Current SCR speed (Hz), default is 90000 */ int decoder_mpeg2; /* DECODER_MPEG2_... */ @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: frontend.c,v 1.63 2008-09-23 21:49:35 phintuka Exp $ + * $Id: frontend.c,v 1.64 2008-11-10 20:10:33 phintuka Exp $ * */ @@ -828,7 +828,7 @@ void cXinelibThread::Configure(void) Xine_Control(cString::sprintf("SCR %s %d", xc.live_mode_sync ? "Sync" : "NoSync", - xc.scr_tunning ? xc.scr_hz : 90000)); + xc.scr_tuning ? xc.scr_hz : 90000)); } int cXinelibThread::ConfigurePostprocessing(const char *deinterlace_method, |