2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
|
This file is part of PulseAudio.
|
2007-02-13 15:35:19 +00:00
|
|
|
|
|
|
|
|
|
|
Copyright 2006 Lennart Poettering
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2006-04-16 00:16:53 +00:00
|
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2009-03-03 20:23:02 +00:00
|
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
2006-04-16 00:16:53 +00:00
|
|
|
|
or (at your option) any later version.
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2006-04-16 00:16:53 +00:00
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
|
General Public License for more details.
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2006-04-16 00:16:53 +00:00
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
|
USA.
|
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
#include <unistd.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
|
#include <poll.h>
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2009-04-04 23:19:53 +03:00
|
|
|
|
#include <pulse/rtclock.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
|
#include <pulse/timeval.h>
|
|
|
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
|
#include <pulsecore/core-error.h>
|
|
|
|
|
|
#include <pulsecore/module.h>
|
|
|
|
|
|
#include <pulsecore/llist.h>
|
|
|
|
|
|
#include <pulsecore/sink.h>
|
|
|
|
|
|
#include <pulsecore/sink-input.h>
|
|
|
|
|
|
#include <pulsecore/memblockq.h>
|
|
|
|
|
|
#include <pulsecore/log.h>
|
2009-04-04 23:19:53 +03:00
|
|
|
|
#include <pulsecore/core-rtclock.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
|
#include <pulsecore/modargs.h>
|
|
|
|
|
|
#include <pulsecore/namereg.h>
|
|
|
|
|
|
#include <pulsecore/sample-util.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
|
#include <pulsecore/macro.h>
|
|
|
|
|
|
#include <pulsecore/atomic.h>
|
|
|
|
|
|
#include <pulsecore/atomic.h>
|
2008-05-15 23:34:41 +00:00
|
|
|
|
#include <pulsecore/time-smoother.h>
|
2009-04-07 00:50:47 +02:00
|
|
|
|
#include <pulsecore/socket-util.h>
|
|
|
|
|
|
#include <pulsecore/once.h>
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
#include "module-rtp-recv-symdef.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "rtp.h"
|
|
|
|
|
|
#include "sdp.h"
|
|
|
|
|
|
#include "sap.h"
|
|
|
|
|
|
|
2007-11-09 18:25:40 +00:00
|
|
|
|
PA_MODULE_AUTHOR("Lennart Poettering");
|
2009-06-17 03:14:26 +02:00
|
|
|
|
PA_MODULE_DESCRIPTION("Receive data from a network via RTP/SAP/SDP");
|
2007-11-09 18:25:40 +00:00
|
|
|
|
PA_MODULE_VERSION(PACKAGE_VERSION);
|
|
|
|
|
|
PA_MODULE_LOAD_ONCE(FALSE);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
PA_MODULE_USAGE(
|
|
|
|
|
|
"sink=<name of the sink> "
|
|
|
|
|
|
"sap_address=<multicast address to listen on> "
|
2007-11-09 18:25:40 +00:00
|
|
|
|
);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
#define SAP_PORT 9875
|
2006-04-16 11:13:20 +00:00
|
|
|
|
#define DEFAULT_SAP_ADDRESS "224.0.0.56"
|
2008-05-15 23:34:41 +00:00
|
|
|
|
#define MEMBLOCKQ_MAXLENGTH (1024*1024*40)
|
2006-04-16 00:16:53 +00:00
|
|
|
|
#define MAX_SESSIONS 16
|
2007-10-28 19:13:50 +00:00
|
|
|
|
#define DEATH_TIMEOUT 20
|
2008-05-15 23:34:41 +00:00
|
|
|
|
#define RATE_UPDATE_INTERVAL (5*PA_USEC_PER_SEC)
|
|
|
|
|
|
#define LATENCY_USEC (500*PA_USEC_PER_MSEC)
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
static const char* const valid_modargs[] = {
|
|
|
|
|
|
"sink",
|
|
|
|
|
|
"sap_address",
|
|
|
|
|
|
NULL
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct session {
|
|
|
|
|
|
struct userdata *userdata;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
PA_LLIST_FIELDS(struct session);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
pa_sink_input *sink_input;
|
|
|
|
|
|
pa_memblockq *memblockq;
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_bool_t first_packet;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
uint32_t ssrc;
|
|
|
|
|
|
uint32_t offset;
|
|
|
|
|
|
|
|
|
|
|
|
struct pa_sdp_info sdp_info;
|
|
|
|
|
|
|
|
|
|
|
|
pa_rtp_context rtp_context;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
|
|
pa_rtpoll_item *rtpoll_item;
|
|
|
|
|
|
|
|
|
|
|
|
pa_atomic_t timestamp;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
|
|
pa_smoother *smoother;
|
|
|
|
|
|
pa_usec_t intended_latency;
|
|
|
|
|
|
pa_usec_t sink_latency;
|
|
|
|
|
|
|
|
|
|
|
|
pa_usec_t last_rate_update;
|
2011-01-12 07:24:58 +01:00
|
|
|
|
pa_usec_t last_latency;
|
2011-01-16 01:27:29 +01:00
|
|
|
|
double estimated_rate;
|
|
|
|
|
|
double avg_estimated_rate;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct userdata {
|
|
|
|
|
|
pa_module *module;
|
2009-04-05 02:13:43 +03:00
|
|
|
|
pa_core *core;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
pa_sap_context sap_context;
|
|
|
|
|
|
pa_io_event* sap_event;
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_time_event *check_death_event;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
char *sink_name;
|
2006-04-16 12:44:43 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
PA_LLIST_HEAD(struct session, sessions);
|
|
|
|
|
|
pa_hashmap *by_origin;
|
2006-04-16 12:44:43 +00:00
|
|
|
|
int n_sessions;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
static void session_free(struct session *s);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
/* Called from I/O thread context */
|
|
|
|
|
|
static int sink_input_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) {
|
|
|
|
|
|
struct session *s = PA_SINK_INPUT(o)->userdata;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
switch (code) {
|
|
|
|
|
|
case PA_SINK_INPUT_MESSAGE_GET_LATENCY:
|
|
|
|
|
|
*((pa_usec_t*) data) = pa_bytes_to_usec(pa_memblockq_get_length(s->memblockq), &s->sink_input->sample_spec);
|
|
|
|
|
|
|
|
|
|
|
|
/* Fall through, the default handler will add in the extra
|
|
|
|
|
|
* latency added by the resampler */
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return pa_sink_input_process_msg(o, code, data, offset, chunk);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
/* Called from I/O thread context */
|
2008-05-15 23:34:41 +00:00
|
|
|
|
static int sink_input_pop_cb(pa_sink_input *i, size_t length, pa_memchunk *chunk) {
|
2006-04-16 00:16:53 +00:00
|
|
|
|
struct session *s;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
|
pa_assert_se(s = i->userdata);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
|
if (pa_memblockq_peek(s->memblockq, chunk) < 0)
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
|
|
pa_memblockq_drop(s->memblockq, chunk->length);
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
/* Called from I/O thread context */
|
2008-05-15 23:34:41 +00:00
|
|
|
|
static void sink_input_process_rewind_cb(pa_sink_input *i, size_t nbytes) {
|
2006-04-16 00:16:53 +00:00
|
|
|
|
struct session *s;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
|
pa_assert_se(s = i->userdata);
|
|
|
|
|
|
|
|
|
|
|
|
pa_memblockq_rewind(s->memblockq, nbytes);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-04-07 00:50:47 +02:00
|
|
|
|
/* Called from I/O thread context */
|
2008-05-15 23:34:41 +00:00
|
|
|
|
static void sink_input_update_max_rewind_cb(pa_sink_input *i, size_t nbytes) {
|
|
|
|
|
|
struct session *s;
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
|
pa_assert_se(s = i->userdata);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_memblockq_set_maxrewind(s->memblockq, nbytes);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
/* Called from main context */
|
|
|
|
|
|
static void sink_input_kill(pa_sink_input* i) {
|
2006-04-16 00:16:53 +00:00
|
|
|
|
struct session *s;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
|
pa_assert_se(s = i->userdata);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
session_free(s);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2009-04-07 00:50:47 +02:00
|
|
|
|
/* Called from IO context */
|
|
|
|
|
|
static void sink_input_suspend_within_thread(pa_sink_input* i, pa_bool_t b) {
|
|
|
|
|
|
struct session *s;
|
|
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
|
pa_assert_se(s = i->userdata);
|
|
|
|
|
|
|
|
|
|
|
|
if (b) {
|
2009-04-04 22:56:38 +03:00
|
|
|
|
pa_smoother_pause(s->smoother, pa_rtclock_now());
|
2009-04-07 00:50:47 +02:00
|
|
|
|
pa_memblockq_flush_read(s->memblockq);
|
|
|
|
|
|
} else
|
|
|
|
|
|
s->first_packet = FALSE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
/* Called from I/O thread context */
|
|
|
|
|
|
static int rtpoll_work_cb(pa_rtpoll_item *i) {
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_memchunk chunk;
|
|
|
|
|
|
int64_t k, j, delta;
|
2009-04-07 00:50:47 +02:00
|
|
|
|
struct timeval now = { 0, 0 };
|
2007-10-28 19:13:50 +00:00
|
|
|
|
struct session *s;
|
|
|
|
|
|
struct pollfd *p;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_assert_se(s = pa_rtpoll_item_get_userdata(i));
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
p = pa_rtpoll_item_get_pollfd(i, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
if (p->revents & (POLLERR|POLLNVAL|POLLHUP|POLLOUT)) {
|
|
|
|
|
|
pa_log("poll() signalled bad revents.");
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ((p->revents & POLLIN) == 0)
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
|
|
p->revents = 0;
|
|
|
|
|
|
|
2009-04-07 00:50:47 +02:00
|
|
|
|
if (pa_rtp_recv(&s->rtp_context, &chunk, s->userdata->module->core->mempool, &now) < 0)
|
2007-10-28 19:13:50 +00:00
|
|
|
|
return 0;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2009-04-07 00:50:47 +02:00
|
|
|
|
if (s->sdp_info.payload != s->rtp_context.payload ||
|
|
|
|
|
|
!PA_SINK_IS_OPENED(s->sink_input->sink->thread_info.state)) {
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_memblock_unref(chunk.memblock);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
return 0;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
if (!s->first_packet) {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
s->first_packet = TRUE;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
s->ssrc = s->rtp_context.ssrc;
|
|
|
|
|
|
s->offset = s->rtp_context.timestamp;
|
2006-04-16 09:15:51 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
if (s->ssrc == s->userdata->module->core->cookie)
|
|
|
|
|
|
pa_log_warn("Detected RTP packet loop!");
|
2006-04-16 00:16:53 +00:00
|
|
|
|
} else {
|
|
|
|
|
|
if (s->ssrc != s->rtp_context.ssrc) {
|
|
|
|
|
|
pa_memblock_unref(chunk.memblock);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
return 0;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-04-01 12:35:44 +02:00
|
|
|
|
/* Check whether there was a timestamp overflow */
|
2006-04-16 00:16:53 +00:00
|
|
|
|
k = (int64_t) s->rtp_context.timestamp - (int64_t) s->offset;
|
2006-04-18 12:46:03 +00:00
|
|
|
|
j = (int64_t) 0x100000000LL - (int64_t) s->offset + (int64_t) s->rtp_context.timestamp;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
if ((k < 0 ? -k : k) < (j < 0 ? -j : j))
|
|
|
|
|
|
delta = k;
|
|
|
|
|
|
else
|
|
|
|
|
|
delta = j;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2009-04-01 23:05:09 +02:00
|
|
|
|
pa_memblockq_seek(s->memblockq, delta * (int64_t) s->rtp_context.frame_size, PA_SEEK_RELATIVE, TRUE);
|
2006-04-16 09:15:51 +00:00
|
|
|
|
|
2009-04-07 00:50:47 +02:00
|
|
|
|
if (now.tv_sec == 0) {
|
|
|
|
|
|
PA_ONCE_BEGIN {
|
|
|
|
|
|
pa_log_warn("Using artificial time instead of timestamp");
|
|
|
|
|
|
} PA_ONCE_END;
|
|
|
|
|
|
pa_rtclock_get(&now);
|
|
|
|
|
|
} else
|
|
|
|
|
|
pa_rtclock_from_wallclock(&now);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
2008-08-19 22:39:54 +02:00
|
|
|
|
pa_smoother_put(s->smoother, pa_timeval_load(&now), pa_bytes_to_usec((uint64_t) pa_memblockq_get_write_index(s->memblockq), &s->sink_input->sample_spec));
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
2009-04-07 00:50:47 +02:00
|
|
|
|
/* Tell the smoother that we are rolling now, in case it is still paused */
|
|
|
|
|
|
pa_smoother_resume(s->smoother, pa_timeval_load(&now), TRUE);
|
|
|
|
|
|
|
2006-04-16 09:15:51 +00:00
|
|
|
|
if (pa_memblockq_push(s->memblockq, &chunk) < 0) {
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_log_warn("Queue overrun");
|
2009-04-01 23:05:09 +02:00
|
|
|
|
pa_memblockq_seek(s->memblockq, (int64_t) chunk.length, PA_SEEK_RELATIVE, TRUE);
|
2006-04-16 09:15:51 +00:00
|
|
|
|
}
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2008-10-01 03:54:01 +02:00
|
|
|
|
/* pa_log("blocks in q: %u", pa_memblockq_get_nblocks(s->memblockq)); */
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_memblock_unref(chunk.memblock);
|
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
|
/* The next timestamp we expect */
|
2008-08-19 22:39:54 +02:00
|
|
|
|
s->offset = s->rtp_context.timestamp + (uint32_t) (chunk.length / s->rtp_context.frame_size);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
2008-08-19 22:39:54 +02:00
|
|
|
|
pa_atomic_store(&s->timestamp, (int) now.tv_sec);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
|
if (s->last_rate_update + RATE_UPDATE_INTERVAL < pa_timeval_load(&now)) {
|
2011-01-12 07:24:58 +01:00
|
|
|
|
pa_usec_t wi, ri, render_delay, sink_delay = 0, latency;
|
2011-01-07 01:25:55 +01:00
|
|
|
|
uint32_t base_rate = s->sink_input->sink->sample_spec.rate;
|
|
|
|
|
|
uint32_t current_rate = s->sink_input->sample_spec.rate;
|
|
|
|
|
|
uint32_t new_rate;
|
2011-01-16 01:27:29 +01:00
|
|
|
|
double estimated_rate, alpha = 0.02;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
2009-04-06 23:02:45 +02:00
|
|
|
|
pa_log_debug("Updating sample rate");
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
|
|
wi = pa_smoother_get(s->smoother, pa_timeval_load(&now));
|
2008-08-19 22:39:54 +02:00
|
|
|
|
ri = pa_bytes_to_usec((uint64_t) pa_memblockq_get_read_index(s->memblockq), &s->sink_input->sample_spec);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
2009-04-07 00:50:47 +02:00
|
|
|
|
pa_log_debug("wi=%lu ri=%lu", (unsigned long) wi, (unsigned long) ri);
|
|
|
|
|
|
|
2009-04-06 23:02:45 +02:00
|
|
|
|
sink_delay = pa_sink_get_latency_within_thread(s->sink_input->sink);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
render_delay = pa_bytes_to_usec(pa_memblockq_get_length(s->sink_input->thread_info.render_memblockq), &s->sink_input->sink->sample_spec);
|
|
|
|
|
|
|
|
|
|
|
|
if (ri > render_delay+sink_delay)
|
|
|
|
|
|
ri -= render_delay+sink_delay;
|
|
|
|
|
|
else
|
|
|
|
|
|
ri = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if (wi < ri)
|
|
|
|
|
|
latency = 0;
|
|
|
|
|
|
else
|
|
|
|
|
|
latency = wi - ri;
|
|
|
|
|
|
|
2011-01-07 01:25:55 +01:00
|
|
|
|
pa_log_debug("Write index deviates by %0.2f ms, expected %0.2f ms", (double) latency/PA_USEC_PER_MSEC, (double) s->intended_latency/PA_USEC_PER_MSEC);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
2011-01-12 07:24:58 +01:00
|
|
|
|
/* The buffer is filling with some unknown rate R̂ samples/second. If the rate of reading in
|
|
|
|
|
|
* the last T seconds was Rⁿ, then the increase in buffer latency ΔLⁿ = Lⁿ - Lⁿ⁻ⁱ in that
|
|
|
|
|
|
* same period is ΔLⁿ = (TR̂ - TRⁿ) / R̂, giving the estimated target rate
|
|
|
|
|
|
* T
|
|
|
|
|
|
* R̂ = ─────────────── Rⁿ . (1)
|
|
|
|
|
|
* T - (Lⁿ - Lⁿ⁻ⁱ)
|
|
|
|
|
|
*
|
|
|
|
|
|
* Setting the sample rate to R̂ results in the latency being constant (if the estimate of R̂
|
|
|
|
|
|
* is correct). But there is also the requirement to keep the buffer at a predefined target
|
|
|
|
|
|
* latency L̂. So instead of setting Rⁿ⁺ⁱ to R̂ immediately, the strategy will be to reduce R
|
|
|
|
|
|
* from Rⁿ⁺ⁱ to R̂ in a steps of T seconds, where Rⁿ⁺ⁱ is chosen such that in the total time
|
|
|
|
|
|
* aT the latency is reduced from Lⁿ to L̂. This strategy translates to the requirements
|
|
|
|
|
|
* ₐ R̂ - Rⁿ⁺ʲ a-j+1 j-1
|
|
|
|
|
|
* Σ T ────────── = L̂ - Lⁿ with Rⁿ⁺ʲ = ───── Rⁿ⁺ⁱ + ───── R̂ .
|
|
|
|
|
|
* ʲ⁼ⁱ R̂ a a
|
|
|
|
|
|
* Solving for Rⁿ⁺ⁱ gives
|
|
|
|
|
|
* T - ²∕ₐ₊₁(L̂ - Lⁿ)
|
|
|
|
|
|
* Rⁿ⁺ⁱ = ───────────────── R̂ . (2)
|
|
|
|
|
|
* T
|
2011-01-16 01:27:29 +01:00
|
|
|
|
* In the code below a = 7 is used.
|
|
|
|
|
|
*
|
|
|
|
|
|
* Equation (1) is not directly used in (2), but instead an exponentially weighted average
|
|
|
|
|
|
* of the estimated rate R̂ is used. This average R̅ is defined as
|
|
|
|
|
|
* R̅ⁿ = α R̂ⁿ + (1-α) R̅ⁿ⁻ⁱ .
|
|
|
|
|
|
* Because it is difficult to find a fixed value for the coefficient α such that the
|
|
|
|
|
|
* averaging is without significant lag but oscillations are filtered out, a heuristic is
|
|
|
|
|
|
* used. When the successive estimates R̂ⁿ do not change much then α→1, but when there is a
|
|
|
|
|
|
* sudden spike in the estimated rate α→0, such that the deviation is given little weight.
|
2011-01-12 07:24:58 +01:00
|
|
|
|
*/
|
|
|
|
|
|
estimated_rate = (double) current_rate * (double) RATE_UPDATE_INTERVAL / (double) (RATE_UPDATE_INTERVAL + s->last_latency - latency);
|
2011-01-16 01:27:29 +01:00
|
|
|
|
if (fabs(s->estimated_rate - s->avg_estimated_rate) > 1) {
|
|
|
|
|
|
double ratio = (estimated_rate + s->estimated_rate - 2*s->avg_estimated_rate) / (s->estimated_rate - s->avg_estimated_rate);
|
|
|
|
|
|
alpha = PA_CLAMP(2 * (ratio + fabs(ratio)) / (4 + ratio*ratio), 0.02, 0.8);
|
|
|
|
|
|
}
|
|
|
|
|
|
s->avg_estimated_rate = alpha * estimated_rate + (1-alpha) * s->avg_estimated_rate;
|
|
|
|
|
|
s->estimated_rate = estimated_rate;
|
|
|
|
|
|
pa_log_debug("Estimated target rate: %.0f Hz, using average of %.0f Hz (α=%.3f)", estimated_rate, s->avg_estimated_rate, alpha);
|
|
|
|
|
|
new_rate = (uint32_t) ((double) (RATE_UPDATE_INTERVAL + latency/4 - s->intended_latency/4) / (double) RATE_UPDATE_INTERVAL * s->avg_estimated_rate);
|
2011-01-12 07:24:58 +01:00
|
|
|
|
s->last_latency = latency;
|
2011-01-07 01:25:55 +01:00
|
|
|
|
|
|
|
|
|
|
if (new_rate < (uint32_t) (base_rate*0.8) || new_rate > (uint32_t) (base_rate*1.25)) {
|
|
|
|
|
|
pa_log_warn("Sample rates too different, not adjusting (%u vs. %u).", base_rate, new_rate);
|
|
|
|
|
|
new_rate = base_rate;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (base_rate < new_rate + 20 && new_rate < base_rate + 20)
|
|
|
|
|
|
new_rate = base_rate;
|
|
|
|
|
|
/* Do the adjustment in small steps; 2‰ can be considered inaudible */
|
|
|
|
|
|
if (new_rate < (uint32_t) (current_rate*0.998) || new_rate > (uint32_t) (current_rate*1.002)) {
|
|
|
|
|
|
pa_log_info("New rate of %u Hz not within 2‰ of %u Hz, forcing smaller adjustment", new_rate, current_rate);
|
|
|
|
|
|
new_rate = PA_CLAMP(new_rate, (uint32_t) (current_rate*0.998), (uint32_t) (current_rate*1.002));
|
|
|
|
|
|
}
|
2009-04-06 23:02:45 +02:00
|
|
|
|
}
|
2011-01-07 01:25:55 +01:00
|
|
|
|
s->sink_input->sample_spec.rate = new_rate;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
2009-04-06 23:02:45 +02:00
|
|
|
|
pa_assert(pa_sample_spec_valid(&s->sink_input->sample_spec));
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
|
|
pa_resampler_set_input_rate(s->sink_input->thread_info.resampler, s->sink_input->sample_spec.rate);
|
|
|
|
|
|
|
|
|
|
|
|
pa_log_debug("Updated sampling rate to %lu Hz.", (unsigned long) s->sink_input->sample_spec.rate);
|
|
|
|
|
|
|
|
|
|
|
|
s->last_rate_update = pa_timeval_load(&now);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (pa_memblockq_is_readable(s->memblockq) &&
|
|
|
|
|
|
s->sink_input->thread_info.underrun_for > 0) {
|
|
|
|
|
|
pa_log_debug("Requesting rewind due to end of underrun");
|
2009-01-15 00:40:06 +01:00
|
|
|
|
pa_sink_input_request_rewind(s->sink_input, 0, FALSE, TRUE, FALSE);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
return 1;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
/* Called from I/O thread context */
|
|
|
|
|
|
static void sink_input_attach(pa_sink_input *i) {
|
|
|
|
|
|
struct session *s;
|
|
|
|
|
|
struct pollfd *p;
|
|
|
|
|
|
|
|
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
|
pa_assert_se(s = i->userdata);
|
|
|
|
|
|
|
|
|
|
|
|
pa_assert(!s->rtpoll_item);
|
2009-08-15 00:26:00 +02:00
|
|
|
|
s->rtpoll_item = pa_rtpoll_item_new(i->sink->thread_info.rtpoll, PA_RTPOLL_LATE, 1);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
|
|
p = pa_rtpoll_item_get_pollfd(s->rtpoll_item, NULL);
|
|
|
|
|
|
p->fd = s->rtp_context.fd;
|
|
|
|
|
|
p->events = POLLIN;
|
|
|
|
|
|
p->revents = 0;
|
|
|
|
|
|
|
|
|
|
|
|
pa_rtpoll_item_set_work_callback(s->rtpoll_item, rtpoll_work_cb);
|
|
|
|
|
|
pa_rtpoll_item_set_userdata(s->rtpoll_item, s);
|
|
|
|
|
|
}
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
/* Called from I/O thread context */
|
|
|
|
|
|
static void sink_input_detach(pa_sink_input *i) {
|
|
|
|
|
|
struct session *s;
|
|
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
|
pa_assert_se(s = i->userdata);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_assert(s->rtpoll_item);
|
|
|
|
|
|
pa_rtpoll_item_free(s->rtpoll_item);
|
|
|
|
|
|
s->rtpoll_item = NULL;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int mcast_socket(const struct sockaddr* sa, socklen_t salen) {
|
|
|
|
|
|
int af, fd = -1, r, one;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_assert(sa);
|
|
|
|
|
|
pa_assert(salen > 0);
|
|
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
af = sa->sa_family;
|
2009-10-30 03:32:38 +01:00
|
|
|
|
if ((fd = pa_socket_cloexec(af, SOCK_DGRAM, 0)) < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
|
pa_log("Failed to create socket: %s", pa_cstrerror(errno));
|
2006-04-16 00:16:53 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-04-07 00:50:47 +02:00
|
|
|
|
pa_make_udp_socket_low_delay(fd);
|
|
|
|
|
|
|
|
|
|
|
|
one = 1;
|
|
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_TIMESTAMP, &one, sizeof(one)) < 0) {
|
|
|
|
|
|
pa_log("SO_TIMESTAMP failed: %s", pa_cstrerror(errno));
|
|
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
one = 1;
|
|
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
|
pa_log("SO_REUSEADDR failed: %s", pa_cstrerror(errno));
|
2006-04-16 00:16:53 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
if (af == AF_INET) {
|
|
|
|
|
|
struct ip_mreq mr4;
|
|
|
|
|
|
memset(&mr4, 0, sizeof(mr4));
|
|
|
|
|
|
mr4.imr_multiaddr = ((const struct sockaddr_in*) sa)->sin_addr;
|
|
|
|
|
|
r = setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mr4, sizeof(mr4));
|
2009-02-13 21:58:09 +01:00
|
|
|
|
#ifdef HAVE_IPV6
|
2006-04-16 00:16:53 +00:00
|
|
|
|
} else {
|
|
|
|
|
|
struct ipv6_mreq mr6;
|
|
|
|
|
|
memset(&mr6, 0, sizeof(mr6));
|
|
|
|
|
|
mr6.ipv6mr_multiaddr = ((const struct sockaddr_in6*) sa)->sin6_addr;
|
2006-07-16 23:20:27 +00:00
|
|
|
|
r = setsockopt(fd, IPPROTO_IPV6, IPV6_JOIN_GROUP, &mr6, sizeof(mr6));
|
2009-02-13 21:58:09 +01:00
|
|
|
|
#endif
|
2006-04-16 00:16:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (r < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
|
pa_log_info("Joining mcast group failed: %s", pa_cstrerror(errno));
|
2006-04-16 00:16:53 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
if (bind(fd, sa, salen) < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
|
pa_log("bind() failed: %s", pa_cstrerror(errno));
|
2006-04-16 00:16:53 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return fd;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
fail:
|
|
|
|
|
|
if (fd >= 0)
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct session *session_new(struct userdata *u, const pa_sdp_info *sdp_info) {
|
|
|
|
|
|
struct session *s = NULL;
|
|
|
|
|
|
pa_sink *sink;
|
|
|
|
|
|
int fd = -1;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_memchunk silence;
|
2006-08-13 16:19:56 +00:00
|
|
|
|
pa_sink_input_new_data data;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
struct timeval now;
|
|
|
|
|
|
|
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
|
pa_assert(sdp_info);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2006-04-16 12:44:43 +00:00
|
|
|
|
if (u->n_sessions >= MAX_SESSIONS) {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_log("Session limit reached.");
|
2006-04-16 12:44:43 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2009-01-15 20:07:13 +01:00
|
|
|
|
if (!(sink = pa_namereg_get(u->module->core, u->sink_name, PA_NAMEREG_SINK))) {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_log("Sink does not exist.");
|
2006-04-16 00:16:53 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_rtclock_get(&now);
|
|
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
s = pa_xnew0(struct session, 1);
|
|
|
|
|
|
s->userdata = u;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
s->first_packet = FALSE;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
s->sdp_info = *sdp_info;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
s->rtpoll_item = NULL;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
s->intended_latency = LATENCY_USEC;
|
2009-04-05 02:26:02 +02:00
|
|
|
|
s->smoother = pa_smoother_new(
|
|
|
|
|
|
PA_USEC_PER_SEC*5,
|
|
|
|
|
|
PA_USEC_PER_SEC*2,
|
|
|
|
|
|
TRUE,
|
|
|
|
|
|
TRUE,
|
|
|
|
|
|
10,
|
|
|
|
|
|
pa_timeval_load(&now),
|
2009-04-07 00:50:47 +02:00
|
|
|
|
TRUE);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
s->last_rate_update = pa_timeval_load(&now);
|
2011-01-12 07:24:58 +01:00
|
|
|
|
s->last_latency = LATENCY_USEC;
|
2011-01-16 01:27:29 +01:00
|
|
|
|
s->estimated_rate = (double) sink->sample_spec.rate;
|
|
|
|
|
|
s->avg_estimated_rate = (double) sink->sample_spec.rate;
|
2008-08-19 22:39:54 +02:00
|
|
|
|
pa_atomic_store(&s->timestamp, (int) now.tv_sec);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
if ((fd = mcast_socket((const struct sockaddr*) &sdp_info->sa, sdp_info->salen)) < 0)
|
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
2006-08-13 16:19:56 +00:00
|
|
|
|
pa_sink_input_new_data_init(&data);
|
|
|
|
|
|
data.sink = sink;
|
|
|
|
|
|
data.driver = __FILE__;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_proplist_sets(data.proplist, PA_PROP_MEDIA_ROLE, "stream");
|
|
|
|
|
|
pa_proplist_setf(data.proplist, PA_PROP_MEDIA_NAME,
|
|
|
|
|
|
"RTP Stream%s%s%s",
|
|
|
|
|
|
sdp_info->session_name ? " (" : "",
|
|
|
|
|
|
sdp_info->session_name ? sdp_info->session_name : "",
|
|
|
|
|
|
sdp_info->session_name ? ")" : "");
|
|
|
|
|
|
|
|
|
|
|
|
if (sdp_info->session_name)
|
|
|
|
|
|
pa_proplist_sets(data.proplist, "rtp.session", sdp_info->session_name);
|
|
|
|
|
|
pa_proplist_sets(data.proplist, "rtp.origin", sdp_info->origin);
|
|
|
|
|
|
pa_proplist_setf(data.proplist, "rtp.payload", "%u", (unsigned) sdp_info->payload);
|
2006-08-13 16:19:56 +00:00
|
|
|
|
data.module = u->module;
|
|
|
|
|
|
pa_sink_input_new_data_set_sample_spec(&data, &sdp_info->sample_spec);
|
2009-08-28 23:24:09 +02:00
|
|
|
|
data.flags = PA_SINK_INPUT_VARIABLE_RATE;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2009-08-28 23:24:09 +02:00
|
|
|
|
pa_sink_input_new(&s->sink_input, u->module->core, &data);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_sink_input_new_data_done(&data);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
if (!s->sink_input) {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_log("Failed to create sink input.");
|
2006-04-16 00:16:53 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
s->sink_input->userdata = s;
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
s->sink_input->parent.process_msg = sink_input_process_msg;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
s->sink_input->pop = sink_input_pop_cb;
|
|
|
|
|
|
s->sink_input->process_rewind = sink_input_process_rewind_cb;
|
|
|
|
|
|
s->sink_input->update_max_rewind = sink_input_update_max_rewind_cb;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
s->sink_input->kill = sink_input_kill;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
s->sink_input->attach = sink_input_attach;
|
|
|
|
|
|
s->sink_input->detach = sink_input_detach;
|
2009-04-07 00:50:47 +02:00
|
|
|
|
s->sink_input->suspend_within_thread = sink_input_suspend_within_thread;
|
2006-04-16 09:15:51 +00:00
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_sink_input_get_silence(s->sink_input, &silence);
|
|
|
|
|
|
|
|
|
|
|
|
s->sink_latency = pa_sink_input_set_requested_latency(s->sink_input, s->intended_latency/2);
|
|
|
|
|
|
|
|
|
|
|
|
if (s->intended_latency < s->sink_latency*2)
|
|
|
|
|
|
s->intended_latency = s->sink_latency*2;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
s->memblockq = pa_memblockq_new(
|
|
|
|
|
|
0,
|
|
|
|
|
|
MEMBLOCKQ_MAXLENGTH,
|
|
|
|
|
|
MEMBLOCKQ_MAXLENGTH,
|
|
|
|
|
|
pa_frame_size(&s->sink_input->sample_spec),
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_usec_to_bytes(s->intended_latency - s->sink_latency, &s->sink_input->sample_spec),
|
|
|
|
|
|
0,
|
2006-04-16 00:16:53 +00:00
|
|
|
|
0,
|
2008-05-15 23:34:41 +00:00
|
|
|
|
&silence);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_memblock_unref(silence.memblock);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_rtp_context_init_recv(&s->rtp_context, fd, pa_frame_size(&s->sdp_info.sample_spec));
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
pa_hashmap_put(s->userdata->by_origin, s->sdp_info.origin, s);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
u->n_sessions++;
|
|
|
|
|
|
PA_LLIST_PREPEND(struct session, s->userdata->sessions, s);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_sink_input_put(s->sink_input);
|
2006-04-16 12:44:43 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_log_info("New session '%s'", s->sdp_info.session_name);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
return s;
|
|
|
|
|
|
|
|
|
|
|
|
fail:
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_xfree(s);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
if (fd >= 0)
|
|
|
|
|
|
pa_close(fd);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
static void session_free(struct session *s) {
|
|
|
|
|
|
pa_assert(s);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2006-08-18 21:38:40 +00:00
|
|
|
|
pa_log_info("Freeing session '%s'", s->sdp_info.session_name);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_sink_input_unlink(s->sink_input);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_sink_input_unref(s->sink_input);
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
PA_LLIST_REMOVE(struct session, s->userdata->sessions, s);
|
|
|
|
|
|
pa_assert(s->userdata->n_sessions >= 1);
|
|
|
|
|
|
s->userdata->n_sessions--;
|
|
|
|
|
|
pa_hashmap_remove(s->userdata->by_origin, s->sdp_info.origin);
|
|
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_memblockq_free(s->memblockq);
|
|
|
|
|
|
pa_sdp_info_destroy(&s->sdp_info);
|
|
|
|
|
|
pa_rtp_context_destroy(&s->rtp_context);
|
2006-04-16 12:44:43 +00:00
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_smoother_free(s->smoother);
|
|
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_xfree(s);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void sap_event_cb(pa_mainloop_api *m, pa_io_event *e, int fd, pa_io_event_flags_t flags, void *userdata) {
|
|
|
|
|
|
struct userdata *u = userdata;
|
2008-05-15 23:34:41 +00:00
|
|
|
|
pa_bool_t goodbye = FALSE;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_sdp_info info;
|
|
|
|
|
|
struct session *s;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_assert(m);
|
|
|
|
|
|
pa_assert(e);
|
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
|
pa_assert(fd == u->sap_context.fd);
|
|
|
|
|
|
pa_assert(flags == PA_IO_EVENT_INPUT);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
if (pa_sap_recv(&u->sap_context, &goodbye) < 0)
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
if (!pa_sdp_parse(u->sap_context.sdp_data, &info, goodbye))
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
if (goodbye) {
|
|
|
|
|
|
|
|
|
|
|
|
if ((s = pa_hashmap_get(u->by_origin, info.origin)))
|
2007-10-28 19:13:50 +00:00
|
|
|
|
session_free(s);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
pa_sdp_info_destroy(&info);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
|
|
if (!(s = pa_hashmap_get(u->by_origin, info.origin))) {
|
2009-02-17 22:06:25 +02:00
|
|
|
|
if (!session_new(u, &info))
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_sdp_info_destroy(&info);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
} else {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
struct timeval now;
|
|
|
|
|
|
pa_rtclock_get(&now);
|
2008-08-19 22:39:54 +02:00
|
|
|
|
pa_atomic_store(&s->timestamp, (int) now.tv_sec);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_sdp_info_destroy(&info);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2009-04-05 02:13:43 +03:00
|
|
|
|
static void check_death_event_cb(pa_mainloop_api *m, pa_time_event *t, const struct timeval *tv, void *userdata) {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
struct session *s, *n;
|
|
|
|
|
|
struct userdata *u = userdata;
|
|
|
|
|
|
struct timeval now;
|
|
|
|
|
|
|
|
|
|
|
|
pa_assert(m);
|
|
|
|
|
|
pa_assert(t);
|
|
|
|
|
|
pa_assert(u);
|
|
|
|
|
|
|
|
|
|
|
|
pa_rtclock_get(&now);
|
|
|
|
|
|
|
|
|
|
|
|
pa_log_debug("Checking for dead streams ...");
|
|
|
|
|
|
|
|
|
|
|
|
for (s = u->sessions; s; s = n) {
|
|
|
|
|
|
int k;
|
|
|
|
|
|
n = s->next;
|
|
|
|
|
|
|
|
|
|
|
|
k = pa_atomic_load(&s->timestamp);
|
|
|
|
|
|
|
|
|
|
|
|
if (k + DEATH_TIMEOUT < now.tv_sec)
|
|
|
|
|
|
session_free(s);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Restart timer */
|
2009-04-05 02:13:43 +03:00
|
|
|
|
pa_core_rttime_restart(u->module->core, t, pa_rtclock_now() + DEATH_TIMEOUT * PA_USEC_PER_SEC);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int pa__init(pa_module*m) {
|
2006-04-16 00:16:53 +00:00
|
|
|
|
struct userdata *u;
|
|
|
|
|
|
pa_modargs *ma = NULL;
|
|
|
|
|
|
struct sockaddr_in sa4;
|
2009-02-13 21:58:09 +01:00
|
|
|
|
#ifdef HAVE_IPV6
|
2006-04-16 00:16:53 +00:00
|
|
|
|
struct sockaddr_in6 sa6;
|
2009-02-13 21:58:09 +01:00
|
|
|
|
#endif
|
2006-04-16 00:16:53 +00:00
|
|
|
|
struct sockaddr *sa;
|
|
|
|
|
|
socklen_t salen;
|
|
|
|
|
|
const char *sap_address;
|
|
|
|
|
|
int fd = -1;
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_assert(m);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
|
2006-08-18 21:38:40 +00:00
|
|
|
|
pa_log("failed to parse module arguments");
|
2006-04-16 00:16:53 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sap_address = pa_modargs_get_value(ma, "sap_address", DEFAULT_SAP_ADDRESS);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2009-02-13 21:58:09 +01:00
|
|
|
|
if (inet_pton(AF_INET, sap_address, &sa4.sin_addr) > 0) {
|
2006-04-16 00:16:53 +00:00
|
|
|
|
sa4.sin_family = AF_INET;
|
|
|
|
|
|
sa4.sin_port = htons(SAP_PORT);
|
|
|
|
|
|
sa = (struct sockaddr*) &sa4;
|
|
|
|
|
|
salen = sizeof(sa4);
|
2009-02-13 21:58:09 +01:00
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
|
|
} else if (inet_pton(AF_INET6, sap_address, &sa6.sin6_addr) > 0) {
|
|
|
|
|
|
sa6.sin6_family = AF_INET6;
|
|
|
|
|
|
sa6.sin6_port = htons(SAP_PORT);
|
|
|
|
|
|
sa = (struct sockaddr*) &sa6;
|
|
|
|
|
|
salen = sizeof(sa6);
|
|
|
|
|
|
#endif
|
2006-04-16 00:16:53 +00:00
|
|
|
|
} else {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_log("Invalid SAP address '%s'", sap_address);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
goto fail;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ((fd = mcast_socket(sa, salen)) < 0)
|
|
|
|
|
|
goto fail;
|
|
|
|
|
|
|
2009-04-06 23:02:45 +02:00
|
|
|
|
m->userdata = u = pa_xnew(struct userdata, 1);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
u->module = m;
|
2009-04-05 02:13:43 +03:00
|
|
|
|
u->core = m->core;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
u->sink_name = pa_xstrdup(pa_modargs_get_value(ma, "sink", NULL));
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
u->sap_event = m->core->mainloop->io_new(m->core->mainloop, fd, PA_IO_EVENT_INPUT, sap_event_cb, u);
|
|
|
|
|
|
pa_sap_context_init_recv(&u->sap_context, fd);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
PA_LLIST_HEAD_INIT(struct session, u->sessions);
|
|
|
|
|
|
u->n_sessions = 0;
|
2006-04-16 00:16:53 +00:00
|
|
|
|
u->by_origin = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2009-04-05 02:13:43 +03:00
|
|
|
|
u->check_death_event = pa_core_rttime_new(m->core, pa_rtclock_now() + DEATH_TIMEOUT * PA_USEC_PER_SEC, check_death_event_cb, u);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_modargs_free(ma);
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
|
if (ma)
|
|
|
|
|
|
pa_modargs_free(ma);
|
|
|
|
|
|
|
|
|
|
|
|
if (fd >= 0)
|
2007-10-28 19:13:50 +00:00
|
|
|
|
pa_close(fd);
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
return -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
void pa__done(pa_module*m) {
|
2006-04-16 00:16:53 +00:00
|
|
|
|
struct userdata *u;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
struct session *s;
|
|
|
|
|
|
|
|
|
|
|
|
pa_assert(m);
|
2006-04-16 00:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
if (!(u = m->userdata))
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
if (u->sap_event)
|
|
|
|
|
|
m->core->mainloop->io_free(u->sap_event);
|
|
|
|
|
|
|
|
|
|
|
|
if (u->check_death_event)
|
|
|
|
|
|
m->core->mainloop->time_free(u->check_death_event);
|
|
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_sap_context_destroy(&u->sap_context);
|
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
|
if (u->by_origin) {
|
2008-06-27 20:12:24 +02:00
|
|
|
|
while ((s = pa_hashmap_first(u->by_origin)))
|
2007-10-28 19:13:50 +00:00
|
|
|
|
session_free(s);
|
|
|
|
|
|
|
|
|
|
|
|
pa_hashmap_free(u->by_origin, NULL, NULL);
|
|
|
|
|
|
}
|
2007-05-29 17:24:48 +00:00
|
|
|
|
|
2006-04-16 00:16:53 +00:00
|
|
|
|
pa_xfree(u->sink_name);
|
|
|
|
|
|
pa_xfree(u);
|
|
|
|
|
|
}
|