mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
ARM: replace some #if with if()
Originally committed as revision 20165 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
701c618f7d
commit
f67e0b824f
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user