summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2010-02-20 22:37:22 +0000
committerOlle Johansson <oej@edvina.net>2010-02-20 22:37:22 +0000
commite8df30b58460d6fbe9836c9676b85b69fe8f4314 (patch)
treea736526e44e226fff94a330506ffcea45f4e08d2 /res
parent8d80349bbfd5cad3747bc43fb750e8220304e076 (diff)
Improve support for RTCP reports without report blocks
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@248108 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_rtp_asterisk.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c
index e06daa575..d8a279199 100644
--- a/res/res_rtp_asterisk.c
+++ b/res/res_rtp_asterisk.c
@@ -1585,6 +1585,10 @@ static struct ast_frame *ast_rtcp_read(struct ast_rtp_instance *instance)
}
i += 2; /* Advance past header and ssrc */
+ if (rc == 0 && pt == RTCP_PT_RR) { /* We're receiving a receiver report with no reports, which is ok */
+ position += (length + 1);
+ continue;
+ }
switch (pt) {
case RTCP_PT_SR: