3 * Copyright (c) 2002 Fabrice Bellard.
5 * This file is part of FFmpeg.
7 * FFmpeg 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 * FFmpeg 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 FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include "libavutil/avstring.h"
33 #include "os_support.h"
36 #define RTP_TX_BUF_SIZE (64 * 1024)
37 #define RTP_RX_BUF_SIZE (128 * 1024)
39 typedef struct RTPContext
{
40 URLContext
*rtp_hd
, *rtcp_hd
;
45 * If no filename is given to av_open_input_file because you want to
46 * get the local port first, then you must call this function to set
47 * the remote server address.
49 * @param s1 media file context
50 * @param uri of the remote server
51 * @return zero if no error.
54 int rtp_set_remote_url(URLContext
*h
, const char *uri
)
56 RTPContext
*s
= h
->priv_data
;
63 url_split(NULL
, 0, NULL
, 0, hostname
, sizeof(hostname
), &port
,
64 path
, sizeof(path
), uri
);
66 snprintf(buf
, sizeof(buf
), "udp://%s:%d%s", hostname
, port
, path
);
67 udp_set_remote_url(s
->rtp_hd
, buf
);
69 snprintf(buf
, sizeof(buf
), "udp://%s:%d%s", hostname
, port
+ 1, path
);
70 udp_set_remote_url(s
->rtcp_hd
, buf
);
76 * add option to url of the form:
77 * "http://host:port/path?option1=val1&option2=val2...
80 static void url_add_option(char *buf
, int buf_size
, const char *fmt
, ...)
87 av_strlcat(buf
, "&", buf_size
);
89 av_strlcat(buf
, "?", buf_size
);
90 vsnprintf(buf1
, sizeof(buf1
), fmt
, ap
);
91 av_strlcat(buf
, buf1
, buf_size
);
95 static void build_udp_url(char *buf
, int buf_size
,
96 const char *hostname
, int port
,
97 int local_port
, int ttl
,
100 snprintf(buf
, buf_size
, "udp://%s:%d", hostname
, port
);
102 url_add_option(buf
, buf_size
, "localport=%d", local_port
);
104 url_add_option(buf
, buf_size
, "ttl=%d", ttl
);
105 if (max_packet_size
>=0)
106 url_add_option(buf
, buf_size
, "pkt_size=%d", max_packet_size
);
110 * url syntax: rtp://host:port[?option=val...]
111 * option: 'ttl=n' : set the ttl value (for multicast only)
112 * 'localport=n' : set the local port to n
113 * 'pkt_size=n' : set max packet size
117 static int rtp_open(URLContext
*h
, const char *uri
, int flags
)
120 int port
, is_output
, ttl
, local_port
, max_packet_size
;
126 is_output
= (flags
& URL_WRONLY
);
128 s
= av_mallocz(sizeof(RTPContext
));
130 return AVERROR(ENOMEM
);
133 url_split(NULL
, 0, NULL
, 0, hostname
, sizeof(hostname
), &port
,
134 path
, sizeof(path
), uri
);
135 /* extract parameters */
138 max_packet_size
= -1;
140 p
= strchr(uri
, '?');
142 if (find_info_tag(buf
, sizeof(buf
), "ttl", p
)) {
143 ttl
= strtol(buf
, NULL
, 10);
145 if (find_info_tag(buf
, sizeof(buf
), "localport", p
)) {
146 local_port
= strtol(buf
, NULL
, 10);
148 if (find_info_tag(buf
, sizeof(buf
), "pkt_size", p
)) {
149 max_packet_size
= strtol(buf
, NULL
, 10);
153 build_udp_url(buf
, sizeof(buf
),
154 hostname
, port
, local_port
, ttl
, max_packet_size
);
155 if (url_open(&s
->rtp_hd
, buf
, flags
) < 0)
157 local_port
= udp_get_local_port(s
->rtp_hd
);
158 /* XXX: need to open another connection if the port is not even */
160 /* well, should suppress localport in path */
162 build_udp_url(buf
, sizeof(buf
),
163 hostname
, port
+ 1, local_port
+ 1, ttl
, max_packet_size
);
164 if (url_open(&s
->rtcp_hd
, buf
, flags
) < 0)
167 /* just to ease handle access. XXX: need to suppress direct handle
169 s
->rtp_fd
= udp_get_file_handle(s
->rtp_hd
);
170 s
->rtcp_fd
= udp_get_file_handle(s
->rtcp_hd
);
172 h
->max_packet_size
= url_get_max_packet_size(s
->rtp_hd
);
178 url_close(s
->rtp_hd
);
180 url_close(s
->rtcp_hd
);
185 static int rtp_read(URLContext
*h
, uint8_t *buf
, int size
)
187 RTPContext
*s
= h
->priv_data
;
188 struct sockaddr_in from
;
194 from_len
= sizeof(from
);
195 len
= recvfrom (s
->rtp_fd
, buf
, size
, 0,
196 (struct sockaddr
*)&from
, &from_len
);
198 if (ff_neterrno() == FF_NETERROR(EAGAIN
) ||
199 ff_neterrno() == FF_NETERROR(EINTR
))
207 /* build fdset to listen to RTP and RTCP packets */
210 FD_SET(s
->rtp_fd
, &rfds
);
211 if (s
->rtcp_fd
> fd_max
)
213 FD_SET(s
->rtcp_fd
, &rfds
);
214 n
= select(fd_max
+ 1, &rfds
, NULL
, NULL
, NULL
);
217 if (FD_ISSET(s
->rtcp_fd
, &rfds
)) {
218 from_len
= sizeof(from
);
219 len
= recvfrom (s
->rtcp_fd
, buf
, size
, 0,
220 (struct sockaddr
*)&from
, &from_len
);
222 if (ff_neterrno() == FF_NETERROR(EAGAIN
) ||
223 ff_neterrno() == FF_NETERROR(EINTR
))
230 if (FD_ISSET(s
->rtp_fd
, &rfds
)) {
231 from_len
= sizeof(from
);
232 len
= recvfrom (s
->rtp_fd
, buf
, size
, 0,
233 (struct sockaddr
*)&from
, &from_len
);
235 if (ff_neterrno() == FF_NETERROR(EAGAIN
) ||
236 ff_neterrno() == FF_NETERROR(EINTR
))
248 static int rtp_write(URLContext
*h
, uint8_t *buf
, int size
)
250 RTPContext
*s
= h
->priv_data
;
254 if (buf
[1] >= 200 && buf
[1] <= 204) {
255 /* RTCP payload type */
258 /* RTP payload type */
262 ret
= url_write(hd
, buf
, size
);
267 ts
.tv_nsec
= 10 * 1000000;
268 nanosleep(&ts
, NULL
);
274 static int rtp_close(URLContext
*h
)
276 RTPContext
*s
= h
->priv_data
;
278 url_close(s
->rtp_hd
);
279 url_close(s
->rtcp_hd
);
285 * Return the local port used by the RTP connection
286 * @param s1 media file context
287 * @return the local port number
290 int rtp_get_local_port(URLContext
*h
)
292 RTPContext
*s
= h
->priv_data
;
293 return udp_get_local_port(s
->rtp_hd
);
297 * Return the rtp and rtcp file handles for select() usage to wait for
298 * several RTP streams at the same time.
299 * @param h media file context
302 void rtp_get_file_handles(URLContext
*h
, int *prtp_fd
, int *prtcp_fd
)
304 RTPContext
*s
= h
->priv_data
;
306 *prtp_fd
= s
->rtp_fd
;
307 *prtcp_fd
= s
->rtcp_fd
;
310 URLProtocol rtp_protocol
= {