mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
bbe0cb0440
Change libgstasfdemux to libgstasf, and change libgstrealmedia to libgstrmdemux. The typos led to generate the incorrect Android.mk files for the asfdemux and realmedia plugin. https://bugzilla.gnome.org/show_bug.cgi?id=686748
27 lines
1.1 KiB
Makefile
27 lines
1.1 KiB
Makefile
plugin_LTLIBRARIES = libgstasf.la
|
|
|
|
libgstasf_la_SOURCES = gstasfdemux.c gstasf.c asfheaders.c asfpacket.c gstrtpasfdepay.c gstrtspwms.c
|
|
libgstasf_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstasf_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstriff-@GST_API_VERSION@ -lgstrtsp-@GST_API_VERSION@ -lgstsdp-@GST_API_VERSION@ \
|
|
-lgstrtp-@GST_API_VERSION@ -lgstaudio-@GST_API_VERSION@ -lgsttag-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
|
$(WIN32_LIBS)
|
|
libgstasf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstasf_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstasfdemux.h asfheaders.h asfpacket.h gstrtpasfdepay.h gstrtspwms.h
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstasf -:SHARED libgstasf \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstasf_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstasf_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstasf_la_LDFLAGS) \
|
|
$(libgstasf_la_LIBADD) \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|