From cc2a9509ce79793fcd00f91bb6ca3f4c53721e9e Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Fri, 13 Mar 2020 14:06:01 +0100 Subject: libavcodec, libpostproc: Remove outcommented START/STOP_TIMER as well as includes of libavutil/timer.h. Signed-off-by: Andreas Rheinhardt Signed-off-by: Michael Niedermayer --- libavcodec/dnxhddec.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/dnxhddec.c') diff --git a/libavcodec/dnxhddec.c b/libavcodec/dnxhddec.c index 2ec004333f..f7585458b9 100644 --- a/libavcodec/dnxhddec.c +++ b/libavcodec/dnxhddec.c @@ -25,7 +25,6 @@ */ #include "libavutil/imgutils.h" -#include "libavutil/timer.h" #include "avcodec.h" #include "blockdsp.h" #define UNCHECKED_BITSTREAM_READER 1 @@ -607,13 +606,11 @@ static int dnxhd_decode_row(AVCodecContext *avctx, void *data, return ret; } for (x = 0; x < ctx->mb_width; x++) { - //START_TIMER; int ret = dnxhd_decode_macroblock(ctx, row, data, x, rownb); if (ret < 0) { row->errors++; return ret; } - //STOP_TIMER("decode macroblock"); } return 0; -- cgit v1.2.3