summaryrefslogtreecommitdiffstats
path: root/libmpeg2/idct_alpha.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_alpha.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_alpha.c')
-rw-r--r--libmpeg2/idct_alpha.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmpeg2/idct_alpha.c b/libmpeg2/idct_alpha.c
index a55681f552..bc3ad479ae 100644
--- a/libmpeg2/idct_alpha.c
+++ b/libmpeg2/idct_alpha.c
@@ -155,6 +155,7 @@ static inline void idct_col (int16_t * const block)
block[8*7] = (a0 - b0) >> 17;
}
+#ifdef CAN_COMPILE_ALPHA_MVI
void mpeg2_idct_copy_mvi (int16_t * block, uint8_t * dest, const int stride)
{
uint64_t clampmask;
@@ -287,6 +288,7 @@ void mpeg2_idct_add_mvi (const int last, int16_t * block,
stq (p7, dest + 7 * stride);
}
}
+#endif
void mpeg2_idct_copy_alpha (int16_t * block, uint8_t * dest, const int stride)
{