From 2829ce4b402a2be9d4c01982ffd29cab6be8e09a Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sat, 26 Jun 2010 22:23:35 +0000 Subject: Remove PPC perf counter support This functionality is better accessed through tools like oprofile. Originally committed as revision 23808 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ppc/fdct_altivec.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'libavcodec/ppc/fdct_altivec.c') diff --git a/libavcodec/ppc/fdct_altivec.c b/libavcodec/ppc/fdct_altivec.c index 8f3bc26947..6309a47f32 100644 --- a/libavcodec/ppc/fdct_altivec.c +++ b/libavcodec/ppc/fdct_altivec.c @@ -24,7 +24,6 @@ #endif #include "libavutil/common.h" #include "libavcodec/dsputil.h" -#include "dsputil_ppc.h" #include "dsputil_altivec.h" #define vs16(v) ((vector signed short)(v)) @@ -198,7 +197,6 @@ static vector float fdctconsts[3] = { void fdct_altivec(int16_t *block) { -POWERPC_PERF_DECLARE(altivec_fdct, 1); vector signed short *bp; vector float *cp; vector float b00, b10, b20, b30, b40, b50, b60, b70; @@ -206,9 +204,6 @@ POWERPC_PERF_DECLARE(altivec_fdct, 1); vector float mzero, cnst, cnsts0, cnsts1, cnsts2; vector float x0, x1, x2, x3, x4, x5, x6, x7, x8; - POWERPC_PERF_START_COUNT(altivec_fdct, 1); - - /* setup constants {{{ */ /* mzero = -0.0 */ mzero = ((vector float)vec_splat_u32(-1)); @@ -487,8 +482,6 @@ POWERPC_PERF_DECLARE(altivec_fdct, 1); #undef CTS /* }}} */ - -POWERPC_PERF_STOP_COUNT(altivec_fdct, 1); } /* vim:set foldmethod=marker foldlevel=0: */ -- cgit v1.2.3