rtph264pay: avoid double buffer unmap on error
[platform/upstream/gstreamer.git] / gst / videofilter / Makefile.am
1 plugin_LTLIBRARIES = libgstvideofilter.la
2
3 noinst_HEADERS = gstvideoflip.h gstvideobalance.h gstgamma.h gstvideomedian.h
4
5 EXTRA_DIST = gstvideotemplate.c make_filter
6 CLEANFILES = gstvideoexample.c
7
8 libgstvideofilter_la_SOURCES = plugin.c \
9                         gstvideoflip.c \
10                         gstvideobalance.c \
11                         gstgamma.c \
12                         gstvideomedian.c
13 libgstvideofilter_la_CFLAGS = $(GST_CFLAGS) \
14                         $(GST_BASE_CFLAGS) \
15                         $(GST_PLUGINS_BASE_CFLAGS)
16 libgstvideofilter_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
17                         -lgstvideo-@GST_API_VERSION@ \
18                         $(GST_BASE_LIBS) $(GST_LIBS)
19 libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
20 libgstvideofilter_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
21
22 gstvideoexample.c: $(srcdir)/make_filter $(srcdir)/gstvideotemplate.c
23         $(srcdir)/make_filter Videoexample $(srcdir)/gstvideotemplate.c
24
25 Android.mk: Makefile.am $(BUILT_SOURCES)
26         androgenizer \
27         -:PROJECT libgstvideofilter -:SHARED libgstvideofilter \
28          -:TAGS eng debug \
29          -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
30          -:SOURCES $(libgstvideofilter_la_SOURCES) \
31                    $(nodist_libgstvideofilter_la_SOURCES) \
32          -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstvideofilter_la_CFLAGS) \
33          -:LDFLAGS $(libgstvideofilter_la_LDFLAGS) \
34                    $(libgstvideofilter_la_LIBADD) \
35                    -ldl \
36          -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
37                        LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
38         > $@