mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
924a50450f
Original commit message from CVS: Move core plugins out of core. I don't mind fdsrc/fdsink going back into the core; they were just disabled there, so I moved them. Some of this stuff could (should) be deleted. * gst/oldcore/Makefile.am: * gst/oldcore/gstaggregator.c: * gst/oldcore/gstaggregator.h: * gst/oldcore/gstelements.c: * gst/oldcore/gstfdsink.c: * gst/oldcore/gstfdsink.h: * gst/oldcore/gstfdsrc.c: * gst/oldcore/gstfdsrc.h: * gst/oldcore/gstmd5sink.c: * gst/oldcore/gstmd5sink.h: * gst/oldcore/gstmultifilesrc.c: * gst/oldcore/gstmultifilesrc.h: * gst/oldcore/gstpipefilter.c: * gst/oldcore/gstpipefilter.h: * gst/oldcore/gstshaper.c: * gst/oldcore/gstshaper.h: * gst/oldcore/gststatistics.c: * gst/oldcore/gststatistics.h:
29 lines
550 B
Makefile
29 lines
550 B
Makefile
|
|
plugin_LTLIBRARIES = libgstoldcoreelements.la
|
|
|
|
libgstoldcoreelements_la_SOURCES = \
|
|
gstelements.c \
|
|
gstaggregator.c \
|
|
gstfdsink.c \
|
|
gstfdsrc.c \
|
|
gstmd5sink.c \
|
|
gstmultifilesrc.c \
|
|
gstpipefilter.c \
|
|
gstshaper.c \
|
|
gststatistics.c
|
|
|
|
|
|
libgstoldcoreelements_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstoldcoreelements_la_LIBADD =
|
|
libgstoldcoreelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstaggregator.h \
|
|
gstfdsink.h \
|
|
gstfdsrc.h \
|
|
gstmd5sink.h \
|
|
gstmultifilesrc.h \
|
|
gstpipefilter.h \
|
|
gstshaper.h \
|
|
gststatistics.h
|
|
|