mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
3fb81536ce
Measures the audio latency between the source pad and the sink pad by outputting period ticks on the source pad and measuring how long they take to arrive on the sink pad. Very useful for quantifying latency improvements in audio pipelines. This plugin was particularly useful during development of the low-latency features of the wasapi plugin. https://bugzilla.gnome.org/show_bug.cgi?id=793839
10 lines
337 B
Makefile
10 lines
337 B
Makefile
plugin_LTLIBRARIES = libgstaudiolatency.la
|
|
|
|
libgstaudiolatency_la_SOURCES = gstaudiolatency.c
|
|
|
|
noinst_HEADERS = gstaudiolatency.h
|
|
|
|
libgstaudiolatency_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstaudiolatency_la_LIBADD = $(GST_LIBS)
|
|
libgstaudiolatency_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaudiolatency_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|