3 * Copyright (c) 2002 Fabrice Bellard.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include <netinet/in.h>
26 #include <arpa/inet.h>
30 #define RTP_TX_BUF_SIZE (64 * 1024)
31 #define RTP_RX_BUF_SIZE (128 * 1024)
33 typedef struct RTPContext
{
34 URLContext
*rtp_hd
, *rtcp_hd
;
39 * If no filename is given to av_open_input_file because you want to
40 * get the local port first, then you must call this function to set
41 * the remote server address.
43 * @param s1 media file context
44 * @param uri of the remote server
45 * @return zero if no error.
47 int rtp_set_remote_url(URLContext
*h
, const char *uri
)
49 RTPContext
*s
= h
->priv_data
;
56 url_split(NULL
, 0, hostname
, sizeof(hostname
), &port
,
57 path
, sizeof(path
), uri
);
59 snprintf(buf
, sizeof(buf
), "udp://%s:%d%s", hostname
, port
, path
);
60 udp_set_remote_url(s
->rtp_hd
, buf
);
62 snprintf(buf
, sizeof(buf
), "udp://%s:%d%s", hostname
, port
+ 1, path
);
63 udp_set_remote_url(s
->rtcp_hd
, buf
);
68 /* add option to url of the form:
69 "http://host:port/path?option1=val1&option2=val2... */
70 void url_add_option(char *buf
, int buf_size
, const char *fmt
, ...)
77 pstrcat(buf
, buf_size
, "&");
79 pstrcat(buf
, buf_size
, "?");
80 vsnprintf(buf1
, sizeof(buf1
), fmt
, ap
);
81 pstrcat(buf
, buf_size
, buf1
);
85 void build_udp_url(char *buf
, int buf_size
,
86 const char *hostname
, int port
,
87 int local_port
, int multicast
, int ttl
)
89 snprintf(buf
, buf_size
, "udp://%s:%d", hostname
, port
);
91 url_add_option(buf
, buf_size
, "localport=%d", local_port
);
93 url_add_option(buf
, buf_size
, "multicast=1", multicast
);
95 url_add_option(buf
, buf_size
, "ttl=%d", ttl
);
99 * url syntax: rtp://host:port[?option=val...]
100 * option: 'multicast=1' : enable multicast
101 * 'ttl=n' : set the ttl value (for multicast only)
102 * 'localport=n' : set the local port to n
105 static int rtp_open(URLContext
*h
, const char *uri
, int flags
)
108 int port
, is_output
, is_multicast
, ttl
, local_port
;
114 is_output
= (flags
& URL_WRONLY
);
116 s
= av_mallocz(sizeof(RTPContext
));
121 url_split(NULL
, 0, hostname
, sizeof(hostname
), &port
,
122 path
, sizeof(path
), uri
);
123 /* extract parameters */
127 p
= strchr(uri
, '?');
129 is_multicast
= find_info_tag(buf
, sizeof(buf
), "multicast", p
);
130 if (find_info_tag(buf
, sizeof(buf
), "ttl", p
)) {
131 ttl
= strtol(buf
, NULL
, 10);
133 if (find_info_tag(buf
, sizeof(buf
), "localport", p
)) {
134 local_port
= strtol(buf
, NULL
, 10);
138 build_udp_url(buf
, sizeof(buf
),
139 hostname
, port
, local_port
, is_multicast
, ttl
);
140 if (url_open(&s
->rtp_hd
, buf
, flags
) < 0)
142 local_port
= udp_get_local_port(s
->rtp_hd
);
143 /* XXX: need to open another connexion if the port is not even */
145 /* well, should suppress localport in path */
147 build_udp_url(buf
, sizeof(buf
),
148 hostname
, port
+ 1, local_port
+ 1, is_multicast
, ttl
);
149 if (url_open(&s
->rtcp_hd
, buf
, flags
) < 0)
152 /* just to ease handle access. XXX: need to suppress direct handle
154 s
->rtp_fd
= udp_get_file_handle(s
->rtp_hd
);
155 s
->rtcp_fd
= udp_get_file_handle(s
->rtcp_hd
);
157 h
->max_packet_size
= url_get_max_packet_size(s
->rtp_hd
);
163 url_close(s
->rtp_hd
);
165 url_close(s
->rtcp_hd
);
170 static int rtp_read(URLContext
*h
, UINT8
*buf
, int size
)
172 RTPContext
*s
= h
->priv_data
;
173 struct sockaddr_in from
;
174 int from_len
, len
, fd_max
, n
;
178 from_len
= sizeof(from
);
179 len
= recvfrom (s
->rtp_fd
, buf
, size
, 0,
180 (struct sockaddr
*)&from
, &from_len
);
182 if (errno
== EAGAIN
|| errno
== EINTR
)
190 /* build fdset to listen to RTP and RTCP packets */
193 FD_SET(s
->rtp_fd
, &rfds
);
194 if (s
->rtcp_fd
> fd_max
)
196 FD_SET(s
->rtcp_fd
, &rfds
);
197 n
= select(fd_max
+ 1, &rfds
, NULL
, NULL
, NULL
);
200 if (FD_ISSET(s
->rtcp_fd
, &rfds
)) {
201 from_len
= sizeof(from
);
202 len
= recvfrom (s
->rtcp_fd
, buf
, size
, 0,
203 (struct sockaddr
*)&from
, &from_len
);
205 if (errno
== EAGAIN
|| errno
== EINTR
)
212 if (FD_ISSET(s
->rtp_fd
, &rfds
)) {
213 from_len
= sizeof(from
);
214 len
= recvfrom (s
->rtp_fd
, buf
, size
, 0,
215 (struct sockaddr
*)&from
, &from_len
);
217 if (errno
== EAGAIN
|| errno
== EINTR
)
229 static int rtp_write(URLContext
*h
, UINT8
*buf
, int size
)
231 RTPContext
*s
= h
->priv_data
;
235 if (buf
[1] >= 200 && buf
[1] <= 204) {
236 /* RTCP payload type */
239 /* RTP payload type */
243 ret
= url_write(hd
, buf
, size
);
248 ts
.tv_nsec
= 10 * 1000000;
249 nanosleep(&ts
, NULL
);
255 static int rtp_close(URLContext
*h
)
257 RTPContext
*s
= h
->priv_data
;
259 url_close(s
->rtp_hd
);
260 url_close(s
->rtcp_hd
);
266 * Return the local port used by the RTP connexion
267 * @param s1 media file context
268 * @return the local port number
270 int rtp_get_local_port(URLContext
*h
)
272 RTPContext
*s
= h
->priv_data
;
273 return udp_get_local_port(s
->rtp_hd
);
277 * Return the rtp and rtcp file handles for select() usage to wait for several RTP
278 * streams at the same time.
279 * @param h media file context
281 void rtp_get_file_handles(URLContext
*h
, int *prtp_fd
, int *prtcp_fd
)
283 RTPContext
*s
= h
->priv_data
;
285 *prtp_fd
= s
->rtp_fd
;
286 *prtcp_fd
= s
->rtcp_fd
;
289 URLProtocol rtp_protocol
= {