Mercurial > audlegacy-plugins
annotate src/wma/libffwma/asf.c @ 2158:c15aa8c048f4
Added tag audacious-plugins-1.4.0 for changeset 6151338f5af7
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Tue, 06 Nov 2007 15:11:03 -0600 |
parents | 55703f60fd54 |
children | a2093254960a |
rev | line source |
---|---|
878 | 1 /* |
2 * ASF compatible encoder and decoder. | |
3 * Copyright (c) 2000, 2001 Fabrice Bellard. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
18 */ | |
19 #include "avcodec.h" | |
20 #include "avformat.h" | |
21 #include "avi.h" | |
22 #include "utils.h" | |
23 | |
24 #include <assert.h> | |
25 #define MPA_FRAME_SIZE 1152 | |
26 #define PACKET_SIZE 3200 | |
27 #define PACKET_HEADER_SIZE 12 | |
28 #define FRAME_HEADER_SIZE 17 | |
29 | |
30 typedef struct { | |
31 int num; | |
32 int seq; | |
33 /* use for reading */ | |
34 AVPacket pkt; | |
35 int frag_offset; | |
36 int timestamp; | |
37 int64_t duration; | |
38 | |
39 int ds_span; /* descrambling */ | |
40 int ds_packet_size; | |
41 int ds_chunk_size; | |
42 int ds_data_size; | |
43 int ds_silence_data; | |
44 | |
45 int packet_pos; | |
46 | |
47 } ASFStream; | |
48 | |
49 typedef struct { | |
50 uint32_t v1; | |
51 uint16_t v2; | |
52 uint16_t v3; | |
53 uint8_t v4[8]; | |
54 } GUID; | |
55 | |
56 typedef struct { | |
57 GUID guid; // generated by client computer | |
58 uint64_t file_size; // in bytes | |
59 // invalid if broadcasting | |
60 uint64_t create_time; // time of creation, in 100-nanosecond units since 1.1.1601 | |
61 // invalid if broadcasting | |
62 uint64_t packets_count; // how many packets are there in the file | |
63 // invalid if broadcasting | |
64 uint64_t play_time; // play time, in 100-nanosecond units | |
65 // invalid if broadcasting | |
66 uint64_t send_time; // time to send file, in 100-nanosecond units | |
67 // invalid if broadcasting (could be ignored) | |
68 uint32_t preroll; // timestamp of the first packet, in milliseconds | |
69 // if nonzero - substract from time | |
70 uint32_t ignore; // preroll is 64bit - but let's just ignore it | |
71 uint32_t flags; // 0x01 - broadcast | |
72 // 0x02 - seekable | |
73 // rest is reserved should be 0 | |
74 uint32_t min_pktsize; // size of a data packet | |
75 // invalid if broadcasting | |
76 uint32_t max_pktsize; // shall be the same as for min_pktsize | |
77 // invalid if broadcasting | |
78 uint32_t max_bitrate; // bandwith of stream in bps | |
79 // should be the sum of bitrates of the | |
80 // individual media streams | |
81 } ASFMainHeader; | |
82 | |
83 | |
84 typedef struct { | |
85 int seqno; | |
86 int packet_size; | |
87 int is_streamed; | |
88 int asfid2avid[128]; /* conversion table from asf ID 2 AVStream ID */ | |
89 ASFStream streams[128]; /* it's max number and it's not that big */ | |
90 /* non streamed additonnal info */ | |
91 int64_t nb_packets; | |
92 int64_t duration; /* in 100ns units */ | |
93 /* packet filling */ | |
94 int packet_size_left; | |
95 int packet_timestamp_start; | |
96 int packet_timestamp_end; | |
97 int packet_nb_frames; | |
98 uint8_t packet_buf[PACKET_SIZE]; | |
99 ByteIOContext pb; | |
100 /* only for reading */ | |
101 uint64_t data_offset; /* begining of the first data packet */ | |
102 | |
103 ASFMainHeader hdr; | |
104 | |
105 int packet_flags; | |
106 int packet_property; | |
107 int packet_timestamp; | |
108 int packet_segsizetype; | |
109 int packet_segments; | |
110 int packet_seq; | |
111 int packet_replic_size; | |
112 int packet_key_frame; | |
113 int packet_padsize; | |
114 int packet_frag_offset; | |
115 int packet_frag_size; | |
116 int packet_frag_timestamp; | |
117 int packet_multi_size; | |
118 int packet_obj_size; | |
119 int packet_time_delta; | |
120 int packet_time_start; | |
121 int packet_pos; | |
122 | |
123 int stream_index; | |
124 ASFStream* asf_st; /* currently decoded stream */ | |
125 } ASFContext; | |
126 | |
127 static const GUID asf_header = { | |
128 0x75B22630, 0x668E, 0x11CF, { 0xA6, 0xD9, 0x00, 0xAA, 0x00, 0x62, 0xCE, 0x6C }, | |
129 }; | |
130 | |
131 static const GUID file_header = { | |
132 0x8CABDCA1, 0xA947, 0x11CF, { 0x8E, 0xE4, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 }, | |
133 }; | |
134 | |
135 static const GUID stream_header = { | |
136 0xB7DC0791, 0xA9B7, 0x11CF, { 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 }, | |
137 }; | |
138 | |
139 static const GUID audio_stream = { | |
140 0xF8699E40, 0x5B4D, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B }, | |
141 }; | |
142 | |
143 static const GUID audio_conceal_none = { | |
144 // 0x49f1a440, 0x4ece, 0x11d0, { 0xa3, 0xac, 0x00, 0xa0, 0xc9, 0x03, 0x48, 0xf6 }, | |
145 // New value lifted from avifile | |
146 0x20fb5700, 0x5b55, 0x11cf, { 0xa8, 0xfd, 0x00, 0x80, 0x5f, 0x5c, 0x44, 0x2b }, | |
147 }; | |
148 | |
149 | |
150 static const GUID comment_header = { | |
151 0x75b22633, 0x668e, 0x11cf, { 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c }, | |
152 }; | |
153 | |
154 static const GUID codec_comment_header = { | |
155 0x86D15240, 0x311D, 0x11D0, { 0xA3, 0xA4, 0x00, 0xA0, 0xC9, 0x03, 0x48, 0xF6 }, | |
156 }; | |
157 static const GUID codec_comment1_header = { | |
158 0x86d15241, 0x311d, 0x11d0, { 0xa3, 0xa4, 0x00, 0xa0, 0xc9, 0x03, 0x48, 0xf6 }, | |
159 }; | |
160 | |
161 static const GUID data_header = { | |
162 0x75b22636, 0x668e, 0x11cf, { 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c }, | |
163 }; | |
164 | |
165 static const GUID index_guid = { | |
166 0x33000890, 0xe5b1, 0x11cf, { 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb }, | |
167 }; | |
168 | |
169 static const GUID head1_guid = { | |
170 0x5fbf03b5, 0xa92e, 0x11cf, { 0x8e, 0xe3, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65 }, | |
171 }; | |
172 | |
173 static const GUID head2_guid = { | |
174 0xabd3d211, 0xa9ba, 0x11cf, { 0x8e, 0xe6, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65 }, | |
175 }; | |
176 | |
177 static const GUID extended_content_header = { | |
178 0xD2D0A440, 0xE307, 0x11D2, { 0x97, 0xF0, 0x00, 0xA0, 0xC9, 0x5E, 0xA8, 0x50 }, | |
179 }; | |
180 | |
181 /* I am not a number !!! This GUID is the one found on the PC used to | |
182 generate the stream */ | |
183 static const GUID my_guid = { | |
184 0, 0, 0, { 0, 0, 0, 0, 0, 0, 0, 0 }, | |
185 }; | |
186 | |
187 const CodecTag codec_wav_tags[] = { | |
188 /* { CODEC_ID_MP2, 0x50 }, | |
189 { CODEC_ID_MP3, 0x55 }, | |
190 { CODEC_ID_AC3, 0x2000 }, | |
191 { CODEC_ID_PCM_S16LE, 0x01 }, | |
192 { CODEC_ID_PCM_U8, 0x01 }, | |
193 { CODEC_ID_PCM_ALAW, 0x06 }, | |
194 { CODEC_ID_PCM_MULAW, 0x07 }, | |
195 { CODEC_ID_ADPCM_MS, 0x02 }, | |
196 { CODEC_ID_ADPCM_IMA_WAV, 0x11 }, | |
197 { CODEC_ID_ADPCM_IMA_DK4, 0x61 }, | |
198 { CODEC_ID_ADPCM_IMA_DK3, 0x62 },*/ | |
199 { CODEC_ID_WMAV1, 0x160, 0 }, | |
200 { CODEC_ID_WMAV2, 0x161, 0 }, | |
201 { 0, 0, 0 }, | |
202 }; | |
203 | |
204 enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag) | |
205 { | |
206 while (tags->id != 0) { | |
207 if( toupper((tag >> 0)&0xFF) == toupper((tags->tag >> 0)&0xFF) | |
208 && toupper((tag >> 8)&0xFF) == toupper((tags->tag >> 8)&0xFF) | |
209 && toupper((tag >>16)&0xFF) == toupper((tags->tag >>16)&0xFF) | |
210 && toupper((tag >>24)&0xFF) == toupper((tags->tag >>24)&0xFF)) | |
211 return tags->id; | |
212 tags++; | |
213 } | |
214 return CODEC_ID_NONE; | |
215 } | |
216 | |
217 int wav_codec_get_id(unsigned int tag, int bps) | |
218 { | |
219 int id; | |
220 id = codec_get_id(codec_wav_tags, tag); | |
221 if (id <= 0) | |
222 return id; | |
223 /* handle specific u8 codec */ | |
224 if (id == CODEC_ID_PCM_S16LE && bps == 8) | |
225 id = CODEC_ID_PCM_U8; | |
226 return id; | |
227 } | |
228 | |
229 void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size) | |
230 { | |
231 int id; | |
232 | |
233 id = get_le16(pb); | |
234 codec->codec_type = CODEC_TYPE_AUDIO; | |
235 codec->codec_tag = id; | |
236 codec->channels = get_le16(pb); | |
237 codec->sample_rate = get_le32(pb); | |
238 codec->bit_rate = get_le32(pb) * 8; | |
239 codec->block_align = get_le16(pb); | |
240 if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */ | |
241 codec->bits_per_sample = 8; | |
242 }else | |
243 codec->bits_per_sample = get_le16(pb); | |
244 codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample); | |
245 | |
246 if (size > 16) { /* We're obviously dealing with WAVEFORMATEX */ | |
247 codec->extradata_size = get_le16(pb); | |
248 if (codec->extradata_size > 0) { | |
249 if (codec->extradata_size > size - 18) | |
250 codec->extradata_size = size - 18; | |
251 codec->extradata = av_mallocz(codec->extradata_size); | |
252 get_buffer(pb, codec->extradata, codec->extradata_size); | |
253 } else | |
254 codec->extradata_size = 0; | |
255 | |
256 /* It is possible for the chunk to contain garbage at the end */ | |
257 if (size - codec->extradata_size - 18 > 0) | |
258 url_fskip(pb, size - codec->extradata_size - 18); | |
259 } | |
260 } | |
261 | |
262 /**********************************/ | |
263 /* decoding */ | |
264 | |
265 #ifdef DEBUG | |
266 #define PRINT_IF_GUID(g,cmp) \ | |
267 if (!memcmp(g, &cmp, sizeof(GUID))) \ | |
268 printf("(GUID: %s) ", #cmp) | |
269 | |
270 static void print_guid(const GUID *g) | |
271 { | |
272 int i; | |
273 PRINT_IF_GUID(g, asf_header); | |
274 else PRINT_IF_GUID(g, file_header); | |
275 else PRINT_IF_GUID(g, stream_header); | |
276 else PRINT_IF_GUID(g, audio_stream); | |
277 else PRINT_IF_GUID(g, audio_conceal_none); | |
278 else PRINT_IF_GUID(g, comment_header); | |
279 else PRINT_IF_GUID(g, codec_comment_header); | |
280 else PRINT_IF_GUID(g, codec_comment1_header); | |
281 else PRINT_IF_GUID(g, data_header); | |
282 else PRINT_IF_GUID(g, index_guid); | |
283 else PRINT_IF_GUID(g, head1_guid); | |
284 else PRINT_IF_GUID(g, head2_guid); | |
285 else PRINT_IF_GUID(g, my_guid); | |
286 else | |
287 printf("(GUID: unknown) "); | |
288 printf("0x%08x, 0x%04x, 0x%04x, {", g->v1, g->v2, g->v3); | |
289 for(i=0;i<8;i++) | |
290 printf(" 0x%02x,", g->v4[i]); | |
291 printf("}\n"); | |
292 } | |
293 #undef PRINT_IF_GUID(g,cmp) | |
294 #endif | |
295 | |
296 static void get_guid(ByteIOContext *s, GUID *g) | |
297 { | |
298 int i; | |
299 | |
300 g->v1 = get_le32(s); | |
301 g->v2 = get_le16(s); | |
302 g->v3 = get_le16(s); | |
303 for(i=0;i<8;i++) | |
304 g->v4[i] = get_byte(s); | |
305 } | |
306 | |
307 static void get_str16_nolen(ByteIOContext *pb, int len, char *buf, int buf_size) | |
308 { | |
895
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
309 gchar *ucs, *uptr; |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
310 gchar *tmp; |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
311 int tmplen = len; |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
312 |
1169
55703f60fd54
[svn] - add check for string length before call g_convert(). it may close #962.
yaz
parents:
895
diff
changeset
|
313 g_return_if_fail(len > 0); |
55703f60fd54
[svn] - add check for string length before call g_convert(). it may close #962.
yaz
parents:
895
diff
changeset
|
314 |
895
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
315 ucs = g_malloc0(len); |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
316 uptr = ucs; |
878 | 317 |
895
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
318 while(tmplen > 0) { |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
319 *uptr++ = (gchar)get_byte(pb); |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
320 tmplen--; |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
321 } |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
322 |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
323 tmp = g_convert(ucs, len, "UTF-8", "UCS-2LE", NULL, NULL, NULL); |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
324 g_strlcpy(buf, tmp, buf_size); |
5d7e6f06c9b7
[svn] - now wma can handle wide characters in metadata.
yaz
parents:
878
diff
changeset
|
325 g_free(tmp); |
878 | 326 } |
327 | |
328 static int asf_probe(AVProbeData *pd) | |
329 { | |
330 GUID g; | |
331 const unsigned char *p; | |
332 int i; | |
333 | |
334 /* check file header */ | |
335 if (pd->buf_size <= 32) | |
336 return 0; | |
337 p = pd->buf; | |
338 g.v1 = p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24); | |
339 p += 4; | |
340 g.v2 = p[0] | (p[1] << 8); | |
341 p += 2; | |
342 g.v3 = p[0] | (p[1] << 8); | |
343 p += 2; | |
344 for(i=0;i<8;i++) | |
345 g.v4[i] = *p++; | |
346 | |
347 if (!memcmp(&g, &asf_header, sizeof(GUID))) | |
348 return AVPROBE_SCORE_MAX; | |
349 else | |
350 return 0; | |
351 } | |
352 | |
353 static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap) | |
354 { | |
355 ASFContext *asf = s->priv_data; | |
356 GUID g; | |
357 ByteIOContext *pb = &s->pb; | |
358 AVStream *st; | |
359 ASFStream *asf_st; | |
360 //int size, i; | |
361 int i; | |
362 int64_t gsize; | |
363 | |
364 av_set_pts_info(s, 32, 1, 1000); /* 32 bit pts in ms */ | |
365 | |
366 get_guid(pb, &g); | |
367 if (memcmp(&g, &asf_header, sizeof(GUID))) | |
368 goto fail; | |
369 get_le64(pb); | |
370 get_le32(pb); | |
371 get_byte(pb); | |
372 get_byte(pb); | |
373 memset(&asf->asfid2avid, -1, sizeof(asf->asfid2avid)); | |
374 for(;;) { | |
375 get_guid(pb, &g); | |
376 gsize = get_le64(pb); | |
377 #ifdef DEBUG | |
378 printf("%08Lx: ", url_ftell(pb) - 24); | |
379 print_guid(&g); | |
380 printf(" size=0x%Lx\n", gsize); | |
381 #endif | |
382 if (gsize < 24) | |
383 goto fail; | |
384 if (!memcmp(&g, &file_header, sizeof(GUID))) { | |
385 get_guid(pb, &asf->hdr.guid); | |
386 asf->hdr.file_size = get_le64(pb); | |
387 asf->hdr.create_time = get_le64(pb); | |
388 asf->hdr.packets_count = get_le64(pb); | |
389 asf->hdr.play_time = get_le64(pb); | |
390 asf->hdr.send_time = get_le64(pb); | |
391 asf->hdr.preroll = get_le32(pb); | |
392 asf->hdr.ignore = get_le32(pb); | |
393 asf->hdr.flags = get_le32(pb); | |
394 asf->hdr.min_pktsize = get_le32(pb); | |
395 asf->hdr.max_pktsize = get_le32(pb); | |
396 asf->hdr.max_bitrate = get_le32(pb); | |
397 asf->packet_size = asf->hdr.max_pktsize; | |
398 asf->nb_packets = asf->hdr.packets_count; | |
399 } else if (!memcmp(&g, &stream_header, sizeof(GUID))) { | |
400 int type, total_size, type_specific_size; | |
401 //unsigned int tag1; | |
402 int64_t pos1, pos2; | |
403 | |
404 pos1 = url_ftell(pb); | |
405 | |
406 st = av_new_stream(s, 0); | |
407 if (!st) | |
408 goto fail; | |
409 asf_st = av_mallocz(sizeof(ASFStream)); | |
410 if (!asf_st) | |
411 goto fail; | |
412 st->priv_data = asf_st; | |
413 st->start_time = asf->hdr.preroll / (10000000 / AV_TIME_BASE); | |
414 st->duration = (asf->hdr.send_time - asf->hdr.preroll) / | |
415 (10000000 / AV_TIME_BASE); | |
416 get_guid(pb, &g); | |
417 if (!memcmp(&g, &audio_stream, sizeof(GUID))) { | |
418 type = CODEC_TYPE_AUDIO; | |
419 } else { | |
420 goto fail; | |
421 } | |
422 get_guid(pb, &g); | |
423 total_size = get_le64(pb); | |
424 type_specific_size = get_le32(pb); | |
425 get_le32(pb); | |
426 st->id = get_le16(pb) & 0x7f; /* stream id */ | |
427 // mapping of asf ID to AV stream ID; | |
428 asf->asfid2avid[st->id] = s->nb_streams - 1; | |
429 | |
430 get_le32(pb); | |
431 st->codec.codec_type = type; | |
432 /* 1 fps default (XXX: put 0 fps instead) */ | |
433 st->codec.frame_rate = 1; | |
434 st->codec.frame_rate_base = 1; | |
435 if (type == CODEC_TYPE_AUDIO) { | |
436 get_wav_header(pb, &st->codec, type_specific_size); | |
437 st->need_parsing = 1; | |
438 /* We have to init the frame size at some point .... */ | |
439 pos2 = url_ftell(pb); | |
440 if (gsize > (pos2 + 8 - pos1 + 24)) { | |
441 asf_st->ds_span = get_byte(pb); | |
442 asf_st->ds_packet_size = get_le16(pb); | |
443 asf_st->ds_chunk_size = get_le16(pb); | |
444 asf_st->ds_data_size = get_le16(pb); | |
445 asf_st->ds_silence_data = get_byte(pb); | |
446 } | |
447 //printf("Descrambling: ps:%d cs:%d ds:%d s:%d sd:%d\n", | |
448 // asf_st->ds_packet_size, asf_st->ds_chunk_size, | |
449 // asf_st->ds_data_size, asf_st->ds_span, asf_st->ds_silence_data); | |
450 if (asf_st->ds_span > 1) { | |
451 if (!asf_st->ds_chunk_size | |
452 || (asf_st->ds_packet_size/asf_st->ds_chunk_size <= 1)) | |
453 asf_st->ds_span = 0; // disable descrambling | |
454 } | |
455 switch (st->codec.codec_id) { | |
456 case CODEC_ID_PCM_S16LE: | |
457 case CODEC_ID_PCM_S16BE: | |
458 case CODEC_ID_PCM_U16LE: | |
459 case CODEC_ID_PCM_U16BE: | |
460 case CODEC_ID_PCM_S8: | |
461 case CODEC_ID_PCM_U8: | |
462 case CODEC_ID_PCM_ALAW: | |
463 case CODEC_ID_PCM_MULAW: | |
464 st->codec.frame_size = 1; | |
465 break; | |
466 default: | |
467 /* This is probably wrong, but it prevents a crash later */ | |
468 st->codec.frame_size = 1; | |
469 break; | |
470 } | |
471 } | |
472 pos2 = url_ftell(pb); | |
473 url_fskip(pb, gsize - (pos2 - pos1 + 24)); | |
474 } else if (!memcmp(&g, &data_header, sizeof(GUID))) { | |
475 break; | |
476 } else if (!memcmp(&g, &comment_header, sizeof(GUID))) { | |
477 int len1, len2, len3, len4, len5; | |
478 | |
479 len1 = get_le16(pb); | |
480 len2 = get_le16(pb); | |
481 len3 = get_le16(pb); | |
482 len4 = get_le16(pb); | |
483 len5 = get_le16(pb); | |
484 get_str16_nolen(pb, len1, s->title, sizeof(s->title)); | |
485 get_str16_nolen(pb, len2, s->author, sizeof(s->author)); | |
486 get_str16_nolen(pb, len3, s->copyright, sizeof(s->copyright)); | |
487 get_str16_nolen(pb, len4, s->comment, sizeof(s->comment)); | |
488 url_fskip(pb, len5); | |
489 } else if (!memcmp(&g, &extended_content_header, sizeof(GUID))) { | |
490 int desc_count, i; | |
491 | |
492 desc_count = get_le16(pb); | |
493 for(i=0;i<desc_count;i++) | |
494 { | |
495 int name_len,value_type,value_len,value_num = 0; | |
496 char *name, *value; | |
497 | |
498 name_len = get_le16(pb); | |
499 name = (char *)av_mallocz(name_len); | |
500 get_str16_nolen(pb, name_len, name, name_len); | |
501 value_type = get_le16(pb); | |
502 value_len = get_le16(pb); | |
503 if ((value_type == 0) || (value_type == 1)) // unicode or byte | |
504 { | |
505 value = (char *)av_mallocz(value_len); | |
506 get_str16_nolen(pb, value_len, value, value_len); | |
507 if (strcmp(name,"WM/AlbumTitle")==0) { strcpy(s->album, value); } | |
508 if (strcmp(name,"WM/Genre")==0) { strcpy(s->genre, value); } | |
509 if (strcmp(name,"WM/Year")==0) s->year = atoi(value); | |
510 free(value); | |
511 } | |
512 if ((value_type >= 2) || (value_type <= 5)) // boolean or DWORD or QWORD or WORD | |
513 { | |
514 if (value_type==2) value_num = get_le32(pb); | |
515 if (value_type==3) value_num = get_le32(pb); | |
516 if (value_type==4) value_num = get_le64(pb); | |
517 if (value_type==5) value_num = get_le16(pb); | |
518 if (strcmp(name,"WM/Track")==0) s->track = value_num + 1; | |
519 if (strcmp(name,"WM/TrackNumber")==0) s->track = value_num; | |
520 } | |
521 free(name); | |
522 } | |
523 } else if (url_feof(pb)) { | |
524 goto fail; | |
525 } else { | |
526 url_fseek(pb, gsize - 24, SEEK_CUR); | |
527 } | |
528 } | |
529 get_guid(pb, &g); | |
530 get_le64(pb); | |
531 get_byte(pb); | |
532 get_byte(pb); | |
533 if (url_feof(pb)) | |
534 goto fail; | |
535 asf->data_offset = url_ftell(pb); | |
536 asf->packet_size_left = 0; | |
537 | |
538 return 0; | |
539 | |
540 fail: | |
541 for(i=0;i<s->nb_streams;i++) { | |
542 AVStream *st = s->streams[i]; | |
543 if (st) { | |
544 free(st->priv_data); | |
545 free(st->codec.extradata); | |
546 } | |
547 free(st); | |
548 } | |
549 return -1; | |
550 } | |
551 | |
552 #define DO_2BITS(bits, var, defval) \ | |
553 switch (bits & 3) \ | |
554 { \ | |
555 case 3: var = get_le32(pb); rsize += 4; break; \ | |
556 case 2: var = get_le16(pb); rsize += 2; break; \ | |
557 case 1: var = get_byte(pb); rsize++; break; \ | |
558 default: var = defval; break; \ | |
559 } | |
560 | |
561 static int asf_get_packet(AVFormatContext *s) | |
562 { | |
563 ASFContext *asf = s->priv_data; | |
564 ByteIOContext *pb = &s->pb; | |
565 uint32_t packet_length, padsize; | |
566 int rsize = 9; | |
567 int c; | |
568 | |
569 assert((url_ftell(&s->pb) - s->data_offset) % asf->packet_size == 0); | |
570 | |
571 c = get_byte(pb); | |
572 if ((c & 0x0f) == 2) { // always true for now | |
573 if (get_le16(pb) != 0) { | |
574 if (!url_feof(pb)) | |
575 printf("ff asf bad non zero\n"); | |
576 return -EIO; | |
577 } | |
578 rsize+=2; | |
579 /* }else{ | |
580 if (!url_feof(pb)) | |
581 printf("ff asf bad header %x at:%lld\n", c, url_ftell(pb)); | |
582 return -EIO;*/ | |
583 } | |
584 | |
585 asf->packet_flags = get_byte(pb); | |
586 asf->packet_property = get_byte(pb); | |
587 | |
588 DO_2BITS(asf->packet_flags >> 5, packet_length, asf->packet_size); | |
589 DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored | |
590 DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length | |
591 | |
592 asf->packet_timestamp = get_le32(pb); | |
593 get_le16(pb); /* duration */ | |
594 // rsize has at least 11 bytes which have to be present | |
595 | |
596 if (asf->packet_flags & 0x01) { | |
597 asf->packet_segsizetype = get_byte(pb); rsize++; | |
598 asf->packet_segments = asf->packet_segsizetype & 0x3f; | |
599 } else { | |
600 asf->packet_segments = 1; | |
601 asf->packet_segsizetype = 0x80; | |
602 } | |
603 asf->packet_size_left = packet_length - padsize - rsize; | |
604 if (packet_length < asf->hdr.min_pktsize) | |
605 padsize += asf->hdr.min_pktsize - packet_length; | |
606 asf->packet_padsize = padsize; | |
607 #ifdef DEBUG | |
608 printf("packet: size=%d padsize=%d left=%d\n", asf->packet_size, asf->packet_padsize, asf->packet_size_left); | |
609 #endif | |
610 return 0; | |
611 } | |
612 | |
613 static int asf_read_packet(AVFormatContext *s, AVPacket *pkt) | |
614 { | |
615 ASFContext *asf = s->priv_data; | |
616 ASFStream *asf_st = 0; | |
617 ByteIOContext *pb = &s->pb; | |
618 //static int pc = 0; | |
619 for (;;) { | |
620 int rsize = 0; | |
621 if (asf->packet_size_left < FRAME_HEADER_SIZE | |
622 || asf->packet_segments < 1) { | |
623 //asf->packet_size_left <= asf->packet_padsize) { | |
624 int ret = asf->packet_size_left + asf->packet_padsize; | |
625 //printf("PacketLeftSize:%d Pad:%d Pos:%Ld\n", asf->packet_size_left, asf->packet_padsize, url_ftell(pb)); | |
626 /* fail safe */ | |
627 url_fskip(pb, ret); | |
628 asf->packet_pos= url_ftell(&s->pb); | |
629 ret = asf_get_packet(s); | |
630 //printf("READ ASF PACKET %d r:%d c:%d\n", ret, asf->packet_size_left, pc++); | |
631 if (ret < 0 || url_feof(pb)) | |
632 return -EIO; | |
633 asf->packet_time_start = 0; | |
634 continue; | |
635 } | |
636 if (asf->packet_time_start == 0) { | |
637 /* read frame header */ | |
638 int num = get_byte(pb); | |
639 asf->packet_segments--; | |
640 rsize++; | |
641 asf->packet_key_frame = (num & 0x80) >> 7; | |
642 asf->stream_index = asf->asfid2avid[num & 0x7f]; | |
643 // sequence should be ignored! | |
644 DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0); | |
645 DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0); | |
646 DO_2BITS(asf->packet_property, asf->packet_replic_size, 0); | |
647 //printf("key:%d stream:%d seq:%d offset:%d replic_size:%d\n", asf->packet_key_frame, asf->stream_index, asf->packet_seq, //asf->packet_frag_offset, asf->packet_replic_size); | |
648 if (asf->packet_replic_size > 1) { | |
649 assert(asf->packet_replic_size >= 8); | |
650 // it should be always at least 8 bytes - FIXME validate | |
651 asf->packet_obj_size = get_le32(pb); | |
652 asf->packet_frag_timestamp = get_le32(pb); // timestamp | |
653 if (asf->packet_replic_size > 8) | |
654 url_fskip(pb, asf->packet_replic_size - 8); | |
655 rsize += asf->packet_replic_size; // FIXME - check validity | |
656 } else if (asf->packet_replic_size==1){ | |
657 // multipacket - frag_offset is begining timestamp | |
658 asf->packet_time_start = asf->packet_frag_offset; | |
659 asf->packet_frag_offset = 0; | |
660 asf->packet_frag_timestamp = asf->packet_timestamp; | |
661 | |
662 asf->packet_time_delta = get_byte(pb); | |
663 rsize++; | |
664 }else{ | |
665 assert(asf->packet_replic_size==0); | |
666 } | |
667 if (asf->packet_flags & 0x01) { | |
668 DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal | |
669 #undef DO_2BITS | |
670 //printf("Fragsize %d\n", asf->packet_frag_size); | |
671 } else { | |
672 asf->packet_frag_size = asf->packet_size_left - rsize; | |
673 //printf("Using rest %d %d %d\n", asf->packet_frag_size, asf->packet_size_left, rsize); | |
674 } | |
675 if (asf->packet_replic_size == 1) { | |
676 asf->packet_multi_size = asf->packet_frag_size; | |
677 if (asf->packet_multi_size > asf->packet_size_left) { | |
678 asf->packet_segments = 0; | |
679 continue; | |
680 } | |
681 } | |
682 asf->packet_size_left -= rsize; | |
683 //printf("___objsize____ %d %d rs:%d\n", asf->packet_obj_size, asf->packet_frag_offset, rsize); | |
684 | |
685 if (asf->stream_index < 0) { | |
686 asf->packet_time_start = 0; | |
687 /* unhandled packet (should not happen) */ | |
688 url_fskip(pb, asf->packet_frag_size); | |
689 asf->packet_size_left -= asf->packet_frag_size; | |
690 printf("ff asf skip %d %d\n", asf->packet_frag_size, num & 0x7f); | |
691 continue; | |
692 } | |
693 asf->asf_st = s->streams[asf->stream_index]->priv_data; | |
694 } | |
695 asf_st = asf->asf_st; | |
696 | |
697 if ((asf->packet_frag_offset != asf_st->frag_offset | |
698 || (asf->packet_frag_offset | |
699 && asf->packet_seq != asf_st->seq)) // seq should be ignored | |
700 ) { | |
701 /* cannot continue current packet: free it */ | |
702 // FIXME better check if packet was already allocated | |
703 printf("ff asf parser skips: %d - %d o:%d - %d %d %d fl:%d\n", | |
704 asf_st->pkt.size, | |
705 asf->packet_obj_size, | |
706 asf->packet_frag_offset, asf_st->frag_offset, | |
707 asf->packet_seq, asf_st->seq, asf->packet_frag_size); | |
708 if (asf_st->pkt.size) | |
709 av_free_packet(&asf_st->pkt); | |
710 asf_st->frag_offset = 0; | |
711 if (asf->packet_frag_offset != 0) { | |
712 url_fskip(pb, asf->packet_frag_size); | |
713 printf("ff asf parser skiping %db\n", asf->packet_frag_size); | |
714 asf->packet_size_left -= asf->packet_frag_size; | |
715 continue; | |
716 } | |
717 } | |
718 if (asf->packet_replic_size == 1) { | |
719 // frag_offset is here used as the begining timestamp | |
720 asf->packet_frag_timestamp = asf->packet_time_start; | |
721 asf->packet_time_start += asf->packet_time_delta; | |
722 asf->packet_obj_size = asf->packet_frag_size = get_byte(pb); | |
723 asf->packet_size_left--; | |
724 asf->packet_multi_size--; | |
725 if (asf->packet_multi_size < asf->packet_obj_size) | |
726 { | |
727 asf->packet_time_start = 0; | |
728 url_fskip(pb, asf->packet_multi_size); | |
729 asf->packet_size_left -= asf->packet_multi_size; | |
730 continue; | |
731 } | |
732 asf->packet_multi_size -= asf->packet_obj_size; | |
733 //printf("COMPRESS size %d %d %d ms:%d\n", asf->packet_obj_size, asf->packet_frag_timestamp, asf->packet_size_left, asf->packet_multi_size); | |
734 } | |
735 if (asf_st->frag_offset == 0) { | |
736 /* new packet */ | |
737 av_new_packet(&asf_st->pkt, asf->packet_obj_size); | |
738 asf_st->seq = asf->packet_seq; | |
739 asf_st->pkt.pts = asf->packet_frag_timestamp - asf->hdr.preroll; | |
740 asf_st->pkt.stream_index = asf->stream_index; | |
741 asf_st->packet_pos= asf->packet_pos; | |
742 //printf("new packet: stream:%d key:%d packet_key:%d audio:%d size:%d\n", | |
743 //asf->stream_index, asf->packet_key_frame, asf_st->pkt.flags & PKT_FLAG_KEY, | |
744 //s->streams[asf->stream_index]->codec.codec_type == CODEC_TYPE_AUDIO, asf->packet_obj_size); | |
745 if (s->streams[asf->stream_index]->codec.codec_type == CODEC_TYPE_AUDIO) | |
746 asf->packet_key_frame = 1; | |
747 if (asf->packet_key_frame) | |
748 asf_st->pkt.flags |= PKT_FLAG_KEY; | |
749 } | |
750 | |
751 /* read data */ | |
752 //printf("READ PACKET s:%d os:%d o:%d,%d l:%d DATA:%p\n", | |
753 // asf->packet_size, asf_st->pkt.size, asf->packet_frag_offset, | |
754 // asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data); | |
755 asf->packet_size_left -= asf->packet_frag_size; | |
756 if (asf->packet_size_left < 0) | |
757 continue; | |
758 get_buffer(pb, asf_st->pkt.data + asf->packet_frag_offset, | |
759 asf->packet_frag_size); | |
760 asf_st->frag_offset += asf->packet_frag_size; | |
761 /* test if whole packet is read */ | |
762 if (asf_st->frag_offset == asf_st->pkt.size) { | |
763 /* return packet */ | |
764 if (asf_st->ds_span > 1) { | |
765 /* packet descrambling */ | |
766 unsigned char* newdata = av_malloc(asf_st->pkt.size); | |
767 if (newdata) { | |
768 int offset = 0; | |
769 while (offset < asf_st->pkt.size) { | |
770 int off = offset / asf_st->ds_chunk_size; | |
771 int row = off / asf_st->ds_span; | |
772 int col = off % asf_st->ds_span; | |
773 int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size; | |
774 //printf("off:%d row:%d col:%d idx:%d\n", off, row, col, idx); | |
775 memcpy(newdata + offset, | |
776 asf_st->pkt.data + idx * asf_st->ds_chunk_size, | |
777 asf_st->ds_chunk_size); | |
778 offset += asf_st->ds_chunk_size; | |
779 } | |
780 free(asf_st->pkt.data); | |
781 asf_st->pkt.data = newdata; | |
782 } | |
783 } | |
784 asf_st->frag_offset = 0; | |
785 memcpy(pkt, &asf_st->pkt, sizeof(AVPacket)); | |
786 //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size); | |
787 asf_st->pkt.size = 0; | |
788 asf_st->pkt.data = 0; | |
789 break; // packet completed | |
790 } | |
791 } | |
792 return 0; | |
793 } | |
794 | |
795 static int asf_read_close(AVFormatContext *s) | |
796 { | |
797 int i; | |
798 | |
799 for(i=0;i<s->nb_streams;i++) { | |
800 AVStream *st = s->streams[i]; | |
801 free(st->priv_data); | |
802 free(st->codec.extradata); | |
803 free(st->codec.palctrl); | |
804 } | |
805 return 0; | |
806 } | |
807 | |
808 // Added to support seeking after packets have been read | |
809 // If information is not reset, read_packet fails due to | |
810 // leftover information from previous reads | |
811 static void asf_reset_header(AVFormatContext *s) | |
812 { | |
813 ASFContext *asf = s->priv_data; | |
814 ASFStream *asf_st; | |
815 int i; | |
816 | |
817 asf->packet_nb_frames = 0; | |
818 asf->packet_timestamp_start = -1; | |
819 asf->packet_timestamp_end = -1; | |
820 asf->packet_size_left = 0; | |
821 asf->packet_segments = 0; | |
822 asf->packet_flags = 0; | |
823 asf->packet_property = 0; | |
824 asf->packet_timestamp = 0; | |
825 asf->packet_segsizetype = 0; | |
826 asf->packet_segments = 0; | |
827 asf->packet_seq = 0; | |
828 asf->packet_replic_size = 0; | |
829 asf->packet_key_frame = 0; | |
830 asf->packet_padsize = 0; | |
831 asf->packet_frag_offset = 0; | |
832 asf->packet_frag_size = 0; | |
833 asf->packet_frag_timestamp = 0; | |
834 asf->packet_multi_size = 0; | |
835 asf->packet_obj_size = 0; | |
836 asf->packet_time_delta = 0; | |
837 asf->packet_time_start = 0; | |
838 | |
839 for(i=0; i<s->nb_streams; i++){ | |
840 asf_st= s->streams[i]->priv_data; | |
841 av_free_packet(&asf_st->pkt); | |
842 asf_st->frag_offset=0; | |
843 asf_st->seq=0; | |
844 } | |
845 asf->asf_st= NULL; | |
846 } | |
847 | |
848 static int64_t asf_read_pts(AVFormatContext *s, int64_t *ppos, int stream_index) | |
849 { | |
850 ASFContext *asf = s->priv_data; | |
851 AVPacket pkt1, *pkt = &pkt1; | |
852 ASFStream *asf_st; | |
853 int64_t pts; | |
854 int64_t pos= *ppos; | |
855 int i; | |
856 int64_t start_pos[s->nb_streams]; | |
857 | |
858 for(i=0; i<s->nb_streams; i++){ | |
859 start_pos[i]= pos; | |
860 } | |
861 | |
862 //printf("asf_read_pts\n"); | |
863 url_fseek(&s->pb, pos*asf->packet_size + s->data_offset, SEEK_SET); | |
864 asf_reset_header(s); | |
865 for(;;){ | |
866 if (av_read_frame(s, pkt) < 0){ | |
867 printf("seek failed\n"); | |
868 return AV_NOPTS_VALUE; | |
869 } | |
870 pts= pkt->pts; | |
871 | |
872 av_free_packet(pkt); | |
873 if(pkt->flags&PKT_FLAG_KEY){ | |
874 i= pkt->stream_index; | |
875 | |
876 asf_st= s->streams[i]->priv_data; | |
877 | |
878 assert((asf_st->packet_pos - s->data_offset) % asf->packet_size == 0); | |
879 pos= (asf_st->packet_pos - s->data_offset) / asf->packet_size; | |
880 | |
881 av_add_index_entry(s->streams[i], pos, pts, pos - start_pos[i] + 1, AVINDEX_KEYFRAME); | |
882 start_pos[i]= pos + 1; | |
883 | |
884 if(pkt->stream_index == stream_index) | |
885 break; | |
886 } | |
887 } | |
888 | |
889 *ppos= pos; | |
890 //printf("found keyframe at %Ld stream %d stamp:%Ld\n", *ppos, stream_index, pts); | |
891 | |
892 return pts; | |
893 } | |
894 | |
895 static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts) | |
896 { | |
897 ASFContext *asf = s->priv_data; | |
898 AVStream *st; | |
899 int64_t pos; | |
900 int64_t pos_min, pos_max, pts_min, pts_max, cur_pts, pos_limit; | |
901 int no_change; | |
902 | |
903 if (stream_index == -1) | |
904 stream_index= av_find_default_stream_index(s); | |
905 | |
906 if (asf->packet_size <= 0) | |
907 return -1; | |
908 | |
909 pts_max= | |
910 pts_min= AV_NOPTS_VALUE; | |
911 pos_max= pos_limit= -1; // gcc thinks its uninitalized | |
912 | |
913 st= s->streams[stream_index]; | |
914 if(st->index_entries){ | |
915 AVIndexEntry *e; | |
916 int index; | |
917 | |
918 index= av_index_search_timestamp(st, pts); | |
919 e= &st->index_entries[index]; | |
920 if(e->timestamp <= pts){ | |
921 pos_min= e->pos; | |
922 pts_min= e->timestamp; | |
923 }else{ | |
924 assert(index==0); | |
925 } | |
926 index++; | |
927 if(index < st->nb_index_entries){ | |
928 e= &st->index_entries[index]; | |
929 assert(e->timestamp >= pts); | |
930 pos_max= e->pos; | |
931 pts_max= e->timestamp; | |
932 pos_limit= pos_max - e->min_distance; | |
933 } | |
934 } | |
935 | |
936 if(pts_min == (int64_t)AV_NOPTS_VALUE){ | |
937 pos_min = 0; | |
938 pts_min = asf_read_pts(s, &pos_min, stream_index); | |
939 if (pts_min == (int64_t)AV_NOPTS_VALUE) return -1; | |
940 } | |
941 if(pts_max == (int64_t)AV_NOPTS_VALUE){ | |
942 pos_max = (url_filesize(url_fileno(&s->pb)) - 1 - s->data_offset) / asf->packet_size; //FIXME wrong | |
943 pts_max = s->duration; //FIXME wrong | |
944 pos_limit= pos_max; | |
945 } | |
946 | |
947 no_change=0; | |
948 while (pos_min < pos_limit) { | |
949 int64_t start_pos; | |
950 assert(pos_limit <= pos_max); | |
951 | |
952 if(no_change==0){ | |
953 int64_t approximate_keyframe_distance= pos_max - pos_limit; | |
954 // interpolate position (better than dichotomy) | |
955 pos = (int64_t)((double)(pos_max - pos_min) * | |
956 (double)(pts - pts_min) / | |
957 (double)(pts_max - pts_min)) + pos_min - approximate_keyframe_distance; | |
958 }else if(no_change==1){ | |
959 // bisection, if interpolation failed to change min or max pos last time | |
960 pos = (pos_min + pos_limit)>>1; | |
961 }else{ | |
962 // linear search if bisection failed, can only happen if there are very few or no keyframes between min/max | |
963 pos=pos_min; | |
964 } | |
965 if(pos <= pos_min) | |
966 pos= pos_min + 1; | |
967 else if(pos > pos_limit) | |
968 pos= pos_limit; | |
969 start_pos= pos; | |
970 | |
971 // read the next timestamp | |
972 cur_pts = asf_read_pts(s, &pos, stream_index); | |
973 if(pos == pos_max) | |
974 no_change++; | |
975 else | |
976 no_change=0; | |
977 | |
978 assert (cur_pts != AV_NOPTS_VALUE); | |
979 if (pts < cur_pts) { | |
980 pos_limit = start_pos - 1; | |
981 pos_max = pos; | |
982 pts_max = cur_pts; | |
983 } else { | |
984 pos_min = pos; | |
985 pts_min = cur_pts; | |
986 /* check if we are lucky */ | |
987 if (pts == cur_pts) | |
988 break; | |
989 } | |
990 } | |
991 pos = pos_min; | |
992 url_fseek(&s->pb, pos*asf->packet_size + s->data_offset, SEEK_SET); | |
993 asf_reset_header(s); | |
994 return 0; | |
995 } | |
996 | |
997 static AVInputFormat asf_iformat = { | |
998 "asf", | |
999 "asf format", | |
1000 sizeof(ASFContext), | |
1001 asf_probe, | |
1002 asf_read_header, | |
1003 asf_read_packet, | |
1004 asf_read_close, | |
1005 asf_read_seek, | |
1006 0, NULL, 0, NULL, NULL, NULL | |
1007 }; | |
1008 | |
1009 int asf_init(void) | |
1010 { | |
1011 av_register_input_format(&asf_iformat); | |
1012 | |
1013 return 0; | |
1014 } |