Mercurial > libavcodec.hg
comparison libpostproc/postprocess_template.c @ 2677:7b7613020f2c libavcodec
remove/replace non-ascii characters
| author | mru |
|---|---|
| date | Fri, 13 May 2005 21:04:16 +0000 |
| parents | 240e17c3cb2d |
| children | 49da251f2608 |
comparison
equal
deleted
inserted
replaced
| 2676:0975710cf7f4 | 2677:7b7613020f2c |
|---|---|
| 3465 { | 3465 { |
| 3466 uint8_t *srcBlock= &(src[y*srcStride]); | 3466 uint8_t *srcBlock= &(src[y*srcStride]); |
| 3467 uint8_t *dstBlock= tempDst + dstStride; | 3467 uint8_t *dstBlock= tempDst + dstStride; |
| 3468 | 3468 |
| 3469 // From this point on it is guranteed that we can read and write 16 lines downward | 3469 // From this point on it is guranteed that we can read and write 16 lines downward |
| 3470 // finish 1 block before the next otherwise weŽll might have a problem | 3470 // finish 1 block before the next otherwise we might have a problem |
| 3471 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing | 3471 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing |
| 3472 for(x=0; x<width; x+=BLOCK_SIZE) | 3472 for(x=0; x<width; x+=BLOCK_SIZE) |
| 3473 { | 3473 { |
| 3474 | 3474 |
| 3475 #ifdef HAVE_MMX2 | 3475 #ifdef HAVE_MMX2 |
| 3581 srcBlock= tempSrc; | 3581 srcBlock= tempSrc; |
| 3582 } | 3582 } |
| 3583 //printf("\n"); | 3583 //printf("\n"); |
| 3584 | 3584 |
| 3585 // From this point on it is guranteed that we can read and write 16 lines downward | 3585 // From this point on it is guranteed that we can read and write 16 lines downward |
| 3586 // finish 1 block before the next otherwise weŽll might have a problem | 3586 // finish 1 block before the next otherwise we might have a problem |
| 3587 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing | 3587 // with the L1 Cache of the P4 ... or only a few blocks at a time or soemthing |
| 3588 for(x=0; x<width; x+=BLOCK_SIZE) | 3588 for(x=0; x<width; x+=BLOCK_SIZE) |
| 3589 { | 3589 { |
| 3590 const int stride= dstStride; | 3590 const int stride= dstStride; |
| 3591 #ifdef HAVE_MMX | 3591 #ifdef HAVE_MMX |
