Commit 932cbc84 authored by Jean Delvare's avatar Jean Delvare Committed by Michael Niedermayer

avfilter/vf_delogo: fix show option when clipping

The show option did not take clipping into account, so the borders on
the clipped side wouldn't show up. Fix it.
Signed-off-by: 's avatarJean Delvare <jdelvare@suse.de>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 758be457
......@@ -101,8 +101,8 @@ static void apply_delogo(uint8_t *dst, int dst_linesize,
xdst = dst+logo_x1+1,
xsrc = src+logo_x1+1; x < logo_x2-1; x++, xdst++, xsrc++) {
if (show && (y == logo_y+1 || y == logo_y+logo_h-2 ||
x == logo_x+1 || x == logo_x+logo_w-2)) {
if (show && (y == logo_y1+1 || y == logo_y2-2 ||
x == logo_x1+1 || x == logo_x2-2)) {
*xdst = 0;
continue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment