Browse Source

avfilter/delogo: use AV_OPT_TYPE_BOOL for show option

tags/n3.0
Clément Bœsch 10 years ago
parent
commit
ee4f0ec0cd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_delogo.c

+ 1
- 1
libavfilter/vf_delogo.c View File

@@ -163,7 +163,7 @@ static const AVOption delogo_options[]= {
{ "h", "set logo height", OFFSET(h), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS },
{ "band", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, { .i64 = 4 }, 1, INT_MAX, FLAGS },
{ "t", "set delogo area band size", OFFSET(band), AV_OPT_TYPE_INT, { .i64 = 4 }, 1, INT_MAX, FLAGS },
{ "show", "show delogo area", OFFSET(show), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS },
{ "show", "show delogo area", OFFSET(show), AV_OPT_TYPE_BOOL,{ .i64 = 0 }, 0, 1, FLAGS },
{ NULL }
};



Loading…
Cancel
Save