From 3396b65f15a06ff312e318bc05e502ba402c564e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 14 Sep 2007 21:51:05 +0000 Subject: 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 --- src/pulsecore/source-output.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/pulsecore/source-output.c') diff --git a/src/pulsecore/source-output.c b/src/pulsecore/source-output.c index 42672341..b77a4ae3 100644 --- a/src/pulsecore/source-output.c +++ b/src/pulsecore/source-output.c @@ -148,7 +148,6 @@ pa_source_output* pa_source_output_new( o->channel_map = data->channel_map; o->push = NULL; - o->process = NULL; o->kill = NULL; o->get_latency = NULL; o->detach = NULL; @@ -204,7 +203,6 @@ void pa_source_output_unlink(pa_source_output*o) { pa_source_update_status(o->source); o->push = NULL; - o->process = NULL; o->kill = NULL; o->get_latency = NULL; o->attach = NULL; -- cgit