mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-22 10:40:25 +00:00
These Coverity errors should be fixed (mostly classified as High Impact Outstanding by Coverity): 53922, 53923, 53935, 53938, 53945, 53963, 53974, 53976, 53978, 53979, 53980, 53981, 53982, 53988, 53990, 53991, 53993, 53994, 53995, 53998, 54000, 54002, 54004, 54008, 54010, 54013, 54016, 54018, 54020, 54022, 54024, 54025, 54027, 54028, 54030, 54031, 54032, 54033, 54034, 54035, 54036, 54038, 54039, 54041, 54043, 54047, 54048, 54050, 54053, 54054, 54055, 54056, 54062, 54064, 54065, 54067, 54071, 54072, 54074, 54075, 54076, 54081, 54087, 54088, 54089, 54091, 54093, 54096, 54097, 54103, 54104, 54106, 54109, 54111, 54112, 54114, 54117, 54119, 54120, 54121, 54125, 54126, 54129, 54130, 54132, 54133, 54136, 54137, 54140, 54145, 54146, 54149, 54150, 54151, 54153, 54154, 54156, 54157
261 lines
10 KiB
C
261 lines
10 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>
|
|
* Ian Wesley-Smith <iwsmith@cct.lsu.edu>
|
|
*
|
|
* Copyright (c) 2005-2010 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 "config.h"
|
|
#include "config_unix.h"
|
|
#include "config_win32.h"
|
|
#include "debug.h"
|
|
#include "host.h"
|
|
#include "pdb.h"
|
|
#include "video_display.h"
|
|
#include "video_codec.h"
|
|
#include "ntp.h"
|
|
#include "tv.h"
|
|
#include "rtp/rtp.h"
|
|
#include "rtp/pbuf.h"
|
|
#include "rtp/rtp_callback.h"
|
|
#include "tfrc.h"
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|
|
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%08x 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%02x) from 0x%08x\n",
|
|
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);
|
|
struct timeval curr_time;
|
|
|
|
switch (e->type) {
|
|
case RX_RTP:
|
|
gettimeofday(&curr_time, NULL);
|
|
tfrc_recv_data(state->tfrc_state, curr_time, 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:
|
|
pckt_app = (rtcp_app *) e->data;
|
|
if (strncmp(pckt_app->name, "RTT_", 4) == 0) {
|
|
assert(pckt_app->length == 3);
|
|
assert(pckt_app->subtype == 0);
|
|
gettimeofday(&curr_time, NULL);
|
|
// tfrc_recv_rtt(state->tfrc_state, curr_time, 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) {
|
|
if (pdb_item->decoder_state_deleter) {
|
|
pdb_item->decoder_state_deleter(pdb_item->decoder_state);
|
|
}
|
|
}
|
|
}
|
|
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);
|
|
}
|
|
}
|
|
|