1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

Fix HAVE_VIS vs. HAVE_MVI typo, SPARC has MVI, not VIS.

patch by Alexis Ballier, alexis.ballier gmail com


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28013 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-11-24 08:29:34 +00:00
parent 45ff1218a6
commit 17aebba77f
2 changed files with 2 additions and 2 deletions

View File

@ -265,7 +265,7 @@ void mpeg2_idct_init (uint32_t accel)
mpeg2_idct_altivec_init ();
} else
#endif
#ifdef HAVE_VIS
#ifdef HAVE_MVI
if (accel & MPEG2_ACCEL_ALPHA_MVI) {
mpeg2_idct_copy = mpeg2_idct_copy_mvi;
mpeg2_idct_add = mpeg2_idct_add_mvi;

View File

@ -111,7 +111,7 @@
} else
#endif
-#ifdef ARCH_ALPHA
+#ifdef HAVE_VIS
+#ifdef HAVE_MVI
if (accel & MPEG2_ACCEL_ALPHA_MVI) {
mpeg2_idct_copy = mpeg2_idct_copy_mvi;
mpeg2_idct_add = mpeg2_idct_add_mvi;