Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Pankratz <andre@webwarelab.com>2013-01-10 13:37:49 +0400
committerStefano Sabatini <stefasab@gmail.com>2013-01-10 14:01:14 +0400
commit0287eea914307a3fa03fa0d117af2955de0a4a2f (patch)
tree66fd4756001b1f77e8ebfba5b38e79ebaa07db20 /libavfilter
parent4cd89022e7ab3992c32a55ffa818626345d923f4 (diff)
lavfi/yadif: fix shorthand/option mismatch
Fix trac ticket #2128. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_yadif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c
index dca4a8cd35..74eafcbd12 100644
--- a/libavfilter/vf_yadif.c
+++ b/libavfilter/vf_yadif.c
@@ -369,7 +369,7 @@ static int query_formats(AVFilterContext *ctx)
static av_cold int init(AVFilterContext *ctx, const char *args)
{
YADIFContext *yadif = ctx->priv;
- static const char *shorthand[] = { "mode", "parity", "enable", NULL };
+ static const char *shorthand[] = { "mode", "parity", "deint", NULL };
int ret;
yadif->csp = NULL;