Mercurial > libpostproc.hg
comparison postprocess_template.c @ 39:2c0d7e00db4d libpostproc
cosmetics: Fix another common typo, gurantee --> guArantee.
author | diego |
---|---|
date | Wed, 21 Feb 2007 19:19:46 +0000 |
parents | 63d07317cd7a |
children | 00ab07579dc3 |
comparison
equal
deleted
inserted
replaced
38:63d07317cd7a | 39:2c0d7e00db4d |
---|---|
3462 y=-BLOCK_SIZE; | 3462 y=-BLOCK_SIZE; |
3463 { | 3463 { |
3464 uint8_t *srcBlock= &(src[y*srcStride]); | 3464 uint8_t *srcBlock= &(src[y*srcStride]); |
3465 uint8_t *dstBlock= tempDst + dstStride; | 3465 uint8_t *dstBlock= tempDst + dstStride; |
3466 | 3466 |
3467 // From this point on it is guranteed that we can read and write 16 lines downward | 3467 // From this point on it is guaranteed that we can read and write 16 lines downward |
3468 // finish 1 block before the next otherwise we might have a problem | 3468 // finish 1 block before the next otherwise we might have a problem |
3469 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing | 3469 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing |
3470 for(x=0; x<width; x+=BLOCK_SIZE) | 3470 for(x=0; x<width; x+=BLOCK_SIZE) |
3471 { | 3471 { |
3472 | 3472 |
3576 | 3576 |
3577 dstBlock= tempDst + dstStride; | 3577 dstBlock= tempDst + dstStride; |
3578 srcBlock= tempSrc; | 3578 srcBlock= tempSrc; |
3579 } | 3579 } |
3580 | 3580 |
3581 // From this point on it is guranteed that we can read and write 16 lines downward | 3581 // From this point on it is guaranteed that we can read and write 16 lines downward |
3582 // finish 1 block before the next otherwise we might have a problem | 3582 // finish 1 block before the next otherwise we might have a problem |
3583 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing | 3583 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing |
3584 for(x=0; x<width; x+=BLOCK_SIZE) | 3584 for(x=0; x<width; x+=BLOCK_SIZE) |
3585 { | 3585 { |
3586 const int stride= dstStride; | 3586 const int stride= dstStride; |