]> git.sesse.net Git - vlc/blobdiff - modules/video_chroma/Modules.am
i420->YUYV NEON: rewrite using VZIP
[vlc] / modules / video_chroma / Modules.am
index d667a97e855ddaf6bedf40587fc6ad030595dfa4..eb0298fe4950ab205691ac3811f76f9bd7531b4b 100644 (file)
@@ -1,42 +1,95 @@
 SOURCES_i420_rgb = \
-       modules/video_chroma/i420_rgb.c \
-       modules/video_chroma/i420_rgb.h \
-       modules/video_chroma/i420_rgb8.c \
-       modules/video_chroma/i420_rgb16.c \
+       i420_rgb.c \
+       i420_rgb.h \
+       i420_rgb8.c \
+       i420_rgb16.c \
+       i420_rgb_c.h \
        $(NULL)
 
 SOURCES_i420_rgb_mmx = \
-       modules/video_chroma/i420_rgb.c \
-       modules/video_chroma/i420_rgb.h \
-       modules/video_chroma/i420_rgb16.c \
-       modules/video_chroma/i420_rgb_mmx.h \
+       i420_rgb.c \
+       i420_rgb.h \
+       i420_rgb16.c \
+       i420_rgb_mmx.h \
+       $(NULL)
+
+SOURCES_i420_rgb_sse2 = \
+       i420_rgb.c \
+       i420_rgb.h \
+       i420_rgb16.c \
+       i420_rgb_mmx.h \
        $(NULL)
 
 SOURCES_i420_yuy2 = \
-       modules/video_chroma/i420_yuy2.c \
-       modules/video_chroma/i420_yuy2.h \
+       i420_yuy2.c \
+       i420_yuy2.h \
        $(NULL)
 
 SOURCES_i420_yuy2_mmx = \
-       modules/video_chroma/i420_yuy2.c \
-       modules/video_chroma/i420_yuy2.h \
+       i420_yuy2.c \
+       i420_yuy2.h \
+       $(NULL)
+
+SOURCES_i420_yuy2_sse2 = \
+       i420_yuy2.c \
+       i420_yuy2.h \
+       $(NULL)
+
+SOURCES_i420_yuy2_altivec = \
+       i420_yuy2.c \
+       i420_yuy2.h \
        $(NULL)
 
 SOURCES_i422_yuy2 = \
-       modules/video_chroma/i422_yuy2.c \
-       modules/video_chroma/i422_yuy2.h \
+       i422_yuy2.c \
+       i422_yuy2.h \
        $(NULL)
 
 SOURCES_i422_yuy2_mmx = \
-       modules/video_chroma/i422_yuy2.c \
-       modules/video_chroma/i422_yuy2.h \
+       i422_yuy2.c \
+       i422_yuy2.h \
+       $(NULL)
+
+SOURCES_i422_yuy2_sse2 = \
+       i422_yuy2.c \
+       i422_yuy2.h \
+       $(NULL)
+
+SOURCES_i422_i420 = \
+       i422_i420.c \
        $(NULL)
 
 SOURCES_i420_ymga = \
-       modules/video_chroma/i420_ymga.c
+       i420_ymga.c \
        $(NULL)
 
 SOURCES_i420_ymga_mmx = \
-       modules/video_chroma/i420_ymga.c
+       i420_ymga.c \
+       $(NULL)
+
+SOURCES_grey_yuv = \
+       grey_yuv.c \
+       $(NULL)
+
+SOURCES_yuy2_i422 = \
+       yuy2_i422.c \
+       $(NULL)
+
+SOURCES_yuy2_i420 = \
+       yuy2_i420.c \
+       $(NULL)
+
+libvlc_LTLIBRARIES += \
+       libi420_rgb_plugin.la \
+       libgrey_yuv_plugin.la \
        $(NULL)
 
+libchroma_neon_plugin_la_SOURCES = \
+       i420_yuyv_neon.S \
+       neon.c
+libchroma_neon_plugin_la_CFLAGS = $(AM_CFLAGS)
+libchroma_neon_plugin_la_LIBADD = $(AM_LIBADD)
+libchroma_neon_plugin_la_DEPENDENCIES =
+if HAVE_NEON
+libvlc_LTLIBRARIES += libchroma_neon_plugin.la
+endif