Commit 6a5fd9e3 authored by mru's avatar mru

ARM: replace some #if with if()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20165 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent edea99e7
......@@ -117,14 +117,7 @@ void dsputil_init_arm(DSPContext* c, AVCodecContext *avctx)
if (HAVE_ARMV5TE) ff_dsputil_init_armv5te(c, avctx);
if (HAVE_ARMV6) ff_dsputil_init_armv6(c, avctx);
#if HAVE_IWMMXT
dsputil_init_iwmmxt(c, avctx);
#endif
#if HAVE_ARMVFP
ff_dsputil_init_vfp(c, avctx);
#endif
#if HAVE_NEON
ff_dsputil_init_neon(c, avctx);
#endif
if (HAVE_IWMMXT) dsputil_init_iwmmxt(c, avctx);
if (HAVE_ARMVFP) ff_dsputil_init_vfp(c, avctx);
if (HAVE_NEON) ff_dsputil_init_neon(c, avctx);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment