mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
5d001b3ab6
Original commit message from CVS: * gst/spectrum/Makefile.am: * gst/spectrum/README: * gst/spectrum/gstspectrum.c: (gst_spectrum_base_init), (gst_spectrum_class_init), (gst_spectrum_init), (gst_spectrum_reset_state), (gst_spectrum_finalize), (gst_spectrum_set_property), (gst_spectrum_start), (gst_spectrum_stop), (gst_spectrum_setup), (gst_spectrum_transform_ip): * gst/spectrum/gstspectrum.h: Post a spectrum message on the bus for every interval, even if the interval is small than the length of the FFT. Fixes bug #567642. Major cleanup of the spectrum element.
12 lines
459 B
Makefile
12 lines
459 B
Makefile
plugin_LTLIBRARIES = libgstspectrum.la
|
|
|
|
libgstspectrum_la_SOURCES = gstspectrum.c
|
|
libgstspectrum_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
libgstspectrum_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstfft-$(GST_MAJORMINOR) -lgstaudio-$(GST_MAJORMINOR) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
|
libgstspectrum_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstspectrum_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstspectrum.h
|