rtpmux: no need to ref pad in _chain()
[platform/upstream/gstreamer.git] / gst / rtpmanager / Makefile.am
1 plugin_LTLIBRARIES = libgstrtpmanager.la
2
3 # FIXME 0.11: ignore GValueArray warnings for now until this is sorted
4 ERROR_CFLAGS=
5
6 glib_enum_define = GST_RTP_BIN
7 glib_gen_prefix = gst_rtp_bin
8 glib_gen_basename = gstrtpbin
9
10 include $(top_srcdir)/common/gst-glib-gen.mak
11
12 built_sources = gstrtpbin-marshal.c
13 built_headers = gstrtpbin-marshal.h
14
15 BUILT_SOURCES = $(built_sources) $(built_headers)
16
17 libgstrtpmanager_la_SOURCES = gstrtpmanager.c \
18                               gstrtpbin.c \
19                               gstrtpjitterbuffer.c \
20                               gstrtpptdemux.c \
21                               gstrtpssrcdemux.c \
22                               rtpjitterbuffer.c      \
23                               rtpsession.c      \
24                               rtpsource.c      \
25                               rtpstats.c      \
26                               gstrtpsession.c
27
28 nodist_libgstrtpmanager_la_SOURCES = \
29       $(built_sources)
30
31 noinst_HEADERS = gstrtpbin.h \
32                  gstrtpjitterbuffer.h \
33                  gstrtpptdemux.h \
34                  gstrtpssrcdemux.h \
35                  rtpjitterbuffer.h \
36                  rtpsession.h  \
37                  rtpsource.h  \
38                  rtpstats.h  \
39                  gstrtpsession.h
40
41 libgstrtpmanager_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
42         $(GST_NET_CFLAGS) $(WARNING_CFLAGS) $(ERROR_CFLAGS)
43 libgstrtpmanager_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
44         $(GST_NET_LIBS) -lgstrtp-@GST_API_VERSION@ \
45         $(GST_BASE_LIBS) $(GST_LIBS_LIBS)
46 libgstrtpmanager_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
47 libgstrtpmanager_la_LIBTOOLFLAGS = --tag=disable-static
48
49 CLEANFILES = $(BUILT_SOURCES)
50
51 EXTRA_DIST = gstrtpbin-marshal.list
52
53
54 Android.mk: Makefile.am $(BUILT_SOURCES)
55         androgenizer \
56         -:PROJECT libgstrtpmanager -:SHARED libgstrtpmanager \
57          -:TAGS eng debug \
58          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
59          -:SOURCES $(libgstrtpmanager_la_SOURCES) \
60                    $(nodist_libgstrtpmanager_la_SOURCES) \
61          -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstrtpmanager_la_CFLAGS) \
62          -:LDFLAGS $(libgstrtpmanager_la_LDFLAGS) \
63                    $(libgstrtpmanager_la_LIBADD) \
64                    -ldl \
65          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
66                        LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
67         > $@