Commit 5068bcda authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  vf_delogo: fix copying the input frame.

Conflicts:
	libavfilter/vf_delogo.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents d1bbd304 7194330b
......@@ -83,8 +83,8 @@ static void apply_delogo(uint8_t *dst, int dst_linesize,
if (!direct)
av_image_copy_plane(dst, dst_linesize, src, src_linesize, w, h);
dst += (logo_y1+1)*dst_linesize;
src += (logo_y1+1)*src_linesize;
dst += (logo_y1 + 1) * dst_linesize;
src += (logo_y1 + 1) * src_linesize;
for (y = logo_y1+1; y < logo_y2-1; y++) {
for (x = logo_x1+1,
......
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