mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-23 06:59:53 -05:00
simplify rt loops a bit by moving more code into pa_rtpoll. It is now possible to attach "work" functions to a pa_rtpoll_item, which will be called in each loop iteration. This allows us to hide the message processing in the RT loops and to drop the seperate sink_input->process hooks. Basically, only the driver-specific code remains in the RT loops.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1822 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
f0b9dce32e
commit
3396b65f15
19 changed files with 182 additions and 272 deletions
|
|
@ -194,7 +194,6 @@ pa_sink_input* pa_sink_input_new(
|
|||
|
||||
i->peek = NULL;
|
||||
i->drop = NULL;
|
||||
i->process = NULL;
|
||||
i->kill = NULL;
|
||||
i->get_latency = NULL;
|
||||
i->attach = NULL;
|
||||
|
|
@ -272,7 +271,6 @@ void pa_sink_input_unlink(pa_sink_input *i) {
|
|||
|
||||
i->peek = NULL;
|
||||
i->drop = NULL;
|
||||
i->process = NULL;
|
||||
i->kill = NULL;
|
||||
i->get_latency = NULL;
|
||||
i->attach = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue