summaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorJoão Paulo Rechi Vita <joao.vita@gmail.com>2008-08-13 16:06:36 -0300
committerLennart Poettering <lennart@poettering.net>2008-09-11 01:12:05 +0300
commit16d5aab0202fac8a57f2a486d141b9d789eb39ad (patch)
tree79999840b733185c71834c682f3ee64b5d5a9d4f /src/modules
parentaa310a40f88379db3ee976721ac666b89f09aabe (diff)
Get rid of SINK_MESSAGE_PASS_SOCKET, since we don't really need it
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/module-bt-device.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/modules/module-bt-device.c b/src/modules/module-bt-device.c
index be6795e4..a92cc559 100644
--- a/src/modules/module-bt-device.c
+++ b/src/modules/module-bt-device.c
@@ -113,10 +113,6 @@ static const char* const valid_modargs[] = {
NULL
};
-enum {
- SINK_MESSAGE_PASS_SOCKET = PA_SINK_MESSAGE_MAX
-};
-
static int bt_audioservice_send(int sk, const bt_audio_msg_header_t *msg) {
int e;
pa_log/*_debug*/("sending %s", bt_audio_strmsg(msg->msg_type));
@@ -549,15 +545,6 @@ static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offse
break;
}
- case SINK_MESSAGE_PASS_SOCKET: {
- struct pollfd *pollfd;
- pa_assert(!u->rtpoll_item);
- u->rtpoll_item = pa_rtpoll_item_new(u->rtpoll, PA_RTPOLL_NEVER, 1);
- pollfd = pa_rtpoll_item_get_pollfd(u->rtpoll_item, NULL);
- pollfd->fd = u->stream_fd;
- pollfd->events = pollfd->revents = 0;
- return 0;
- }
}
return pa_sink_process_msg(o, code, data, offset, chunk);
@@ -811,9 +798,6 @@ int pa__init(pa_module* m) {
}
pa_sink_put(u->sink);
- /* hand the socket to the rt thread */
- pa_asyncmsgq_post(u->thread_mq.inq, PA_MSGOBJECT(u->sink), SINK_MESSAGE_PASS_SOCKET, NULL, 0, NULL, NULL);
-
pa_modargs_free(ma);
return 0;