diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-20 10:30:00 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-11-20 10:30:00 +0000 |
commit | 5908c404056fc8ad6e90c847dcc270923054b9a5 (patch) | |
tree | 8e3d0bad3529cdfaac2c19c9bdd73bec65c43740 | |
parent | 9ee0815e8524f44b4a323afa70e3fb72c2a6e45a (diff) |
deinterlace: fix typo in mode enum description
-rw-r--r-- | gst/deinterlace/gstdeinterlace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/deinterlace/gstdeinterlace.c b/gst/deinterlace/gstdeinterlace.c index 8bfac9965..1ee73a35f 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}, }; |