Browse Source

avfilter/deband: use AV_OPT_TYPE_BOOL

tags/n3.0
Clément Bœsch 9 years ago
parent
commit
2f4e2356bc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_deband.c

+ 1
- 1
libavfilter/vf_deband.c View File

@@ -58,7 +58,7 @@ static const AVOption deband_options[] = {
{ "r", "set range", OFFSET(range), AV_OPT_TYPE_INT, {.i64=16}, INT_MIN, INT_MAX, FLAGS },
{ "direction", "set direction", OFFSET(direction), AV_OPT_TYPE_FLOAT, {.dbl=2*M_PI},-2*M_PI, 2*M_PI, FLAGS },
{ "d", "set direction", OFFSET(direction), AV_OPT_TYPE_FLOAT, {.dbl=2*M_PI},-2*M_PI, 2*M_PI, FLAGS },
{ "blur", "enable blur", OFFSET(blur), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS },
{ "blur", "set blur", OFFSET(blur), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS },
{ NULL }
};



Loading…
Cancel
Save