packetizer: hevc: don't double store poc prev msb/lsb
[vlc.git] / modules / stream_out / rtcp.c
blob6a85bfaf2cb2b1269732f73113e20237a5eb0753
1 /*****************************************************************************
2 * rtcp.c: RTCP stream output support
3 *****************************************************************************
4 * Copyright © 2007 Rémi Denis-Courmont
5 * $Id$
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 *****************************************************************************/
22 /*****************************************************************************
23 * Preamble
24 *****************************************************************************/
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
30 #include <vlc_common.h>
31 #include <vlc_block.h>
33 #include <vlc_network.h>
34 #include <vlc_sout.h>
35 #include <vlc_fs.h>
36 #include "rtp.h"
38 #include <assert.h>
40 #ifndef SOL_IP
41 # define SOL_IP IPPROTO_IP
42 #endif
45 * NOTE on RTCP implementation:
46 * - there is a single sender (us), no conferencing here! => n = sender = 1,
47 * - as such we need not bother to include Receiver Reports,
48 * - in unicast case, there is a single receiver => members = 1 + 1 = 2,
49 * and obviously n > 25% of members,
50 * - in multicast case, we do not want to maintain the number of receivers
51 * and we assume it is big (i.e. than 3) because that's what broadcasting is
52 * all about,
53 * - it is assumed we_sent = true (could be wrong), since we are THE sender,
54 * - we always send SR + SDES, while running,
55 * - FIXME: we do not implement separate rate limiting for SDES,
56 * - we do not implement any profile-specific extensions for the time being.
58 struct rtcp_sender_t
60 size_t length; /* RTCP packet length */
61 uint8_t payload[28 + 8 + (2 * 257) + 8];
62 int handle; /* RTCP socket handler */
64 uint32_t packets; /* RTP packets sent */
65 uint32_t bytes; /* RTP bytes sent */
66 unsigned counter; /* RTP packets sent since last RTCP packet */
70 rtcp_sender_t *OpenRTCP (vlc_object_t *obj, int rtp_fd, int proto,
71 bool mux)
73 rtcp_sender_t *rtcp;
74 uint8_t *ptr;
75 int fd;
76 char src[NI_MAXNUMERICHOST];
77 int sport;
79 if (net_GetSockAddress (rtp_fd, src, &sport))
80 return NULL;
82 if (mux)
84 /* RTP/RTCP mux: duplicate the socket */
85 #ifndef _WIN32
86 fd = vlc_dup (rtp_fd);
87 #else
88 WSAPROTOCOL_INFO info;
89 WSADuplicateSocket (rtp_fd, GetCurrentProcessId (), &info);
90 fd = WSASocket (info.iAddressFamily, info.iSocketType, info.iProtocol,
91 &info, 0, 0);
92 #endif
94 else
96 /* RTCP on a separate port */
97 char dst[NI_MAXNUMERICHOST];
98 int dport;
100 if (net_GetPeerAddress (rtp_fd, dst, &dport))
101 return NULL;
103 sport++;
104 dport++;
106 fd = net_OpenDgram (obj, src, sport, dst, dport, proto);
107 if (fd != -1)
109 /* Copy the multicast IPv4 TTL value (useless for IPv6) */
110 int ttl;
111 socklen_t len = sizeof (ttl);
113 if (!getsockopt (rtp_fd, SOL_IP, IP_MULTICAST_TTL, &ttl, &len))
114 setsockopt (fd, SOL_IP, IP_MULTICAST_TTL, &ttl, len);
116 /* Ignore all incoming RTCP-RR packets */
117 setsockopt (fd, SOL_SOCKET, SO_RCVBUF, &(int){ 0 }, sizeof (int));
121 if (fd == -1)
122 return NULL;
124 rtcp = malloc (sizeof (*rtcp));
125 if (rtcp == NULL)
127 net_Close (fd);
128 return NULL;
131 rtcp->handle = fd;
132 rtcp->bytes = rtcp->packets = rtcp->counter = 0;
134 ptr = (uint8_t *)strchr (src, '%');
135 if (ptr != NULL)
136 *ptr = '\0'; /* remove scope ID frop IPv6 addresses */
138 ptr = rtcp->payload;
140 /* Sender report */
141 ptr[0] = 2 << 6; /* V = 2, P = RC = 0 */
142 ptr[1] = 200; /* payload type: Sender Report */
143 SetWBE (ptr + 2, 6); /* length = 6 (7 double words) */
144 memset (ptr + 4, 0, 4); /* SSRC unknown yet */
145 SetQWBE (ptr + 8, NTPtime64 ());
146 memset (ptr + 16, 0, 12); /* timestamp and counters */
147 ptr += 28;
149 /* Source description */
150 uint8_t *sdes = ptr;
151 ptr[0] = (2 << 6) | 1; /* V = 2, P = 0, SC = 1 */
152 ptr[1] = 202; /* payload type: Source Description */
153 uint8_t *lenptr = ptr + 2;
154 memset (ptr + 4, 0, 4); /* SSRC unknown yet */
155 ptr += 8;
157 ptr[0] = 1; /* CNAME - mandatory */
158 assert (NI_MAXNUMERICHOST <= 256);
159 ptr[1] = strlen (src);
160 memcpy (ptr + 2, src, ptr[1]);
161 ptr += ptr[1] + 2;
163 static const char tool[] = PACKAGE_STRING;
164 ptr[0] = 6; /* TOOL */
165 ptr[1] = (sizeof (tool) > 256) ? 255 : (sizeof (tool) - 1);
166 memcpy (ptr + 2, tool, ptr[1]);
167 ptr += ptr[1] + 2;
169 while ((ptr - sdes) & 3) /* 32-bits padding */
170 *ptr++ = 0;
171 SetWBE (lenptr, (ptr - sdes - 1) >> 2);
173 rtcp->length = ptr - rtcp->payload;
174 return rtcp;
178 void CloseRTCP (rtcp_sender_t *rtcp)
180 if (rtcp == NULL)
181 return;
183 uint8_t *ptr = rtcp->payload;
184 uint64_t now64 = NTPtime64 ();
185 SetQWBE (ptr + 8, now64); /* Update the Sender Report timestamp */
187 /* Bye */
188 ptr += rtcp->length;
189 ptr[0] = (2 << 6) | 1; /* V = 2, P = 0, SC = 1 */
190 ptr[1] = 203; /* payload type: Bye */
191 SetWBE (ptr + 2, 1);
192 memcpy (ptr + 4, rtcp->payload + 4, 4); /* Copy SSRC from Sender Report */
193 rtcp->length += 8;
195 /* We are THE sender, so we are more important than anybody else, so
196 * we can afford not to check bandwidth constraints here. */
197 send (rtcp->handle, rtcp->payload, rtcp->length, 0);
198 net_Close (rtcp->handle);
199 free (rtcp);
203 void SendRTCP (rtcp_sender_t *restrict rtcp, const block_t *rtp)
205 if ((rtcp == NULL) /* RTCP sender off */
206 || (rtp->i_buffer < 12)) /* too short RTP packet */
207 return;
209 /* Updates statistics */
210 rtcp->packets++;
211 rtcp->bytes += rtp->i_buffer;
212 rtcp->counter += rtp->i_buffer;
214 /* 1.25% rate limit */
215 if ((rtcp->counter / 80) < rtcp->length)
216 return;
218 uint8_t *ptr = rtcp->payload;
219 uint32_t last = GetDWBE (ptr + 8); // last RTCP SR send time
220 uint64_t now64 = NTPtime64 ();
221 if ((now64 >> 32) < (last + 5))
222 return; // no more than one SR every 5 seconds
224 memcpy (ptr + 4, rtp->p_buffer + 8, 4); /* SR SSRC */
225 SetQWBE (ptr + 8, now64);
226 memcpy (ptr + 16, rtp->p_buffer + 4, 4); /* RTP timestamp */
227 SetDWBE (ptr + 20, rtcp->packets);
228 SetDWBE (ptr + 24, rtcp->bytes);
229 memcpy (ptr + 28 + 4, rtp->p_buffer + 8, 4); /* SDES SSRC */
231 if (send (rtcp->handle, ptr, rtcp->length, 0) == (ssize_t)rtcp->length)
232 rtcp->counter = 0;