summaryrefslogtreecommitdiff
path: root/jack/driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'jack/driver.h')
-rw-r--r--jack/driver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/jack/driver.h b/jack/driver.h
index 5493fab..1dd6baf 100644
--- a/jack/driver.h
+++ b/jack/driver.h
@@ -39,13 +39,13 @@ struct _jack_driver;
typedef int (*JackDriverAttachFunction)(struct _jack_driver *, struct _jack_engine *);
typedef int (*JackDriverDetachFunction)(struct _jack_driver *, struct _jack_engine *);
-typedef nframes_t (*JackDriverWaitFunction)(struct _jack_driver *, int fd, int *status);
+typedef nframes_t (*JackDriverWaitFunction)(struct _jack_driver *, int fd, int *status, float *delayed_usecs);
typedef int (*JackDriverProcessFunction)(struct _jack_driver *, nframes_t);
typedef int (*JackDriverStopFunction)(struct _jack_driver *);
typedef int (*JackDriverStartFunction)(struct _jack_driver *);
#define JACK_DRIVER_DECL \
- nframes_t period_interval; \
+ nframes_t period_usecs; \
void *handle; \
void (*finish)(struct _jack_driver *);\
JackDriverAttachFunction attach; \