mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
93e9ac34a1
Original commit message from CVS: Bring the plugins in sync with the new core capsnego system. Added some features, enhancements...
21 lines
454 B
Makefile
21 lines
454 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstcolorspace.la
|
|
|
|
if HAVE_CPU_I386
|
|
ARCHSRCS = yuv2rgb_mmx16.s
|
|
else
|
|
ARCHSRCS =
|
|
endif
|
|
|
|
if USE_HERMES
|
|
PLUGIN_EXTRA_LIBS = $(HERMES_LIBS)
|
|
else
|
|
PLUGIN_EXTRA_LIBS =
|
|
endif
|
|
|
|
libgstcolorspace_la_SOURCES = gstcolorspace.c yuv2yuv.c yuv2rgb.c rgb2yuv.c $(ARCHSRCS)
|
|
libgstcolorspace_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstcolorspace_la_LIBADD = $(GST_LIBS) $(PLUGIN_EXTRA_LIBS)
|
|
|
|
noinst_HEADERS = gstcolorspace.h yuv2rgb.h
|