summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-11-20 10:30:00 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-11-20 10:30:00 +0000
commit5908c404056fc8ad6e90c847dcc270923054b9a5 (patch)
tree8e3d0bad3529cdfaac2c19c9bdd73bec65c43740
parent9ee0815e8524f44b4a323afa70e3fb72c2a6e45a (diff)
deinterlace: fix typo in mode enum description
-rw-r--r--gst/deinterlace/gstdeinterlace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/deinterlace/gstdeinterlace.c b/gst/deinterlace/gstdeinterlace.c
index 8bfac996..1ee73a35 100644
--- a/gst/deinterlace/gstdeinterlace.c
+++ b/gst/deinterlace/gstdeinterlace.c
@@ -345,7 +345,7 @@ gst_deinterlace_modes_get_type (void)
static const GEnumValue modes_types[] = {
{GST_DEINTERLACE_MODE_AUTO, "Auto detection", "auto"},
- {GST_DEINTERLACE_MODE_INTERLACED, "Enfore deinterlacing", "interlaced"},
+ {GST_DEINTERLACE_MODE_INTERLACED, "Force deinterlacing", "interlaced"},
{GST_DEINTERLACE_MODE_DISABLED, "Run in passthrough mode", "disabled"},
{0, NULL, NULL},
};