]> git.sesse.net Git - ffmpeg/blob - libavformat/rtpproto.c
ffplay: get rid of void casts in the option table
[ffmpeg] / libavformat / rtpproto.c
1 /*
2  * RTP network protocol
3  * Copyright (c) 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 /**
23  * @file
24  * RTP protocol
25  */
26
27 #include "libavutil/parseutils.h"
28 #include "libavutil/avstring.h"
29 #include "avformat.h"
30 #include "avio_internal.h"
31 #include "rtpdec.h"
32 #include "url.h"
33
34 #include <stdarg.h>
35 #include "internal.h"
36 #include "network.h"
37 #include "os_support.h"
38 #include <fcntl.h>
39 #if HAVE_POLL_H
40 #include <sys/poll.h>
41 #endif
42
43 #define RTP_TX_BUF_SIZE  (64 * 1024)
44 #define RTP_RX_BUF_SIZE  (128 * 1024)
45
46 typedef struct RTPContext {
47     URLContext *rtp_hd, *rtcp_hd;
48     int rtp_fd, rtcp_fd;
49 } RTPContext;
50
51 /**
52  * If no filename is given to av_open_input_file because you want to
53  * get the local port first, then you must call this function to set
54  * the remote server address.
55  *
56  * @param h media file context
57  * @param uri of the remote server
58  * @return zero if no error.
59  */
60
61 int ff_rtp_set_remote_url(URLContext *h, const char *uri)
62 {
63     RTPContext *s = h->priv_data;
64     char hostname[256];
65     int port;
66
67     char buf[1024];
68     char path[1024];
69
70     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
71                  path, sizeof(path), uri);
72
73     ff_url_join(buf, sizeof(buf), "udp", NULL, hostname, port, "%s", path);
74     ff_udp_set_remote_url(s->rtp_hd, buf);
75
76     ff_url_join(buf, sizeof(buf), "udp", NULL, hostname, port + 1, "%s", path);
77     ff_udp_set_remote_url(s->rtcp_hd, buf);
78     return 0;
79 }
80
81
82 /**
83  * add option to url of the form:
84  * "http://host:port/path?option1=val1&option2=val2...
85  */
86
87 static av_printf_format(3, 4) void url_add_option(char *buf, int buf_size, const char *fmt, ...)
88 {
89     char buf1[1024];
90     va_list ap;
91
92     va_start(ap, fmt);
93     if (strchr(buf, '?'))
94         av_strlcat(buf, "&", buf_size);
95     else
96         av_strlcat(buf, "?", buf_size);
97     vsnprintf(buf1, sizeof(buf1), fmt, ap);
98     av_strlcat(buf, buf1, buf_size);
99     va_end(ap);
100 }
101
102 static void build_udp_url(char *buf, int buf_size,
103                           const char *hostname, int port,
104                           int local_port, int ttl,
105                           int max_packet_size, int connect)
106 {
107     ff_url_join(buf, buf_size, "udp", NULL, hostname, port, NULL);
108     if (local_port >= 0)
109         url_add_option(buf, buf_size, "localport=%d", local_port);
110     if (ttl >= 0)
111         url_add_option(buf, buf_size, "ttl=%d", ttl);
112     if (max_packet_size >=0)
113         url_add_option(buf, buf_size, "pkt_size=%d", max_packet_size);
114     if (connect)
115         url_add_option(buf, buf_size, "connect=1");
116     url_add_option(buf, buf_size, "fifo_size=0");
117 }
118
119 /**
120  * url syntax: rtp://host:port[?option=val...]
121  * option: 'ttl=n'            : set the ttl value (for multicast only)
122  *         'rtcpport=n'       : set the remote rtcp port to n
123  *         'localrtpport=n'   : set the local rtp port to n
124  *         'localrtcpport=n'  : set the local rtcp port to n
125  *         'pkt_size=n'       : set max packet size
126  *         'connect=0/1'      : do a connect() on the UDP socket
127  * deprecated option:
128  *         'localport=n'      : set the local port to n
129  *
130  * if rtcpport isn't set the rtcp port will be the rtp port + 1
131  * if local rtp port isn't set any available port will be used for the local
132  * rtp and rtcp ports
133  * if the local rtcp port is not set it will be the local rtp port + 1
134  */
135
136 static int rtp_open(URLContext *h, const char *uri, int flags)
137 {
138     RTPContext *s = h->priv_data;
139     int rtp_port, rtcp_port,
140         ttl, connect,
141         local_rtp_port, local_rtcp_port, max_packet_size;
142     char hostname[256];
143     char buf[1024];
144     char path[1024];
145     const char *p;
146
147     av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &rtp_port,
148                  path, sizeof(path), uri);
149     /* extract parameters */
150     ttl = -1;
151     rtcp_port = rtp_port+1;
152     local_rtp_port = -1;
153     local_rtcp_port = -1;
154     max_packet_size = -1;
155     connect = 0;
156
157     p = strchr(uri, '?');
158     if (p) {
159         if (av_find_info_tag(buf, sizeof(buf), "ttl", p)) {
160             ttl = strtol(buf, NULL, 10);
161         }
162         if (av_find_info_tag(buf, sizeof(buf), "rtcpport", p)) {
163             rtcp_port = strtol(buf, NULL, 10);
164         }
165         if (av_find_info_tag(buf, sizeof(buf), "localport", p)) {
166             local_rtp_port = strtol(buf, NULL, 10);
167         }
168         if (av_find_info_tag(buf, sizeof(buf), "localrtpport", p)) {
169             local_rtp_port = strtol(buf, NULL, 10);
170         }
171         if (av_find_info_tag(buf, sizeof(buf), "localrtcpport", p)) {
172             local_rtcp_port = strtol(buf, NULL, 10);
173         }
174         if (av_find_info_tag(buf, sizeof(buf), "pkt_size", p)) {
175             max_packet_size = strtol(buf, NULL, 10);
176         }
177         if (av_find_info_tag(buf, sizeof(buf), "connect", p)) {
178             connect = strtol(buf, NULL, 10);
179         }
180     }
181
182     build_udp_url(buf, sizeof(buf),
183                   hostname, rtp_port, local_rtp_port, ttl, max_packet_size,
184                   connect);
185     if (ffurl_open(&s->rtp_hd, buf, flags, &h->interrupt_callback, NULL) < 0)
186         goto fail;
187     if (local_rtp_port>=0 && local_rtcp_port<0)
188         local_rtcp_port = ff_udp_get_local_port(s->rtp_hd) + 1;
189
190     build_udp_url(buf, sizeof(buf),
191                   hostname, rtcp_port, local_rtcp_port, ttl, max_packet_size,
192                   connect);
193     if (ffurl_open(&s->rtcp_hd, buf, flags, &h->interrupt_callback, NULL) < 0)
194         goto fail;
195
196     /* just to ease handle access. XXX: need to suppress direct handle
197        access */
198     s->rtp_fd = ffurl_get_file_handle(s->rtp_hd);
199     s->rtcp_fd = ffurl_get_file_handle(s->rtcp_hd);
200
201     h->max_packet_size = s->rtp_hd->max_packet_size;
202     h->is_streamed = 1;
203     return 0;
204
205  fail:
206     if (s->rtp_hd)
207         ffurl_close(s->rtp_hd);
208     if (s->rtcp_hd)
209         ffurl_close(s->rtcp_hd);
210     return AVERROR(EIO);
211 }
212
213 static int rtp_read(URLContext *h, uint8_t *buf, int size)
214 {
215     RTPContext *s = h->priv_data;
216     struct sockaddr_storage from;
217     socklen_t from_len;
218     int len, n;
219     struct pollfd p[2] = {{s->rtp_fd, POLLIN, 0}, {s->rtcp_fd, POLLIN, 0}};
220
221     for(;;) {
222         if (ff_check_interrupt(&h->interrupt_callback))
223             return AVERROR_EXIT;
224         /* build fdset to listen to RTP and RTCP packets */
225         n = poll(p, 2, 100);
226         if (n > 0) {
227             /* first try RTCP */
228             if (p[1].revents & POLLIN) {
229                 from_len = sizeof(from);
230                 len = recvfrom (s->rtcp_fd, buf, size, 0,
231                                 (struct sockaddr *)&from, &from_len);
232                 if (len < 0) {
233                     if (ff_neterrno() == AVERROR(EAGAIN) ||
234                         ff_neterrno() == AVERROR(EINTR))
235                         continue;
236                     return AVERROR(EIO);
237                 }
238                 break;
239             }
240             /* then RTP */
241             if (p[0].revents & POLLIN) {
242                 from_len = sizeof(from);
243                 len = recvfrom (s->rtp_fd, buf, size, 0,
244                                 (struct sockaddr *)&from, &from_len);
245                 if (len < 0) {
246                     if (ff_neterrno() == AVERROR(EAGAIN) ||
247                         ff_neterrno() == AVERROR(EINTR))
248                         continue;
249                     return AVERROR(EIO);
250                 }
251                 break;
252             }
253         } else if (n < 0) {
254             if (ff_neterrno() == AVERROR(EINTR))
255                 continue;
256             return AVERROR(EIO);
257         }
258     }
259     return len;
260 }
261
262 static int rtp_write(URLContext *h, const uint8_t *buf, int size)
263 {
264     RTPContext *s = h->priv_data;
265     int ret;
266     URLContext *hd;
267
268     if (RTP_PT_IS_RTCP(buf[1])) {
269         /* RTCP payload type */
270         hd = s->rtcp_hd;
271     } else {
272         /* RTP payload type */
273         hd = s->rtp_hd;
274     }
275
276     ret = ffurl_write(hd, buf, size);
277     return ret;
278 }
279
280 static int rtp_close(URLContext *h)
281 {
282     RTPContext *s = h->priv_data;
283
284     ffurl_close(s->rtp_hd);
285     ffurl_close(s->rtcp_hd);
286     return 0;
287 }
288
289 /**
290  * Return the local rtp port used by the RTP connection
291  * @param h media file context
292  * @return the local port number
293  */
294
295 int ff_rtp_get_local_rtp_port(URLContext *h)
296 {
297     RTPContext *s = h->priv_data;
298     return ff_udp_get_local_port(s->rtp_hd);
299 }
300
301 /**
302  * Return the local rtcp port used by the RTP connection
303  * @param h media file context
304  * @return the local port number
305  */
306
307 int ff_rtp_get_local_rtcp_port(URLContext *h)
308 {
309     RTPContext *s = h->priv_data;
310     return ff_udp_get_local_port(s->rtcp_hd);
311 }
312
313 static int rtp_get_file_handle(URLContext *h)
314 {
315     RTPContext *s = h->priv_data;
316     return s->rtp_fd;
317 }
318
319 static int rtp_get_multi_file_handle(URLContext *h, int **handles,
320                                      int *numhandles)
321 {
322     RTPContext *s = h->priv_data;
323     int *hs       = *handles = av_malloc(sizeof(**handles) * 2);
324     if (!hs)
325         return AVERROR(ENOMEM);
326     hs[0] = s->rtp_fd;
327     hs[1] = s->rtcp_fd;
328     *numhandles = 2;
329     return 0;
330 }
331
332 URLProtocol ff_rtp_protocol = {
333     .name                      = "rtp",
334     .url_open                  = rtp_open,
335     .url_read                  = rtp_read,
336     .url_write                 = rtp_write,
337     .url_close                 = rtp_close,
338     .url_get_file_handle       = rtp_get_file_handle,
339     .url_get_multi_file_handle = rtp_get_multi_file_handle,
340     .priv_data_size            = sizeof(RTPContext),
341     .flags                     = URL_PROTOCOL_FLAG_NETWORK,
342 };