mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-08 13:29:59 -05:00
extend rtpoll API to allow registration of arbitray functions to be executed in the event loop. Add priority system for specifying the order of these functions.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1816 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
cf3e9da9dd
commit
ef83a19525
11 changed files with 139 additions and 61 deletions
|
|
@ -401,7 +401,7 @@ static void sink_input_attach_cb(pa_sink_input *i) {
|
|||
pa_assert(o);
|
||||
|
||||
pa_assert(!o->rtpoll_item);
|
||||
o->rtpoll_item = pa_rtpoll_item_new_asyncmsgq(i->sink->rtpoll, o->asyncmsgq);
|
||||
o->rtpoll_item = pa_rtpoll_item_new_asyncmsgq(i->sink->rtpoll, PA_RTPOLL_NORMAL, o->asyncmsgq);
|
||||
}
|
||||
|
||||
/* Called from I/O thread context */
|
||||
|
|
@ -721,7 +721,7 @@ static int update_master(struct userdata *u, struct output *o) {
|
|||
pa_assert(!u->rtpoll);
|
||||
|
||||
u->rtpoll = pa_rtpoll_new();
|
||||
pa_rtpoll_item_new_asyncmsgq(u->rtpoll, u->thread_mq.inq);
|
||||
pa_rtpoll_item_new_asyncmsgq(u->rtpoll, PA_RTPOLL_EARLY, u->thread_mq.inq);
|
||||
|
||||
pa_sink_set_rtpoll(u->sink, u->rtpoll);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue