diff options
author | Måns Rullgård <mans@mansr.com> | 2010-06-26 22:23:35 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-06-26 22:23:35 +0000 |
commit | 2829ce4b402a2be9d4c01982ffd29cab6be8e09a (patch) | |
tree | 619a98f4ae16ceab98e385cc9deab85e3ad25c6b /libavcodec/ppc/fdct_altivec.c | |
parent | a788196e2041b431731b3441b27d4b5e8bc8df2e (diff) | |
download | ffmpeg-2829ce4b402a2be9d4c01982ffd29cab6be8e09a.tar.gz |
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
Diffstat (limited to 'libavcodec/ppc/fdct_altivec.c')
-rw-r--r-- | libavcodec/ppc/fdct_altivec.c | 7 |
1 files changed, 0 insertions, 7 deletions
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: */ |