From 8b505fc6894b99afc217f57f404a0705f75a464c Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 23 Sep 2007 21:59:09 +0000 Subject: [PATCH] VIS-specific code should be enabled conditional to HAVE_VIS, not ARCH_SPARC. Originally committed as revision 10559 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.c | 2 +- libavcodec/dsputil.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index e1a81a3fea..88fe5e0d41 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -4150,7 +4150,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) if (ENABLE_MMX) dsputil_init_mmx (c, avctx); if (ENABLE_ARMV4L) dsputil_init_armv4l(c, avctx); if (ENABLE_MLIB) dsputil_init_mlib (c, avctx); - if (ENABLE_SPARC) dsputil_init_vis (c, avctx); + if (ENABLE_VIS) dsputil_init_vis (c, avctx); if (ENABLE_ALPHA) dsputil_init_alpha (c, avctx); if (ENABLE_POWERPC) dsputil_init_ppc (c, avctx); if (ENABLE_MMI) dsputil_init_mmi (c, avctx); diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index ca19927b2f..3d57f9bdf2 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -538,7 +538,7 @@ extern int mm_flags; #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v) #define STRIDE_ALIGN 8 -#elif defined(ARCH_SPARC) +#elif defined(HAVE_VIS) /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */ #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)