]> git.sesse.net Git - vlc/blob - modules/arm_neon/Makefile.am
enable the macosx GUI to handle negative stop-time
[vlc] / modules / arm_neon / Makefile.am
1 neondir = $(pluginsdir)/arm_neon
2
3 libsimple_channel_mixer_neon_plugin_la_SOURCES = \
4         arm_neon/simple_channel_mixer.S \
5         arm_neon/simple_channel_mixer.c
6 libsimple_channel_mixer_neon_plugin_la_CFLAGS = $(AM_CFLAGS)
7 libsimple_channel_mixer_neon_plugin_LIBTOOLFLAGS = --tag=CC
8
9 libchroma_yuv_neon_plugin_la_SOURCES = \
10         arm_neon/deinterleave_chroma.S \
11         arm_neon/i420_yuyv.S \
12         arm_neon/i422_yuyv.S \
13         arm_neon/yuyv_i422.S \
14         arm_neon/chroma_yuv.c arm_neon/chroma_neon.h
15 libchroma_yuv_neon_plugin_la_CFLAGS = $(AM_CFLAGS)
16 libchroma_yuv_neon_plugin_LIBTOOLFLAGS = --tag=CC
17
18 libvolume_neon_plugin_la_SOURCES = arm_neon/volume.c arm_neon/amplify.S
19 libvolume_neon_plugin_la_CFLAGS = $(AM_CFLAGS)
20 libvolume_neon_plugin_LIBTOOLFLAGS = --tag=CC
21
22 libyuv_rgb_neon_plugin_la_SOURCES = \
23         arm_neon/i420_rgb.S \
24         arm_neon/i420_rv16.S \
25         arm_neon/nv21_rgb.S \
26         arm_neon/nv12_rgb.S \
27         arm_neon/yuv_rgb.c
28 libyuv_rgb_neon_plugin_la_CFLAGS = $(AM_CFLAGS)
29 libyuv_rgb_neon_plugin_LIBTOOLFLAGS = --tag=CC
30
31 if HAVE_NEON
32 neon_LTLIBRARIES = \
33         libsimple_channel_mixer_neon_plugin.la \
34         libchroma_yuv_neon_plugin.la \
35         libvolume_neon_plugin.la \
36         libyuv_rgb_neon_plugin.la
37 endif