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