diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-24 17:32:06 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-24 17:32:06 +0000 |
commit | f5b96597bd3de4c620aa05a6624145de55045e52 (patch) | |
tree | 8425b9c4900472786b0451eb511c65ef8a63cea4 | |
parent | a0d8a50bca2697bf778b70f6f45384d725816823 (diff) | |
download | ffmpeg-f5b96597bd3de4c620aa05a6624145de55045e52.tar.gz |
Remove pointless #if HAVE_ALTIVEC around internal header #include
and function declarations.
Originally committed as revision 16755 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/dsputil_ppc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/ppc/dsputil_ppc.c b/libavcodec/ppc/dsputil_ppc.c index ce04cf6a41..e9864af487 100644 --- a/libavcodec/ppc/dsputil_ppc.c +++ b/libavcodec/ppc/dsputil_ppc.c @@ -24,7 +24,6 @@ #include "dsputil_ppc.h" -#if HAVE_ALTIVEC #include "dsputil_altivec.h" void fdct_altivec(int16_t *block); @@ -41,8 +40,6 @@ void snow_init_altivec(DSPContext* c, AVCodecContext *avctx); void float_init_altivec(DSPContext* c, AVCodecContext *avctx); void int_init_altivec(DSPContext* c, AVCodecContext *avctx); -#endif - int mm_flags = 0; int mm_support(void) |