mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 22:46:35 +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
8 lines
227 B
Meson
8 lines
227 B
Meson
gstaudiolatency = library('gstaudiolatency',
|
|
'gstaudiolatency.c',
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|