diff options
author | Lennart Poettering <lennart@poettering.net> | 2006-05-14 14:07:48 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2006-05-14 14:07:48 +0000 |
commit | b10f2dc0ae0f592530c39ee72f05900cd3bbf426 (patch) | |
tree | 844fd4e93a13b6a5907aabef6ccb13e88f8b3025 | |
parent | b3e16559fceaef151226b82408c118cef448993b (diff) |
update todo
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@860 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r-- | doc/todo | 1 | ||||
-rw-r--r-- | src/polypcore/core-subscribe.c | 7 |
2 files changed, 5 insertions, 3 deletions
@@ -27,6 +27,7 @@ Post 0.8: changes if you're modifying a sink/source since those might have a different map. - don't install .a files of modules +- check utf8 validity of strings Long term: - pass meta info for hearing impaired diff --git a/src/polypcore/core-subscribe.c b/src/polypcore/core-subscribe.c index e2dd9ae3..fa6c0e50 100644 --- a/src/polypcore/core-subscribe.c +++ b/src/polypcore/core-subscribe.c @@ -118,7 +118,8 @@ void pa_subscription_free_all(pa_core *c) { } } -/*static void dump_event(pa_subscription_event*e) { +#if 0 +static void dump_event(pa_subscription_event*e) { switch (e->type & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) { case PA_SUBSCRIPTION_EVENT_SINK: pa_log(__FILE__": SINK_EVENT"); @@ -159,7 +160,8 @@ void pa_subscription_free_all(pa_core *c) { } pa_log(__FILE__": %u", e->index); -}*/ +} +#endif /* Deferred callback for dispatching subscirption events */ static void defer_cb(pa_mainloop_api *m, pa_defer_event *de, void *userdata) { @@ -169,7 +171,6 @@ static void defer_cb(pa_mainloop_api *m, pa_defer_event *de, void *userdata) { c->mainloop->defer_enable(c->subscription_defer_event, 0); - /* Dispatch queued events */ if (c->subscription_event_queue) { |