2 * Microsoft RTP/ASF support.
3 * Copyright (c) 2008 Ronald S. Bultje
5 * This file is part of FFmpeg.
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.
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.
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
24 * @brief Microsoft RTP/ASF support
25 * @author Ronald S. Bultje <rbultje@ronald.bitfreak.net>
28 #include "libavutil/avassert.h"
29 #include "libavutil/base64.h"
30 #include "libavutil/avstring.h"
31 #include "libavutil/intreadwrite.h"
33 #include "rtpdec_formats.h"
36 #include "avio_internal.h"
40 * From MSDN 2.2.1.4, we learn that ASF data packets over RTP should not
41 * contain any padding. Unfortunately, the header min/max_pktsize are not
42 * updated (thus making min_pktsize invalid). Here, we "fix" these faulty
43 * min_pktsize values in the ASF file header.
44 * @return 0 on success, <0 on failure (currently -1).
46 static int rtp_asf_fix_header(uint8_t *buf, int len)
48 uint8_t *p = buf, *end = buf + len;
50 if (len < sizeof(ff_asf_guid) * 2 + 22 ||
51 memcmp(p, ff_asf_header, sizeof(ff_asf_guid))) {
54 p += sizeof(ff_asf_guid) + 14;
56 uint64_t chunksize = AV_RL64(p + sizeof(ff_asf_guid));
57 int skip = 6 * 8 + 3 * 4 + sizeof(ff_asf_guid) * 2;
58 if (memcmp(p, ff_asf_file_header, sizeof(ff_asf_guid))) {
59 if (chunksize > end - p)
65 if (end - p < 8 + skip)
67 /* skip most of the file header, to min_pktsize */
69 if (AV_RL32(p) == AV_RL32(p + 4)) {
70 /* and set that to zero */
75 } while (end - p >= sizeof(ff_asf_guid) + 8);
81 * The following code is basically a buffered AVIOContext,
82 * with the added benefit of returning -EAGAIN (instead of 0)
83 * on packet boundaries, such that the ASF demuxer can return
84 * safely and resume business at the next packet.
86 static int packetizer_read(void *opaque, uint8_t *buf, int buf_size)
88 return AVERROR(EAGAIN);
91 static void init_packetizer(AVIOContext *pb, uint8_t *buf, int len)
93 ffio_init_context(pb, buf, len, 0, NULL, packetizer_read, NULL, NULL);
95 /* this "fills" the buffer with its current content */
97 pb->buf_end = buf + len;
100 int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p)
103 if (av_strstart(p, "pgmpu:data:application/vnd.ms.wms-hdr.asfv1;base64,", &p)) {
105 RTSPState *rt = s->priv_data;
106 AVDictionary *opts = NULL;
107 int len = strlen(p) * 6 / 8;
108 char *buf = av_mallocz(len);
109 AVInputFormat *iformat;
112 return AVERROR(ENOMEM);
113 av_base64_decode(buf, p, len);
115 if (rtp_asf_fix_header(buf, len) < 0)
116 av_log(s, AV_LOG_ERROR,
117 "Failed to fix invalid RTSP-MS/ASF min_pktsize\n");
118 init_packetizer(&pb, buf, len);
120 avformat_close_input(&rt->asf_ctx);
123 if (!(iformat = av_find_input_format("asf")))
124 return AVERROR_DEMUXER_NOT_FOUND;
126 rt->asf_ctx = avformat_alloc_context();
129 return AVERROR(ENOMEM);
131 rt->asf_ctx->pb = &pb;
132 av_dict_set(&opts, "no_resync_search", "1", 0);
134 if ((ret = ff_copy_whitelists(rt->asf_ctx, s)) < 0) {
139 ret = avformat_open_input(&rt->asf_ctx, "", iformat, &opts);
145 av_dict_copy(&s->metadata, rt->asf_ctx->metadata, 0);
146 rt->asf_pb_pos = avio_tell(&pb);
148 rt->asf_ctx->pb = NULL;
153 static int asfrtp_parse_sdp_line(AVFormatContext *s, int stream_index,
154 PayloadContext *asf, const char *line)
156 if (stream_index < 0)
158 if (av_strstart(line, "stream:", &line)) {
159 RTSPState *rt = s->priv_data;
161 s->streams[stream_index]->id = strtol(line, NULL, 10);
166 for (i = 0; i < rt->asf_ctx->nb_streams; i++) {
167 if (s->streams[stream_index]->id == rt->asf_ctx->streams[i]->id) {
168 *s->streams[stream_index]->codec =
169 *rt->asf_ctx->streams[i]->codec;
170 s->streams[stream_index]->need_parsing =
171 rt->asf_ctx->streams[i]->need_parsing;
172 rt->asf_ctx->streams[i]->codec->extradata_size = 0;
173 rt->asf_ctx->streams[i]->codec->extradata = NULL;
174 avpriv_set_pts_info(s->streams[stream_index], 32, 1, 1000);
183 struct PayloadContext {
184 AVIOContext *pktbuf, pb;
189 * @return 0 when a packet was written into /p pkt, and no more data is left;
190 * 1 when a packet was written into /p pkt, and more packets might be left;
191 * <0 when not enough data was provided to return a full packet, or on error.
193 static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
194 AVStream *st, AVPacket *pkt,
196 const uint8_t *buf, int len, uint16_t seq,
199 AVIOContext *pb = &asf->pb;
200 int res, mflags, len_off;
201 RTSPState *rt = s->priv_data;
207 int off, out_len = 0;
214 ffio_init_context(pb, (uint8_t *)buf, len, 0, NULL, NULL, NULL, NULL);
216 while (avio_tell(pb) + 4 < len) {
217 int start_off = avio_tell(pb);
219 mflags = avio_r8(pb);
220 len_off = avio_rb24(pb);
221 if (mflags & 0x20) /**< relative timestamp */
223 if (mflags & 0x10) /**< has duration */
225 if (mflags & 0x8) /**< has location ID */
229 if (!(mflags & 0x40)) {
231 * If 0x40 is not set, the len_off field specifies an offset
232 * of this packet's payload data in the complete (reassembled)
233 * ASF packet. This is used to spread one ASF packet over
234 * multiple RTP packets.
236 if (asf->pktbuf && len_off != avio_tell(asf->pktbuf)) {
237 ffio_free_dyn_buf(&asf->pktbuf);
239 if (!len_off && !asf->pktbuf &&
240 (res = avio_open_dyn_buf(&asf->pktbuf)) < 0)
245 avio_write(asf->pktbuf, buf + off, len - off);
246 avio_skip(pb, len - off);
247 if (!(flags & RTP_FLAG_MARKER))
249 out_len = avio_close_dyn_buf(asf->pktbuf, &asf->buf);
253 * If 0x40 is set, the len_off field specifies the length of
254 * the next ASF packet that can be read from this payload
255 * data alone. This is commonly the same as the payload size,
256 * but could be less in case of packet splitting (i.e.
257 * multiple ASF packets in one RTP packet).
260 int cur_len = start_off + len_off - off;
261 int prev_len = out_len;
263 if (FFMIN(cur_len, len - off) < 0)
265 if ((res = av_reallocp(&asf->buf, out_len)) < 0)
267 memcpy(asf->buf + prev_len, buf + off,
268 FFMIN(cur_len, len - off));
269 avio_skip(pb, cur_len);
273 init_packetizer(pb, asf->buf, out_len);
274 pb->pos += rt->asf_pb_pos;
276 rt->asf_ctx->pb = pb;
282 res = ff_read_packet(rt->asf_ctx, pkt);
283 rt->asf_pb_pos = avio_tell(pb);
286 for (i = 0; i < s->nb_streams; i++) {
287 if (s->streams[i]->id == rt->asf_ctx->streams[pkt->stream_index]->id) {
288 pkt->stream_index = i;
289 return 1; // FIXME: return 0 if last packet
295 return res == 1 ? -1 : res;
298 static void asfrtp_close_context(PayloadContext *asf)
300 ffio_free_dyn_buf(&asf->pktbuf);
304 #define RTP_ASF_HANDLER(n, s, t) \
305 RTPDynamicProtocolHandler ff_ms_rtp_ ## n ## _handler = { \
308 .codec_id = AV_CODEC_ID_NONE, \
309 .priv_data_size = sizeof(PayloadContext), \
310 .parse_sdp_a_line = asfrtp_parse_sdp_line, \
311 .close = asfrtp_close_context, \
312 .parse_packet = asfrtp_parse_packet, \
315 RTP_ASF_HANDLER(asf_pfv, "x-asf-pf", AVMEDIA_TYPE_VIDEO);
316 RTP_ASF_HANDLER(asf_pfa, "x-asf-pf", AVMEDIA_TYPE_AUDIO);