mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 21:12:26 +00:00
audiovisualizers: rename scopes plugin to audiovisualizers
This commit is contained in:
parent
92d36cdbfe
commit
45464a038e
11 changed files with 20 additions and 20 deletions
|
@ -297,6 +297,7 @@ AG_GST_CHECK_PLUGIN(adpcmdec)
|
|||
AG_GST_CHECK_PLUGIN(adpcmenc)
|
||||
AG_GST_CHECK_PLUGIN(aiff)
|
||||
AG_GST_CHECK_PLUGIN(asfmux)
|
||||
AG_GST_CHECK_PLUGIN(audiovisualizers)
|
||||
AG_GST_CHECK_PLUGIN(autoconvert)
|
||||
AG_GST_CHECK_PLUGIN(bayer)
|
||||
AG_GST_CHECK_PLUGIN(camerabin)
|
||||
|
@ -346,7 +347,6 @@ AG_GST_CHECK_PLUGIN(real)
|
|||
AG_GST_CHECK_PLUGIN(rtpmux)
|
||||
AG_GST_CHECK_PLUGIN(rtpvp8)
|
||||
AG_GST_CHECK_PLUGIN(scaletempo)
|
||||
AG_GST_CHECK_PLUGIN(scopes)
|
||||
AG_GST_CHECK_PLUGIN(sdi)
|
||||
AG_GST_CHECK_PLUGIN(sdp)
|
||||
AG_GST_CHECK_PLUGIN(segmentclip)
|
||||
|
@ -1848,6 +1848,7 @@ gst/adpcmdec/Makefile
|
|||
gst/adpcmenc/Makefile
|
||||
gst/aiff/Makefile
|
||||
gst/asfmux/Makefile
|
||||
gst/audiovisualizers/Makefile
|
||||
gst/autoconvert/Makefile
|
||||
gst/bayer/Makefile
|
||||
gst/camerabin/Makefile
|
||||
|
@ -1898,7 +1899,6 @@ gst/real/Makefile
|
|||
gst/rtpmux/Makefile
|
||||
gst/rtpvp8/Makefile
|
||||
gst/scaletempo/Makefile
|
||||
gst/scopes/Makefile
|
||||
gst/sdi/Makefile
|
||||
gst/sdp/Makefile
|
||||
gst/segmentclip/Makefile
|
||||
|
|
|
@ -1,33 +1,33 @@
|
|||
plugin_LTLIBRARIES = libgstscopes.la
|
||||
plugin_LTLIBRARIES = libgstaudiovisualizers.la
|
||||
|
||||
libgstscopes_la_SOURCES = \
|
||||
gstbasescope.c plugin.c \
|
||||
libgstaudiovisualizers_la_SOURCES = plugin.c \
|
||||
gstbaseaudiovisualizer.c gstbaseaudiovisualizer.h \
|
||||
gstspectrascope.c gstspectrascope.h \
|
||||
gstsynaescope.c gstsynaescope.h \
|
||||
gstwavescope.c gstwavescope.h
|
||||
|
||||
libgstscopes_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
||||
libgstaudiovisualizers_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
||||
$(GST_CONTROLLER_CFLAGS) $(GST_CFLAGS)
|
||||
libgstscopes_la_LIBADD = \
|
||||
libgstaudiovisualizers_la_LIBADD = \
|
||||
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) \
|
||||
-lgstvideo-$(GST_MAJORMINOR) -lgstfft-$(GST_MAJORMINOR) \
|
||||
$(GST_BASE_LIBS) $(GST_CONTROLLER_LIBS) $(GST_LIBS) $(LIBM)
|
||||
libgstscopes_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstscopes_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
libgstaudiovisualizers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstaudiovisualizers_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
noinst_HEADERS = gstbasescope.h \
|
||||
gstspectrascope.h gstsynaescope.h gstwavescope.h
|
||||
|
||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||
androgenizer \
|
||||
-:PROJECT scopes -:SHARED scopes \
|
||||
-:PROJECT audiovisualizers -:SHARED audiovisualizers \
|
||||
-:TAGS eng debug \
|
||||
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
||||
-:SOURCES $(libgstscopes_la_SOURCES) \
|
||||
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstscopes_la_CFLAGS) \
|
||||
-:LDFLAGS $(libgstscopes_la_LDFLAGS) \
|
||||
$(libgstscopes_la_LIBADD) \
|
||||
-:SOURCES $(libgstaudiovisualizers_la_SOURCES) \
|
||||
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstaudiovisualizers_la_CFLAGS) \
|
||||
-:LDFLAGS $(libgstaudiovisualizers_la_LDFLAGS) \
|
||||
$(libgstaudiovisualizers_la_LIBADD) \
|
||||
-ldl \
|
||||
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
||||
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
@ -44,6 +44,6 @@ plugin_init (GstPlugin * plugin)
|
|||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"scopes",
|
||||
"audiovisualizers",
|
||||
"Creates video visualizations of audio input",
|
||||
plugin_init, VERSION, "GPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
Loading…
Reference in a new issue