diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-09-16 21:54:00 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-09-16 21:54:00 +0000 |
commit | c34270f5e89fd95b933c483d602f2f298557d04b (patch) | |
tree | f9853abd51f2b0aabe28048b0e213d20580a6b39 /libavcodec/dsputil.h | |
parent | 8d67072fea31e3b97e0a527e2a94e418745ba02a (diff) | |
download | ffmpeg-c34270f5e89fd95b933c483d602f2f298557d04b.tar.gz |
mlib merge
Originally committed as revision 131 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 80a934ccdb..dd2cc945ce 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -111,6 +111,15 @@ void dsputil_init_mmx(void); void dsputil_init_armv4l(void); +#elif defined(HAVE_MLIB) + +#define emms_c() + +/* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */ +#define __align8 __attribute__ ((aligned (8))) + +void dsputil_init_mlib(void); + #else #define emms_c() |