diff options
author | Chris Robinson <[email protected]> | 2012-08-17 13:38:52 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-17 13:38:52 -0700 |
commit | ac4fc4026c3b1b0b9487216399bef04d419b04b8 (patch) | |
tree | 730148652e49723e644f7df8107c0c3be3c19821 /Alc/backends/dsound.c | |
parent | 9737f683150180a5531d276959030ffa0bd35492 (diff) |
Add a device method to retrieve the active latency
This is effectively the time until the next update will be heard by the user,
or the closest approximation thereof, in nanoseconds.
Diffstat (limited to 'Alc/backends/dsound.c')
-rw-r--r-- | Alc/backends/dsound.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Alc/backends/dsound.c b/Alc/backends/dsound.c index a80d2a99..89910c7f 100644 --- a/Alc/backends/dsound.c +++ b/Alc/backends/dsound.c @@ -934,6 +934,14 @@ done: return RingBufferSize(data->Ring); } + +static ALint64 DSoundGetLatency(ALCdevice *device) +{ + (void)device; + return 0; +} + + static const BackendFuncs DSoundFuncs = { DSoundOpenPlayback, DSoundClosePlayback, @@ -945,7 +953,8 @@ static const BackendFuncs DSoundFuncs = { DSoundStartCapture, DSoundStopCapture, DSoundCaptureSamples, - DSoundAvailableSamples + DSoundAvailableSamples, + DSoundGetLatency }; |