mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
61c61e9f2f
Tremolo is an ARM-optimised version of xiph's tremor library.
60 lines
1.9 KiB
Makefile
60 lines
1.9 KiB
Makefile
plugin_LTLIBRARIES =
|
|
|
|
if USE_VORBIS
|
|
plugin_LTLIBRARIES += libgstvorbis.la
|
|
|
|
libgstvorbis_la_SOURCES = gstvorbis.c \
|
|
gstvorbisdec.c \
|
|
gstvorbisdeclib.c \
|
|
gstvorbisenc.c \
|
|
gstvorbisparse.c \
|
|
gstvorbistag.c \
|
|
gstvorbiscommon.c
|
|
|
|
libgstvorbis_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(VORBIS_CFLAGS)
|
|
## AM_PATH_VORBIS also sets VORBISENC_LIBS
|
|
libgstvorbis_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \
|
|
$(GST_LIBS) \
|
|
$(VORBIS_LIBS) $(VORBISENC_LIBS)
|
|
libgstvorbis_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvorbis_la_LIBTOOLFLAGS = --tag=disable-static
|
|
endif
|
|
|
|
if USE_IVORBIS
|
|
plugin_LTLIBRARIES += libgstivorbisdec.la
|
|
|
|
libgstivorbisdec_la_SOURCES = gstivorbisdec.c \
|
|
gstvorbisdec.c gstvorbisdeclib.c gstvorbiscommon.c
|
|
libgstivorbisdec_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-DTREMOR $(IVORBIS_CFLAGS)
|
|
libgstivorbisdec_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \
|
|
$(GST_LIBS) $(IVORBIS_LIBS)
|
|
libgstivorbisdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstivorbisdec_la_LIBTOOLFLAGS = --tag=disable-static
|
|
endif
|
|
|
|
noinst_HEADERS = gstvorbisenc.h \
|
|
gstvorbisdec.h \
|
|
gstvorbisdeclib.h \
|
|
gstvorbisparse.h \
|
|
gstvorbistag.h \
|
|
gstvorbiscommon.h
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstivorbisdec -:SHARED libgstivorbisdec \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstivorbisdec_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstivorbisdec_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstivorbisdec_la_LDFLAGS) \
|
|
$(libgstivorbisdec_la_LIBADD) \
|
|
-lvorbisidec \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|