[client] audio: add audio playback latency interface and graph

This commit is contained in:
Geoffrey McRae
2022-01-17 22:13:41 +11:00
parent 5629655f74
commit 689cc53255
5 changed files with 81 additions and 5 deletions

View File

@@ -59,6 +59,9 @@ struct LG_AudioDevOps
/* [optional] called to set muting of the output */
void (*mute)(bool mute);
/* return the current total playback latency in microseconds */
uint64_t (*latency)(void);
}
playback;