diff options
author | Leon van Stuivenberg <leonvs@iae.nl> | 2002-09-23 08:44:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-09-23 08:44:24 +0000 |
commit | d46aba2642a075635d521628be7ea16ceaa1c95d (patch) | |
tree | 6f247c740dcaaaa0a82af9f2b86fd60d1153a857 /libavcodec/dsputil.c | |
parent | 18a7b2a8734c0b14aa8b0b57e5f5ba0f3c688a9f (diff) | |
download | ffmpeg-d46aba2642a075635d521628be7ea16ceaa1c95d.tar.gz |
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
Originally committed as revision 963 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index eb8592352e..533ae00e25 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -1652,6 +1652,10 @@ void dsputil_init(void) #ifdef ARCH_POWERPC dsputil_init_ppc(); #endif +#ifdef HAVE_MMI + dsputil_init_mmi(); + use_permuted_idct = 0; +#endif #ifdef SIMPLE_IDCT if (ff_idct == NULL) { |