diff options
author | André Pankratz <andre@webwarelab.com> | 2013-01-10 10:37:49 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-12 02:34:06 +0100 |
commit | 3dab6e542941bbbc776995914eba164de303dbcd (patch) | |
tree | 55aa6cd00c53f7bd0b3929f56cccc67e5d7358a1 | |
parent | ddb0317154ce54b4aed15a5f58cb1fc1b7ea533b (diff) | |
download | ffmpeg-3dab6e542941bbbc776995914eba164de303dbcd.tar.gz |
lavfi/yadif: fix shorthand/option mismatch
Fix trac ticket #2128.
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
(cherry picked from commit 0287eea914307a3fa03fa0d117af2955de0a4a2f)
-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; |