aboutsummaryrefslogtreecommitdiffstats
path: root/rtp.c
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-21 19:07:02 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-06-21 19:07:02 +0000
commitd4f23828797aa49397cf56e78b6e6d673eaf81c5 (patch)
tree98feb2e4d78fd0b750fe3be65602aae4785e7eed /rtp.c
parent760f03818d0a8926aba2b5557523f9bb89127382 (diff)
Only delete scheduled item if it exists
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@35333 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'rtp.c')
-rw-r--r--rtp.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/rtp.c b/rtp.c
index 54fa5e610..7303a8596 100644
--- a/rtp.c
+++ b/rtp.c
@@ -1047,7 +1047,7 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
rtp->seedrxseqno = seqno;
}
- if (rtp->rtcp->schedid<1) {
+ if (rtp->rtcp->schedid < 1) {
/* Schedule transmission of Receiver Report */
rtp->rtcp->schedid = ast_sched_add(rtp->sched, ast_rtcp_calc_interval(rtp), ast_rtcp_write, rtp);
}
@@ -1744,7 +1744,7 @@ void ast_rtp_get_us(struct ast_rtp *rtp, struct sockaddr_in *us)
void ast_rtp_stop(struct ast_rtp *rtp)
{
- if (rtp->rtcp->schedid>0) {
+ if (rtp->rtcp->schedid > 0) {
ast_sched_del(rtp->sched, rtp->rtcp->schedid);
rtp->rtcp->schedid = -1;
}
@@ -1816,7 +1816,7 @@ void ast_rtp_destroy(struct ast_rtp *rtp)
ast_verbose(" RTT: %f\n", rtp->rtcp->rtt);
}
- if (rtp->rtcp->schedid>0) {
+ if (rtp->rtcp->schedid > 0) {
ast_sched_del(rtp->sched, rtp->rtcp->schedid);
rtp->rtcp->schedid = -1;
}
@@ -1974,7 +1974,8 @@ static int ast_rtcp_write_sr(void *data)
if (!rtp->rtcp->them.sin_addr.s_addr) { /* This'll stop rtcp for this rtp session */
ast_verbose("RTCP SR transmission error, rtcp halted %s\n",strerror(errno));
- ast_sched_del(rtp->sched, rtp->rtcp->schedid);
+ if (rtp->rtcp->schedid > 0)
+ ast_sched_del(rtp->sched, rtp->rtcp->schedid);
rtp->rtcp->schedid = -1;
return 0;
}
@@ -2032,7 +2033,8 @@ static int ast_rtcp_write_sr(void *data)
res = sendto(rtp->rtcp->s, (unsigned int *)rtcpheader, len, 0, (struct sockaddr *)&rtp->rtcp->them, sizeof(rtp->rtcp->them));
if (res < 0) {
ast_log(LOG_ERROR, "RTCP SR transmission error to %s:%d, rtcp halted %s\n",ast_inet_ntoa(iabuf, sizeof(iabuf), rtp->rtcp->them.sin_addr), ntohs(rtp->rtcp->them.sin_port), strerror(errno));
- ast_sched_del(rtp->sched, rtp->rtcp->schedid);
+ if (rtp->rtcp->schedid > 0)
+ ast_sched_del(rtp->sched, rtp->rtcp->schedid);
rtp->rtcp->schedid = -1;
return 0;
}
@@ -2084,7 +2086,8 @@ static int ast_rtcp_write_rr(void *data)
if (!rtp->rtcp->them.sin_addr.s_addr) {
ast_log(LOG_ERROR, "RTCP RR transmission error to, rtcp halted %s\n",strerror(errno));
- ast_sched_del(rtp->sched, rtp->rtcp->schedid);
+ if (rtp->rtcp->schedid > 0)
+ ast_sched_del(rtp->sched, rtp->rtcp->schedid);
rtp->rtcp->schedid = -1;
return 0;
}
@@ -2132,7 +2135,8 @@ static int ast_rtcp_write_rr(void *data)
if (res < 0) {
ast_log(LOG_ERROR, "RTCP RR transmission error, rtcp halted: %s\n",strerror(errno));
/* Remove the scheduler */
- ast_sched_del(rtp->sched, rtp->rtcp->schedid);
+ if (rtp->rtcp->schedid > 0)
+ ast_sched_del(rtp->sched, rtp->rtcp->schedid);
rtp->rtcp->schedid = -1;
return 0;
}