diff options
author | Chris Robinson <[email protected]> | 2010-07-25 12:54:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-07-25 12:54:50 -0700 |
commit | 46d46c49a87b33ed727a7099aca3dc89e06e57cd (patch) | |
tree | fb5e8d5611de607f6ddb707e1406d71e0bbe251d /Alc/pulseaudio.c | |
parent | 40dd1fb85364e3a9e278ffa7a034638e7718770b (diff) |
Store the time precision with the device
Diffstat (limited to 'Alc/pulseaudio.c')
-rw-r--r-- | Alc/pulseaudio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/pulseaudio.c b/Alc/pulseaudio.c index 2769fcd9..9355cc36 100644 --- a/Alc/pulseaudio.c +++ b/Alc/pulseaudio.c @@ -938,6 +938,9 @@ static ALCboolean pulse_reset_playback(ALCdevice *device) //{{{ ppa_stream_set_moved_callback(data->stream, stream_device_callback, device); ppa_stream_set_write_callback(data->stream, stream_write_callback, device); + device->TimeRes = (ALuint64)device->UpdateSize * 1000000000 / + device->Frequency; + data->thread = StartThread(PulseProc, device); if(!data->thread) { |