mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
7d64f26d25
Original commit message from CVS: * gst-libs/gst/audio/Makefile.am: Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c from the template. * gst-libs/gst/audio/gstaudiofilter.c: * gst-libs/gst/audio/gstaudiofilter.h: Add bytes_per_sample and size and n_samples calculation. * gst-libs/gst/audio/gstaudiofilterexample.c: Remove, now autogenerated. * gst-libs/gst/audio/gstaudiofiltertemplate.c: Moved from gstaudiofilterexample, object name changed, code added so that it actually works. * gst-libs/gst/audio/make_filter: Script to build an audiofilter subclass from the template. * gst/colorspace/Makefile.am: * gst/colorspace/yuv2yuv.c: Remove file, since it's GPL, and we don't use it.
15 lines
330 B
Makefile
15 lines
330 B
Makefile
|
|
plugin_LTLIBRARIES = libgstcolorspace.la
|
|
|
|
if HAVE_CPU_I386
|
|
ARCHSRCS = yuv2rgb_mmx16.s
|
|
else
|
|
ARCHSRCS =
|
|
endif
|
|
|
|
libgstcolorspace_la_SOURCES = gstcolorspace.c yuv2rgb.c
|
|
libgstcolorspace_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstcolorspace_la_LIBADD =
|
|
libgstcolorspace_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
#noinst_HEADERS = yuv2rgb.h yuv2yuv.h
|