]> git.sesse.net Git - ffmpeg/blob - libavformat/sapenc.c
mxfdec: let pkt->pts = mxf->current_edit_unit if intra-only
[ffmpeg] / libavformat / sapenc.c
1 /*
2  * Session Announcement Protocol (RFC 2974) muxer
3  * Copyright (c) 2010 Martin Storsjo
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "avformat.h"
23 #include "libavutil/parseutils.h"
24 #include "libavutil/random_seed.h"
25 #include "libavutil/avstring.h"
26 #include "libavutil/intreadwrite.h"
27 #include "internal.h"
28 #include "network.h"
29 #include "os_support.h"
30 #include "rtpenc_chain.h"
31 #include "url.h"
32
33 struct SAPState {
34     uint8_t    *ann;
35     int         ann_size;
36     URLContext *ann_fd;
37     int64_t     last_time;
38 };
39
40 static int sap_write_close(AVFormatContext *s)
41 {
42     struct SAPState *sap = s->priv_data;
43     int i;
44
45     for (i = 0; i < s->nb_streams; i++) {
46         AVFormatContext *rtpctx = s->streams[i]->priv_data;
47         if (!rtpctx)
48             continue;
49         av_write_trailer(rtpctx);
50         avio_close(rtpctx->pb);
51         avformat_free_context(rtpctx);
52         s->streams[i]->priv_data = NULL;
53     }
54
55     if (sap->last_time && sap->ann && sap->ann_fd) {
56         sap->ann[0] |= 4; /* Session deletion*/
57         ffurl_write(sap->ann_fd, sap->ann, sap->ann_size);
58     }
59
60     av_freep(&sap->ann);
61     if (sap->ann_fd)
62         ffurl_close(sap->ann_fd);
63     ff_network_close();
64     return 0;
65 }
66
67 static int sap_write_header(AVFormatContext *s)
68 {
69     struct SAPState *sap = s->priv_data;
70     char host[1024], path[1024], url[1024], announce_addr[50] = "";
71     char *option_list;
72     int port = 9875, base_port = 5004, i, pos = 0, same_port = 0, ttl = 255;
73     AVFormatContext **contexts = NULL;
74     int ret = 0;
75     struct sockaddr_storage localaddr;
76     socklen_t addrlen = sizeof(localaddr);
77     int udp_fd;
78
79     if (!ff_network_init())
80         return AVERROR(EIO);
81
82     /* extract hostname and port */
83     av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &base_port,
84                  path, sizeof(path), s->filename);
85     if (base_port < 0)
86         base_port = 5004;
87
88     /* search for options */
89     option_list = strrchr(path, '?');
90     if (option_list) {
91         char buf[50];
92         if (av_find_info_tag(buf, sizeof(buf), "announce_port", option_list)) {
93             port = strtol(buf, NULL, 10);
94         }
95         if (av_find_info_tag(buf, sizeof(buf), "same_port", option_list)) {
96             same_port = strtol(buf, NULL, 10);
97         }
98         if (av_find_info_tag(buf, sizeof(buf), "ttl", option_list)) {
99             ttl = strtol(buf, NULL, 10);
100         }
101         if (av_find_info_tag(buf, sizeof(buf), "announce_addr", option_list)) {
102             av_strlcpy(announce_addr, buf, sizeof(announce_addr));
103         }
104     }
105
106     if (!announce_addr[0]) {
107         struct addrinfo hints = { 0 }, *ai = NULL;
108         hints.ai_family = AF_UNSPEC;
109         if (getaddrinfo(host, NULL, &hints, &ai)) {
110             av_log(s, AV_LOG_ERROR, "Unable to resolve %s\n", host);
111             ret = AVERROR(EIO);
112             goto fail;
113         }
114         if (ai->ai_family == AF_INET) {
115             /* Also known as sap.mcast.net */
116             av_strlcpy(announce_addr, "224.2.127.254", sizeof(announce_addr));
117 #if HAVE_STRUCT_SOCKADDR_IN6
118         } else if (ai->ai_family == AF_INET6) {
119             /* With IPv6, you can use the same destination in many different
120              * multicast subnets, to choose how far you want it routed.
121              * This one is intended to be routed globally. */
122             av_strlcpy(announce_addr, "ff0e::2:7ffe", sizeof(announce_addr));
123 #endif
124         } else {
125             freeaddrinfo(ai);
126             av_log(s, AV_LOG_ERROR, "Host %s resolved to unsupported "
127                                     "address family\n", host);
128             ret = AVERROR(EIO);
129             goto fail;
130         }
131         freeaddrinfo(ai);
132     }
133
134     contexts = av_mallocz(sizeof(AVFormatContext*) * s->nb_streams);
135     if (!contexts) {
136         ret = AVERROR(ENOMEM);
137         goto fail;
138     }
139
140     s->start_time_realtime = av_gettime();
141     for (i = 0; i < s->nb_streams; i++) {
142         URLContext *fd;
143
144         ff_url_join(url, sizeof(url), "rtp", NULL, host, base_port,
145                     "?ttl=%d", ttl);
146         if (!same_port)
147             base_port += 2;
148         ret = ffurl_open(&fd, url, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL);
149         if (ret) {
150             ret = AVERROR(EIO);
151             goto fail;
152         }
153         ret = ff_rtp_chain_mux_open(&contexts[i], s, s->streams[i], fd, 0);
154         if (ret < 0)
155             goto fail;
156         s->streams[i]->priv_data = contexts[i];
157         av_strlcpy(contexts[i]->filename, url, sizeof(contexts[i]->filename));
158     }
159
160     ff_url_join(url, sizeof(url), "udp", NULL, announce_addr, port,
161                 "?ttl=%d&connect=1", ttl);
162     ret = ffurl_open(&sap->ann_fd, url, AVIO_FLAG_WRITE,
163                      &s->interrupt_callback, NULL);
164     if (ret) {
165         ret = AVERROR(EIO);
166         goto fail;
167     }
168
169     udp_fd = ffurl_get_file_handle(sap->ann_fd);
170     if (getsockname(udp_fd, (struct sockaddr*) &localaddr, &addrlen)) {
171         ret = AVERROR(EIO);
172         goto fail;
173     }
174     if (localaddr.ss_family != AF_INET
175 #if HAVE_STRUCT_SOCKADDR_IN6
176         && localaddr.ss_family != AF_INET6
177 #endif
178         ) {
179         av_log(s, AV_LOG_ERROR, "Unsupported protocol family\n");
180         ret = AVERROR(EIO);
181         goto fail;
182     }
183     sap->ann_size = 8192;
184     sap->ann = av_mallocz(sap->ann_size);
185     if (!sap->ann) {
186         ret = AVERROR(EIO);
187         goto fail;
188     }
189     sap->ann[pos] = (1 << 5);
190 #if HAVE_STRUCT_SOCKADDR_IN6
191     if (localaddr.ss_family == AF_INET6)
192         sap->ann[pos] |= 0x10;
193 #endif
194     pos++;
195     sap->ann[pos++] = 0; /* Authentication length */
196     AV_WB16(&sap->ann[pos], av_get_random_seed());
197     pos += 2;
198     if (localaddr.ss_family == AF_INET) {
199         memcpy(&sap->ann[pos], &((struct sockaddr_in*)&localaddr)->sin_addr,
200                sizeof(struct in_addr));
201         pos += sizeof(struct in_addr);
202 #if HAVE_STRUCT_SOCKADDR_IN6
203     } else {
204         memcpy(&sap->ann[pos], &((struct sockaddr_in6*)&localaddr)->sin6_addr,
205                sizeof(struct in6_addr));
206         pos += sizeof(struct in6_addr);
207 #endif
208     }
209
210     av_strlcpy(&sap->ann[pos], "application/sdp", sap->ann_size - pos);
211     pos += strlen(&sap->ann[pos]) + 1;
212
213     if (av_sdp_create(contexts, s->nb_streams, &sap->ann[pos],
214                       sap->ann_size - pos)) {
215         ret = AVERROR_INVALIDDATA;
216         goto fail;
217     }
218     av_freep(&contexts);
219     av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", &sap->ann[pos]);
220     pos += strlen(&sap->ann[pos]);
221     sap->ann_size = pos;
222
223     if (sap->ann_size > sap->ann_fd->max_packet_size) {
224         av_log(s, AV_LOG_ERROR, "Announcement too large to send in one "
225                                 "packet\n");
226         goto fail;
227     }
228
229     return 0;
230
231 fail:
232     av_free(contexts);
233     sap_write_close(s);
234     return ret;
235 }
236
237 static int sap_write_packet(AVFormatContext *s, AVPacket *pkt)
238 {
239     AVFormatContext *rtpctx;
240     struct SAPState *sap = s->priv_data;
241     int64_t now = av_gettime();
242
243     if (!sap->last_time || now - sap->last_time > 5000000) {
244         int ret = ffurl_write(sap->ann_fd, sap->ann, sap->ann_size);
245         /* Don't abort even if we get "Destination unreachable" */
246         if (ret < 0 && ret != AVERROR(ECONNREFUSED))
247             return ret;
248         sap->last_time = now;
249     }
250     rtpctx = s->streams[pkt->stream_index]->priv_data;
251     return ff_write_chained(rtpctx, 0, pkt, s);
252 }
253
254 AVOutputFormat ff_sap_muxer = {
255     .name              = "sap",
256     .long_name         = NULL_IF_CONFIG_SMALL("SAP output format"),
257     .priv_data_size    = sizeof(struct SAPState),
258     .audio_codec       = CODEC_ID_AAC,
259     .video_codec       = CODEC_ID_MPEG4,
260     .write_header      = sap_write_header,
261     .write_packet      = sap_write_packet,
262     .write_trailer     = sap_write_close,
263     .flags             = AVFMT_NOFILE | AVFMT_GLOBALHEADER,
264 };