mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
audioparsers: hook up to build
This commit is contained in:
parent
7a2a088c53
commit
e44456b481
3 changed files with 11 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue