mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
a6f4df463d
Original commit message from CVS: * gst/autodetect/Makefile.am: * gst/autodetect/gstautoaudiosink.c: * gst/autodetect/gstautoaudiosrc.c: * gst/autodetect/gstautoaudiosrc.h: * gst/autodetect/gstautodetect.c: * gst/autodetect/gstautovideosink.c: * gst/autodetect/gstautovideosrc.c: * gst/autodetect/gstautovideosrc.h: Implement src plugins. Little code/string cleanup in the sinks. Fixes #523813.
18 lines
436 B
Makefile
18 lines
436 B
Makefile
plugin_LTLIBRARIES = libgstautodetect.la
|
|
|
|
libgstautodetect_la_SOURCES = \
|
|
gstautoaudiosink.c \
|
|
gstautoaudiosrc.c \
|
|
gstautodetect.c \
|
|
gstautovideosink.c \
|
|
gstautovideosrc.c
|
|
libgstautodetect_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstautodetect_la_LIBADD = $(GST_LIBS)
|
|
libgstautodetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstautoaudiosink.h \
|
|
gstautoaudiosrc.h \
|
|
gstautodetect.h \
|
|
gstautovideosink.h \
|
|
gstautovideosrc.h
|