diff options
author | André Pankratz <andre@webwarelab.com> | 2013-01-10 10:37:49 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-01-10 11:01:14 +0100 |
commit | 0287eea914307a3fa03fa0d117af2955de0a4a2f (patch) | |
tree | 66fd4756001b1f77e8ebfba5b38e79ebaa07db20 /libavfilter | |
parent | 4cd89022e7ab3992c32a55ffa818626345d923f4 (diff) | |
download | ffmpeg-0287eea914307a3fa03fa0d117af2955de0a4a2f.tar.gz |
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.c | 2 |
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; |