summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.c6
-rw-r--r--config.h4
-rw-r--r--frontend.c4
3 files changed, 7 insertions, 7 deletions
diff --git a/config.c b/config.c
index 5de8d2eb..7ec40bd5 100644
--- a/config.c
+++ b/config.c
@@ -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"))
diff --git a/config.h b/config.h
index a039741a..e28f4f0f 100644
--- a/config.h
+++ b/config.h
@@ -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_... */
diff --git a/frontend.c b/frontend.c
index ea6c3b44..5cb1b971 100644
--- a/frontend.c
+++ b/frontend.c
@@ -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,