]> git.sesse.net Git - vlc/blobdiff - modules/video_chroma/Modules.am
Fix i420_yuy2 chroma
[vlc] / modules / video_chroma / Modules.am
index d667a97e855ddaf6bedf40587fc6ad030595dfa4..70d67fa13b4ab90d31bb5763370962a2314192fd 100644 (file)
@@ -1,42 +1,80 @@
 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)