diff options
author | Brian Foley <bfoley@compsoc.nuigalway.ie> | 2002-08-28 13:14:36 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-08-28 13:14:36 +0000 |
commit | 59925ef2044e3ba2b5be49a35d37929550e3d6bc (patch) | |
tree | 97c7de71ccfd22da770139d0ed750b8c95597300 /libavcodec/dsputil.h | |
parent | 68bd11f5de271a1a674f196a9e8ca2e7fe40ab6e (diff) | |
download | ffmpeg-59925ef2044e3ba2b5be49a35d37929550e3d6bc.tar.gz |
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
Originally committed as revision 875 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 2617dc666b..28655f79c3 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -163,6 +163,13 @@ void dsputil_init_mlib(void); void dsputil_init_alpha(void); +#elif defined(ARCH_POWERPC) + +#define emms_c() +#define __align8 __attribute__ ((aligned (16))) + +void dsputil_init_altivec(void); + #else #define emms_c() |