opus: rename plugin to opusparse for the time being
authorTim-Philipp Müller <tim@centricular.com>
Fri, 26 Feb 2016 00:35:30 +0000 (00:35 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Fri, 26 Feb 2016 00:44:34 +0000 (00:44 +0000)
Until we fix it up and get rid of the opus dependency and
move it elsewhere too.

Makefile.am
ext/opus/Makefile.am
ext/opus/gstopus.c

index 357faec..6fa225a 100644 (file)
@@ -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} \
index 4630715..c6c1a80 100644 (file)
@@ -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
index 0f9cc37..d536000 100644 (file)
@@ -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)