summaryrefslogtreecommitdiff
path: root/gst/audiolatency
Commit message (Collapse)AuthorAgeFilesLines
* Meson: Generate pc file for all plugins in badXavier Claessens2018-04-251-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=794568
* audiolatency: Fix wave detection in buffersNirbheek Chauhan2018-04-031-7/+2
| | | | -1/1000 is 0, so we were *always* detecting a buffer.
* audiolatency: Avoid bogus pts values while startingNirbheek Chauhan2018-04-031-5/+19
|
* audiolatency: Fix string format specifier and use microseconds everywhereNirbheek Chauhan2018-02-281-10/+13
| | | | | | Should fix warnings or build errors on 32-bit platforms and on Windows. Also clarify in logging that all timestamps are in microseconds.
* audiolatency: Fix cerbero build failureNirbheek Chauhan2018-02-281-1/+1
| | | | | | Average latency is a 64-bit integer. https://ci.gstreamer.net/job/GStreamer-master/9962/
* audiolatency: New plugin for measuring audio latencyNirbheek Chauhan2018-02-274-0/+511
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