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