Commit 64011dbe authored by Thomas Guillem's avatar Thomas Guillem

audio_filter: fix no-NEON ARM builds

parent 147717df
......@@ -56,8 +56,10 @@ libtrivial_channel_mixer_plugin_la_SOURCES = \
audio_filter/channel_mixer/trivial.c
libsimple_channel_mixer_plugin_la_SOURCES = \
audio_filter/channel_mixer/simple.c
libsimple_channel_mixer_plugin_la_CFLAGS =
if HAVE_NEON
libsimple_channel_mixer_plugin_la_SOURCES += arm_neon/simple_channel_mixer.S
libsimple_channel_mixer_plugin_la_CFLAGS += -DCAN_COMPILE_ARM
endif
audio_filter_LTLIBRARIES += \
......
......@@ -258,7 +258,7 @@ static void DoWork_6_1_to_5_x( filter_t * p_filter, block_t * p_in_buf, block_t
}
}
#if defined (__arm__)
#if defined (CAN_COMPILE_ARM)
#include "simple_neon.h"
#define GET_WORK(in, out) GET_WORK_##in##_to_##out##_neon()
#else
......
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