summaryrefslogtreecommitdiff
path: root/src/post/deinterlace/xine_plugin.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-11-01 13:20:01 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-11-01 13:20:01 +0000
commit3d96508181b859ca6108c3eb3ad5869409e9fd0f (patch)
tree47da359a79b3f070e98da1bc08eb4aafa3b560cf /src/post/deinterlace/xine_plugin.c
parent7018cc9c2164d929e2c3019039a8178891ee9389 (diff)
downloadxine-lib-3d96508181b859ca6108c3eb3ad5869409e9fd0f.tar.gz
xine-lib-3d96508181b859ca6108c3eb3ad5869409e9fd0f.tar.bz2
tvtime: remove console messages that might confuse users and have enum
strings without spaces so they can be encoded in --post xine-ui parameter CVS patchset: 5662 CVS date: 2003/11/01 13:20:01
Diffstat (limited to 'src/post/deinterlace/xine_plugin.c')
-rw-r--r--src/post/deinterlace/xine_plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/post/deinterlace/xine_plugin.c b/src/post/deinterlace/xine_plugin.c
index bc9881ab4..f726e231c 100644
--- a/src/post/deinterlace/xine_plugin.c
+++ b/src/post/deinterlace/xine_plugin.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_plugin.c,v 1.19 2003/10/29 23:36:18 miguelfreitas Exp $
+ * $Id: xine_plugin.c,v 1.20 2003/11/01 13:20:01 miguelfreitas Exp $
*
* advanced video deinterlacer plugin
* Jun/2003 by Miguel Freitas
@@ -54,7 +54,7 @@ typedef struct post_plugin_deinterlace_s post_plugin_deinterlace_t;
#define MAX_NUM_METHODS 30
static char *enum_methods[MAX_NUM_METHODS];
static char *enum_pulldown[] = { "none", "vektor", NULL };
-static char *enum_framerate[] = { "full", "half (top)", "half (bottom)", NULL };
+static char *enum_framerate[] = { "full", "half_top", "half_bottom", NULL };
/*
* this is the struct used by "parameters api"
@@ -276,7 +276,7 @@ static void *deinterlace_init_plugin(xine_t *xine, void *data)
return NULL;
}
- enum_methods[0] = "by driver";
+ enum_methods[0] = "use_vo_driver";
for(i = 0; i < get_num_deinterlace_methods(); i++ ) {
enum_methods[i+1] = (char *)get_deinterlace_method(i)->short_name;
}