diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-18 14:09:35 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-19 02:38:22 -0700 |
commit | 1a583c0c60240adb8fa6620c6df33f1a0a0fe5d9 (patch) | |
tree | e93be3d41ac3a90deace6d9a9f3165d476d3c206 /libavcodec/dct-test.c | |
parent | 5dcc201505f71b1e73e9eef12ce89d4eed252ad0 (diff) | |
download | ffmpeg-1a583c0c60240adb8fa6620c6df33f1a0a0fe5d9.tar.gz |
fdct: Move ppc-specific declarations to a header in the ppc directory
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index b278869f43..baf5a8994a 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -45,14 +45,12 @@ #include "aandcttab.h" #include "faandct.h" #include "faanidct.h" +#include "ppc/fdct.h" #include "x86/fdct.h" #include "x86/idct_xvid.h" #include "x86/simple_idct.h" #include "dctref.h" -// ALTIVEC -void ff_fdct_altivec(int16_t *block); - // ARM void ff_j_rev_dct_arm(int16_t *data); void ff_simple_idct_arm(int16_t *data); |