mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
add notification callback which is called when new latency data becomes available
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@873 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
9c8661c675
commit
19167a1a2d
3 changed files with 19 additions and 1 deletions
|
|
@ -151,6 +151,8 @@ struct pa_stream {
|
|||
void *overflow_userdata;
|
||||
pa_stream_notify_cb_t underflow_callback;
|
||||
void *underflow_userdata;
|
||||
pa_stream_notify_cb_t latency_update_callback;
|
||||
void *latency_update_userdata;
|
||||
};
|
||||
|
||||
typedef void (*pa_operation_cb_t)(void);
|
||||
|
|
|
|||
|
|
@ -63,6 +63,8 @@ pa_stream *pa_stream_new(pa_context *c, const char *name, const pa_sample_spec *
|
|||
s->overflow_userdata = NULL;
|
||||
s->underflow_callback = NULL;
|
||||
s->underflow_userdata = NULL;
|
||||
s->latency_update_callback = NULL;
|
||||
s->latency_update_userdata = NULL;
|
||||
|
||||
s->direction = PA_STREAM_NODIRECTION;
|
||||
s->name = pa_xstrdup(name);
|
||||
|
|
@ -849,8 +851,11 @@ static void stream_get_timing_info_callback(pa_pdispatch *pd, uint32_t command,
|
|||
o->stream->write_index_corrections[n].valid = 0;
|
||||
}
|
||||
}
|
||||
|
||||
if (o->stream->latency_update_callback)
|
||||
o->stream->latency_update_callback(o->stream, o->stream->latency_update_userdata);
|
||||
|
||||
if (o->callback) {
|
||||
if (o->callback && o->stream && o->stream->state == PA_STREAM_READY) {
|
||||
pa_stream_success_cb_t cb = (pa_stream_success_cb_t) o->callback;
|
||||
cb(o->stream, o->stream->timing_info_valid, o->userdata);
|
||||
}
|
||||
|
|
@ -999,6 +1004,14 @@ void pa_stream_set_underflow_callback(pa_stream *s, pa_stream_notify_cb_t cb, vo
|
|||
s->underflow_userdata = userdata;
|
||||
}
|
||||
|
||||
void pa_stream_set_latency_update_callback(pa_stream *s, pa_stream_notify_cb_t cb, void *userdata) {
|
||||
assert(s);
|
||||
assert(s->ref >= 1);
|
||||
|
||||
s->latency_update_callback = cb;
|
||||
s->latency_update_userdata = userdata;
|
||||
}
|
||||
|
||||
void pa_stream_simple_ack_callback(pa_pdispatch *pd, uint32_t command, PA_GCC_UNUSED uint32_t tag, pa_tagstruct *t, void *userdata) {
|
||||
pa_operation *o = userdata;
|
||||
int success = 1;
|
||||
|
|
|
|||
|
|
@ -375,6 +375,9 @@ void pa_stream_set_overflow_callback(pa_stream *p, pa_stream_notify_cb_t cb, voi
|
|||
/** Set the callback function that is called when a buffer underflow happens. (Only for playback streams) \since 0.8 */
|
||||
void pa_stream_set_underflow_callback(pa_stream *p, pa_stream_notify_cb_t cb, void *userdata);
|
||||
|
||||
/** Set the callback function that is called whenever a latency information update happens. Useful on PA_STREAM_AUTO_TIMING_UPDATE streams only. (Only for playback streams) \since 0.8.2 */
|
||||
void pa_stream_set_latency_update_callback(pa_stream *p, pa_stream_notify_cb_t cb, void *userdata);
|
||||
|
||||
/** Pause (or resume) playback of this stream temporarily. Available on both playback and recording streams. \since 0.3 */
|
||||
pa_operation* pa_stream_cork(pa_stream *s, int b, pa_stream_success_cb_t cb, void *userdata);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue