mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
5e3405bd08
Makes the audioencoder's getcaps function that proxies downstream restriction available to other elements in the audio module to use it
153 lines
5.4 KiB
Makefile
153 lines
5.4 KiB
Makefile
# variables used for enum/marshal generation
|
|
ORC_SOURCE=gstaudiopack
|
|
include $(top_srcdir)/common/orc.mak
|
|
|
|
glib_enum_headers= \
|
|
audio.h \
|
|
audio-format.h \
|
|
audio-channels.h \
|
|
audio-info.h \
|
|
gstaudioringbuffer.h
|
|
|
|
glib_enum_define = GST_AUDIO
|
|
glib_gen_prefix = gst_audio
|
|
glib_gen_basename = audio
|
|
|
|
built_sources = audio-enumtypes.c
|
|
built_headers = audio-enumtypes.h
|
|
BUILT_SOURCES += $(built_sources) $(built_headers)
|
|
|
|
lib_LTLIBRARIES = \
|
|
libgstaudio-@GST_API_VERSION@.la
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
libgstaudio_@GST_API_VERSION@_la_SOURCES = \
|
|
audio.c \
|
|
audio-format.c \
|
|
audio-channels.c \
|
|
audio-info.c \
|
|
gstaudioringbuffer.c \
|
|
gstaudioclock.c \
|
|
gstaudiocdsrc.c \
|
|
gstaudiodecoder.c \
|
|
gstaudioencoder.c \
|
|
gstaudiobasesink.c \
|
|
gstaudiobasesrc.c \
|
|
gstaudiofilter.c \
|
|
gstaudiometa.c \
|
|
gstaudiosink.c \
|
|
gstaudiosrc.c \
|
|
gstaudioutilsprivate.c \
|
|
streamvolume.c \
|
|
gstaudioiec61937.c
|
|
|
|
nodist_libgstaudio_@GST_API_VERSION@_la_SOURCES = $(BUILT_SOURCES)
|
|
|
|
libgstaudio_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/audio
|
|
libgstaudio_@GST_API_VERSION@include_HEADERS = \
|
|
audio.h \
|
|
audio-format.h \
|
|
audio-channels.h \
|
|
audio-info.h \
|
|
gstaudioringbuffer.h \
|
|
gstaudioclock.h \
|
|
gstaudiofilter.h \
|
|
gstaudiocdsrc.h \
|
|
gstaudiodecoder.h \
|
|
gstaudioencoder.h \
|
|
gstaudiobasesink.h \
|
|
gstaudiobasesrc.h \
|
|
gstaudiometa.h \
|
|
gstaudiosink.h \
|
|
gstaudiosrc.h \
|
|
streamvolume.h \
|
|
gstaudioiec61937.h
|
|
|
|
nodist_libgstaudio_@GST_API_VERSION@include_HEADERS = \
|
|
audio-enumtypes.h \
|
|
gstaudioutilsprivate.h
|
|
|
|
libgstaudio_@GST_API_VERSION@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(ORC_CFLAGS)
|
|
libgstaudio_@GST_API_VERSION@_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_API_VERSION@.la \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) $(ORC_LIBS)
|
|
libgstaudio_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
|
|
|
|
include $(top_srcdir)/common/gst-glib-gen.mak
|
|
|
|
if HAVE_INTROSPECTION
|
|
BUILT_GIRSOURCES = GstAudio-@GST_API_VERSION@.gir
|
|
|
|
gir_headers=$(patsubst %,$(srcdir)/%, $(libgstaudio_@GST_API_VERSION@include_HEADERS))
|
|
gir_headers+=$(patsubst %,$(builddir)/%, $(built_headers))
|
|
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstaudio_@GST_API_VERSION@_la_SOURCES))
|
|
gir_sources+=$(patsubst %,$(builddir)/%, $(built_sources))
|
|
|
|
GstAudio-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstaudio-@GST_API_VERSION@.la
|
|
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
|
GST_PLUGIN_SYSTEM_PATH_1_0="" GST_PLUGIN_PATH_1_0="" GST_REGISTRY_UPDATE=no \
|
|
$(INTROSPECTION_SCANNER) -v --namespace GstAudio \
|
|
--nsversion=@GST_API_VERSION@ \
|
|
--warn-all \
|
|
--strip-prefix=Gst \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
--c-include "gst/audio/audio.h" \
|
|
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
|
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_API_VERSION@` \
|
|
--add-include-path="$(top_builddir)/gst-libs/gst/tag/" \
|
|
--library=libgstaudio-@GST_API_VERSION@.la \
|
|
--library-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=libdir gstreamer-@GST_API_VERSION@` \
|
|
--library-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=libdir gstreamer-base-@GST_API_VERSION@` \
|
|
--library-path="$(top_builddir)/gst-libs/gst/tag/" \
|
|
--include=Gst-@GST_API_VERSION@ \
|
|
--include=GstBase-@GST_API_VERSION@ \
|
|
--include=GstTag-@GST_API_VERSION@ \
|
|
--libtool="$(top_builddir)/libtool" \
|
|
--pkg gstreamer-@GST_API_VERSION@ \
|
|
--pkg gstreamer-base-@GST_API_VERSION@ \
|
|
--pkg-export gstreamer-audio-@GST_API_VERSION@ \
|
|
--add-init-section="gst_init(NULL,NULL);" \
|
|
--output $@ \
|
|
$(gir_headers) \
|
|
$(gir_sources)
|
|
|
|
# INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
|
|
# install anything - we need to install inside our prefix.
|
|
girdir = $(datadir)/gir-1.0
|
|
gir_DATA = $(BUILT_GIRSOURCES)
|
|
|
|
typelibsdir = $(libdir)/girepository-1.0/
|
|
|
|
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
|
|
|
|
%.typelib: %.gir $(INTROSPECTION_COMPILER)
|
|
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
|
$(INTROSPECTION_COMPILER) \
|
|
--includedir=$(srcdir) \
|
|
--includedir=$(builddir) \
|
|
--includedir="$(top_builddir)/gst-libs/gst/tag/" \
|
|
--includedir=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-base-@GST_API_VERSION@` \
|
|
--includedir=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-@GST_API_VERSION@` \
|
|
$(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
|
|
|
|
CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
|
|
endif
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer -:PROJECT libgstaudio -:SHARED libgstaudio-@GST_API_VERSION@ \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstaudio_@GST_API_VERSION@_la_SOURCES) \
|
|
$(nodist_libgstaudio_@GST_API_VERSION@_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstaudio_@GST_API_VERSION@_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstaudio_@GST_API_VERSION@_la_LDFLAGS) \
|
|
$(libgstaudio_@GST_API_VERSION@_la_LIBADD) \
|
|
-ldl \
|
|
-:HEADER_TARGET gstreamer-@GST_API_VERSION@/gst/tag \
|
|
-:HEADERS $(libgstaudio_@GST_API_VERSION@include_HEADERS) \
|
|
$(nodist_libgstaudio_@GST_API_VERSION@include_HEADERS) \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
> $@
|