mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
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.
This commit is contained in:
parent
5f6ab24e0d
commit
111bb7c4c2
3 changed files with 9 additions and 8 deletions
|
@ -56,6 +56,7 @@ CRUFT_FILES = \
|
||||||
$(top_builddir)/ext/hls/.libs/libgstfragmented* \
|
$(top_builddir)/ext/hls/.libs/libgstfragmented* \
|
||||||
$(top_builddir)/ext/ivorbis/.libs/*.{so,dll,DLL,dylib} \
|
$(top_builddir)/ext/ivorbis/.libs/*.{so,dll,DLL,dylib} \
|
||||||
$(top_builddir)/ext/jack/.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)/ext/mpg123/.libs/*.{so,dll,DLL,dylib} \
|
||||||
$(top_builddir)/gst/aacparse/.libs/*.{so,dll,DLL,dylib} \
|
$(top_builddir)/gst/aacparse/.libs/*.{so,dll,DLL,dylib} \
|
||||||
$(top_builddir)/gst/amrparse/.libs/*.{so,dll,DLL,dylib} \
|
$(top_builddir)/gst/amrparse/.libs/*.{so,dll,DLL,dylib} \
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
plugin_LTLIBRARIES = libgstopus.la
|
plugin_LTLIBRARIES = libgstopusparse.la
|
||||||
|
|
||||||
libgstopus_la_SOURCES = gstopus.c gstopusparse.c gstopusheader.c
|
libgstopusparse_la_SOURCES = gstopus.c gstopusparse.c gstopusheader.c
|
||||||
libgstopus_la_CFLAGS = \
|
libgstopusparse_la_CFLAGS = \
|
||||||
-DGST_USE_UNSTABLE_API \
|
-DGST_USE_UNSTABLE_API \
|
||||||
$(GST_PLUGINS_BAD_CFLAGS) \
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
||||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
$(GST_CFLAGS) \
|
$(GST_CFLAGS) \
|
||||||
$(OPUS_CFLAGS)
|
$(OPUS_CFLAGS)
|
||||||
libgstopus_la_LIBADD = \
|
libgstopusparse_la_LIBADD = \
|
||||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
||||||
-lgsttag-$(GST_API_VERSION) \
|
-lgsttag-$(GST_API_VERSION) \
|
||||||
-lgstpbutils-$(GST_API_VERSION) \
|
-lgstpbutils-$(GST_API_VERSION) \
|
||||||
$(GST_BASE_LIBS) \
|
$(GST_BASE_LIBS) \
|
||||||
$(GST_LIBS) \
|
$(GST_LIBS) \
|
||||||
$(OPUS_LIBS)
|
$(OPUS_LIBS)
|
||||||
libgstopus_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
libgstopusparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||||||
libgstopus_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
libgstopusparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
||||||
|
|
||||||
noinst_HEADERS = gstopusparse.h gstopusheader.h
|
noinst_HEADERS = gstopusparse.h gstopusheader.h
|
||||||
|
|
|
@ -39,6 +39,6 @@ plugin_init (GstPlugin * plugin)
|
||||||
|
|
||||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||||
GST_VERSION_MINOR,
|
GST_VERSION_MINOR,
|
||||||
opus,
|
opusparse,
|
||||||
"OPUS plugin library",
|
"OPUS parse plugin",
|
||||||
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
||||||
|
|
Loading…
Reference in a new issue