mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 15:12:58 +00:00
fix build and use of GST_LIBS
Original commit message from CVS: fix build and use of GST_LIBS
This commit is contained in:
parent
50bdf8c462
commit
7593b38a57
45 changed files with 147 additions and 105 deletions
56
ChangeLog
56
ChangeLog
|
@ -1,3 +1,59 @@
|
||||||
|
2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* gst/auparse/Makefile.am:
|
||||||
|
* gst/auparse/gstauparse.c: (gst_auparse_chain):
|
||||||
|
fix up build
|
||||||
|
* configure.ac:
|
||||||
|
* ext/cairo/Makefile.am:
|
||||||
|
* ext/dv/Makefile.am:
|
||||||
|
* ext/esd/Makefile.am:
|
||||||
|
* ext/flac/Makefile.am:
|
||||||
|
* ext/gconf/Makefile.am:
|
||||||
|
* ext/gdk_pixbuf/Makefile.am:
|
||||||
|
* ext/jpeg/Makefile.am:
|
||||||
|
* ext/ladspa/Makefile.am:
|
||||||
|
* ext/libcaca/Makefile.am:
|
||||||
|
* ext/libmng/Makefile.am:
|
||||||
|
* ext/libpng/Makefile.am:
|
||||||
|
* ext/mikmod/Makefile.am:
|
||||||
|
* ext/pango/Makefile.am:
|
||||||
|
* ext/raw1394/Makefile.am:
|
||||||
|
* ext/shout2/Makefile.am:
|
||||||
|
* ext/speex/Makefile.am:
|
||||||
|
* gst/alpha/Makefile.am:
|
||||||
|
* gst/autodetect/Makefile.am:
|
||||||
|
* gst/avi/Makefile.am:
|
||||||
|
* gst/cutter/Makefile.am:
|
||||||
|
* gst/debug/Makefile.am:
|
||||||
|
* gst/effectv/Makefile.am:
|
||||||
|
* gst/flx/Makefile.am:
|
||||||
|
* gst/goom/Makefile.am:
|
||||||
|
* gst/interleave/Makefile.am:
|
||||||
|
* gst/law/Makefile.am:
|
||||||
|
* gst/matroska/Makefile.am:
|
||||||
|
* gst/median/Makefile.am:
|
||||||
|
* gst/monoscope/Makefile.am:
|
||||||
|
* gst/multipart/Makefile.am:
|
||||||
|
* gst/oldcore/Makefile.am:
|
||||||
|
* gst/rtp/Makefile.am:
|
||||||
|
* gst/rtsp/Makefile.am:
|
||||||
|
* gst/smoothwave/Makefile.am:
|
||||||
|
* gst/smpte/Makefile.am:
|
||||||
|
* gst/videobox/Makefile.am:
|
||||||
|
* gst/videofilter/Makefile.am:
|
||||||
|
* gst/videomixer/Makefile.am:
|
||||||
|
* gst/wavenc/Makefile.am:
|
||||||
|
* gst/wavparse/Makefile.am:
|
||||||
|
* sys/oss/Makefile.am:
|
||||||
|
* sys/osxaudio/Makefile.am:
|
||||||
|
* sys/osxvideo/Makefile.am:
|
||||||
|
fix up GST_LIBS use
|
||||||
|
|
||||||
|
2005-09-23 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* gst/auparse/Makefile.am:
|
||||||
|
* gst/auparse/gstauparse.c: (gst_auparse_chain):
|
||||||
|
fix build of auparse
|
||||||
|
|
||||||
2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
|
2005-09-22 Edgard Lima (edgard.lima@indt.org.br)
|
||||||
|
|
||||||
|
|
|
@ -259,7 +259,7 @@ dnl ===========================================================================
|
||||||
plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
|
plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
|
||||||
AC_SUBST(plugindir)
|
AC_SUBST(plugindir)
|
||||||
|
|
||||||
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*' $GST_LIBS"
|
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*'"
|
||||||
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
dnl these are all the gst plug-ins, compilable without additional libs
|
dnl these are all the gst plug-ins, compilable without additional libs
|
||||||
|
|
|
@ -9,6 +9,6 @@ libgstcairo_la_SOURCES = \
|
||||||
gstcairo.c
|
gstcairo.c
|
||||||
libgstcairo_la_CFLAGS = $(GST_CFLAGS) $(CAIRO_CFLAGS) \
|
libgstcairo_la_CFLAGS = $(GST_CFLAGS) $(CAIRO_CFLAGS) \
|
||||||
-I$(top_srcdir)/gst/videofilter
|
-I$(top_srcdir)/gst/videofilter
|
||||||
libgstcairo_la_LIBADD =
|
libgstcairo_la_LIBADD = $(GST_LIBS) $(CAIRO_LIBS) -lm
|
||||||
libgstcairo_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(CAIRO_LIBS) -lm
|
libgstcairo_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstdv.la
|
plugin_LTLIBRARIES = libgstdv.la
|
||||||
|
|
||||||
libgstdv_la_SOURCES = gstdv.c gstdvdec.c gstdvdemux.c
|
libgstdv_la_SOURCES = gstdv.c gstdvdec.c gstdvdemux.c
|
||||||
libgstdv_la_CFLAGS = $(GST_CFLAGS) $(LIBDV_CFLAGS)
|
libgstdv_la_CFLAGS = $(GST_CFLAGS) $(LIBDV_CFLAGS)
|
||||||
libgstdv_la_LIBADD = $(LIBDV_LIBS) $(GST_BASE_LIBS)
|
libgstdv_la_LIBADD = $(GST_BASE_LIBS) $(LIBDV_LIBS)
|
||||||
libgstdv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_PLUGINS_BASE_LIBS)
|
libgstdv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstdvdemux.h gstdvdec.h
|
noinst_HEADERS = gstdvdemux.h gstdvdec.h
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstesd.la
|
plugin_LTLIBRARIES = libgstesd.la
|
||||||
|
|
||||||
libgstesd_la_SOURCES = esdsink.c gstesd.c
|
libgstesd_la_SOURCES = esdsink.c gstesd.c
|
||||||
#esdmon.c
|
#esdmon.c
|
||||||
libgstesd_la_CFLAGS = $(GST_CFLAGS) $(ESD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstesd_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstesd_la_LIBADD = $(ESD_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@
|
libgstesd_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@ $(ESD_LIBS)
|
||||||
libgstesd_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstesd_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = esdsink.h esdmon.h
|
noinst_HEADERS = esdsink.h esdmon.h
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstflac.la
|
plugin_LTLIBRARIES = libgstflac.la
|
||||||
|
|
||||||
libgstflac_la_SOURCES = gstflac.c gstflacdec.c
|
libgstflac_la_SOURCES = gstflac.c gstflacdec.c
|
||||||
#gstflacenc.c gstflactag.c
|
#gstflacenc.c gstflactag.c
|
||||||
libgstflac_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)
|
libgstflac_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)
|
||||||
libgstflac_la_LIBADD = $(FLAC_LIBS)
|
libgstflac_la_LIBADD = $(GST_LIBS) $(FLAC_LIBS)
|
||||||
libgstflac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstflac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstflacenc.h gstflacdec.h flac_compat.h gstflactag.h
|
noinst_HEADERS = gstflacenc.h gstflacdec.h flac_compat.h gstflactag.h
|
||||||
|
|
|
@ -8,7 +8,7 @@ libgstgconfelements_la_SOURCES = \
|
||||||
|
|
||||||
DIR_CFLAGS = -DGST_GCONF_DIR=\"/system/gstreamer/@GST_MAJORMINOR@\"
|
DIR_CFLAGS = -DGST_GCONF_DIR=\"/system/gstreamer/@GST_MAJORMINOR@\"
|
||||||
libgstgconfelements_la_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS) $(DIR_CFLAGS)
|
libgstgconfelements_la_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS) $(DIR_CFLAGS)
|
||||||
libgstgconfelements_la_LIBADD = $(GCONF_LIBS)
|
libgstgconfelements_la_LIBADD = $(GST_LIBS) $(GCONF_LIBS)
|
||||||
libgstgconfelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgconfelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
|
|
|
@ -2,7 +2,7 @@ plugin_LTLIBRARIES = libgstgdkpixbuf.la
|
||||||
|
|
||||||
libgstgdkpixbuf_la_SOURCES = gstgdkpixbuf.c pixbufscale.c
|
libgstgdkpixbuf_la_SOURCES = gstgdkpixbuf.c pixbufscale.c
|
||||||
libgstgdkpixbuf_la_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
|
libgstgdkpixbuf_la_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
|
||||||
libgstgdkpixbuf_la_LIBADD = $(GTK_LIBS)
|
libgstgdkpixbuf_la_LIBADD = $(GST_LIBS) $(GTK_LIBS)
|
||||||
libgstgdkpixbuf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgdkpixbuf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
if HAVE_GDK_LOADERS
|
if HAVE_GDK_LOADERS
|
||||||
|
@ -19,7 +19,7 @@ gst_loader_la_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -DGDK_PIXBUF_ENABLE_BACKEND
|
||||||
gst_loader_la_SOURCES = \
|
gst_loader_la_SOURCES = \
|
||||||
gstgdkanimation.c \
|
gstgdkanimation.c \
|
||||||
gst_loader.c
|
gst_loader.c
|
||||||
gst_loader_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) --avoid-version --module
|
gst_loader_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
gst_loader_la_LIBADD = $(GTK_LIBS) $(GST_LIBS)
|
gst_loader_la_LIBADD = $(GTK_LIBS) $(GST_LIBS)
|
||||||
else
|
else
|
||||||
install-data-hook:
|
install-data-hook:
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstjpeg.la
|
plugin_LTLIBRARIES = libgstjpeg.la
|
||||||
|
|
||||||
libgstjpeg_la_SOURCES = \
|
libgstjpeg_la_SOURCES = \
|
||||||
|
@ -10,8 +9,8 @@ libgstjpeg_la_SOURCES = \
|
||||||
|
|
||||||
# gstsmokedec.c
|
# gstsmokedec.c
|
||||||
|
|
||||||
libgstjpeg_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstjpeg_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstjpeg_la_LIBADD = $(JPEG_LIBS)
|
libgstjpeg_la_LIBADD = $(GST_LIBS) $(JPEG_LIBS)
|
||||||
libgstjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstjpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstladspa.la
|
plugin_LTLIBRARIES = libgstladspa.la
|
||||||
|
|
||||||
libgstladspa_la_SOURCES = gstsignalprocessor.c gstladspa.c search.c load.c
|
libgstladspa_la_SOURCES = gstsignalprocessor.c gstladspa.c search.c load.c
|
||||||
libgstladspa_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstladspa_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstladspa_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@
|
libgstladspa_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@
|
||||||
libgstladspa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstladspa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstcacasink.la
|
plugin_LTLIBRARIES = libgstcacasink.la
|
||||||
|
|
||||||
libgstcacasink_la_SOURCES = gstcacasink.c
|
libgstcacasink_la_SOURCES = gstcacasink.c
|
||||||
libgstcacasink_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(LIBCACA_CFLAGS)
|
libgstcacasink_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(LIBCACA_CFLAGS)
|
||||||
libgstcacasink_la_LIBADD = $(LIBCACA_LIBS) #\
|
libgstcacasink_la_LIBADD = \
|
||||||
#$(top_builddir)/gst-libs/gst/libgstinterfaces-$(GST_MAJORMINOR).la
|
$(GST_PLUGINS_BASE_LIBS) \
|
||||||
libgstcacasink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS)
|
$(GST_BASE_LIBS) \
|
||||||
|
$(LIBCACA_LIBS)
|
||||||
|
libgstcacasink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstcacasink.h
|
noinst_HEADERS = gstcacasink.h
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstmng.la
|
plugin_LTLIBRARIES = libgstmng.la
|
||||||
|
|
||||||
libgstmng_la_SOURCES = gstmng.c gstmngdec.c gstmngenc.c
|
libgstmng_la_SOURCES = gstmng.c gstmngdec.c gstmngenc.c
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstpng.la
|
plugin_LTLIBRARIES = libgstpng.la
|
||||||
|
|
||||||
libgstpng_la_SOURCES = gstpng.c gstpngenc.c # gstpngdec.c
|
libgstpng_la_SOURCES = gstpng.c gstpngenc.c # gstpngdec.c
|
||||||
libgstpng_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstpng_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstpng_la_LIBADD = $(GST_LIBS) $(LIBPNG_LIBS)
|
libgstpng_la_LIBADD = $(GST_LIBS) $(LIBPNG_LIBS)
|
||||||
libgstpng_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstpng_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstmikmod.la
|
plugin_LTLIBRARIES = libgstmikmod.la
|
||||||
|
|
||||||
libgstmikmod_la_SOURCES = gstmikmod.c drv_gst.c mikmod_reader.c
|
libgstmikmod_la_SOURCES = gstmikmod.c drv_gst.c mikmod_reader.c
|
||||||
libgstmikmod_la_CFLAGS = $(GST_CFLAGS) $(MIKMOD_CFLAGS)
|
libgstmikmod_la_CFLAGS = $(GST_CFLAGS) $(MIKMOD_CFLAGS)
|
||||||
libgstmikmod_la_LIBADD = $(MIKMOD_LIBS)
|
libgstmikmod_la_LIBADD = $(GST_LIBS) $(MIKMOD_LIBS)
|
||||||
libgstmikmod_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmikmod_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmikmod.h
|
noinst_HEADERS = gstmikmod.h
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
#PANGO_CFLAGS = -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2
|
#PANGO_CFLAGS = -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2
|
||||||
#PANGO_LDFLAGS = -Wl,--export-dynamic -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0
|
#PANGO_LDFLAGS = -Wl,--export-dynamic -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0
|
||||||
|
|
||||||
|
@ -8,10 +7,10 @@ noinst_HEADERS = gsttimeoverlay.h gsttextoverlay.h
|
||||||
|
|
||||||
libgsttimeoverlay_la_SOURCES = gsttimeoverlay.c
|
libgsttimeoverlay_la_SOURCES = gsttimeoverlay.c
|
||||||
libgsttimeoverlay_la_CFLAGS = $(GST_CFLAGS) $(PANGO_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
libgsttimeoverlay_la_CFLAGS = $(GST_CFLAGS) $(PANGO_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
||||||
libgsttimeoverlay_la_LIBADD =
|
libgsttimeoverlay_la_LIBADD = $(GST_LIBS) $(PANGO_LIBS) -lm
|
||||||
libgsttimeoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(PANGO_LIBS) -lm
|
libgsttimeoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
libgsttextoverlay_la_SOURCES = gsttextoverlay.c
|
libgsttextoverlay_la_SOURCES = gsttextoverlay.c
|
||||||
libgsttextoverlay_la_CFLAGS = $(GST_CFLAGS) $(PANGO_CFLAGS)
|
libgsttextoverlay_la_CFLAGS = $(GST_CFLAGS) $(PANGO_CFLAGS)
|
||||||
libgsttextoverlay_la_LIBADD =
|
libgsttextoverlay_la_LIBADD = $(GST_LIBS) $(PANGO_LIBS)
|
||||||
libgsttextoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(PANGO_LIBS)
|
libgsttextoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgst1394.la
|
plugin_LTLIBRARIES = libgst1394.la
|
||||||
|
|
||||||
libgst1394_la_SOURCES = gst1394.c gstdv1394src.c
|
libgst1394_la_SOURCES = gst1394.c gstdv1394src.c
|
||||||
libgst1394_la_CFLAGS = $(GST_CFLAGS)
|
libgst1394_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgst1394_la_LIBADD = $(DV1394_LIBS)
|
libgst1394_la_LIBADD = $(GST_BASE_LIBS) $(DV1394_LIBS)
|
||||||
libgst1394_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS)
|
libgst1394_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstdv1394src.h
|
noinst_HEADERS = gstdv1394src.h
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstshout2.la
|
plugin_LTLIBRARIES = libgstshout2.la
|
||||||
|
|
||||||
libgstshout2_la_SOURCES = gstshout2.c
|
libgstshout2_la_SOURCES = gstshout2.c
|
||||||
libgstshout2_la_CFLAGS = $(SHOUT2_CFLAGS) $(GST_CFLAGS)
|
libgstshout2_la_CFLAGS = $(GST_CFLAGS) $(SHOUT2_CFLAGS)
|
||||||
libgstshout2_la_LIBADD = $(SHOUT2_LIBS) $(GST_LIBS) $(GST_BASE_LIBS)
|
libgstshout2_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SHOUT2_LIBS)
|
||||||
libgstshout2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstshout2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstshout2.h
|
noinst_HEADERS = gstshout2.h
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstspeex.la
|
plugin_LTLIBRARIES = libgstspeex.la
|
||||||
|
|
||||||
libgstspeex_la_SOURCES = gstspeex.c gstspeexdec.c
|
libgstspeex_la_SOURCES = gstspeex.c gstspeexdec.c
|
||||||
#gstspeexenc.c
|
#gstspeexenc.c
|
||||||
libgstspeex_la_CFLAGS = $(GST_CFLAGS) $(SPEEX_CFLAGS)
|
libgstspeex_la_CFLAGS = $(GST_CFLAGS) $(SPEEX_CFLAGS)
|
||||||
libgstspeex_la_LIBADD = $(SPEEX_LIBS)
|
libgstspeex_la_LIBADD = $(GST_LIBS) $(SPEEX_LIBS)
|
||||||
libgstspeex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstspeex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstspeexenc.h gstspeexdec.h
|
noinst_HEADERS = gstspeexenc.h gstspeexdec.h
|
||||||
|
|
|
@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstalpha.la
|
||||||
|
|
||||||
libgstalpha_la_SOURCES = gstalpha.c
|
libgstalpha_la_SOURCES = gstalpha.c
|
||||||
libgstalpha_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstalpha_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
||||||
libgstalpha_la_LIBADD =
|
libgstalpha_la_LIBADD = $(GST_LIBS)
|
||||||
libgstalpha_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstalpha_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS =
|
noinst_HEADERS =
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstauparse.la
|
plugin_LTLIBRARIES = libgstauparse.la
|
||||||
|
|
||||||
libgstauparse_la_SOURCES = gstauparse.c
|
libgstauparse_la_SOURCES = gstauparse.c
|
||||||
libgstauparse_la_CFLAGS = $(GST_CFLAGS)
|
libgstauparse_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstauparse_la_LIBADD =
|
libgstauparse_la_LIBADD = $(GST_LIBS)
|
||||||
libgstauparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstauparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstauparse.h
|
noinst_HEADERS = gstauparse.h
|
||||||
|
|
|
@ -166,7 +166,7 @@ gst_auparse_chain (GstPad * pad, GstBuffer * buf)
|
||||||
{
|
{
|
||||||
GstFlowReturn ret;
|
GstFlowReturn ret;
|
||||||
GstAuParse *auparse;
|
GstAuParse *auparse;
|
||||||
gchar *data;
|
guchar *data;
|
||||||
glong size;
|
glong size;
|
||||||
GstCaps *tempcaps;
|
GstCaps *tempcaps;
|
||||||
gint law = 0, depth = 0, ieee = 0;
|
gint law = 0, depth = 0, ieee = 0;
|
||||||
|
|
|
@ -5,7 +5,7 @@ libgstautodetect_la_SOURCES = \
|
||||||
gstautodetect.c \
|
gstautodetect.c \
|
||||||
gstautovideosink.c
|
gstautovideosink.c
|
||||||
libgstautodetect_la_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS)
|
libgstautodetect_la_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS)
|
||||||
libgstautodetect_la_LIBADD = $(GCONF_LIBS)
|
libgstautodetect_la_LIBADD = $(GST_LIBS) $(GCONF_LIBS)
|
||||||
libgstautodetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstautodetect_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
|
|
|
@ -9,11 +9,12 @@ noinst_HEADERS = \
|
||||||
gstavimux.h \
|
gstavimux.h \
|
||||||
gstavidemux.h
|
gstavidemux.h
|
||||||
|
|
||||||
libgstavi_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
libgstavi_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
||||||
-I$(top_srcdir)/gst-libs
|
-I$(top_srcdir)/gst-libs
|
||||||
libgstavi_la_LIBADD = -lgstriff-@GST_MAJORMINOR@
|
libgstavi_la_LIBADD = \
|
||||||
libgstavi_la_LDFLAGS = \
|
$(GST_PLUGINS_BASE_LIBS) \
|
||||||
$(GST_PLUGIN_LDFLAGS) \
|
$(GST_LIBS) \
|
||||||
$(GST_PLUGINS_BASE_LIBS)
|
-lgstriff-@GST_MAJORMINOR@
|
||||||
|
libgstavi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
EXTRA_DIST = README gstavimux.c
|
EXTRA_DIST = README gstavimux.c
|
||||||
|
|
|
@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstcutter.la
|
||||||
|
|
||||||
libgstcutter_la_SOURCES = gstcutter.c
|
libgstcutter_la_SOURCES = gstcutter.c
|
||||||
libgstcutter_la_CFLAGS = $(GST_CFLAGS)
|
libgstcutter_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstcutter_la_LIBADD =
|
libgstcutter_la_LIBADD = $(GST_LIBS)
|
||||||
libgstcutter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstcutter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstcutter.h filter.func
|
noinst_HEADERS = gstcutter.h filter.func
|
||||||
|
|
|
@ -4,6 +4,7 @@ noinst_HEADERS = efence.h gstnavigationtest.h gstnavseek.h tests.h
|
||||||
|
|
||||||
libgstefence_la_SOURCES = efence.c
|
libgstefence_la_SOURCES = efence.c
|
||||||
libgstefence_la_CFLAGS = $(GST_CFLAGS)
|
libgstefence_la_CFLAGS = $(GST_CFLAGS)
|
||||||
|
libgstefence_la_LIBADD = $(GST_LIBS)
|
||||||
libgstefence_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstefence_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
# libgstnavigationtest_la_SOURCES = gstnavigationtest.c
|
# libgstnavigationtest_la_SOURCES = gstnavigationtest.c
|
||||||
|
|
|
@ -1,9 +1,16 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgsteffectv.la
|
plugin_LTLIBRARIES = libgsteffectv.la
|
||||||
|
|
||||||
libgsteffectv_la_SOURCES = gsteffectv.c gstedge.c gstaging.c gstdice.c gstwarp.c gstshagadelic.c gstvertigo.c gstrev.c gstquark.c
|
libgsteffectv_la_SOURCES = \
|
||||||
libgsteffectv_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
gsteffectv.c gstedge.c gstaging.c gstdice.c gstwarp.c \
|
||||||
libgsteffectv_la_LIBADD = $(top_builddir)/gst/videofilter/libgstvideofilter-@GST_MAJORMINOR@.la
|
gstshagadelic.c gstvertigo.c gstrev.c gstquark.c
|
||||||
libgsteffectv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_PLUGINS_BASE_LIBS)
|
libgsteffectv_la_CFLAGS = \
|
||||||
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
|
$(GST_CFLAGS) \
|
||||||
|
-I$(top_srcdir)/gst/videofilter
|
||||||
|
libgsteffectv_la_LIBADD = \
|
||||||
|
$(GST_PLUGINS_BASE_LIBS) \
|
||||||
|
$(GST_LIBS) \
|
||||||
|
$(top_builddir)/gst/videofilter/libgstvideofilter-@GST_MAJORMINOR@.la
|
||||||
|
libgsteffectv_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gsteffectv.h
|
noinst_HEADERS = gsteffectv.h
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstflxdec.la
|
plugin_LTLIBRARIES = libgstflxdec.la
|
||||||
|
|
||||||
libgstflxdec_la_SOURCES = gstflxdec.c flx_color.c
|
libgstflxdec_la_SOURCES = gstflxdec.c flx_color.c
|
||||||
libgstflxdec_la_CFLAGS = $(GST_CFLAGS)
|
libgstflxdec_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstflxdec_la_LIBADD =
|
libgstflxdec_la_LIBADD = $(GST_LIBS)
|
||||||
libgstflxdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstflxdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = flx_fmt.h flx_color.h gstflxdec.h
|
noinst_HEADERS = flx_fmt.h flx_color.h gstflxdec.h
|
||||||
|
|
|
@ -3,12 +3,12 @@ plugin_LTLIBRARIES = libgstgoom.la
|
||||||
GOOM_FILTER_FILES = filters.c
|
GOOM_FILTER_FILES = filters.c
|
||||||
GOOM_FILTER_CFLAGS = -UMMX -UUSE_ASM
|
GOOM_FILTER_CFLAGS = -UMMX -UUSE_ASM
|
||||||
|
|
||||||
libgstgoom_la_SOURCES = gstgoom.c goom_core.c $(GOOM_FILTER_FILES) graphic.c lines.c
|
|
||||||
|
|
||||||
noinst_HEADERS = gstgoom.h filters.h goom_core.h goom_tools.h graphic.h lines.h
|
noinst_HEADERS = gstgoom.h filters.h goom_core.h goom_tools.h graphic.h lines.h
|
||||||
|
|
||||||
libgstgoom_la_CFLAGS = $(GST_CFLAGS) $(GOOM_FILTER_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstgoom_la_SOURCES = gstgoom.c goom_core.c $(GOOM_FILTER_FILES) graphic.c lines.c
|
||||||
libgstgoom_la_LIBADD = $(GST_BASE_LIBS)
|
|
||||||
|
libgstgoom_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GOOM_FILTER_CFLAGS)
|
||||||
|
libgstgoom_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
||||||
libgstgoom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstgoom_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
EXTRA_DIST = filters.c
|
EXTRA_DIST = filters.c
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstalaw.la libgstmulaw.la
|
plugin_LTLIBRARIES = libgstalaw.la libgstmulaw.la
|
||||||
|
|
||||||
libgstalaw_la_SOURCES = alaw-encode.c alaw-decode.c alaw.c
|
libgstalaw_la_SOURCES = alaw-encode.c alaw-decode.c alaw.c
|
||||||
libgstalaw_la_CFLAGS = $(GST_CFLAGS)
|
libgstalaw_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstalaw_la_LIBADD =
|
libgstalaw_la_LIBADD = $(GST_LIBS)
|
||||||
libgstalaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstalaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
libgstmulaw_la_SOURCES = mulaw-encode.c mulaw-conversion.c mulaw-decode.c mulaw.c
|
libgstmulaw_la_SOURCES = mulaw-encode.c mulaw-conversion.c mulaw-decode.c mulaw.c
|
||||||
libgstmulaw_la_CFLAGS = $(GST_CFLAGS)
|
libgstmulaw_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmulaw_la_LIBADD =
|
libgstmulaw_la_LIBADD = $(GST_LIBS)
|
||||||
libgstmulaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmulaw_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = mulaw-conversion.h alaw-encode.h alaw-decode.h mulaw-encode.h mulaw-decode.h
|
noinst_HEADERS = mulaw-conversion.h alaw-encode.h alaw-decode.h mulaw-encode.h mulaw-decode.h
|
||||||
|
|
|
@ -16,5 +16,5 @@ noinst_HEADERS = \
|
||||||
matroska-mux.h
|
matroska-mux.h
|
||||||
|
|
||||||
libgstmatroska_la_CFLAGS = $(GST_CFLAGS)
|
libgstmatroska_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmatroska_la_LIBADD =
|
libgstmatroska_la_LIBADD = $(GST_LIBS)
|
||||||
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstmedian.la
|
plugin_LTLIBRARIES = libgstmedian.la
|
||||||
|
|
||||||
libgstmedian_la_SOURCES = gstmedian.c
|
libgstmedian_la_SOURCES = gstmedian.c
|
||||||
|
|
||||||
libgstmedian_la_CFLAGS = $(GST_CFLAGS)
|
libgstmedian_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmedian_la_LIBADD =
|
libgstmedian_la_LIBADD = $(GST_LIBS)
|
||||||
libgstmedian_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmedian_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstmedian.h
|
noinst_HEADERS = gstmedian.h
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstmonoscope.la
|
plugin_LTLIBRARIES = libgstmonoscope.la
|
||||||
|
|
||||||
libgstmonoscope_la_SOURCES = gstmonoscope.c monoscope.c convolve.c
|
libgstmonoscope_la_SOURCES = gstmonoscope.c monoscope.c convolve.c
|
||||||
|
@ -6,6 +5,5 @@ libgstmonoscope_la_SOURCES = gstmonoscope.c monoscope.c convolve.c
|
||||||
noinst_HEADERS = monoscope.h convolve.h
|
noinst_HEADERS = monoscope.h convolve.h
|
||||||
|
|
||||||
libgstmonoscope_la_CFLAGS = $(GST_CFLAGS)
|
libgstmonoscope_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmonoscope_la_LIBADD =
|
libgstmonoscope_la_LIBADD = $(GST_LIBS)
|
||||||
libgstmonoscope_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmonoscope_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
|
|
|
@ -2,5 +2,5 @@ plugin_LTLIBRARIES = libgstmultipart.la
|
||||||
|
|
||||||
libgstmultipart_la_SOURCES = multipart.c multipartdemux.c multipartmux.c
|
libgstmultipart_la_SOURCES = multipart.c multipartdemux.c multipartmux.c
|
||||||
libgstmultipart_la_CFLAGS = $(GST_CFLAGS)
|
libgstmultipart_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstmultipart_la_LIBADD =
|
libgstmultipart_la_LIBADD = $(GST_LIBS)
|
||||||
libgstmultipart_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstmultipart_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -12,7 +12,7 @@ libgststandardelements_la_SOURCES = \
|
||||||
gststatistics.c
|
gststatistics.c
|
||||||
|
|
||||||
libgststandardelements_la_CFLAGS = $(GST_CFLAGS)
|
libgststandardelements_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgststandardelements_la_LIBADD =
|
libgststandardelements_la_LIBADD = $(GST_LIBS)
|
||||||
libgststandardelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgststandardelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
|
|
|
@ -15,10 +15,10 @@ libgstrtp_la_SOURCES = gstrtp.c \
|
||||||
|
|
||||||
#gstrtpL16enc.c gstrtpL16parse.c gstrtpgsmenc.c gstrtpgsmparse.c
|
#gstrtpL16enc.c gstrtpL16parse.c gstrtpgsmenc.c gstrtpgsmparse.c
|
||||||
|
|
||||||
libgstrtp_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstrtp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstrtp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
|
||||||
libgstrtp_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
|
||||||
-lgstrtp-@GST_MAJORMINOR@
|
-lgstrtp-@GST_MAJORMINOR@
|
||||||
|
libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstrtpL16enc.h \
|
noinst_HEADERS = gstrtpL16enc.h \
|
||||||
gstrtpL16parse.h \
|
gstrtpL16parse.h \
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstrtsp.la
|
plugin_LTLIBRARIES = libgstrtsp.la
|
||||||
|
|
||||||
libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \
|
libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \
|
||||||
|
@ -10,7 +9,7 @@ libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \
|
||||||
sdpmessage.c
|
sdpmessage.c
|
||||||
|
|
||||||
libgstrtsp_la_CFLAGS = $(GST_CFLAGS)
|
libgstrtsp_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstrtsp_la_LIBADD =
|
libgstrtsp_la_LIBADD = $(GST_LIBS)
|
||||||
libgstrtsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstrtsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
check_PROGRAMS = test
|
check_PROGRAMS = test
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstsmoothwave.la
|
plugin_LTLIBRARIES = libgstsmoothwave.la
|
||||||
|
|
||||||
libgstsmoothwave_la_SOURCES = gstsmoothwave.c
|
libgstsmoothwave_la_SOURCES = gstsmoothwave.c
|
||||||
libgstsmoothwave_la_CFLAGS = $(GST_CFLAGS)
|
libgstsmoothwave_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstsmoothwave_la_LIBADD =
|
libgstsmoothwave_la_LIBADD = $(GST_LIBS)
|
||||||
libgstsmoothwave_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsmoothwave_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstsmoothwave.h
|
noinst_HEADERS = gstsmoothwave.h
|
||||||
|
|
|
@ -4,6 +4,6 @@ libgstsmpte_la_SOURCES = gstsmpte.c gstmask.c barboxwipes.c paint.c
|
||||||
|
|
||||||
noinst_HEADERS = gstsmpte.h gstmask.h paint.h
|
noinst_HEADERS = gstsmpte.h gstmask.h paint.h
|
||||||
|
|
||||||
libgstsmpte_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstsmpte_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstsmpte_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS)
|
libgstsmpte_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS)
|
||||||
libgstsmpte_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstsmpte_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstvideobox.la
|
plugin_LTLIBRARIES = libgstvideobox.la
|
||||||
|
|
||||||
libgstvideobox_la_SOURCES = gstvideobox.c
|
libgstvideobox_la_SOURCES = gstvideobox.c
|
||||||
|
@ -6,6 +5,4 @@ libgstvideobox_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
||||||
libgstvideobox_la_LIBADD = $(GST_BASE_LIBS)
|
libgstvideobox_la_LIBADD = $(GST_BASE_LIBS)
|
||||||
libgstvideobox_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideobox_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS =
|
|
||||||
|
|
||||||
EXTRA_DIST = README
|
EXTRA_DIST = README
|
||||||
|
|
|
@ -13,12 +13,12 @@ libgstvideofilter_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIBS)
|
||||||
|
|
||||||
libgstvideoexample_la_SOURCES = gstvideoexample.c
|
libgstvideoexample_la_SOURCES = gstvideoexample.c
|
||||||
libgstvideoexample_la_CFLAGS = $(GST_CFLAGS)
|
libgstvideoexample_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstvideoexample_la_LIBADD = libgstvideofilter-@GST_MAJORMINOR@.la
|
libgstvideoexample_la_LIBADD = libgstvideofilter-@GST_MAJORMINOR@.la $(GST_LIBS)
|
||||||
libgstvideoexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideoexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
libgstvideoflip_la_SOURCES = gstvideoflip.c
|
libgstvideoflip_la_SOURCES = gstvideoflip.c
|
||||||
libgstvideoflip_la_CFLAGS = $(GST_CFLAGS)
|
libgstvideoflip_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstvideoflip_la_LIBADD = libgstvideofilter-@GST_MAJORMINOR@.la
|
libgstvideoflip_la_LIBADD = libgstvideofilter-@GST_MAJORMINOR@.la $(GST_LIBS)
|
||||||
libgstvideoflip_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideoflip_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
# libgstvideobalance_la_SOURCES = gstvideobalance.c
|
# libgstvideobalance_la_SOURCES = gstvideobalance.c
|
||||||
|
|
|
@ -2,5 +2,5 @@ plugin_LTLIBRARIES = libgstvideomixer.la
|
||||||
|
|
||||||
libgstvideomixer_la_SOURCES = videomixer.c
|
libgstvideomixer_la_SOURCES = videomixer.c
|
||||||
libgstvideomixer_la_CFLAGS = $(GST_CFLAGS)
|
libgstvideomixer_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstvideomixer_la_LIBADD =
|
libgstvideomixer_la_LIBADD = $(GST_LIBS)
|
||||||
libgstvideomixer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstvideomixer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstwavenc.la
|
plugin_LTLIBRARIES = libgstwavenc.la
|
||||||
|
|
||||||
libgstwavenc_la_SOURCES = gstwavenc.c
|
libgstwavenc_la_SOURCES = gstwavenc.c
|
||||||
libgstwavenc_la_CFLAGS = $(GST_CFLAGS)
|
libgstwavenc_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstwavenc_la_LIBADD =
|
libgstwavenc_la_LIBADD = $(GST_LIBS)
|
||||||
libgstwavenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstwavenc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstwavenc.h riff.h
|
noinst_HEADERS = gstwavenc.h riff.h
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
|
|
||||||
plugin_LTLIBRARIES = libgstwavparse.la
|
plugin_LTLIBRARIES = libgstwavparse.la
|
||||||
|
|
||||||
libgstwavparse_la_SOURCES = gstwavparse.c
|
libgstwavparse_la_SOURCES = gstwavparse.c
|
||||||
libgstwavparse_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
libgstwavparse_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
||||||
-I$(top_srcdir)/gst-libs
|
-I$(top_srcdir)/gst-libs
|
||||||
libgstwavparse_la_LIBADD = -lgstriff-@GST_MAJORMINOR@
|
libgstwavparse_la_LIBADD = -lgstriff-@GST_MAJORMINOR@ $(GST_PLUGINS_BASE_LIBS)
|
||||||
libgstwavparse_la_LDFLAGS = \
|
libgstwavparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
$(GST_PLUGIN_LDFLAGS) \
|
|
||||||
$(GST_PLUGINS_BASE_LIBS)
|
|
||||||
|
|
||||||
noinst_HEADERS = gstwavparse.h
|
noinst_HEADERS = gstwavparse.h
|
||||||
|
|
|
@ -10,10 +10,12 @@ libgstossaudio_la_SOURCES = gstossaudio.c \
|
||||||
|
|
||||||
# gstossdmabuffer.c
|
# gstossdmabuffer.c
|
||||||
|
|
||||||
libgstossaudio_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
libgstossaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
libgstossaudio_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
libgstossaudio_la_LIBADD = \
|
||||||
-lgstinterfaces-@GST_MAJORMINOR@ \
|
-lgstinterfaces-@GST_MAJORMINOR@ \
|
||||||
-lgstaudio-@GST_MAJORMINOR@
|
-lgstaudio-@GST_MAJORMINOR@ \
|
||||||
|
$(GST_PLUGINS_BASE_LIBS) \
|
||||||
|
$(GST_LIBS)
|
||||||
libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstosssink.h \
|
noinst_HEADERS = gstosssink.h \
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
plugin_LTLIBRARIES = libgstosxaudio.la
|
plugin_LTLIBRARIES = libgstosxaudio.la
|
||||||
|
|
||||||
libgstosxaudio_la_SOURCES = gstosxaudio.c \
|
libgstosxaudio_la_SOURCES = gstosxaudio.c \
|
||||||
gstosxaudioelement.c \
|
gstosxaudioelement.c \
|
||||||
gstosxaudiosink.c \
|
gstosxaudiosink.c \
|
||||||
gstosxaudiosrc.c
|
gstosxaudiosrc.c
|
||||||
|
|
||||||
|
# FIXME: clean up these linker flags
|
||||||
libgstosxaudio_la_CFLAGS = $(GST_CFLAGS)
|
libgstosxaudio_la_CFLAGS = $(GST_CFLAGS)
|
||||||
libgstosxaudio_la_LIBADD = $(top_builddir)/gst-libs/gst/libgstinterfaces-@GST_MAJORMINOR@.la
|
libgstosxaudio_la_LIBADD = $(top_builddir)/gst-libs/gst/libgstinterfaces-@GST_MAJORMINOR@.la $(GST_LIBS)
|
||||||
LIBS = -Wl,-framework -Wl,CoreAudio
|
LIBS = -Wl,-framework -Wl,CoreAudio
|
||||||
libgstosxaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -framework CoreAudio
|
libgstosxaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -framework CoreAudio
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue