summaryrefslogtreecommitdiff
path: root/libpostproc/postprocess.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-03-13 14:06:01 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2020-03-14 18:24:04 +0100
commitcc2a9509ce79793fcd00f91bb6ca3f4c53721e9e (patch)
treed1541a68a94a8bff6b7d8ab957ca18f6a1956146 /libpostproc/postprocess.c
parent1fea6795a3f75136a234da80a518303fea8ee83c (diff)
libavcodec, libpostproc: Remove outcommented START/STOP_TIMER
as well as includes of libavutil/timer.h. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libpostproc/postprocess.c')
-rw-r--r--libpostproc/postprocess.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c
index e16ef259ce..8d44165dee 100644
--- a/libpostproc/postprocess.c
+++ b/libpostproc/postprocess.c
@@ -407,7 +407,7 @@ static av_always_inline void do_a_deblock_C(uint8_t *src, int step,
const int QP= c->QP;
const int dcOffset= ((c->nonBQP*c->ppMode.baseDcDiff)>>8) + 1;
const int dcThreshold= dcOffset*2 + 1;
-//START_TIMER
+
src+= step*4; // src points to begin of the 8x8 Block
for(y=0; y<8; y++){
int numEq= 0;
@@ -511,11 +511,6 @@ static av_always_inline void do_a_deblock_C(uint8_t *src, int step,
src += stride;
}
-/*if(step==16){
- STOP_TIMER("step16")
-}else{
- STOP_TIMER("stepX")
-}*/
}
//Note: we have C, MMX, MMX2, 3DNOW version there is no 3DNOW+MMX2 one