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/ppc | |
parent | 5dcc201505f71b1e73e9eef12ce89d4eed252ad0 (diff) | |
download | ffmpeg-1a583c0c60240adb8fa6620c6df33f1a0a0fe5d9.tar.gz |
fdct: Move ppc-specific declarations to a header in the ppc directory
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r-- | libavcodec/ppc/fdct.h (renamed from libavcodec/ppc/fdctdsp.h) | 6 | ||||
-rw-r--r-- | libavcodec/ppc/fdctdsp.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/ppc/fdctdsp.h b/libavcodec/ppc/fdct.h index 845b4fe554..74710354ef 100644 --- a/libavcodec/ppc/fdctdsp.h +++ b/libavcodec/ppc/fdct.h @@ -16,11 +16,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVCODEC_PPC_FDCTDSP_H -#define AVCODEC_PPC_FDCTDSP_H +#ifndef AVCODEC_PPC_FDCT_H +#define AVCODEC_PPC_FDCT_H #include <stdint.h> void ff_fdct_altivec(int16_t *block); -#endif /* AVCODEC_PPC_FDCTDSP_H */ +#endif /* AVCODEC_PPC_FDCT_H */ diff --git a/libavcodec/ppc/fdctdsp.c b/libavcodec/ppc/fdctdsp.c index d7b5b7ab7c..51417a5828 100644 --- a/libavcodec/ppc/fdctdsp.c +++ b/libavcodec/ppc/fdctdsp.c @@ -27,7 +27,7 @@ #include "libavutil/cpu.h" #include "libavutil/ppc/cpu.h" #include "libavcodec/fdctdsp.h" -#include "fdctdsp.h" +#include "fdct.h" #if HAVE_ALTIVEC |