comparison postproc/postprocess_template.c @ 8666:809adad85bbc

10l another int i missing (without ^M)
author faust3
date Mon, 30 Dec 2002 23:00:02 +0000
parents 82e448c3a478
children e547ce712577
comparison
equal deleted inserted replaced
8665:8b572238f63e 8666:809adad85bbc
3061 uint8_t *dstBlock= &(dst[y*dstStride]); 3061 uint8_t *dstBlock= &(dst[y*dstStride]);
3062 if(width==dstStride) 3062 if(width==dstStride)
3063 memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y)); 3063 memcpy(dstBlock, tempDst + dstStride, dstStride*(height-y));
3064 else 3064 else
3065 { 3065 {
3066 int i;
3066 for(i=0; i<height-y; i++) 3067 for(i=0; i<height-y; i++)
3067 { 3068 {
3068 memcpy(dstBlock + i*dstStride, tempDst + (i+1)*dstStride, width); 3069 memcpy(dstBlock + i*dstStride, tempDst + (i+1)*dstStride, width);
3069 } 3070 }
3070 } 3071 }