mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
a3a67c3c30
/usr/bin/ld: .libs/libgstremovesilence_la-vad_private.o: in function `vad_set_threshold': ./gst/removesilence/vad_private.c:108: undefined reference to `pow' /usr/bin/ld: .libs/libgstremovesilence_la-vad_private.o: in function `vad_get_threshold_as_db': ./gst/removesilence/vad_private.c:114: undefined reference to `log10'
11 lines
410 B
Makefile
11 lines
410 B
Makefile
|
|
plugin_LTLIBRARIES = libgstremovesilence.la
|
|
|
|
libgstremovesilence_la_SOURCES = gstremovesilence.c vad_private.c
|
|
libgstremovesilence_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstremovesilence_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
|
|
libgstremovesilence_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstremovesilence.h \
|
|
vad_private.h
|