Mercurial > libpostproc.hg
comparison postprocess.c @ 38:63d07317cd7a libpostproc
rename always_inline to av_always_inline and move to common.h
| author | mru |
|---|---|
| date | Fri, 08 Dec 2006 00:35:08 +0000 |
| parents | b4fc1bd8525f |
| children | 0e28dba3f9e7 |
comparison
equal
deleted
inserted
replaced
| 37:ef705b924335 | 38:63d07317cd7a |
|---|---|
| 464 } | 464 } |
| 465 | 465 |
| 466 /** | 466 /** |
| 467 * accurate deblock filter | 467 * accurate deblock filter |
| 468 */ | 468 */ |
| 469 static always_inline void do_a_deblock_C(uint8_t *src, int step, int stride, PPContext *c){ | 469 static av_always_inline void do_a_deblock_C(uint8_t *src, int step, int stride, PPContext *c){ |
| 470 int y; | 470 int y; |
| 471 const int QP= c->QP; | 471 const int QP= c->QP; |
| 472 const int dcOffset= ((c->nonBQP*c->ppMode.baseDcDiff)>>8) + 1; | 472 const int dcOffset= ((c->nonBQP*c->ppMode.baseDcDiff)>>8) + 1; |
| 473 const int dcThreshold= dcOffset*2 + 1; | 473 const int dcThreshold= dcOffset*2 + 1; |
| 474 //START_TIMER | 474 //START_TIMER |
