Commit 48ff3bf8 authored by faust3's avatar faust3

10l another int i missing (without ^M)


git-svn-id: file:///var/local/repositories/mplayer/trunk/postproc@8667 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 9bf20ce2
...@@ -3063,6 +3063,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int ...@@ -3063,6 +3063,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int
memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y)); memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y));
else else
{ {
int i;
for(i=0; i<height-y; i++) for(i=0; i<height-y; i++)
{ {
memcpy(dstBlock + i*dstStride, tempDst + (i+1)*dstStride, width); memcpy(dstBlock + i*dstStride, tempDst + (i+1)*dstStride, width);
......
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