summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/config.c b/config.c
index e430f5aa..203fa9d8 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.110 2012-01-30 10:41:56 phintuka Exp $
+ * $Id: config.c,v 1.111 2012-03-13 12:53:41 phintuka Exp $
*
*/
@@ -93,12 +93,6 @@ const char * const config_t::s_deinterlaceMethodNames[ DEINTERLACE_count+1 ] = {
NULL
};
-const char * const config_t::s_fieldOrder[ FIELD_ORDER_count+1 ] = {
- trNOOP("normal"),
- trNOOP("inverted"),
- NULL
-};
-
const char * const config_t::s_audioDrivers[ AUDIO_DRIVER_count+1 ] = {
"auto", "alsa", "oss", "none", "esd", "jack",
NULL
@@ -632,7 +626,6 @@ config_t::config_t() {
width = 720;
height = 576;
scale_video = 0;
- field_order = 0;
autocrop = 0;
autocrop_autodetect = 1;
@@ -968,7 +961,6 @@ bool config_t::SetupParse(const char *Name, const char *Value)
else if (!strcasecmp(Name, "Video.Scale")) scale_video = atoi(Value);
else if (!strcasecmp(Name, "Video.DeinterlaceOptions")) STRN0CPY(deinterlace_opts, Value);
else if (!strcasecmp(Name, "Video.Deinterlace")) STRN0CPY(deinterlace_method, Value);
- else if (!strcasecmp(Name, "Video.FieldOrder")) field_order=atoi(Value)?1:0;
else if (!strcasecmp(Name, "Video.AutoCrop")) autocrop = atoi(Value);
else if (!strcasecmp(Name, "Video.AutoCrop.AutoDetect")) autocrop_autodetect = atoi(Value);