diff options
author | Tanu Kaskinen <tanu.kaskinen@linux.intel.com> | 2014-01-15 18:59:18 +0200 |
---|---|---|
committer | Tanu Kaskinen <tanu.kaskinen@linux.intel.com> | 2014-01-15 18:59:18 +0200 |
commit | c1c19e4d782a85149ead9485491253cb2e3ef084 (patch) | |
tree | 1b7817830964b3e1e06d910249fcf85e7c861d9f /src/pulsecore/sink.c | |
parent | 7fd14b6f580fd427ebe4a869383ee76ecfe4ef5f (diff) |
sink, source: Remove useless attach/detach stuff
The removed stuff wasn't used anywhere.
Diffstat (limited to 'src/pulsecore/sink.c')
-rw-r--r-- | src/pulsecore/sink.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index 672a884fd..f4647b8bf 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -2804,18 +2804,6 @@ int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offse return 0; } - case PA_SINK_MESSAGE_DETACH: - - /* Detach all streams */ - pa_sink_detach_within_thread(s); - return 0; - - case PA_SINK_MESSAGE_ATTACH: - - /* Reattach all streams */ - pa_sink_attach_within_thread(s); - return 0; - case PA_SINK_MESSAGE_GET_REQUESTED_LATENCY: { pa_usec_t *usec = userdata; @@ -2930,24 +2918,6 @@ int pa_sink_suspend_all(pa_core *c, bool suspend, pa_suspend_cause_t cause) { return ret; } -/* Called from main thread */ -void pa_sink_detach(pa_sink *s) { - pa_sink_assert_ref(s); - pa_assert_ctl_context(); - pa_assert(PA_SINK_IS_LINKED(s->state)); - - pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_DETACH, NULL, 0, NULL) == 0); -} - -/* Called from main thread */ -void pa_sink_attach(pa_sink *s) { - pa_sink_assert_ref(s); - pa_assert_ctl_context(); - pa_assert(PA_SINK_IS_LINKED(s->state)); - - pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_ATTACH, NULL, 0, NULL) == 0); -} - /* Called from IO thread */ void pa_sink_detach_within_thread(pa_sink *s) { pa_sink_input *i; |