From 111bb7c4c2df4032f9c4f307328f9ec1918e7537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 26 Feb 2016 00:35:30 +0000 Subject: [PATCH] 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. --- Makefile.am | 1 + ext/opus/Makefile.am | 12 ++++++------ ext/opus/gstopus.c | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Makefile.am b/Makefile.am index 357faec40e..6fa225abb8 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 4630715ba0..c6c1a800e0 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 0f9cc379ec..d536000352 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)