summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-09-23 21:59:09 +0000
committerDiego Biurrun <diego@biurrun.de>2007-09-23 21:59:09 +0000
commit8b505fc6894b99afc217f57f404a0705f75a464c (patch)
tree3ef102cf2f3a1b634a47d88761794184da670bd5 /libavcodec/dsputil.h
parent940f335a3c3d05a3d998983f79b179838b35c948 (diff)
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
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r--libavcodec/dsputil.h2
1 files changed, 1 insertions, 1 deletions
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)