]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/asf.c
simplify
[frescor/ffmpeg.git] / libavformat / asf.c
1 /*
2  * ASF compatible demuxer
3  * Copyright (c) 2000, 2001 Fabrice Bellard.
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 #include "avformat.h"
22 #include "riff.h"
23 #include "mpegaudio.h"
24 #include "asf.h"
25 #include "common.h"
26
27 #undef NDEBUG
28 #include <assert.h>
29
30 #define FRAME_HEADER_SIZE 17
31 // Fix Me! FRAME_HEADER_SIZE may be different.
32
33 static const GUID index_guid = {
34     0x90, 0x08, 0x00, 0x33, 0xb1, 0xe5, 0xcf, 0x11, 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb
35 };
36
37 /**********************************/
38 /* decoding */
39
40 //#define DEBUG
41
42 #ifdef DEBUG
43 #define PRINT_IF_GUID(g,cmp) \
44 if (!memcmp(g, &cmp, sizeof(GUID))) \
45     printf("(GUID: %s) ", #cmp)
46
47 static void print_guid(const GUID *g)
48 {
49     int i;
50     PRINT_IF_GUID(g, asf_header);
51     else PRINT_IF_GUID(g, file_header);
52     else PRINT_IF_GUID(g, stream_header);
53     else PRINT_IF_GUID(g, audio_stream);
54     else PRINT_IF_GUID(g, audio_conceal_none);
55     else PRINT_IF_GUID(g, video_stream);
56     else PRINT_IF_GUID(g, video_conceal_none);
57     else PRINT_IF_GUID(g, command_stream);
58     else PRINT_IF_GUID(g, comment_header);
59     else PRINT_IF_GUID(g, codec_comment_header);
60     else PRINT_IF_GUID(g, codec_comment1_header);
61     else PRINT_IF_GUID(g, data_header);
62     else PRINT_IF_GUID(g, index_guid);
63     else PRINT_IF_GUID(g, head1_guid);
64     else PRINT_IF_GUID(g, head2_guid);
65     else PRINT_IF_GUID(g, my_guid);
66     else PRINT_IF_GUID(g, ext_stream_header);
67     else PRINT_IF_GUID(g, extended_content_header);
68     else PRINT_IF_GUID(g, ext_stream_embed_stream_header);
69     else PRINT_IF_GUID(g, ext_stream_audio_stream);
70     else
71         printf("(GUID: unknown) ");
72     for(i=0;i<16;i++)
73         printf(" 0x%02x,", (*g)[i]);
74     printf("}\n");
75 }
76 #undef PRINT_IF_GUID
77 #endif
78
79 static void get_guid(ByteIOContext *s, GUID *g)
80 {
81     assert(sizeof(*g) == 16);
82     get_buffer(s, g, sizeof(*g));
83 }
84
85 #if 0
86 static void get_str16(ByteIOContext *pb, char *buf, int buf_size)
87 {
88     int len, c;
89     char *q;
90
91     len = get_le16(pb);
92     q = buf;
93     while (len > 0) {
94         c = get_le16(pb);
95         if ((q - buf) < buf_size - 1)
96             *q++ = c;
97         len--;
98     }
99     *q = '\0';
100 }
101 #endif
102
103 static void get_str16_nolen(ByteIOContext *pb, int len, char *buf, int buf_size)
104 {
105     char* q = buf;
106     len /= 2;
107     while (len--) {
108         uint8_t tmp;
109         PUT_UTF8(get_le16(pb), tmp, if (q - buf < buf_size - 1) *q++ = tmp;)
110     }
111     *q = '\0';
112 }
113
114 static int asf_probe(AVProbeData *pd)
115 {
116     /* check file header */
117     if (pd->buf_size <= 32)
118         return 0;
119
120     if (!memcmp(pd->buf, &asf_header, sizeof(GUID)))
121         return AVPROBE_SCORE_MAX;
122     else
123         return 0;
124 }
125
126 static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
127 {
128     ASFContext *asf = s->priv_data;
129     GUID g;
130     ByteIOContext *pb = &s->pb;
131     AVStream *st;
132     ASFStream *asf_st;
133     int size, i;
134     int64_t gsize;
135
136     get_guid(pb, &g);
137     if (memcmp(&g, &asf_header, sizeof(GUID)))
138         goto fail;
139     get_le64(pb);
140     get_le32(pb);
141     get_byte(pb);
142     get_byte(pb);
143     memset(&asf->asfid2avid, -1, sizeof(asf->asfid2avid));
144     for(;;) {
145         get_guid(pb, &g);
146         gsize = get_le64(pb);
147 #ifdef DEBUG
148         printf("%08"PRIx64": ", url_ftell(pb) - 24);
149         print_guid(&g);
150         printf("  size=0x%"PRIx64"\n", gsize);
151 #endif
152         if (gsize < 24)
153             goto fail;
154         if (!memcmp(&g, &file_header, sizeof(GUID))) {
155             get_guid(pb, &asf->hdr.guid);
156             asf->hdr.file_size          = get_le64(pb);
157             asf->hdr.create_time        = get_le64(pb);
158             asf->nb_packets             = get_le64(pb);
159             asf->hdr.send_time          = get_le64(pb);
160             asf->hdr.play_time          = get_le64(pb);
161             asf->hdr.preroll            = get_le32(pb);
162             asf->hdr.ignore             = get_le32(pb);
163             asf->hdr.flags              = get_le32(pb);
164             asf->hdr.min_pktsize        = get_le32(pb);
165             asf->hdr.max_pktsize        = get_le32(pb);
166             asf->hdr.max_bitrate        = get_le32(pb);
167             asf->packet_size = asf->hdr.max_pktsize;
168         } else if (!memcmp(&g, &stream_header, sizeof(GUID))) {
169             int type, type_specific_size, sizeX;
170             uint64_t total_size;
171             unsigned int tag1;
172             int64_t pos1, pos2;
173             int test_for_ext_stream_audio;
174
175             pos1 = url_ftell(pb);
176
177             st = av_new_stream(s, 0);
178             if (!st)
179                 goto fail;
180             av_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
181             asf_st = av_mallocz(sizeof(ASFStream));
182             if (!asf_st)
183                 goto fail;
184             st->priv_data = asf_st;
185             st->start_time = asf->hdr.preroll;
186             if(!(asf->hdr.flags & 0x01)) { // if we aren't streaming...
187                 st->duration = asf->hdr.send_time /
188                     (10000000 / 1000) - st->start_time;
189             }
190             get_guid(pb, &g);
191
192             test_for_ext_stream_audio = 0;
193             if (!memcmp(&g, &audio_stream, sizeof(GUID))) {
194                 type = CODEC_TYPE_AUDIO;
195             } else if (!memcmp(&g, &video_stream, sizeof(GUID))) {
196                 type = CODEC_TYPE_VIDEO;
197             } else if (!memcmp(&g, &command_stream, sizeof(GUID))) {
198                 type = CODEC_TYPE_UNKNOWN;
199             } else if (!memcmp(&g, &ext_stream_embed_stream_header, sizeof(GUID))) {
200                 test_for_ext_stream_audio = 1;
201                 type = CODEC_TYPE_UNKNOWN;
202             } else {
203                 goto fail;
204             }
205             get_guid(pb, &g);
206             total_size = get_le64(pb);
207             type_specific_size = get_le32(pb);
208             get_le32(pb);
209             st->id = get_le16(pb) & 0x7f; /* stream id */
210             // mapping of asf ID to AV stream ID;
211             asf->asfid2avid[st->id] = s->nb_streams - 1;
212
213             get_le32(pb);
214
215             if (test_for_ext_stream_audio) {
216                 get_guid(pb, &g);
217                 if (!memcmp(&g, &ext_stream_audio_stream, sizeof(GUID))) {
218                     type = CODEC_TYPE_AUDIO;
219                     get_guid(pb, &g);
220                     get_le32(pb);
221                     get_le32(pb);
222                     get_le32(pb);
223                     get_guid(pb, &g);
224                     get_le32(pb);
225                 }
226             }
227
228             st->codec->codec_type = type;
229             if (type == CODEC_TYPE_AUDIO) {
230                 get_wav_header(pb, st->codec, type_specific_size);
231                 st->need_parsing = 1;
232                 /* We have to init the frame size at some point .... */
233                 pos2 = url_ftell(pb);
234                 if (gsize > (pos2 + 8 - pos1 + 24)) {
235                     asf_st->ds_span = get_byte(pb);
236                     asf_st->ds_packet_size = get_le16(pb);
237                     asf_st->ds_chunk_size = get_le16(pb);
238                     get_le16(pb); //ds_data_size
239                     get_byte(pb); //ds_silence_data
240                 }
241                 //printf("Descrambling: ps:%d cs:%d ds:%d s:%d  sd:%d\n",
242                 //       asf_st->ds_packet_size, asf_st->ds_chunk_size,
243                 //       asf_st->ds_data_size, asf_st->ds_span, asf_st->ds_silence_data);
244                 if (asf_st->ds_span > 1) {
245                     if (!asf_st->ds_chunk_size
246                         || (asf_st->ds_packet_size/asf_st->ds_chunk_size <= 1)
247                         || asf_st->ds_packet_size % asf_st->ds_chunk_size)
248                         asf_st->ds_span = 0; // disable descrambling
249                 }
250                 switch (st->codec->codec_id) {
251                 case CODEC_ID_MP3:
252                     st->codec->frame_size = MPA_FRAME_SIZE;
253                     break;
254                 case CODEC_ID_PCM_S16LE:
255                 case CODEC_ID_PCM_S16BE:
256                 case CODEC_ID_PCM_U16LE:
257                 case CODEC_ID_PCM_U16BE:
258                 case CODEC_ID_PCM_S8:
259                 case CODEC_ID_PCM_U8:
260                 case CODEC_ID_PCM_ALAW:
261                 case CODEC_ID_PCM_MULAW:
262                     st->codec->frame_size = 1;
263                     break;
264                 default:
265                     /* This is probably wrong, but it prevents a crash later */
266                     st->codec->frame_size = 1;
267                     break;
268                 }
269             } else if (type == CODEC_TYPE_VIDEO) {
270                 get_le32(pb);
271                 get_le32(pb);
272                 get_byte(pb);
273                 size = get_le16(pb); /* size */
274                 sizeX= get_le32(pb); /* size */
275                 st->codec->width = get_le32(pb);
276                 st->codec->height = get_le32(pb);
277                 /* not available for asf */
278                 get_le16(pb); /* panes */
279                 st->codec->bits_per_sample = get_le16(pb); /* depth */
280                 tag1 = get_le32(pb);
281                 url_fskip(pb, 20);
282 //                av_log(NULL, AV_LOG_DEBUG, "size:%d tsize:%d sizeX:%d\n", size, total_size, sizeX);
283                 size= sizeX;
284                 if (size > 40) {
285                     st->codec->extradata_size = size - 40;
286                     st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
287                     get_buffer(pb, st->codec->extradata, st->codec->extradata_size);
288                 }
289
290         /* Extract palette from extradata if bpp <= 8 */
291         /* This code assumes that extradata contains only palette */
292         /* This is true for all paletted codecs implemented in ffmpeg */
293         if (st->codec->extradata_size && (st->codec->bits_per_sample <= 8)) {
294             st->codec->palctrl = av_mallocz(sizeof(AVPaletteControl));
295 #ifdef WORDS_BIGENDIAN
296             for (i = 0; i < FFMIN(st->codec->extradata_size, AVPALETTE_SIZE)/4; i++)
297                 st->codec->palctrl->palette[i] = bswap_32(((uint32_t*)st->codec->extradata)[i]);
298 #else
299             memcpy(st->codec->palctrl->palette, st->codec->extradata,
300                    FFMIN(st->codec->extradata_size, AVPALETTE_SIZE));
301 #endif
302             st->codec->palctrl->palette_changed = 1;
303         }
304
305                 st->codec->codec_tag = tag1;
306                 st->codec->codec_id = codec_get_id(codec_bmp_tags, tag1);
307                 if(tag1 == MKTAG('D', 'V', 'R', ' '))
308                     st->need_parsing = 1;
309             }
310             pos2 = url_ftell(pb);
311             url_fskip(pb, gsize - (pos2 - pos1 + 24));
312         } else if (!memcmp(&g, &data_header, sizeof(GUID))) {
313             asf->data_object_offset = url_ftell(pb);
314             // if not streaming, gsize is not unlimited (how?), and there is enough space in the file..
315             if (!(asf->hdr.flags & 0x01) && gsize != (uint64_t)-1 && gsize >= 24) {
316                 asf->data_object_size = gsize - 24;
317             } else {
318                 asf->data_object_size = (uint64_t)-1;
319             }
320             break;
321         } else if (!memcmp(&g, &comment_header, sizeof(GUID))) {
322             int len1, len2, len3, len4, len5;
323
324             len1 = get_le16(pb);
325             len2 = get_le16(pb);
326             len3 = get_le16(pb);
327             len4 = get_le16(pb);
328             len5 = get_le16(pb);
329             get_str16_nolen(pb, len1, s->title, sizeof(s->title));
330             get_str16_nolen(pb, len2, s->author, sizeof(s->author));
331             get_str16_nolen(pb, len3, s->copyright, sizeof(s->copyright));
332             get_str16_nolen(pb, len4, s->comment, sizeof(s->comment));
333             url_fskip(pb, len5);
334        } else if (!memcmp(&g, &extended_content_header, sizeof(GUID))) {
335                 int desc_count, i;
336
337                 desc_count = get_le16(pb);
338                 for(i=0;i<desc_count;i++)
339                 {
340                         int name_len,value_type,value_len;
341                         uint64_t value_num = 0;
342                         char *name;
343
344                         name_len = get_le16(pb);
345                         name = av_malloc(name_len * 2);
346                         get_str16_nolen(pb, name_len, name, name_len * 2);
347                         value_type = get_le16(pb);
348                         value_len = get_le16(pb);
349                         if ((value_type == 0) || (value_type == 1)) // unicode or byte
350                         {
351                                 if (!strcmp(name,"WM/AlbumTitle")) get_str16_nolen(pb, value_len, s->album, sizeof(s->album));
352                                 if (!strcmp(name,"WM/Genre"     )) get_str16_nolen(pb, value_len, s->genre, sizeof(s->genre));
353                         }
354                         if ((value_type >= 2) && (value_type <= 5)) // boolean or DWORD or QWORD or WORD
355                         {
356                                 if (value_type==2) value_num = get_le32(pb);
357                                 if (value_type==3) value_num = get_le32(pb);
358                                 if (value_type==4) value_num = get_le64(pb);
359                                 if (value_type==5) value_num = get_le16(pb);
360                                 if (strcmp(name,"WM/Track")==0) s->track = value_num + 1;
361                                 if (strcmp(name,"WM/TrackNumber")==0) s->track = value_num;
362                         }
363                         av_free(name);
364                 }
365         } else if (!memcmp(&g, &ext_stream_header, sizeof(GUID))) {
366             int ext_len, payload_ext_ct, stream_ct;
367             uint32_t ext_d;
368             int64_t pos_ex_st;
369             pos_ex_st = url_ftell(pb);
370
371             get_le64(pb);
372             get_le64(pb);
373             get_le32(pb);
374             get_le32(pb);
375             get_le32(pb);
376             get_le32(pb);
377             get_le32(pb);
378             get_le32(pb);
379             get_le32(pb);
380             get_le32(pb);
381             get_le16(pb);
382             get_le16(pb);
383             get_le64(pb);
384             stream_ct = get_le16(pb);
385             payload_ext_ct = get_le16(pb);
386
387             for (i=0; i<stream_ct; i++){
388                 get_le16(pb);
389                 ext_len = get_le16(pb);
390                 url_fseek(pb, ext_len, SEEK_CUR);
391             }
392
393             for (i=0; i<payload_ext_ct; i++){
394                 get_guid(pb, &g);
395                 ext_d=get_le16(pb);
396                 ext_len=get_le32(pb);
397                 url_fseek(pb, ext_len, SEEK_CUR);
398             }
399
400             // there could be a optional stream properties object to follow
401             // if so the next iteration will pick it up
402         } else if (!memcmp(&g, &head1_guid, sizeof(GUID))) {
403             int v1, v2;
404             get_guid(pb, &g);
405             v1 = get_le32(pb);
406             v2 = get_le16(pb);
407 #if 0
408         } else if (!memcmp(&g, &codec_comment_header, sizeof(GUID))) {
409             int len, v1, n, num;
410             char str[256], *q;
411             char tag[16];
412
413             get_guid(pb, &g);
414             print_guid(&g);
415
416             n = get_le32(pb);
417             for(i=0;i<n;i++) {
418                 num = get_le16(pb); /* stream number */
419                 get_str16(pb, str, sizeof(str));
420                 get_str16(pb, str, sizeof(str));
421                 len = get_le16(pb);
422                 q = tag;
423                 while (len > 0) {
424                     v1 = get_byte(pb);
425                     if ((q - tag) < sizeof(tag) - 1)
426                         *q++ = v1;
427                     len--;
428                 }
429                 *q = '\0';
430             }
431 #endif
432         } else if (url_feof(pb)) {
433             goto fail;
434         } else {
435             url_fseek(pb, gsize - 24, SEEK_CUR);
436         }
437     }
438     get_guid(pb, &g);
439     get_le64(pb);
440     get_byte(pb);
441     get_byte(pb);
442     if (url_feof(pb))
443         goto fail;
444     asf->data_offset = url_ftell(pb);
445     asf->packet_size_left = 0;
446
447     return 0;
448
449  fail:
450      for(i=0;i<s->nb_streams;i++) {
451         AVStream *st = s->streams[i];
452         if (st) {
453             av_free(st->priv_data);
454             av_free(st->codec->extradata);
455         }
456         av_free(st);
457     }
458     return -1;
459 }
460
461 #define DO_2BITS(bits, var, defval) \
462     switch (bits & 3) \
463     { \
464     case 3: var = get_le32(pb); rsize += 4; break; \
465     case 2: var = get_le16(pb); rsize += 2; break; \
466     case 1: var = get_byte(pb); rsize++; break; \
467     default: var = defval; break; \
468     }
469
470 static int asf_get_packet(AVFormatContext *s)
471 {
472     ASFContext *asf = s->priv_data;
473     ByteIOContext *pb = &s->pb;
474     uint32_t packet_length, padsize;
475     int rsize = 9;
476     int c;
477
478     assert((url_ftell(&s->pb) - s->data_offset) % asf->packet_size == 0);
479
480     c = get_byte(pb);
481     if (c != 0x82) {
482         if (!url_feof(pb))
483             av_log(s, AV_LOG_ERROR, "ff asf bad header %x  at:%"PRId64"\n", c, url_ftell(pb));
484     }
485     if ((c & 0x0f) == 2) { // always true for now
486         if (get_le16(pb) != 0) {
487             if (!url_feof(pb))
488                 av_log(s, AV_LOG_ERROR, "ff asf bad non zero\n");
489             return AVERROR_IO;
490         }
491         rsize+=2;
492 /*    }else{
493         if (!url_feof(pb))
494             printf("ff asf bad header %x  at:%"PRId64"\n", c, url_ftell(pb));
495         return AVERROR_IO;*/
496     }
497
498     asf->packet_flags = get_byte(pb);
499     asf->packet_property = get_byte(pb);
500
501     DO_2BITS(asf->packet_flags >> 5, packet_length, asf->packet_size);
502     DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored
503     DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length
504
505     //the following checks prevent overflows and infinite loops
506     if(packet_length >= (1U<<29)){
507         av_log(s, AV_LOG_ERROR, "invalid packet_length %d at:%"PRId64"\n", packet_length, url_ftell(pb));
508         return 0; // FIXME this should be -1
509     }
510     if(padsize >= (1U<<29)){
511         av_log(s, AV_LOG_ERROR, "invalid padsize %d at:%"PRId64"\n", padsize, url_ftell(pb));
512         return 0; // FIXME this should be -1
513     }
514
515     asf->packet_timestamp = get_le32(pb);
516     get_le16(pb); /* duration */
517     // rsize has at least 11 bytes which have to be present
518
519     if (asf->packet_flags & 0x01) {
520         asf->packet_segsizetype = get_byte(pb); rsize++;
521         asf->packet_segments = asf->packet_segsizetype & 0x3f;
522     } else {
523         asf->packet_segments = 1;
524         asf->packet_segsizetype = 0x80;
525     }
526     asf->packet_size_left = packet_length - padsize - rsize;
527     if (packet_length < asf->hdr.min_pktsize)
528         padsize += asf->hdr.min_pktsize - packet_length;
529     asf->packet_padsize = padsize;
530 #ifdef DEBUG
531     printf("packet: size=%d padsize=%d  left=%d\n", asf->packet_size, asf->packet_padsize, asf->packet_size_left);
532 #endif
533     return 0;
534 }
535
536 static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
537 {
538     ASFContext *asf = s->priv_data;
539     ASFStream *asf_st = 0;
540     ByteIOContext *pb = &s->pb;
541     //static int pc = 0;
542     for (;;) {
543         int rsize = 0;
544         if (asf->packet_size_left < FRAME_HEADER_SIZE
545             || asf->packet_segments < 1) {
546             //asf->packet_size_left <= asf->packet_padsize) {
547             int ret = asf->packet_size_left + asf->packet_padsize;
548             //printf("PacketLeftSize:%d  Pad:%d Pos:%"PRId64"\n", asf->packet_size_left, asf->packet_padsize, url_ftell(pb));
549             if((url_ftell(&s->pb) + ret - s->data_offset) % asf->packet_size)
550                 ret += asf->packet_size - ((url_ftell(&s->pb) + ret - s->data_offset) % asf->packet_size);
551             assert(ret>=0);
552             /* fail safe */
553             url_fskip(pb, ret);
554             asf->packet_pos= url_ftell(&s->pb);
555             if (asf->data_object_size != (uint64_t)-1 &&
556                 (asf->packet_pos - asf->data_object_offset >= asf->data_object_size))
557                 return AVERROR_IO; /* Do not exceed the size of the data object */
558             ret = asf_get_packet(s);
559             //printf("READ ASF PACKET  %d   r:%d   c:%d\n", ret, asf->packet_size_left, pc++);
560             if (ret < 0 || url_feof(pb))
561                 return AVERROR_IO;
562             asf->packet_time_start = 0;
563             continue;
564         }
565         if (asf->packet_time_start == 0) {
566             /* read frame header */
567             int num = get_byte(pb);
568             asf->packet_segments--;
569             rsize++;
570             asf->packet_key_frame = num >> 7;
571             asf->stream_index = asf->asfid2avid[num & 0x7f];
572             // sequence should be ignored!
573             DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0);
574             DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0);
575             DO_2BITS(asf->packet_property, asf->packet_replic_size, 0);
576 //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);
577             if (asf->packet_replic_size >= 8) {
578                 asf->packet_obj_size = get_le32(pb);
579                 if(asf->packet_obj_size >= (1<<24) || asf->packet_obj_size <= 0){
580                     av_log(s, AV_LOG_ERROR, "packet_obj_size invalid\n");
581                     continue;
582                 }
583                 asf->packet_frag_timestamp = get_le32(pb); // timestamp
584                 url_fskip(pb, asf->packet_replic_size - 8);
585                 rsize += asf->packet_replic_size; // FIXME - check validity
586             } else if (asf->packet_replic_size==1){
587                 // multipacket - frag_offset is begining timestamp
588                 asf->packet_time_start = asf->packet_frag_offset;
589                 asf->packet_frag_offset = 0;
590                 asf->packet_frag_timestamp = asf->packet_timestamp;
591
592                 asf->packet_time_delta = get_byte(pb);
593                 rsize++;
594             }else if(asf->packet_replic_size!=0){
595                 av_log(s, AV_LOG_ERROR, "unexpected packet_replic_size of %d\n", asf->packet_replic_size);
596                 continue;
597             }
598             if (asf->packet_flags & 0x01) {
599                 DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal
600 #undef DO_2BITS
601                 //printf("Fragsize %d\n", asf->packet_frag_size);
602             } else {
603                 asf->packet_frag_size = asf->packet_size_left - rsize;
604                 //printf("Using rest  %d %d %d\n", asf->packet_frag_size, asf->packet_size_left, rsize);
605             }
606             if (asf->packet_replic_size == 1) {
607                 asf->packet_multi_size = asf->packet_frag_size;
608                 if (asf->packet_multi_size > asf->packet_size_left) {
609                     asf->packet_segments = 0;
610                     continue;
611                 }
612             }
613             asf->packet_size_left -= rsize;
614             //printf("___objsize____  %d   %d    rs:%d\n", asf->packet_obj_size, asf->packet_frag_offset, rsize);
615
616             if (asf->stream_index < 0
617                 || s->streams[asf->stream_index]->discard >= AVDISCARD_ALL
618                 || (!asf->packet_key_frame && s->streams[asf->stream_index]->discard >= AVDISCARD_NONKEY)
619                 ) {
620                 asf->packet_time_start = 0;
621                 /* unhandled packet (should not happen) */
622                 url_fskip(pb, asf->packet_frag_size);
623                 asf->packet_size_left -= asf->packet_frag_size;
624                 if(asf->stream_index < 0)
625                     av_log(s, AV_LOG_ERROR, "ff asf skip %d  %d\n", asf->packet_frag_size, num & 0x7f);
626                 continue;
627             }
628             asf->asf_st = s->streams[asf->stream_index]->priv_data;
629         }
630         asf_st = asf->asf_st;
631
632         if ((asf->packet_frag_offset != asf_st->frag_offset
633              || (asf->packet_frag_offset
634                  && asf->packet_seq != asf_st->seq)) // seq should be ignored
635            ) {
636             /* cannot continue current packet: free it */
637             // FIXME better check if packet was already allocated
638             av_log(s, AV_LOG_INFO, "ff asf parser skips: %d - %d     o:%d - %d    %d %d   fl:%d\n",
639                    asf_st->pkt.size,
640                    asf->packet_obj_size,
641                    asf->packet_frag_offset, asf_st->frag_offset,
642                    asf->packet_seq, asf_st->seq, asf->packet_frag_size);
643             if (asf_st->pkt.size)
644                 av_free_packet(&asf_st->pkt);
645             asf_st->frag_offset = 0;
646             if (asf->packet_frag_offset != 0) {
647                 url_fskip(pb, asf->packet_frag_size);
648                 av_log(s, AV_LOG_INFO, "ff asf parser skipping %db\n", asf->packet_frag_size);
649                 asf->packet_size_left -= asf->packet_frag_size;
650                 continue;
651             }
652         }
653         if (asf->packet_replic_size == 1) {
654             // frag_offset is here used as the begining timestamp
655             asf->packet_frag_timestamp = asf->packet_time_start;
656             asf->packet_time_start += asf->packet_time_delta;
657             asf->packet_obj_size = asf->packet_frag_size = get_byte(pb);
658             asf->packet_size_left--;
659             asf->packet_multi_size--;
660             if (asf->packet_multi_size < asf->packet_obj_size)
661             {
662                 asf->packet_time_start = 0;
663                 url_fskip(pb, asf->packet_multi_size);
664                 asf->packet_size_left -= asf->packet_multi_size;
665                 continue;
666             }
667             asf->packet_multi_size -= asf->packet_obj_size;
668             //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);
669         }
670         if (asf_st->frag_offset == 0) {
671             /* new packet */
672             av_new_packet(&asf_st->pkt, asf->packet_obj_size);
673             asf_st->seq = asf->packet_seq;
674             asf_st->pkt.pts = asf->packet_frag_timestamp;
675             asf_st->pkt.stream_index = asf->stream_index;
676             asf_st->pkt.pos =
677             asf_st->packet_pos= asf->packet_pos;
678 //printf("new packet: stream:%d key:%d packet_key:%d audio:%d size:%d\n",
679 //asf->stream_index, asf->packet_key_frame, asf_st->pkt.flags & PKT_FLAG_KEY,
680 //s->streams[asf->stream_index]->codec->codec_type == CODEC_TYPE_AUDIO, asf->packet_obj_size);
681             if (s->streams[asf->stream_index]->codec->codec_type == CODEC_TYPE_AUDIO)
682                 asf->packet_key_frame = 1;
683             if (asf->packet_key_frame)
684                 asf_st->pkt.flags |= PKT_FLAG_KEY;
685         }
686
687         /* read data */
688         //printf("READ PACKET s:%d  os:%d  o:%d,%d  l:%d   DATA:%p\n",
689         //       asf->packet_size, asf_st->pkt.size, asf->packet_frag_offset,
690         //       asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data);
691         asf->packet_size_left -= asf->packet_frag_size;
692         if (asf->packet_size_left < 0)
693             continue;
694         get_buffer(pb, asf_st->pkt.data + asf->packet_frag_offset,
695                    asf->packet_frag_size);
696         asf_st->frag_offset += asf->packet_frag_size;
697         /* test if whole packet is read */
698         if (asf_st->frag_offset == asf_st->pkt.size) {
699             /* return packet */
700             if (asf_st->ds_span > 1) {
701               if(asf_st->pkt.size != asf_st->ds_packet_size * asf_st->ds_span){
702                     av_log(s, AV_LOG_ERROR, "pkt.size != ds_packet_size * ds_span\n");
703               }else{
704                 /* packet descrambling */
705                 uint8_t *newdata = av_malloc(asf_st->pkt.size);
706                 if (newdata) {
707                     int offset = 0;
708                     while (offset < asf_st->pkt.size) {
709                         int off = offset / asf_st->ds_chunk_size;
710                         int row = off / asf_st->ds_span;
711                         int col = off % asf_st->ds_span;
712                         int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size;
713                         //printf("off:%d  row:%d  col:%d  idx:%d\n", off, row, col, idx);
714
715                         assert(offset + asf_st->ds_chunk_size <= asf_st->pkt.size);
716                         assert(idx+1 <= asf_st->pkt.size / asf_st->ds_chunk_size);
717                         memcpy(newdata + offset,
718                                asf_st->pkt.data + idx * asf_st->ds_chunk_size,
719                                asf_st->ds_chunk_size);
720                         offset += asf_st->ds_chunk_size;
721                     }
722                     av_free(asf_st->pkt.data);
723                     asf_st->pkt.data = newdata;
724                 }
725               }
726             }
727             asf_st->frag_offset = 0;
728             *pkt= asf_st->pkt;
729             //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size);
730             asf_st->pkt.size = 0;
731             asf_st->pkt.data = 0;
732             break; // packet completed
733         }
734     }
735     return 0;
736 }
737
738 static int asf_read_close(AVFormatContext *s)
739 {
740     int i;
741
742     for(i=0;i<s->nb_streams;i++) {
743         AVStream *st = s->streams[i];
744         av_free(st->priv_data);
745     av_free(st->codec->palctrl);
746     }
747     return 0;
748 }
749
750 // Added to support seeking after packets have been read
751 // If information is not reset, read_packet fails due to
752 // leftover information from previous reads
753 static void asf_reset_header(AVFormatContext *s)
754 {
755     ASFContext *asf = s->priv_data;
756     ASFStream *asf_st;
757     int i;
758
759     asf->packet_nb_frames = 0;
760     asf->packet_size_left = 0;
761     asf->packet_segments = 0;
762     asf->packet_flags = 0;
763     asf->packet_property = 0;
764     asf->packet_timestamp = 0;
765     asf->packet_segsizetype = 0;
766     asf->packet_segments = 0;
767     asf->packet_seq = 0;
768     asf->packet_replic_size = 0;
769     asf->packet_key_frame = 0;
770     asf->packet_padsize = 0;
771     asf->packet_frag_offset = 0;
772     asf->packet_frag_size = 0;
773     asf->packet_frag_timestamp = 0;
774     asf->packet_multi_size = 0;
775     asf->packet_obj_size = 0;
776     asf->packet_time_delta = 0;
777     asf->packet_time_start = 0;
778
779     for(i=0; i<s->nb_streams; i++){
780         asf_st= s->streams[i]->priv_data;
781         av_free_packet(&asf_st->pkt);
782         asf_st->frag_offset=0;
783         asf_st->seq=0;
784     }
785     asf->asf_st= NULL;
786 }
787
788 static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
789 {
790     ASFContext *asf = s->priv_data;
791     AVPacket pkt1, *pkt = &pkt1;
792     ASFStream *asf_st;
793     int64_t pts;
794     int64_t pos= *ppos;
795     int i;
796     int64_t start_pos[s->nb_streams];
797
798     for(i=0; i<s->nb_streams; i++){
799         start_pos[i]= pos;
800     }
801
802     pos= (pos+asf->packet_size-1-s->data_offset)/asf->packet_size*asf->packet_size+ s->data_offset;
803     *ppos= pos;
804     url_fseek(&s->pb, pos, SEEK_SET);
805
806 //printf("asf_read_pts\n");
807     asf_reset_header(s);
808     for(;;){
809         if (av_read_frame(s, pkt) < 0){
810             av_log(s, AV_LOG_INFO, "seek failed\n");
811             return AV_NOPTS_VALUE;
812         }
813
814         pts= pkt->pts;
815
816         av_free_packet(pkt);
817         if(pkt->flags&PKT_FLAG_KEY){
818             i= pkt->stream_index;
819
820             asf_st= s->streams[i]->priv_data;
821
822             assert((asf_st->packet_pos - s->data_offset) % asf->packet_size == 0);
823             pos= asf_st->packet_pos;
824
825             av_add_index_entry(s->streams[i], pos, pts, pkt->size, pos - start_pos[i] + 1, AVINDEX_KEYFRAME);
826             start_pos[i]= asf_st->packet_pos + 1;
827
828             if(pkt->stream_index == stream_index)
829                break;
830         }
831     }
832
833     *ppos= pos;
834 //printf("found keyframe at %"PRId64" stream %d stamp:%"PRId64"\n", *ppos, stream_index, pts);
835
836     return pts;
837 }
838
839 static void asf_build_simple_index(AVFormatContext *s, int stream_index)
840 {
841     GUID g;
842     ASFContext *asf = s->priv_data;
843     int64_t gsize, itime;
844     int64_t pos, current_pos, index_pts;
845     int i;
846     int pct,ict;
847
848     current_pos = url_ftell(&s->pb);
849
850     url_fseek(&s->pb, asf->data_object_offset + asf->data_object_size, SEEK_SET);
851     get_guid(&s->pb, &g);
852     if (!memcmp(&g, &index_guid, sizeof(GUID))) {
853         gsize = get_le64(&s->pb);
854         get_guid(&s->pb, &g);
855         itime=get_le64(&s->pb);
856         pct=get_le32(&s->pb);
857         ict=get_le32(&s->pb);
858         av_log(NULL, AV_LOG_DEBUG, "itime:0x%"PRIx64", pct:%d, ict:%d\n",itime,pct,ict);
859
860         for (i=0;i<ict;i++){
861             int pktnum=get_le32(&s->pb);
862             int pktct =get_le16(&s->pb);
863             av_log(NULL, AV_LOG_DEBUG, "pktnum:%d, pktct:%d\n", pktnum, pktct);
864
865             pos=s->data_offset + asf->packet_size*(int64_t)pktnum;
866             index_pts=av_rescale(itime, i, 10000);
867
868             av_add_index_entry(s->streams[stream_index], pos, index_pts, asf->packet_size, 0, AVINDEX_KEYFRAME);
869         }
870         asf->index_read= 1;
871     }
872     url_fseek(&s->pb, current_pos, SEEK_SET);
873 }
874
875 static int asf_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags)
876 {
877     ASFContext *asf = s->priv_data;
878     AVStream *st = s->streams[stream_index];
879     int64_t pos;
880     int index;
881
882     if (asf->packet_size <= 0)
883         return -1;
884
885     if (!asf->index_read)
886         asf_build_simple_index(s, stream_index);
887
888     if(!(asf->index_read && st->index_entries)){
889         if(av_seek_frame_binary(s, stream_index, pts, flags)<0)
890             return -1;
891     }else{
892         index= av_index_search_timestamp(st, pts, flags);
893         if(index<0)
894             return -1;
895
896         /* find the position */
897         pos = st->index_entries[index].pos;
898         pts = st->index_entries[index].timestamp;
899
900     // various attempts to find key frame have failed so far
901     //    asf_reset_header(s);
902     //    url_fseek(&s->pb, pos, SEEK_SET);
903     //    key_pos = pos;
904     //     for(i=0;i<16;i++){
905     //         pos = url_ftell(&s->pb);
906     //         if (av_read_frame(s, &pkt) < 0){
907     //             av_log(s, AV_LOG_INFO, "seek failed\n");
908     //             return -1;
909     //         }
910     //         asf_st = s->streams[stream_index]->priv_data;
911     //         pos += st->parser->frame_offset;
912     //
913     //         if (pkt.size > b) {
914     //             b = pkt.size;
915     //             key_pos = pos;
916     //         }
917     //
918     //         av_free_packet(&pkt);
919     //     }
920
921         /* do the seek */
922         av_log(NULL, AV_LOG_DEBUG, "SEEKTO: %"PRId64"\n", pos);
923         url_fseek(&s->pb, pos, SEEK_SET);
924     }
925     asf_reset_header(s);
926     return 0;
927 }
928
929 AVInputFormat asf_demuxer = {
930     "asf",
931     "asf format",
932     sizeof(ASFContext),
933     asf_probe,
934     asf_read_header,
935     asf_read_packet,
936     asf_read_close,
937     asf_read_seek,
938     asf_read_pts,
939 };