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