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