mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
jack: jack_get_time() returns microseconds
As found by David García Goñi Fixes #4128
This commit is contained in:
parent
398060bc7b
commit
842e620c1a
1 changed files with 1 additions and 1 deletions
|
|
@ -6773,7 +6773,7 @@ jack_time_t jack_get_time(void)
|
|||
{
|
||||
struct timespec ts;
|
||||
clock_gettime(CLOCK_MONOTONIC, &ts);
|
||||
return SPA_TIMESPEC_TO_NSEC(&ts);
|
||||
return SPA_TIMESPEC_TO_USEC(&ts);
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue