3 * Copyright (c) 2002 Fabrice Bellard
5 * This file is part of Libav.
7 * Libav 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 * Libav 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 Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include "libavutil/parseutils.h"
28 #include "libavutil/avstring.h"
30 #include "avio_internal.h"
38 #include "os_support.h"
45 #define RTP_TX_BUF_SIZE (64 * 1024)
46 #define RTP_RX_BUF_SIZE (128 * 1024)
48 typedef struct RTPContext {
49 URLContext *rtp_hd, *rtcp_hd;
54 * If no filename is given to av_open_input_file because you want to
55 * get the local port first, then you must call this function to set
56 * the remote server address.
58 * @param h media file context
59 * @param uri of the remote server
60 * @return zero if no error.
63 int ff_rtp_set_remote_url(URLContext *h, const char *uri)
65 RTPContext *s = h->priv_data;
72 av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
73 path, sizeof(path), uri);
75 ff_url_join(buf, sizeof(buf), "udp", NULL, hostname, port, "%s", path);
76 ff_udp_set_remote_url(s->rtp_hd, buf);
78 ff_url_join(buf, sizeof(buf), "udp", NULL, hostname, port + 1, "%s", path);
79 ff_udp_set_remote_url(s->rtcp_hd, buf);
85 * add option to url of the form:
86 * "http://host:port/path?option1=val1&option2=val2...
89 static av_printf_format(3, 4) void url_add_option(char *buf, int buf_size, const char *fmt, ...)
96 av_strlcat(buf, "&", buf_size);
98 av_strlcat(buf, "?", buf_size);
99 vsnprintf(buf1, sizeof(buf1), fmt, ap);
100 av_strlcat(buf, buf1, buf_size);
104 static void build_udp_url(char *buf, int buf_size,
105 const char *hostname, int port,
106 int local_port, int ttl,
107 int max_packet_size, int connect)
109 ff_url_join(buf, buf_size, "udp", NULL, hostname, port, NULL);
111 url_add_option(buf, buf_size, "localport=%d", local_port);
113 url_add_option(buf, buf_size, "ttl=%d", ttl);
114 if (max_packet_size >=0)
115 url_add_option(buf, buf_size, "pkt_size=%d", max_packet_size);
117 url_add_option(buf, buf_size, "connect=1");
121 * url syntax: rtp://host:port[?option=val...]
122 * option: 'ttl=n' : set the ttl value (for multicast only)
123 * 'rtcpport=n' : set the remote rtcp port to n
124 * 'localrtpport=n' : set the local rtp port to n
125 * 'localrtcpport=n' : set the local rtcp port to n
126 * 'pkt_size=n' : set max packet size
127 * 'connect=0/1' : do a connect() on the UDP socket
129 * 'localport=n' : set the local port to n
131 * if rtcpport isn't set the rtcp port will be the rtp port + 1
132 * if local rtp port isn't set any available port will be used for the local
134 * if the local rtcp port is not set it will be the local rtp port + 1
137 static int rtp_open(URLContext *h, const char *uri, int flags)
139 RTPContext *s = h->priv_data;
140 int rtp_port, rtcp_port,
142 local_rtp_port, local_rtcp_port, max_packet_size;
148 av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &rtp_port,
149 path, sizeof(path), uri);
150 /* extract parameters */
152 rtcp_port = rtp_port+1;
154 local_rtcp_port = -1;
155 max_packet_size = -1;
158 p = strchr(uri, '?');
160 if (av_find_info_tag(buf, sizeof(buf), "ttl", p)) {
161 ttl = strtol(buf, NULL, 10);
163 if (av_find_info_tag(buf, sizeof(buf), "rtcpport", p)) {
164 rtcp_port = strtol(buf, NULL, 10);
166 if (av_find_info_tag(buf, sizeof(buf), "localport", p)) {
167 local_rtp_port = strtol(buf, NULL, 10);
169 if (av_find_info_tag(buf, sizeof(buf), "localrtpport", p)) {
170 local_rtp_port = strtol(buf, NULL, 10);
172 if (av_find_info_tag(buf, sizeof(buf), "localrtcpport", p)) {
173 local_rtcp_port = strtol(buf, NULL, 10);
175 if (av_find_info_tag(buf, sizeof(buf), "pkt_size", p)) {
176 max_packet_size = strtol(buf, NULL, 10);
178 if (av_find_info_tag(buf, sizeof(buf), "connect", p)) {
179 connect = strtol(buf, NULL, 10);
183 build_udp_url(buf, sizeof(buf),
184 hostname, rtp_port, local_rtp_port, ttl, max_packet_size,
186 if (ffurl_open(&s->rtp_hd, buf, flags, &h->interrupt_callback, NULL) < 0)
188 if (local_rtp_port>=0 && local_rtcp_port<0)
189 local_rtcp_port = ff_udp_get_local_port(s->rtp_hd) + 1;
191 build_udp_url(buf, sizeof(buf),
192 hostname, rtcp_port, local_rtcp_port, ttl, max_packet_size,
194 if (ffurl_open(&s->rtcp_hd, buf, flags, &h->interrupt_callback, NULL) < 0)
197 /* just to ease handle access. XXX: need to suppress direct handle
199 s->rtp_fd = ffurl_get_file_handle(s->rtp_hd);
200 s->rtcp_fd = ffurl_get_file_handle(s->rtcp_hd);
202 h->max_packet_size = s->rtp_hd->max_packet_size;
208 ffurl_close(s->rtp_hd);
210 ffurl_close(s->rtcp_hd);
214 static int rtp_read(URLContext *h, uint8_t *buf, int size)
216 RTPContext *s = h->priv_data;
217 struct sockaddr_storage from;
220 struct pollfd p[2] = {{s->rtp_fd, POLLIN, 0}, {s->rtcp_fd, POLLIN, 0}};
223 if (ff_check_interrupt(&h->interrupt_callback))
225 /* build fdset to listen to RTP and RTCP packets */
229 if (p[1].revents & POLLIN) {
230 from_len = sizeof(from);
231 len = recvfrom (s->rtcp_fd, buf, size, 0,
232 (struct sockaddr *)&from, &from_len);
234 if (ff_neterrno() == AVERROR(EAGAIN) ||
235 ff_neterrno() == AVERROR(EINTR))
242 if (p[0].revents & POLLIN) {
243 from_len = sizeof(from);
244 len = recvfrom (s->rtp_fd, buf, size, 0,
245 (struct sockaddr *)&from, &from_len);
247 if (ff_neterrno() == AVERROR(EAGAIN) ||
248 ff_neterrno() == AVERROR(EINTR))
255 if (ff_neterrno() == AVERROR(EINTR))
263 static int rtp_write(URLContext *h, const uint8_t *buf, int size)
265 RTPContext *s = h->priv_data;
269 if (RTP_PT_IS_RTCP(buf[1])) {
270 /* RTCP payload type */
273 /* RTP payload type */
277 ret = ffurl_write(hd, buf, size);
281 static int rtp_close(URLContext *h)
283 RTPContext *s = h->priv_data;
285 ffurl_close(s->rtp_hd);
286 ffurl_close(s->rtcp_hd);
291 * Return the local rtp port used by the RTP connection
292 * @param h media file context
293 * @return the local port number
296 int ff_rtp_get_local_rtp_port(URLContext *h)
298 RTPContext *s = h->priv_data;
299 return ff_udp_get_local_port(s->rtp_hd);
303 * Return the local rtcp port used by the RTP connection
304 * @param h media file context
305 * @return the local port number
308 int ff_rtp_get_local_rtcp_port(URLContext *h)
310 RTPContext *s = h->priv_data;
311 return ff_udp_get_local_port(s->rtcp_hd);
314 static int rtp_get_file_handle(URLContext *h)
316 RTPContext *s = h->priv_data;
320 int ff_rtp_get_rtcp_file_handle(URLContext *h) {
321 RTPContext *s = h->priv_data;
325 URLProtocol ff_rtp_protocol = {
327 .url_open = rtp_open,
328 .url_read = rtp_read,
329 .url_write = rtp_write,
330 .url_close = rtp_close,
331 .url_get_file_handle = rtp_get_file_handle,
332 .priv_data_size = sizeof(RTPContext),
333 .flags = URL_PROTOCOL_FLAG_NETWORK,