From: Björn Axelsson Date: Thu, 5 Feb 2009 23:10:05 +0000 (+0000) Subject: Fix blend_subrect for some subrects positioned on odd rows. X-Git-Tag: v0.5~764 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/4606a05979f48aea4cef5125cb885405c9903eee Fix blend_subrect for some subrects positioned on odd rows. Patch by Björn Axelsson gecko A acc D umu D se Originally committed as revision 17014 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/ffplay.c b/ffplay.c index ad98f0a..946f4cd 100644 --- a/ffplay.c +++ b/ffplay.c @@ -498,8 +498,8 @@ static void blend_subrect(AVPicture *dst, const AVSubtitleRect *rect, int imgw, p++; lum++; } - p += wrap3 + (wrap3 - dstw * BPP); - lum += wrap + (wrap - dstw - dstx); + p += wrap3 - dstw * BPP; + lum += wrap - dstw - dstx; cb += dst->linesize[1] - width2 - skip2; cr += dst->linesize[2] - width2 - skip2; }