From e44456b481e86f71661b31a11e4f1829caaff14f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 7 Apr 2011 14:43:42 +0100 Subject: [PATCH] audioparsers: hook up to build --- configure.ac | 6 ++++-- gst/audioparsers/Makefile.am | 12 ++++++------ gst/audioparsers/plugin.c | 2 +- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/configure.ac b/configure.ac index 548ed5d..81eaecd 100644 --- a/configure.ac +++ b/configure.ac @@ -54,8 +54,8 @@ AC_LIBTOOL_WIN32_DLL AM_PROG_LIBTOOL dnl *** required versions of GStreamer stuff *** -GST_REQ=0.10.32 -GSTPB_REQ=0.10.32 +GST_REQ=0.10.32.1 +GSTPB_REQ=0.10.32.1 dnl *** autotools stuff **** @@ -323,6 +323,7 @@ AG_GST_CHECK_PLUGIN(videofilter) AG_GST_CHECK_PLUGIN(alpha) AG_GST_CHECK_PLUGIN(apetag) AG_GST_CHECK_PLUGIN(audiofx) +AG_GST_CHECK_PLUGIN(audioparsers) AG_GST_CHECK_PLUGIN(auparse) AG_GST_CHECK_PLUGIN(autodetect) AG_GST_CHECK_PLUGIN(avi) @@ -1133,6 +1134,7 @@ gst/Makefile gst/alpha/Makefile gst/apetag/Makefile gst/audiofx/Makefile +gst/audioparsers/Makefile gst/auparse/Makefile gst/autodetect/Makefile gst/avi/Makefile diff --git a/gst/audioparsers/Makefile.am b/gst/audioparsers/Makefile.am index 13a9c83..22bc81f 100644 --- a/gst/audioparsers/Makefile.am +++ b/gst/audioparsers/Makefile.am @@ -1,18 +1,18 @@ -plugin_LTLIBRARIES = libgstaudioparsersbad.la +plugin_LTLIBRARIES = libgstaudioparsers.la -libgstaudioparsersbad_la_SOURCES = \ +libgstaudioparsers_la_SOURCES = \ gstaacparse.c gstamrparse.c gstac3parse.c \ gstdcaparse.c gstflacparse.c gstmpegaudioparse.c \ plugin.c -libgstaudioparsersbad_la_CFLAGS = \ +libgstaudioparsers_la_CFLAGS = \ $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) -libgstaudioparsersbad_la_LIBADD = \ +libgstaudioparsers_la_LIBADD = \ $(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_MAJORMINOR) \ -lgstaudio-$(GST_MAJORMINOR) \ $(GST_BASE_LIBS) $(GST_LIBS) -libgstaudioparsersbad_la_LDFLAGS = $(PACKAGE_LIBS) $(GST_PLUGIN_LDFLAGS) -libgstaudioparsersbad_la_LIBTOOLFLAGS = --tag=disable-static +libgstaudioparsers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstaudioparsers_la_LIBTOOLFLAGS = --tag=disable-static noinst_HEADERS = gstaacparse.h gstamrparse.h gstac3parse.h \ gstdcaparse.h gstflacparse.h gstmpegaudioparse.h diff --git a/gst/audioparsers/plugin.c b/gst/audioparsers/plugin.c index 7d6d2f3..66c64a9 100644 --- a/gst/audioparsers/plugin.c +++ b/gst/audioparsers/plugin.c @@ -52,6 +52,6 @@ plugin_init (GstPlugin * plugin) GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, - "audioparsersbad", "audioparsers", + "Parsers for various audio formats", plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN); -- 2.7.4