mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
9cf58eb3e4
This is a GstAdapter, but for planar audio buffers. https://bugzilla.gnome.org/show_bug.cgi?id=793605
30 lines
974 B
Makefile
30 lines
974 B
Makefile
# variables used for enum generation
|
|
lib_LTLIBRARIES = libgstbadaudio-@GST_API_VERSION@.la
|
|
|
|
CLEANFILES =
|
|
|
|
libgstbadaudio_@GST_API_VERSION@_la_SOURCES = \
|
|
gstnonstreamaudiodecoder.c \
|
|
gstplanaraudioadapter.c
|
|
|
|
nodist_libgstbadaudio_@GST_API_VERSION@_la_SOURCES = $(BUILT_SOURCES)
|
|
|
|
libgstbadaudio_@GST_API_VERSION@_la_CFLAGS = \
|
|
-DGST_USE_UNSTABLE_API \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_CFLAGS) $(ORC_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS)
|
|
|
|
libgstbadaudio_@GST_API_VERSION@_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS) $(LIBM)
|
|
|
|
libgstbadaudio_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|
|
libgstaudio_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/audio
|
|
libgstaudio_@GST_API_VERSION@include_HEADERS = \
|
|
gstnonstreamaudiodecoder.h \
|
|
audio-bad-prelude.h \
|
|
gstplanaraudioadapter.h
|