Skip to content
Snippets Groups Projects
Commit f67e0b82 authored by Måns Rullgård's avatar Måns Rullgård
Browse files

ARM: replace some #if with if()

Originally committed as revision 20165 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 701c618f
No related branches found
No related tags found
No related merge requests found
...@@ -117,14 +117,7 @@ void dsputil_init_arm(DSPContext* c, AVCodecContext *avctx) ...@@ -117,14 +117,7 @@ void dsputil_init_arm(DSPContext* c, AVCodecContext *avctx)
if (HAVE_ARMV5TE) ff_dsputil_init_armv5te(c, avctx); if (HAVE_ARMV5TE) ff_dsputil_init_armv5te(c, avctx);
if (HAVE_ARMV6) ff_dsputil_init_armv6(c, avctx); if (HAVE_ARMV6) ff_dsputil_init_armv6(c, avctx);
if (HAVE_IWMMXT) dsputil_init_iwmmxt(c, avctx);
#if HAVE_IWMMXT if (HAVE_ARMVFP) ff_dsputil_init_vfp(c, avctx);
dsputil_init_iwmmxt(c, avctx); if (HAVE_NEON) ff_dsputil_init_neon(c, avctx);
#endif
#if HAVE_ARMVFP
ff_dsputil_init_vfp(c, avctx);
#endif
#if HAVE_NEON
ff_dsputil_init_neon(c, avctx);
#endif
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment