mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
c270b7e123
Original commit message from CVS: * gst/spectrum/Makefile.am: Link to base libraries * gst/spectrum/demo-osssrc.c: (main): use new threshhold property * gst/spectrum/gstspectrum.c: (gst_spectrum_class_init), (gst_spectrum_init), (gst_spectrum_dispose), (gst_spectrum_set_property), (gst_spectrum_set_sink_caps), (gst_spectrum_get_sink_caps), (gst_spectrum_chain), (gst_spectrum_change_state): * gst/spectrum/gstspectrum.h: Use gst_adapter, support multiple-channels, add threshold property for result, add docs, fix resulting spectrum range (was including mirrored results)
19 lines
530 B
Makefile
19 lines
530 B
Makefile
|
|
plugin_LTLIBRARIES = libgstspectrum.la
|
|
|
|
libgstspectrum_la_SOURCES = gstspectrum.c fix_fft.c
|
|
libgstspectrum_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstspectrum_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstspectrum_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstspectrum.h
|
|
|
|
if HAVE_GTK
|
|
noinst_PROGRAMS = demo-osssrc
|
|
endif
|
|
|
|
demo_osssrc_SOURCES = demo-osssrc.c
|
|
demo_osssrc_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
demo_osssrc_LDFLAGS = $(GST_BASE_LIBS) $(GST_LIBS) $(GTK_LIBS)
|
|
|
|
EXTRA_DIST = README
|