Mercurial > libavcodec.hg
comparison libpostproc/postprocess_template.c @ 944:927c246f1f6d libavcodec
10l another int i missing (without ^M)
| author | faust3 |
|---|---|
| date | Mon, 30 Dec 2002 23:00:02 +0000 |
| parents | 0566d1a8426f |
| children | 8a95bda80fdc |
comparison
equal
deleted
inserted
replaced
| 943:0566d1a8426f | 944:927c246f1f6d |
|---|---|
| 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 } |
