1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-03 05:31:34 +00:00

bug found by Alexander Stege

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11030 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nexus 2003-10-06 18:11:38 +00:00
parent 8795d81871
commit 1bc7a2b28f

View File

@ -74,7 +74,7 @@ static void delogo(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int
logo_y2 = logo_y + logo_h - yclipb;
topleft = src+logo_y1*srcStride+logo_x1;
topright = src+logo_x1*srcStride+logo_x2-1;
topright = src+logo_y1*srcStride+logo_x2-1;
botleft = src+(logo_y2-1)*srcStride+logo_x1;
if (!direct) memcpy_pic(dst, src, width, height, dstStride, srcStride);