mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-22 06:40:26 +00:00
271 lines
11 KiB
C
271 lines
11 KiB
C
/*
|
|
* FILE: rtp_callback.c
|
|
* AUTHOR: Colin Perkins <csp@csperkins.org>
|
|
* Ladan Gharai <ladan@isi.edu>
|
|
* Martin Benes <martinbenesh@gmail.com>
|
|
* Lukas Hejtmanek <xhejtman@ics.muni.cz>
|
|
* Petr Holub <hopet@ics.muni.cz>
|
|
* Milos Liska <xliska@fi.muni.cz>
|
|
* Jiri Matela <matela@ics.muni.cz>
|
|
* Dalibor Matura <255899@mail.muni.cz>
|
|
* Martin Pulec <martin.pulec@cesnet.cz>
|
|
* Ian Wesley-Smith <iwsmith@cct.lsu.edu>
|
|
*
|
|
* Copyright (c) 2005-2019 CESNET z.s.p.o.
|
|
* Copyright (c) 2001-2003 University of Southern California
|
|
* Copyright (c) 2003-2004 University of Glasgow
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, is permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
*
|
|
* This product includes software developed by the University of Southern
|
|
* California Information Sciences Institute. This product also includes
|
|
* software developed by CESNET z.s.p.o.
|
|
*
|
|
* 4. Neither the name of the University, Institute, CESNET nor the names of
|
|
* its contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS
|
|
* ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
* EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* $Revision: 1.3.2.2 $
|
|
* $Date: 2010/01/30 20:07:35 $
|
|
*
|
|
*/
|
|
|
|
#include "rtp/rtp_callback.h"
|
|
|
|
#include <assert.h> // for assert
|
|
#include <inttypes.h> // for uint32_t, PRIx32
|
|
#include <stdio.h> // for printf
|
|
#include <stdlib.h> // for free, NULL, calloc
|
|
#include <string.h> // for strncmp, strncpy
|
|
|
|
#include "debug.h" // for debug_msg, log_msg, LOG_LEVEL_INFO
|
|
#include "ntp.h" // for ntp64_time, ntp64_to_ntp32
|
|
#include "pdb.h" // for pdb_e, pdb_get, pdb_add, pdb_destroy_item
|
|
#include "rtp/pbuf.h" // for pbuf_insert
|
|
#include "rtp/rtp.h" // for rtp_my_ssrc, rtcp_rr, rtcp_app, rtcp_sdes_item
|
|
#include "tfrc.h" // for tfrc_recv_data
|
|
#include "tv.h" // for get_time_in_ns
|
|
|
|
struct pdb;
|
|
struct rtp;
|
|
|
|
extern char *frame;
|
|
|
|
char hdr_buf[100];
|
|
// struct msghdr msg;
|
|
// struct iovec iov[10];
|
|
|
|
extern uint32_t RTT;
|
|
|
|
static void process_rr(struct rtp *session, rtp_event * e)
|
|
{
|
|
float fract_lost, tmp;
|
|
uint32_t ntp_sec, ntp_frac, now;
|
|
rtcp_rr *r = (rtcp_rr *) e->data;
|
|
|
|
if (e->ssrc == rtp_my_ssrc(session)) {
|
|
/* Filter out loopback reports */
|
|
return;
|
|
}
|
|
|
|
if (r->ssrc == rtp_my_ssrc(session)) {
|
|
/* Received a reception quality report for data we are sending. */
|
|
/* */
|
|
/* Check for excessive congestion: exit if it occurs, to protect */
|
|
/* other users of the network. */
|
|
fract_lost = (r->fract_lost * 100.0) / 256.0; /* percentage lost packets */
|
|
if (fract_lost > 20) {
|
|
printf("Receiver 0x%08x reports excessive congestion\n",
|
|
e->ssrc);
|
|
}
|
|
|
|
/* Compute network round-trip time: */
|
|
if (r->lsr != 0) {
|
|
ntp64_time(&ntp_sec, &ntp_frac);
|
|
now = ntp64_to_ntp32(ntp_sec, ntp_frac);
|
|
|
|
if ((now < r->lsr) || (now - r->lsr < r->dlsr)) {
|
|
/* Packet arrived before it was sent, ignore. This represents */
|
|
/* a bug in the remote: either our timestamp was incorrectly */
|
|
/* echoed back to us, or the remote miscalculated in time for */
|
|
/* which it held the packet. */
|
|
debug_msg("Bogus RTT from 0x%08x ignored\n",
|
|
e->ssrc);
|
|
} else {
|
|
tmp = ((float)(now - r->lsr - r->dlsr)) / 65536.0; /* RTT in seconds */
|
|
RTT = tmp * 1000000; /* RTT in usec */
|
|
}
|
|
//debug_msg(" RTT=%d usec\n", RTT);
|
|
}
|
|
|
|
int packet_count = 1;
|
|
const rtcp_rr *last_rr = rtp_get_rr(session, e->ssrc, r->ssrc);
|
|
if(last_rr){
|
|
packet_count = (r->last_seq - last_rr->last_seq);
|
|
}
|
|
if(packet_count < 1) packet_count = 1;
|
|
|
|
log_msg(LOG_LEVEL_INFO,
|
|
"RR of 0x%08x: RTT=%d usec, loss %.2f%% (of %d pkts)\n",
|
|
r->ssrc, RTT, fract_lost, packet_count);
|
|
}
|
|
}
|
|
|
|
static void
|
|
process_sdes(struct pdb *participants, uint32_t ssrc, rtcp_sdes_item * d)
|
|
{
|
|
struct pdb_e *e;
|
|
char *sdes_item;
|
|
|
|
e = pdb_get(participants, ssrc);
|
|
if (e == NULL) {
|
|
/* We got an SDES packet for a participant we haven't previously seen. */
|
|
/* This can happen, for example, in a partitioned multicast group. Log */
|
|
/* the event, and add the new participant to the database. */
|
|
debug_msg
|
|
("Added previously unseen participant 0x%08" PRIx32 " due to receipt of SDES\n",
|
|
ssrc);
|
|
pdb_add(participants, ssrc);
|
|
e = pdb_get(participants, ssrc);
|
|
}
|
|
|
|
sdes_item = calloc(d->length + 1, 1);
|
|
strncpy(sdes_item, d->data, d->length);
|
|
|
|
switch (d->type) {
|
|
case RTCP_SDES_END:
|
|
free(sdes_item);
|
|
/* This is the end of the SDES list of a packet. */
|
|
/* Nothing for us to deal with. */
|
|
break;
|
|
case RTCP_SDES_CNAME:
|
|
if (e->sdes_cname != NULL)
|
|
free(e->sdes_cname);
|
|
e->sdes_cname = sdes_item;
|
|
break;
|
|
case RTCP_SDES_NAME:
|
|
if (e->sdes_name != NULL)
|
|
free(e->sdes_name);
|
|
e->sdes_name = sdes_item;
|
|
break;
|
|
case RTCP_SDES_EMAIL:
|
|
if (e->sdes_email != NULL)
|
|
free(e->sdes_email);
|
|
e->sdes_email = sdes_item;
|
|
break;
|
|
case RTCP_SDES_PHONE:
|
|
if (e->sdes_phone != NULL)
|
|
free(e->sdes_phone);
|
|
e->sdes_phone = sdes_item;
|
|
break;
|
|
case RTCP_SDES_LOC:
|
|
if (e->sdes_loc != NULL)
|
|
free(e->sdes_loc);
|
|
e->sdes_loc = sdes_item;
|
|
break;
|
|
case RTCP_SDES_TOOL:
|
|
if (e->sdes_tool != NULL)
|
|
free(e->sdes_tool);
|
|
e->sdes_tool = sdes_item;
|
|
break;
|
|
case RTCP_SDES_NOTE:
|
|
if (e->sdes_note != NULL)
|
|
free(e->sdes_note);
|
|
e->sdes_note = sdes_item;
|
|
break;
|
|
case RTCP_SDES_PRIV:
|
|
free(sdes_item);
|
|
break; /* Ignore private extensions */
|
|
default:
|
|
free(sdes_item);
|
|
debug_msg
|
|
("Ignored unknown SDES item (type=0x%02" PRIx32 ") from 0x%08" PRIx32"\n",
|
|
d->type, ssrc);
|
|
}
|
|
}
|
|
|
|
void rtp_recv_callback(struct rtp *session, rtp_event * e)
|
|
{
|
|
rtcp_app *pckt_app = (rtcp_app *) e->data;
|
|
rtp_packet *pckt_rtp = (rtp_packet *) e->data;
|
|
struct pdb *participants = (struct pdb *)rtp_get_userdata(session);
|
|
struct pdb_e *state = pdb_get(participants, e->ssrc);
|
|
|
|
switch (e->type) {
|
|
case RX_RTP:
|
|
tfrc_recv_data(state->tfrc_state, get_time_in_ns(), pckt_rtp->seq,
|
|
pckt_rtp->data_len + 40);
|
|
if (pckt_rtp->data_len > 0) { /* Only process packets that contain data... */
|
|
pbuf_insert(state->playout_buffer, pckt_rtp);
|
|
}
|
|
break;
|
|
case RX_TFRC_RX:
|
|
/* compute TCP friendly data rate */
|
|
break;
|
|
case RX_RTCP_START:
|
|
break;
|
|
case RX_RTCP_FINISH:
|
|
break;
|
|
case RX_SR:
|
|
break;
|
|
case RX_RR:
|
|
process_rr(session, e);
|
|
break;
|
|
case RX_RR_EMPTY:
|
|
break;
|
|
case RX_SDES:
|
|
process_sdes(participants, e->ssrc, (rtcp_sdes_item *) e->data);
|
|
break;
|
|
case RX_APP:
|
|
if (strncmp(pckt_app->name, "RTT_", 4) == 0) {
|
|
assert(pckt_app->length == 3);
|
|
assert(pckt_app->subtype == 0);
|
|
// tfrc_recv_rtt(state->tfrc_state, get_time_in_ns(), ntohl(*((int *) pckt_app->data)));
|
|
}
|
|
break;
|
|
case RX_BYE:
|
|
break;
|
|
case SOURCE_DELETED:
|
|
{
|
|
struct pdb_e *pdb_item = NULL;
|
|
if(pdb_remove(participants, e->ssrc, &pdb_item) == 0) {
|
|
pdb_destroy_item(pdb_item);
|
|
}
|
|
}
|
|
break;
|
|
case SOURCE_CREATED:
|
|
pdb_add(participants, e->ssrc);
|
|
break;
|
|
case RR_TIMEOUT:
|
|
break;
|
|
default:
|
|
debug_msg("Unknown RTP event (type=%d)\n", e->type);
|
|
}
|
|
}
|
|
|