mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
460542daaf
A small struct that keeps a short history of fragment download bitrates to have an average measure of N last fragments instead of using only the last downloaded bitrate
23 lines
686 B
Makefile
23 lines
686 B
Makefile
|
|
plugin_LTLIBRARIES = libgstdashdemux.la
|
|
|
|
libgstdashdemux_la_SOURCES = \
|
|
gstmpdparser.c \
|
|
gstdashdemux.c \
|
|
gstplugin.c \
|
|
gstdownloadrate.c
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = \
|
|
gstmpdparser.h \
|
|
gstdashdemux.h \
|
|
gstdownloadrate.h
|
|
|
|
# compiler and linker flags used to compile this plugin, set in configure.ac
|
|
libgstdashdemux_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS)
|
|
libgstdashdemux_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/uridownloader/libgsturidownloader-$(GST_MAJORMINOR).la \
|
|
$(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstdashdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdashdemux_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|