mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
d56b83f662
Original commit message from CVS: 2005-11-17 Andy Wingo <wingo@pobox.com> * check/Makefile.am (check_PROGRAMS): * check/net/gstnetclientclock.c: Add a most minimal test for the net client clock. More to come later. * gst/net/gstnet.h: * gst/net/Makefile.am: Add netclientclock. * gst/net/gstnetclientclock.h: * gst/net/gstnetclientclock.c: New files, implement an untested GstClock that takes its time from a network time provider. Implements the algorithm in network-clock.scm. * tests/network-clock.scm (*window-size*): Rename from *queue-length*. * tests/network-clock.scm (network-time): * tests/network-clock-utils.scm (q-push): Update callers.
19 lines
726 B
Makefile
19 lines
726 B
Makefile
# tempname needs to be removed as soon as the old gstnet is renamed to
|
|
# nethelper or something
|
|
lib_LTLIBRARIES = libgstnet-tempname-@GST_MAJORMINOR@.la
|
|
|
|
libgstnet_tempname_@GST_MAJORMINOR@_includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/net
|
|
libgstnet_tempname_@GST_MAJORMINOR@_include_HEADERS = \
|
|
gstnet.h \
|
|
gstnetclientclock.h \
|
|
gstnettimepacket.h \
|
|
gstnettimeprovider.h
|
|
|
|
libgstnet_tempname_@GST_MAJORMINOR@_la_SOURCES = \
|
|
gstnetclientclock.c \
|
|
gstnettimepacket.c \
|
|
gstnettimeprovider.c
|
|
|
|
libgstnet_tempname_@GST_MAJORMINOR@_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstnet_tempname_@GST_MAJORMINOR@_la_LIBADD = $(GST_OBJ_LIBS)
|
|
libgstnet_tempname_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_OBJ_LDFLAGS)
|