summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorAlbert Lee <trisk+xine@acm.jhu.edu>2007-06-14 08:44:41 +0000
committerDiego Biurrun <diego@biurrun.de>2007-06-14 08:44:41 +0000
commitad0f6c1fcd37e2d3925609152a0095b46c9bab2c (patch)
tree0ba4b89ecc1f919ff6705167c1ea6cf39ea4b174 /libavcodec/dsputil.c
parent4931546e26bb90da40643ac7578f30eb068d91ff (diff)
Simplify init preprocessor statements.
patch by Albert Lee, trisk+xine acm.jhu edu Originally committed as revision 9307 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r--libavcodec/dsputil.c26
1 files changed, 9 insertions, 17 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index 6e9badc25b..6fd599fd0c 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -4138,31 +4138,23 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx)
memset(c->put_2tap_qpel_pixels_tab, 0, sizeof(c->put_2tap_qpel_pixels_tab));
memset(c->avg_2tap_qpel_pixels_tab, 0, sizeof(c->avg_2tap_qpel_pixels_tab));
-#ifdef HAVE_MMX
+#if defined(HAVE_MMX)
dsputil_init_mmx(c, avctx);
-#endif
-#ifdef ARCH_ARMV4L
+#elif defined(ARCH_ARMV4L)
dsputil_init_armv4l(c, avctx);
-#endif
-#ifdef HAVE_MLIB
+#elif defined(HAVE_MLIB)
dsputil_init_mlib(c, avctx);
-#endif
-#ifdef ARCH_SPARC
+#elif defined(ARCH_SPARC)
dsputil_init_vis(c,avctx);
-#endif
-#ifdef ARCH_ALPHA
+#elif defined(ARCH_ALPHA)
dsputil_init_alpha(c, avctx);
-#endif
-#ifdef ARCH_POWERPC
+#elif defined(ARCH_POWERPC)
dsputil_init_ppc(c, avctx);
-#endif
-#ifdef HAVE_MMI
+#elif defined(HAVE_MMI)
dsputil_init_mmi(c, avctx);
-#endif
-#ifdef ARCH_SH4
+#elif defined(ARCH_SH4)
dsputil_init_sh4(c,avctx);
-#endif
-#ifdef ARCH_BFIN
+#elif defined(ARCH_BFIN)
dsputil_init_bfin(c,avctx);
#endif