X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/e8c185c3c5870f21f8352c9684e6feb9c1ef37a5..1c95530676f55d612383883ff383e24ecc7dc17d:/lib/uaudio.h diff --git a/lib/uaudio.h b/lib/uaudio.h index a6996f8..aa686d0 100644 --- a/lib/uaudio.h +++ b/lib/uaudio.h @@ -90,11 +90,39 @@ struct uaudio { */ void (*deactivate)(void); + /** @brief Open mixer device */ + void (*open_mixer)(void); + + /** @brief Closer mixer device */ + void (*close_mixer)(void); + + /** @brief Get volume + * @param left Where to put the left-channel value + * @param right Where to put the right-channel value + * + * 0 is silent and 100 is maximum volume. + */ + void (*get_volume)(int *left, int *right); + + /** @brief Set volume + * @param left Pointer to left-channel value (updated) + * @param right Pointer to right-channel value (updated) + * + * The values are updated with those actually set by the underlying system + * call. + * + * 0 is silent and 100 is maximum volume. + */ + void (*set_volume)(int *left, int *right); + + /** @brief Set configuration */ + void (*configure)(void); + }; void uaudio_set_format(int rate, int channels, int samplesize, int signed_); void uaudio_set(const char *name, const char *value); -char *uaudio_get(const char *name); +char *uaudio_get(const char *name, const char *default_value); void uaudio_thread_start(uaudio_callback *callback, void *userdata, uaudio_playcallback *playcallback, @@ -103,6 +131,13 @@ void uaudio_thread_start(uaudio_callback *callback, void uaudio_thread_stop(void); void uaudio_thread_activate(void); void uaudio_thread_deactivate(void); +void uaudio_schedule_synchronize(void); +void uaudio_schedule_update(size_t written_samples); +void uaudio_schedule_init(void); +const struct uaudio *uaudio_find(const char *name); + +extern uint64_t uaudio_schedule_timestamp; +extern int uaudio_schedule_reactivated; #if HAVE_COREAUDIO_AUDIOHARDWARE_H extern const struct uaudio uaudio_coreaudio; @@ -117,9 +152,10 @@ extern const struct uaudio uaudio_oss; #endif extern const struct uaudio uaudio_rtp; + extern const struct uaudio uaudio_command; -extern const struct uaudio *uaudio_apis[]; +extern const struct uaudio *const uaudio_apis[]; #endif /* UAUDIO_H */