diff src/rtcp_tx.c @ 34:fc77c3482084

add function for sending RTCP RR
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 09 Jul 2024 01:00:27 +0000
parents aa97e77e7de6
children
line wrap: on
line diff
--- a/src/rtcp_tx.c	Mon Jul 08 07:25:19 2024 +0000
+++ b/src/rtcp_tx.c	Tue Jul 09 01:00:27 2024 +0000
@@ -135,3 +135,8 @@
 	endp->stats.tx_rtcp_pkt++;
 	return 0;
 }
+
+int twrtp_endp_send_rtcp_rr(struct twrtp_endp *endp)
+{
+	return _twrtp_endp_send_rtcp(endp, false, NULL, 0);
+}