1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00

Fixed compilation on g3. Patch by Dan Christiansen <danchr@daimi.au.dk>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10300 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-06-17 22:24:08 +00:00
parent cd091b8ffd
commit 4e3d49008e

View File

@ -43,7 +43,7 @@ static void state_restore_mmx (cpu_state_t * state)
}
#endif
#ifdef ARCH_PPC
#if defined(ARCH_PPC) && defined(HAVE_ALTIVEC)
#ifdef HAVE_ALTIVEC_H /* gnu */
#define LI(a,b) "li " #a "," #b "\n\t"
#define STVX0(a,b,c) "stvx " #a ",0," #c "\n\t"
@ -120,7 +120,7 @@ void mpeg2_cpu_state_init (uint32_t accel)
mpeg2_cpu_state_restore = state_restore_mmx;
}
#endif
#ifdef ARCH_PPC
#if defined(ARCH_PPC) && defined(HAVE_ALTIVEC)
if (accel & MPEG2_ACCEL_PPC_ALTIVEC) {
mpeg2_cpu_state_save = state_save_altivec;
mpeg2_cpu_state_restore = state_restore_altivec;