diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2016-02-26 00:35:30 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2016-02-26 00:44:34 +0000 |
commit | 111bb7c4c2df4032f9c4f307328f9ec1918e7537 (patch) | |
tree | 3b895ab3e8131d30a9ab8144e280e51e739aa7a2 | |
parent | 5f6ab24e0d8766ee69cffcf3282d94578655a0a9 (diff) | |
download | gstreamer-plugins-bad-111bb7c4c2df4032f9c4f307328f9ec1918e7537.tar.gz |
opus: rename plugin to opusparse for the time being
Until we fix it up and get rid of the opus dependency and
move it elsewhere too.
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | ext/opus/Makefile.am | 12 | ||||
-rw-r--r-- | ext/opus/gstopus.c | 4 |
3 files changed, 9 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am index 357faec40..6fa225abb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -56,6 +56,7 @@ CRUFT_FILES = \ $(top_builddir)/ext/hls/.libs/libgstfragmented* \ $(top_builddir)/ext/ivorbis/.libs/*.{so,dll,DLL,dylib} \ $(top_builddir)/ext/jack/.libs/*.{so,dll,DLL,dylib} \ + $(top_builddir)/gst/opus/.libs/libgstopus.{so,dll,DLL,dylib} \ $(top_builddir)/ext/mpg123/.libs/*.{so,dll,DLL,dylib} \ $(top_builddir)/gst/aacparse/.libs/*.{so,dll,DLL,dylib} \ $(top_builddir)/gst/amrparse/.libs/*.{so,dll,DLL,dylib} \ diff --git a/ext/opus/Makefile.am b/ext/opus/Makefile.am index 4630715ba..c6c1a800e 100644 --- a/ext/opus/Makefile.am +++ b/ext/opus/Makefile.am @@ -1,20 +1,20 @@ -plugin_LTLIBRARIES = libgstopus.la +plugin_LTLIBRARIES = libgstopusparse.la -libgstopus_la_SOURCES = gstopus.c gstopusparse.c gstopusheader.c -libgstopus_la_CFLAGS = \ +libgstopusparse_la_SOURCES = gstopus.c gstopusparse.c gstopusheader.c +libgstopusparse_la_CFLAGS = \ -DGST_USE_UNSTABLE_API \ $(GST_PLUGINS_BAD_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) \ $(GST_CFLAGS) \ $(OPUS_CFLAGS) -libgstopus_la_LIBADD = \ +libgstopusparse_la_LIBADD = \ $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \ -lgsttag-$(GST_API_VERSION) \ -lgstpbutils-$(GST_API_VERSION) \ $(GST_BASE_LIBS) \ $(GST_LIBS) \ $(OPUS_LIBS) -libgstopus_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM) -libgstopus_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) +libgstopusparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM) +libgstopusparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) noinst_HEADERS = gstopusparse.h gstopusheader.h diff --git a/ext/opus/gstopus.c b/ext/opus/gstopus.c index 0f9cc379e..d53600035 100644 --- a/ext/opus/gstopus.c +++ b/ext/opus/gstopus.c @@ -39,6 +39,6 @@ plugin_init (GstPlugin * plugin) GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, - opus, - "OPUS plugin library", + opusparse, + "OPUS parse plugin", plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN) |