mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
742867566c
Work in progress. Colorspace handles most format conversion using 3-stage getline/matrix/putline process using an AYUV or ARGB intermediate, with most functions handled by Orc. There is also a table of single-pass conversions, all handled by Orc. The plan is to add optional stages for various chroma upsampling/downsampling algorithms, dithering, and float/int16 intermediates, and then have Orc create multi-stage functions at runtime.
22 lines
612 B
Makefile
22 lines
612 B
Makefile
plugin_LTLIBRARIES = libgstcolorspace.la
|
|
|
|
ORC_SOURCE=gstcolorspaceorc
|
|
include $(top_srcdir)/common/orc.mak
|
|
|
|
libgstcolorspace_la_SOURCES = gstcolorspace.c colorspace.c
|
|
nodist_libgstcolorspace_la_SOURCES = $(ORC_NODIST_SOURCES)
|
|
libgstcolorspace_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(ORC_CFLAGS)
|
|
libgstcolorspace_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(ORC_LIBS)
|
|
libgstcolorspace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcolorspace_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstcolorspace.h colorspace.h
|
|
|
|
|