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