summaryrefslogtreecommitdiffstats
path: root/libmpeg2/idct.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-07-27 22:55:25 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-07-27 22:55:25 +0000
commitb4547c12fc16e4b2fcb4c547beeeee5d8a427615 (patch)
treecbe5a296a00c80b448c8e8bae397d5ddd8be2cd5 /libmpeg2/idct.c
parent1c7f242c96c1fea7b34ff6630db5912f8f5634d0 (diff)
downloadmpv-b4547c12fc16e4b2fcb4c547beeeee5d8a427615.tar.bz2
mpv-b4547c12fc16e4b2fcb4c547beeeee5d8a427615.tar.xz
gcc2.95.x has no support for mvi instructions
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10489 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2/idct.c')
-rw-r--r--libmpeg2/idct.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libmpeg2/idct.c b/libmpeg2/idct.c
index c91ac535ba..35abf2c5da 100644
--- a/libmpeg2/idct.c
+++ b/libmpeg2/idct.c
@@ -250,11 +250,14 @@ void mpeg2_idct_init (uint32_t accel)
#endif
#endif
#ifdef ARCH_ALPHA
+#ifdef CAN_COMPILE_ALPHA_MVI
if (accel & MPEG2_ACCEL_ALPHA_MVI) {
mpeg2_idct_copy = mpeg2_idct_copy_mvi;
mpeg2_idct_add = mpeg2_idct_add_mvi;
mpeg2_idct_alpha_init (0);
- } else if (accel & MPEG2_ACCEL_ALPHA) {
+ } else
+#endif
+ if (accel & MPEG2_ACCEL_ALPHA) {
mpeg2_idct_copy = mpeg2_idct_copy_alpha;
mpeg2_idct_add = mpeg2_idct_add_alpha;
mpeg2_idct_alpha_init (1);