diff options
author | Jean Delvare <khali@linux-fr.org> | 2013-07-05 14:25:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-05 18:02:11 +0200 |
commit | 72abce3c4672afbde52eca0023082254a5cae995 (patch) | |
tree | bd41ca10703e4198979335db926fc60bc0c64207 /libavfilter/vf_delogo.c | |
parent | 413f865a9aa060ad40f8d6a48fc376f69db938e7 (diff) | |
download | ffmpeg-72abce3c4672afbde52eca0023082254a5cae995.tar.gz |
lavfi/delogo: option show shouldn't affect band
Options "show" and "band" are unrelated and should thus be
independent. However, setting "show" to 1 currently resets "band" to
its default value of 4. While this is documented, this still
surprising and confusing IMHO.
Change this behavior and make "show" and "band" independent from each
other. Update the documentation accordingly.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_delogo.c')
-rw-r--r-- | libavfilter/vf_delogo.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavfilter/vf_delogo.c b/libavfilter/vf_delogo.c index 462613df53..ed6ceedfe1 100644 --- a/libavfilter/vf_delogo.c +++ b/libavfilter/vf_delogo.c @@ -195,10 +195,8 @@ static av_cold int init(AVFilterContext *ctx) CHECK_UNSET_OPT(w); CHECK_UNSET_OPT(h); - if (s->band < 0 || s->show) { - s->show = 1; + if (s->band < 0) s->band = 4; - } av_log(ctx, AV_LOG_VERBOSE, "x:%d y:%d, w:%d h:%d band:%d show:%d\n", s->x, s->y, s->w, s->h, s->band, s->show); |