]> git.sesse.net Git - ffmpeg/blob - libavformat/rtpdec_asf.c
rtpdec: inform jitter buffer size
[ffmpeg] / libavformat / rtpdec_asf.c
1 /*
2  * Microsoft RTP/ASF support.
3  * Copyright (c) 2008 Ronald S. Bultje
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 /**
23  * @file
24  * @brief Microsoft RTP/ASF support
25  * @author Ronald S. Bultje <rbultje@ronald.bitfreak.net>
26  */
27
28 #include "libavutil/base64.h"
29 #include "libavutil/avstring.h"
30 #include "libavutil/intreadwrite.h"
31 #include "rtp.h"
32 #include "rtpdec_formats.h"
33 #include "rtsp.h"
34 #include "asf.h"
35 #include "avio_internal.h"
36 #include "internal.h"
37
38 /**
39  * From MSDN 2.2.1.4, we learn that ASF data packets over RTP should not
40  * contain any padding. Unfortunately, the header min/max_pktsize are not
41  * updated (thus making min_pktsize invalid). Here, we "fix" these faulty
42  * min_pktsize values in the ASF file header.
43  * @return 0 on success, <0 on failure (currently -1).
44  */
45 static int rtp_asf_fix_header(uint8_t *buf, int len)
46 {
47     uint8_t *p = buf, *end = buf + len;
48
49     if (len < sizeof(ff_asf_guid) * 2 + 22 ||
50         memcmp(p, ff_asf_header, sizeof(ff_asf_guid))) {
51         return -1;
52     }
53     p += sizeof(ff_asf_guid) + 14;
54     do {
55         uint64_t chunksize = AV_RL64(p + sizeof(ff_asf_guid));
56         if (memcmp(p, ff_asf_file_header, sizeof(ff_asf_guid))) {
57             if (chunksize > end - p)
58                 return -1;
59             p += chunksize;
60             continue;
61         }
62
63         /* skip most of the file header, to min_pktsize */
64         p += 6 * 8 + 3 * 4 + sizeof(ff_asf_guid) * 2;
65         if (p + 8 <= end && AV_RL32(p) == AV_RL32(p + 4)) {
66             /* and set that to zero */
67             AV_WL32(p, 0);
68             return 0;
69         }
70         break;
71     } while (end - p >= sizeof(ff_asf_guid) + 8);
72
73     return -1;
74 }
75
76 /**
77  * The following code is basically a buffered AVIOContext,
78  * with the added benefit of returning -EAGAIN (instead of 0)
79  * on packet boundaries, such that the ASF demuxer can return
80  * safely and resume business at the next packet.
81  */
82 static int packetizer_read(void *opaque, uint8_t *buf, int buf_size)
83 {
84     return AVERROR(EAGAIN);
85 }
86
87 static void init_packetizer(AVIOContext *pb, uint8_t *buf, int len)
88 {
89     ffio_init_context(pb, buf, len, 0, NULL, packetizer_read, NULL, NULL);
90
91     /* this "fills" the buffer with its current content */
92     pb->pos     = len;
93     pb->buf_end = buf + len;
94 }
95
96 int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p)
97 {
98     int ret = 0;
99     if (av_strstart(p, "pgmpu:data:application/vnd.ms.wms-hdr.asfv1;base64,", &p)) {
100         AVIOContext pb;
101         RTSPState *rt = s->priv_data;
102         AVDictionary *opts = NULL;
103         int len = strlen(p) * 6 / 8;
104         char *buf = av_mallocz(len);
105
106         if (!buf)
107             return AVERROR(ENOMEM);
108         av_base64_decode(buf, p, len);
109
110         if (rtp_asf_fix_header(buf, len) < 0)
111             av_log(s, AV_LOG_ERROR,
112                    "Failed to fix invalid RTSP-MS/ASF min_pktsize\n");
113         init_packetizer(&pb, buf, len);
114         if (rt->asf_ctx) {
115             avformat_close_input(&rt->asf_ctx);
116         }
117         rt->asf_ctx = avformat_alloc_context();
118         if (!rt->asf_ctx) {
119             av_free(buf);
120             return AVERROR(ENOMEM);
121         }
122         rt->asf_ctx->pb      = &pb;
123         av_dict_set(&opts, "no_resync_search", "1", 0);
124         ret = avformat_open_input(&rt->asf_ctx, "", &ff_asf_demuxer, &opts);
125         av_dict_free(&opts);
126         if (ret < 0) {
127             av_free(buf);
128             return ret;
129         }
130         av_dict_copy(&s->metadata, rt->asf_ctx->metadata, 0);
131         rt->asf_pb_pos = avio_tell(&pb);
132         av_free(buf);
133         rt->asf_ctx->pb = NULL;
134     }
135     return ret;
136 }
137
138 static int asfrtp_parse_sdp_line(AVFormatContext *s, int stream_index,
139                                  PayloadContext *asf, const char *line)
140 {
141     if (stream_index < 0)
142         return 0;
143     if (av_strstart(line, "stream:", &line)) {
144         RTSPState *rt = s->priv_data;
145
146         s->streams[stream_index]->id = strtol(line, NULL, 10);
147
148         if (rt->asf_ctx) {
149             int i;
150
151             for (i = 0; i < rt->asf_ctx->nb_streams; i++) {
152                 if (s->streams[stream_index]->id == rt->asf_ctx->streams[i]->id) {
153                     *s->streams[stream_index]->codec =
154                         *rt->asf_ctx->streams[i]->codec;
155                     s->streams[stream_index]->need_parsing =
156                         rt->asf_ctx->streams[i]->need_parsing;
157                     rt->asf_ctx->streams[i]->codec->extradata_size = 0;
158                     rt->asf_ctx->streams[i]->codec->extradata = NULL;
159                     avpriv_set_pts_info(s->streams[stream_index], 32, 1, 1000);
160                 }
161            }
162         }
163     }
164
165     return 0;
166 }
167
168 struct PayloadContext {
169     AVIOContext *pktbuf, pb;
170     uint8_t *buf;
171 };
172
173 /**
174  * @return 0 when a packet was written into /p pkt, and no more data is left;
175  *         1 when a packet was written into /p pkt, and more packets might be left;
176  *        <0 when not enough data was provided to return a full packet, or on error.
177  */
178 static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
179                                AVStream *st, AVPacket *pkt,
180                                uint32_t *timestamp,
181                                const uint8_t *buf, int len, uint16_t seq,
182                                int flags)
183 {
184     AVIOContext *pb = &asf->pb;
185     int res, mflags, len_off;
186     RTSPState *rt = s->priv_data;
187
188     if (!rt->asf_ctx)
189         return -1;
190
191     if (len > 0) {
192         int off, out_len = 0;
193
194         if (len < 4)
195             return -1;
196
197         av_freep(&asf->buf);
198
199         ffio_init_context(pb, buf, len, 0, NULL, NULL, NULL, NULL);
200
201         while (avio_tell(pb) + 4 < len) {
202             int start_off = avio_tell(pb);
203
204             mflags = avio_r8(pb);
205             len_off = avio_rb24(pb);
206             if (mflags & 0x20)   /**< relative timestamp */
207                 avio_skip(pb, 4);
208             if (mflags & 0x10)   /**< has duration */
209                 avio_skip(pb, 4);
210             if (mflags & 0x8)    /**< has location ID */
211                 avio_skip(pb, 4);
212             off = avio_tell(pb);
213
214             if (!(mflags & 0x40)) {
215                 /**
216                  * If 0x40 is not set, the len_off field specifies an offset
217                  * of this packet's payload data in the complete (reassembled)
218                  * ASF packet. This is used to spread one ASF packet over
219                  * multiple RTP packets.
220                  */
221                 if (asf->pktbuf && len_off != avio_tell(asf->pktbuf)) {
222                     ffio_free_dyn_buf(&asf->pktbuf);
223                 }
224                 if (!len_off && !asf->pktbuf &&
225                     (res = avio_open_dyn_buf(&asf->pktbuf)) < 0)
226                     return res;
227                 if (!asf->pktbuf)
228                     return AVERROR(EIO);
229
230                 avio_write(asf->pktbuf, buf + off, len - off);
231                 avio_skip(pb, len - off);
232                 if (!(flags & RTP_FLAG_MARKER))
233                     return -1;
234                 out_len     = avio_close_dyn_buf(asf->pktbuf, &asf->buf);
235                 asf->pktbuf = NULL;
236             } else {
237                 /**
238                  * If 0x40 is set, the len_off field specifies the length of
239                  * the next ASF packet that can be read from this payload
240                  * data alone. This is commonly the same as the payload size,
241                  * but could be less in case of packet splitting (i.e.
242                  * multiple ASF packets in one RTP packet).
243                  */
244
245                 int cur_len = start_off + len_off - off;
246                 int prev_len = out_len;
247                 out_len += cur_len;
248                 if (FFMIN(cur_len, len - off) < 0)
249                     return -1;
250                 if ((res = av_reallocp(&asf->buf, out_len)) < 0)
251                     return res;
252                 memcpy(asf->buf + prev_len, buf + off,
253                        FFMIN(cur_len, len - off));
254                 avio_skip(pb, cur_len);
255             }
256         }
257
258         init_packetizer(pb, asf->buf, out_len);
259         pb->pos += rt->asf_pb_pos;
260         pb->eof_reached = 0;
261         rt->asf_ctx->pb = pb;
262     }
263
264     for (;;) {
265         int i;
266
267         res = ff_read_packet(rt->asf_ctx, pkt);
268         rt->asf_pb_pos = avio_tell(pb);
269         if (res != 0)
270             break;
271         for (i = 0; i < s->nb_streams; i++) {
272             if (s->streams[i]->id == rt->asf_ctx->streams[pkt->stream_index]->id) {
273                 pkt->stream_index = i;
274                 return 1; // FIXME: return 0 if last packet
275             }
276         }
277         av_free_packet(pkt);
278     }
279
280     return res == 1 ? -1 : res;
281 }
282
283 static void asfrtp_close_context(PayloadContext *asf)
284 {
285     ffio_free_dyn_buf(&asf->pktbuf);
286     av_freep(&asf->buf);
287 }
288
289 #define RTP_ASF_HANDLER(n, s, t) \
290 RTPDynamicProtocolHandler ff_ms_rtp_ ## n ## _handler = { \
291     .enc_name         = s, \
292     .codec_type       = t, \
293     .codec_id         = AV_CODEC_ID_NONE, \
294     .priv_data_size   = sizeof(PayloadContext), \
295     .parse_sdp_a_line = asfrtp_parse_sdp_line, \
296     .close            = asfrtp_close_context, \
297     .parse_packet     = asfrtp_parse_packet,   \
298 }
299
300 RTP_ASF_HANDLER(asf_pfv, "x-asf-pf",  AVMEDIA_TYPE_VIDEO);
301 RTP_ASF_HANDLER(asf_pfa, "x-asf-pf",  AVMEDIA_TYPE_AUDIO);