diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c
index e06daa57526d16efc6d082783e67baa701d7b05f..d8a279199c3ef3d9e85b2e6d963a57d54506bb29 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: