Merge remote-tracking branch 'qatar/master'

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

Conflicts:
	libavfilter/vf_delogo.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-01-29 14:58:49 +01:00
commit 5068bcda95
1 changed files with 2 additions and 2 deletions

View File

@ -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,