Browse Source

lavfi/yadif: fix shorthand/option mismatch

Fix trac ticket #2128.

Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
tags/n1.2
André Pankratz Stefano Sabatini 12 years ago
parent
commit
0287eea914
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_yadif.c

+ 1
- 1
libavfilter/vf_yadif.c View File

@@ -369,7 +369,7 @@ static int query_formats(AVFilterContext *ctx)
static av_cold int init(AVFilterContext *ctx, const char *args) static av_cold int init(AVFilterContext *ctx, const char *args)
{ {
YADIFContext *yadif = ctx->priv; YADIFContext *yadif = ctx->priv;
static const char *shorthand[] = { "mode", "parity", "enable", NULL };
static const char *shorthand[] = { "mode", "parity", "deint", NULL };
int ret; int ret;


yadif->csp = NULL; yadif->csp = NULL;


Loading…
Cancel
Save