diff options
author | Arpi <arpi@thot.banki.hu> | 2003-04-16 20:03:07 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2003-04-16 20:03:07 +0000 |
commit | 1a7c3c85622fa0ff48127cfe38ece15e27bfb17c (patch) | |
tree | d2129e00537036d9851375e045518d4e2b1d4597 /libavcodec/liba52/mm_accel.h | |
parent | 6814a25c676ae3f0eb73a2d7180b7fe9e62a62ec (diff) | |
download | ffmpeg-1a7c3c85622fa0ff48127cfe38ece15e27bfb17c.tar.gz |
Utility functions (CRC calc & float->int converters)
[imported from MPlayer, based on a52dec's libao]
Originally committed as revision 1780 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/liba52/mm_accel.h')
-rw-r--r-- | libavcodec/liba52/mm_accel.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/liba52/mm_accel.h b/libavcodec/liba52/mm_accel.h index 25258c3683..8afbd354cd 100644 --- a/libavcodec/liba52/mm_accel.h +++ b/libavcodec/liba52/mm_accel.h @@ -31,6 +31,11 @@ #define MM_ACCEL_X86_MMX 0x80000000 #define MM_ACCEL_X86_3DNOW 0x40000000 #define MM_ACCEL_X86_MMXEXT 0x20000000 +#define MM_ACCEL_X86_SSE 0x10000000 +#define MM_ACCEL_X86_3DNOWEXT 0x08000000 + +/* PPC accelerations */ +#define MM_ACCEL_PPC_ALTIVEC 0x00010000 uint32_t mm_accel (void); |