comparison src/ffmpeg/libffwma/asf.c @ 806:74abcb9cafae trunk

[svn] - fork wma plugin
author nenolod
date Mon, 12 Mar 2007 10:59:21 -0700
parents src/wma/libffwma/asf.c@3da1b8942b8b
children
comparison
equal deleted inserted replaced
805:1ba5f86aeac9 806:74abcb9cafae
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 {
309 int c;
310 char *q;
311
312 q = buf;
313 while (len > 0) {
314 c = get_le16(pb);
315 if ((q - buf) < buf_size - 1)
316 *q++ = c;
317 len-=2;
318 }
319 *q = '\0';
320 }
321
322 static int asf_probe(AVProbeData *pd)
323 {
324 GUID g;
325 const unsigned char *p;
326 int i;
327
328 /* check file header */
329 if (pd->buf_size <= 32)
330 return 0;
331 p = pd->buf;
332 g.v1 = p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
333 p += 4;
334 g.v2 = p[0] | (p[1] << 8);
335 p += 2;
336 g.v3 = p[0] | (p[1] << 8);
337 p += 2;
338 for(i=0;i<8;i++)
339 g.v4[i] = *p++;
340
341 if (!memcmp(&g, &asf_header, sizeof(GUID)))
342 return AVPROBE_SCORE_MAX;
343 else
344 return 0;
345 }
346
347 static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
348 {
349 ASFContext *asf = s->priv_data;
350 GUID g;
351 ByteIOContext *pb = &s->pb;
352 AVStream *st;
353 ASFStream *asf_st;
354 //int size, i;
355 int i;
356 int64_t gsize;
357
358 av_set_pts_info(s, 32, 1, 1000); /* 32 bit pts in ms */
359
360 get_guid(pb, &g);
361 if (memcmp(&g, &asf_header, sizeof(GUID)))
362 goto fail;
363 get_le64(pb);
364 get_le32(pb);
365 get_byte(pb);
366 get_byte(pb);
367 memset(&asf->asfid2avid, -1, sizeof(asf->asfid2avid));
368 for(;;) {
369 get_guid(pb, &g);
370 gsize = get_le64(pb);
371 #ifdef DEBUG
372 printf("%08Lx: ", url_ftell(pb) - 24);
373 print_guid(&g);
374 printf(" size=0x%Lx\n", gsize);
375 #endif
376 if (gsize < 24)
377 goto fail;
378 if (!memcmp(&g, &file_header, sizeof(GUID))) {
379 get_guid(pb, &asf->hdr.guid);
380 asf->hdr.file_size = get_le64(pb);
381 asf->hdr.create_time = get_le64(pb);
382 asf->hdr.packets_count = get_le64(pb);
383 asf->hdr.play_time = get_le64(pb);
384 asf->hdr.send_time = get_le64(pb);
385 asf->hdr.preroll = get_le32(pb);
386 asf->hdr.ignore = get_le32(pb);
387 asf->hdr.flags = get_le32(pb);
388 asf->hdr.min_pktsize = get_le32(pb);
389 asf->hdr.max_pktsize = get_le32(pb);
390 asf->hdr.max_bitrate = get_le32(pb);
391 asf->packet_size = asf->hdr.max_pktsize;
392 asf->nb_packets = asf->hdr.packets_count;
393 } else if (!memcmp(&g, &stream_header, sizeof(GUID))) {
394 int type, total_size, type_specific_size;
395 //unsigned int tag1;
396 int64_t pos1, pos2;
397
398 pos1 = url_ftell(pb);
399
400 st = av_new_stream(s, 0);
401 if (!st)
402 goto fail;
403 asf_st = av_mallocz(sizeof(ASFStream));
404 if (!asf_st)
405 goto fail;
406 st->priv_data = asf_st;
407 st->start_time = asf->hdr.preroll / (10000000 / AV_TIME_BASE);
408 st->duration = (asf->hdr.send_time - asf->hdr.preroll) /
409 (10000000 / AV_TIME_BASE);
410 get_guid(pb, &g);
411 if (!memcmp(&g, &audio_stream, sizeof(GUID))) {
412 type = CODEC_TYPE_AUDIO;
413 } else {
414 goto fail;
415 }
416 get_guid(pb, &g);
417 total_size = get_le64(pb);
418 type_specific_size = get_le32(pb);
419 get_le32(pb);
420 st->id = get_le16(pb) & 0x7f; /* stream id */
421 // mapping of asf ID to AV stream ID;
422 asf->asfid2avid[st->id] = s->nb_streams - 1;
423
424 get_le32(pb);
425 st->codec.codec_type = type;
426 /* 1 fps default (XXX: put 0 fps instead) */
427 st->codec.frame_rate = 1;
428 st->codec.frame_rate_base = 1;
429 if (type == CODEC_TYPE_AUDIO) {
430 get_wav_header(pb, &st->codec, type_specific_size);
431 st->need_parsing = 1;
432 /* We have to init the frame size at some point .... */
433 pos2 = url_ftell(pb);
434 if (gsize > (pos2 + 8 - pos1 + 24)) {
435 asf_st->ds_span = get_byte(pb);
436 asf_st->ds_packet_size = get_le16(pb);
437 asf_st->ds_chunk_size = get_le16(pb);
438 asf_st->ds_data_size = get_le16(pb);
439 asf_st->ds_silence_data = get_byte(pb);
440 }
441 //printf("Descrambling: ps:%d cs:%d ds:%d s:%d sd:%d\n",
442 // asf_st->ds_packet_size, asf_st->ds_chunk_size,
443 // asf_st->ds_data_size, asf_st->ds_span, asf_st->ds_silence_data);
444 if (asf_st->ds_span > 1) {
445 if (!asf_st->ds_chunk_size
446 || (asf_st->ds_packet_size/asf_st->ds_chunk_size <= 1))
447 asf_st->ds_span = 0; // disable descrambling
448 }
449 switch (st->codec.codec_id) {
450 case CODEC_ID_PCM_S16LE:
451 case CODEC_ID_PCM_S16BE:
452 case CODEC_ID_PCM_U16LE:
453 case CODEC_ID_PCM_U16BE:
454 case CODEC_ID_PCM_S8:
455 case CODEC_ID_PCM_U8:
456 case CODEC_ID_PCM_ALAW:
457 case CODEC_ID_PCM_MULAW:
458 st->codec.frame_size = 1;
459 break;
460 default:
461 /* This is probably wrong, but it prevents a crash later */
462 st->codec.frame_size = 1;
463 break;
464 }
465 }
466 pos2 = url_ftell(pb);
467 url_fskip(pb, gsize - (pos2 - pos1 + 24));
468 } else if (!memcmp(&g, &data_header, sizeof(GUID))) {
469 break;
470 } else if (!memcmp(&g, &comment_header, sizeof(GUID))) {
471 int len1, len2, len3, len4, len5;
472
473 len1 = get_le16(pb);
474 len2 = get_le16(pb);
475 len3 = get_le16(pb);
476 len4 = get_le16(pb);
477 len5 = get_le16(pb);
478 get_str16_nolen(pb, len1, s->title, sizeof(s->title));
479 get_str16_nolen(pb, len2, s->author, sizeof(s->author));
480 get_str16_nolen(pb, len3, s->copyright, sizeof(s->copyright));
481 get_str16_nolen(pb, len4, s->comment, sizeof(s->comment));
482 url_fskip(pb, len5);
483 } else if (!memcmp(&g, &extended_content_header, sizeof(GUID))) {
484 int desc_count, i;
485
486 desc_count = get_le16(pb);
487 for(i=0;i<desc_count;i++)
488 {
489 int name_len,value_type,value_len,value_num = 0;
490 char *name, *value;
491
492 name_len = get_le16(pb);
493 name = (char *)av_mallocz(name_len);
494 get_str16_nolen(pb, name_len, name, name_len);
495 value_type = get_le16(pb);
496 value_len = get_le16(pb);
497 if ((value_type == 0) || (value_type == 1)) // unicode or byte
498 {
499 value = (char *)av_mallocz(value_len);
500 get_str16_nolen(pb, value_len, value, value_len);
501 if (strcmp(name,"WM/AlbumTitle")==0) { strcpy(s->album, value); }
502 if (strcmp(name,"WM/Genre")==0) { strcpy(s->genre, value); }
503 if (strcmp(name,"WM/Year")==0) s->year = atoi(value);
504 free(value);
505 }
506 if ((value_type >= 2) || (value_type <= 5)) // boolean or DWORD or QWORD or WORD
507 {
508 if (value_type==2) value_num = get_le32(pb);
509 if (value_type==3) value_num = get_le32(pb);
510 if (value_type==4) value_num = get_le64(pb);
511 if (value_type==5) value_num = get_le16(pb);
512 if (strcmp(name,"WM/Track")==0) s->track = value_num + 1;
513 if (strcmp(name,"WM/TrackNumber")==0) s->track = value_num;
514 }
515 free(name);
516 }
517 } else if (url_feof(pb)) {
518 goto fail;
519 } else {
520 url_fseek(pb, gsize - 24, SEEK_CUR);
521 }
522 }
523 get_guid(pb, &g);
524 get_le64(pb);
525 get_byte(pb);
526 get_byte(pb);
527 if (url_feof(pb))
528 goto fail;
529 asf->data_offset = url_ftell(pb);
530 asf->packet_size_left = 0;
531
532 return 0;
533
534 fail:
535 for(i=0;i<s->nb_streams;i++) {
536 AVStream *st = s->streams[i];
537 if (st) {
538 free(st->priv_data);
539 free(st->codec.extradata);
540 }
541 free(st);
542 }
543 return -1;
544 }
545
546 #define DO_2BITS(bits, var, defval) \
547 switch (bits & 3) \
548 { \
549 case 3: var = get_le32(pb); rsize += 4; break; \
550 case 2: var = get_le16(pb); rsize += 2; break; \
551 case 1: var = get_byte(pb); rsize++; break; \
552 default: var = defval; break; \
553 }
554
555 static int asf_get_packet(AVFormatContext *s)
556 {
557 ASFContext *asf = s->priv_data;
558 ByteIOContext *pb = &s->pb;
559 uint32_t packet_length, padsize;
560 int rsize = 9;
561 int c;
562
563 assert((url_ftell(&s->pb) - s->data_offset) % asf->packet_size == 0);
564
565 c = get_byte(pb);
566 if ((c & 0x0f) == 2) { // always true for now
567 if (get_le16(pb) != 0) {
568 if (!url_feof(pb))
569 printf("ff asf bad non zero\n");
570 return -EIO;
571 }
572 rsize+=2;
573 /* }else{
574 if (!url_feof(pb))
575 printf("ff asf bad header %x at:%lld\n", c, url_ftell(pb));
576 return -EIO;*/
577 }
578
579 asf->packet_flags = get_byte(pb);
580 asf->packet_property = get_byte(pb);
581
582 DO_2BITS(asf->packet_flags >> 5, packet_length, asf->packet_size);
583 DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored
584 DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length
585
586 asf->packet_timestamp = get_le32(pb);
587 get_le16(pb); /* duration */
588 // rsize has at least 11 bytes which have to be present
589
590 if (asf->packet_flags & 0x01) {
591 asf->packet_segsizetype = get_byte(pb); rsize++;
592 asf->packet_segments = asf->packet_segsizetype & 0x3f;
593 } else {
594 asf->packet_segments = 1;
595 asf->packet_segsizetype = 0x80;
596 }
597 asf->packet_size_left = packet_length - padsize - rsize;
598 if (packet_length < asf->hdr.min_pktsize)
599 padsize += asf->hdr.min_pktsize - packet_length;
600 asf->packet_padsize = padsize;
601 #ifdef DEBUG
602 printf("packet: size=%d padsize=%d left=%d\n", asf->packet_size, asf->packet_padsize, asf->packet_size_left);
603 #endif
604 return 0;
605 }
606
607 static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
608 {
609 ASFContext *asf = s->priv_data;
610 ASFStream *asf_st = 0;
611 ByteIOContext *pb = &s->pb;
612 //static int pc = 0;
613 for (;;) {
614 int rsize = 0;
615 if (asf->packet_size_left < FRAME_HEADER_SIZE
616 || asf->packet_segments < 1) {
617 //asf->packet_size_left <= asf->packet_padsize) {
618 int ret = asf->packet_size_left + asf->packet_padsize;
619 //printf("PacketLeftSize:%d Pad:%d Pos:%Ld\n", asf->packet_size_left, asf->packet_padsize, url_ftell(pb));
620 /* fail safe */
621 url_fskip(pb, ret);
622 asf->packet_pos= url_ftell(&s->pb);
623 ret = asf_get_packet(s);
624 //printf("READ ASF PACKET %d r:%d c:%d\n", ret, asf->packet_size_left, pc++);
625 if (ret < 0 || url_feof(pb))
626 return -EIO;
627 asf->packet_time_start = 0;
628 continue;
629 }
630 if (asf->packet_time_start == 0) {
631 /* read frame header */
632 int num = get_byte(pb);
633 asf->packet_segments--;
634 rsize++;
635 asf->packet_key_frame = (num & 0x80) >> 7;
636 asf->stream_index = asf->asfid2avid[num & 0x7f];
637 // sequence should be ignored!
638 DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0);
639 DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0);
640 DO_2BITS(asf->packet_property, asf->packet_replic_size, 0);
641 //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);
642 if (asf->packet_replic_size > 1) {
643 assert(asf->packet_replic_size >= 8);
644 // it should be always at least 8 bytes - FIXME validate
645 asf->packet_obj_size = get_le32(pb);
646 asf->packet_frag_timestamp = get_le32(pb); // timestamp
647 if (asf->packet_replic_size > 8)
648 url_fskip(pb, asf->packet_replic_size - 8);
649 rsize += asf->packet_replic_size; // FIXME - check validity
650 } else if (asf->packet_replic_size==1){
651 // multipacket - frag_offset is begining timestamp
652 asf->packet_time_start = asf->packet_frag_offset;
653 asf->packet_frag_offset = 0;
654 asf->packet_frag_timestamp = asf->packet_timestamp;
655
656 asf->packet_time_delta = get_byte(pb);
657 rsize++;
658 }else{
659 assert(asf->packet_replic_size==0);
660 }
661 if (asf->packet_flags & 0x01) {
662 DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal
663 #undef DO_2BITS
664 //printf("Fragsize %d\n", asf->packet_frag_size);
665 } else {
666 asf->packet_frag_size = asf->packet_size_left - rsize;
667 //printf("Using rest %d %d %d\n", asf->packet_frag_size, asf->packet_size_left, rsize);
668 }
669 if (asf->packet_replic_size == 1) {
670 asf->packet_multi_size = asf->packet_frag_size;
671 if (asf->packet_multi_size > asf->packet_size_left) {
672 asf->packet_segments = 0;
673 continue;
674 }
675 }
676 asf->packet_size_left -= rsize;
677 //printf("___objsize____ %d %d rs:%d\n", asf->packet_obj_size, asf->packet_frag_offset, rsize);
678
679 if (asf->stream_index < 0) {
680 asf->packet_time_start = 0;
681 /* unhandled packet (should not happen) */
682 url_fskip(pb, asf->packet_frag_size);
683 asf->packet_size_left -= asf->packet_frag_size;
684 printf("ff asf skip %d %d\n", asf->packet_frag_size, num & 0x7f);
685 continue;
686 }
687 asf->asf_st = s->streams[asf->stream_index]->priv_data;
688 }
689 asf_st = asf->asf_st;
690
691 if ((asf->packet_frag_offset != asf_st->frag_offset
692 || (asf->packet_frag_offset
693 && asf->packet_seq != asf_st->seq)) // seq should be ignored
694 ) {
695 /* cannot continue current packet: free it */
696 // FIXME better check if packet was already allocated
697 printf("ff asf parser skips: %d - %d o:%d - %d %d %d fl:%d\n",
698 asf_st->pkt.size,
699 asf->packet_obj_size,
700 asf->packet_frag_offset, asf_st->frag_offset,
701 asf->packet_seq, asf_st->seq, asf->packet_frag_size);
702 if (asf_st->pkt.size)
703 av_free_packet(&asf_st->pkt);
704 asf_st->frag_offset = 0;
705 if (asf->packet_frag_offset != 0) {
706 url_fskip(pb, asf->packet_frag_size);
707 printf("ff asf parser skiping %db\n", asf->packet_frag_size);
708 asf->packet_size_left -= asf->packet_frag_size;
709 continue;
710 }
711 }
712 if (asf->packet_replic_size == 1) {
713 // frag_offset is here used as the begining timestamp
714 asf->packet_frag_timestamp = asf->packet_time_start;
715 asf->packet_time_start += asf->packet_time_delta;
716 asf->packet_obj_size = asf->packet_frag_size = get_byte(pb);
717 asf->packet_size_left--;
718 asf->packet_multi_size--;
719 if (asf->packet_multi_size < asf->packet_obj_size)
720 {
721 asf->packet_time_start = 0;
722 url_fskip(pb, asf->packet_multi_size);
723 asf->packet_size_left -= asf->packet_multi_size;
724 continue;
725 }
726 asf->packet_multi_size -= asf->packet_obj_size;
727 //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);
728 }
729 if (asf_st->frag_offset == 0) {
730 /* new packet */
731 av_new_packet(&asf_st->pkt, asf->packet_obj_size);
732 asf_st->seq = asf->packet_seq;
733 asf_st->pkt.pts = asf->packet_frag_timestamp - asf->hdr.preroll;
734 asf_st->pkt.stream_index = asf->stream_index;
735 asf_st->packet_pos= asf->packet_pos;
736 //printf("new packet: stream:%d key:%d packet_key:%d audio:%d size:%d\n",
737 //asf->stream_index, asf->packet_key_frame, asf_st->pkt.flags & PKT_FLAG_KEY,
738 //s->streams[asf->stream_index]->codec.codec_type == CODEC_TYPE_AUDIO, asf->packet_obj_size);
739 if (s->streams[asf->stream_index]->codec.codec_type == CODEC_TYPE_AUDIO)
740 asf->packet_key_frame = 1;
741 if (asf->packet_key_frame)
742 asf_st->pkt.flags |= PKT_FLAG_KEY;
743 }
744
745 /* read data */
746 //printf("READ PACKET s:%d os:%d o:%d,%d l:%d DATA:%p\n",
747 // asf->packet_size, asf_st->pkt.size, asf->packet_frag_offset,
748 // asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data);
749 asf->packet_size_left -= asf->packet_frag_size;
750 if (asf->packet_size_left < 0)
751 continue;
752 get_buffer(pb, asf_st->pkt.data + asf->packet_frag_offset,
753 asf->packet_frag_size);
754 asf_st->frag_offset += asf->packet_frag_size;
755 /* test if whole packet is read */
756 if (asf_st->frag_offset == asf_st->pkt.size) {
757 /* return packet */
758 if (asf_st->ds_span > 1) {
759 /* packet descrambling */
760 unsigned char* newdata = av_malloc(asf_st->pkt.size);
761 if (newdata) {
762 int offset = 0;
763 while (offset < asf_st->pkt.size) {
764 int off = offset / asf_st->ds_chunk_size;
765 int row = off / asf_st->ds_span;
766 int col = off % asf_st->ds_span;
767 int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size;
768 //printf("off:%d row:%d col:%d idx:%d\n", off, row, col, idx);
769 memcpy(newdata + offset,
770 asf_st->pkt.data + idx * asf_st->ds_chunk_size,
771 asf_st->ds_chunk_size);
772 offset += asf_st->ds_chunk_size;
773 }
774 free(asf_st->pkt.data);
775 asf_st->pkt.data = newdata;
776 }
777 }
778 asf_st->frag_offset = 0;
779 memcpy(pkt, &asf_st->pkt, sizeof(AVPacket));
780 //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size);
781 asf_st->pkt.size = 0;
782 asf_st->pkt.data = 0;
783 break; // packet completed
784 }
785 }
786 return 0;
787 }
788
789 static int asf_read_close(AVFormatContext *s)
790 {
791 int i;
792
793 for(i=0;i<s->nb_streams;i++) {
794 AVStream *st = s->streams[i];
795 free(st->priv_data);
796 free(st->codec.extradata);
797 free(st->codec.palctrl);
798 }
799 return 0;
800 }
801
802 // Added to support seeking after packets have been read
803 // If information is not reset, read_packet fails due to
804 // leftover information from previous reads
805 static void asf_reset_header(AVFormatContext *s)
806 {
807 ASFContext *asf = s->priv_data;
808 ASFStream *asf_st;
809 int i;
810
811 asf->packet_nb_frames = 0;
812 asf->packet_timestamp_start = -1;
813 asf->packet_timestamp_end = -1;
814 asf->packet_size_left = 0;
815 asf->packet_segments = 0;
816 asf->packet_flags = 0;
817 asf->packet_property = 0;
818 asf->packet_timestamp = 0;
819 asf->packet_segsizetype = 0;
820 asf->packet_segments = 0;
821 asf->packet_seq = 0;
822 asf->packet_replic_size = 0;
823 asf->packet_key_frame = 0;
824 asf->packet_padsize = 0;
825 asf->packet_frag_offset = 0;
826 asf->packet_frag_size = 0;
827 asf->packet_frag_timestamp = 0;
828 asf->packet_multi_size = 0;
829 asf->packet_obj_size = 0;
830 asf->packet_time_delta = 0;
831 asf->packet_time_start = 0;
832
833 for(i=0; i<s->nb_streams; i++){
834 asf_st= s->streams[i]->priv_data;
835 av_free_packet(&asf_st->pkt);
836 asf_st->frag_offset=0;
837 asf_st->seq=0;
838 }
839 asf->asf_st= NULL;
840 }
841
842 static int64_t asf_read_pts(AVFormatContext *s, int64_t *ppos, int stream_index)
843 {
844 ASFContext *asf = s->priv_data;
845 AVPacket pkt1, *pkt = &pkt1;
846 ASFStream *asf_st;
847 int64_t pts;
848 int64_t pos= *ppos;
849 int i;
850 int64_t start_pos[s->nb_streams];
851
852 for(i=0; i<s->nb_streams; i++){
853 start_pos[i]= pos;
854 }
855
856 //printf("asf_read_pts\n");
857 url_fseek(&s->pb, pos*asf->packet_size + s->data_offset, SEEK_SET);
858 asf_reset_header(s);
859 for(;;){
860 if (av_read_frame(s, pkt) < 0){
861 printf("seek failed\n");
862 return AV_NOPTS_VALUE;
863 }
864 pts= pkt->pts;
865
866 av_free_packet(pkt);
867 if(pkt->flags&PKT_FLAG_KEY){
868 i= pkt->stream_index;
869
870 asf_st= s->streams[i]->priv_data;
871
872 assert((asf_st->packet_pos - s->data_offset) % asf->packet_size == 0);
873 pos= (asf_st->packet_pos - s->data_offset) / asf->packet_size;
874
875 av_add_index_entry(s->streams[i], pos, pts, pos - start_pos[i] + 1, AVINDEX_KEYFRAME);
876 start_pos[i]= pos + 1;
877
878 if(pkt->stream_index == stream_index)
879 break;
880 }
881 }
882
883 *ppos= pos;
884 //printf("found keyframe at %Ld stream %d stamp:%Ld\n", *ppos, stream_index, pts);
885
886 return pts;
887 }
888
889 static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts)
890 {
891 ASFContext *asf = s->priv_data;
892 AVStream *st;
893 int64_t pos;
894 int64_t pos_min, pos_max, pts_min, pts_max, cur_pts, pos_limit;
895 int no_change;
896
897 if (stream_index == -1)
898 stream_index= av_find_default_stream_index(s);
899
900 if (asf->packet_size <= 0)
901 return -1;
902
903 pts_max=
904 pts_min= AV_NOPTS_VALUE;
905 pos_max= pos_limit= -1; // gcc thinks its uninitalized
906
907 st= s->streams[stream_index];
908 if(st->index_entries){
909 AVIndexEntry *e;
910 int index;
911
912 index= av_index_search_timestamp(st, pts);
913 e= &st->index_entries[index];
914 if(e->timestamp <= pts){
915 pos_min= e->pos;
916 pts_min= e->timestamp;
917 }else{
918 assert(index==0);
919 }
920 index++;
921 if(index < st->nb_index_entries){
922 e= &st->index_entries[index];
923 assert(e->timestamp >= pts);
924 pos_max= e->pos;
925 pts_max= e->timestamp;
926 pos_limit= pos_max - e->min_distance;
927 }
928 }
929
930 if(pts_min == (int64_t)AV_NOPTS_VALUE){
931 pos_min = 0;
932 pts_min = asf_read_pts(s, &pos_min, stream_index);
933 if (pts_min == (int64_t)AV_NOPTS_VALUE) return -1;
934 }
935 if(pts_max == (int64_t)AV_NOPTS_VALUE){
936 pos_max = (url_filesize(url_fileno(&s->pb)) - 1 - s->data_offset) / asf->packet_size; //FIXME wrong
937 pts_max = s->duration; //FIXME wrong
938 pos_limit= pos_max;
939 }
940
941 no_change=0;
942 while (pos_min < pos_limit) {
943 int64_t start_pos;
944 assert(pos_limit <= pos_max);
945
946 if(no_change==0){
947 int64_t approximate_keyframe_distance= pos_max - pos_limit;
948 // interpolate position (better than dichotomy)
949 pos = (int64_t)((double)(pos_max - pos_min) *
950 (double)(pts - pts_min) /
951 (double)(pts_max - pts_min)) + pos_min - approximate_keyframe_distance;
952 }else if(no_change==1){
953 // bisection, if interpolation failed to change min or max pos last time
954 pos = (pos_min + pos_limit)>>1;
955 }else{
956 // linear search if bisection failed, can only happen if there are very few or no keyframes between min/max
957 pos=pos_min;
958 }
959 if(pos <= pos_min)
960 pos= pos_min + 1;
961 else if(pos > pos_limit)
962 pos= pos_limit;
963 start_pos= pos;
964
965 // read the next timestamp
966 cur_pts = asf_read_pts(s, &pos, stream_index);
967 if(pos == pos_max)
968 no_change++;
969 else
970 no_change=0;
971
972 assert (cur_pts != AV_NOPTS_VALUE);
973 if (pts < cur_pts) {
974 pos_limit = start_pos - 1;
975 pos_max = pos;
976 pts_max = cur_pts;
977 } else {
978 pos_min = pos;
979 pts_min = cur_pts;
980 /* check if we are lucky */
981 if (pts == cur_pts)
982 break;
983 }
984 }
985 pos = pos_min;
986 url_fseek(&s->pb, pos*asf->packet_size + s->data_offset, SEEK_SET);
987 asf_reset_header(s);
988 return 0;
989 }
990
991 static AVInputFormat asf_iformat = {
992 "asf",
993 "asf format",
994 sizeof(ASFContext),
995 asf_probe,
996 asf_read_header,
997 asf_read_packet,
998 asf_read_close,
999 asf_read_seek,
1000 0, NULL, 0, NULL, NULL, NULL
1001 };
1002
1003 int asf_init(void)
1004 {
1005 av_register_input_format(&asf_iformat);
1006
1007 return 0;
1008 }