diff options
author | Brian Foley <bfoley@compsoc.nuigalway.ie> | 2002-11-26 09:21:01 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-26 09:21:01 +0000 |
commit | 404d2241ec55bc6048eeb7c09bc7cdb248ecf632 (patch) | |
tree | 931965f2884b9d944b2cb53f7dd25be5719e0228 /libavcodec/dsputil.h | |
parent | 0ea8f2be4e73e72758d576d85ca868cdbf4f0bdc (diff) | |
download | ffmpeg-404d2241ec55bc6048eeb7c09bc7cdb248ecf632.tar.gz |
altivec accelerated v-resample patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
Originally committed as revision 1283 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 0b1d34f908..29aca1ac22 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -190,6 +190,10 @@ void dsputil_init_alpha(DSPContext* c, unsigned mask); #elif defined(ARCH_POWERPC) +#define MM_ALTIVEC 0x0001 /* standard AltiVec */ + +extern int mm_flags; + #define __align8 __attribute__ ((aligned (16))) void dsputil_init_ppc(DSPContext* c, unsigned mask); |