]> git.sesse.net Git - ffmpeg/blob - libavformat/asf.c
5edde52ca588e54ccf8a1bef5efdb8d1cc932d0a
[ffmpeg] / libavformat / asf.c
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 #include "avformat.h"
20 #include "avi.h"
21 #include "mpegaudio.h"
22
23 #define PACKET_SIZE 3200
24 #define PACKET_HEADER_SIZE 12
25 #define FRAME_HEADER_SIZE 17
26
27 typedef struct {
28     int num;
29     int seq;
30     /* use for reading */
31     AVPacket pkt;
32     int frag_offset;
33     int timestamp;
34     int64_t duration;
35
36     int ds_span;                /* descrambling  */
37     int ds_packet_size;
38     int ds_chunk_size;
39     int ds_data_size;
40     int ds_silence_data;
41
42 } ASFStream;
43
44 typedef struct {
45     uint32_t v1;
46     uint16_t v2;
47     uint16_t v3;
48     uint8_t v4[8];
49 } GUID;
50
51 typedef struct __attribute__((packed)) {
52     GUID guid;                  // generated by client computer
53     uint64_t file_size;         // in bytes
54                                 // invalid if broadcasting
55     uint64_t create_time;       // time of creation, in 100-nanosecond units since 1.1.1601
56                                 // invalid if broadcasting
57     uint64_t packets_count;     // how many packets are there in the file
58                                 // invalid if broadcasting
59     uint64_t play_time;         // play time, in 100-nanosecond units
60                                 // invalid if broadcasting
61     uint64_t send_time;         // time to send file, in 100-nanosecond units
62                                 // invalid if broadcasting (could be ignored)
63     uint32_t preroll;           // timestamp of the first packet, in milliseconds
64                                 // if nonzero - substract from time
65     uint32_t ignore;            // preroll is 64bit - but let's just ignore it
66     uint32_t flags;             // 0x01 - broadcast
67                                 // 0x02 - seekable
68                                 // rest is reserved should be 0
69     uint32_t min_pktsize;       // size of a data packet
70                                 // invalid if broadcasting
71     uint32_t max_pktsize;       // shall be the same as for min_pktsize
72                                 // invalid if broadcasting
73     uint32_t max_bitrate;       // bandwith of stream in bps
74                                 // should be the sum of bitrates of the
75                                 // individual media streams
76 } ASFMainHeader;
77
78
79 typedef struct {
80     int seqno;
81     int packet_size;
82     int is_streamed;
83     int asfid2avid[128];        /* conversion table from asf ID 2 AVStream ID */
84     ASFStream streams[128];     /* it's max number and it's not that big */
85     /* non streamed additonnal info */
86     int64_t nb_packets;
87     int64_t duration; /* in 100ns units */
88     /* packet filling */
89     int packet_size_left;
90     int packet_timestamp_start;
91     int packet_timestamp_end;
92     int packet_nb_frames;
93     uint8_t packet_buf[PACKET_SIZE];
94     ByteIOContext pb;
95     /* only for reading */
96     uint64_t data_offset; /* begining of the first data packet */
97
98     ASFMainHeader hdr;
99
100     int packet_flags;
101     int packet_property;
102     int packet_timestamp;
103     int packet_segsizetype;
104     int packet_segments;
105     int packet_seq;
106     int packet_replic_size;
107     int packet_key_frame;
108     int packet_padsize;
109     int packet_frag_offset;
110     int packet_frag_size;
111     int packet_frag_timestamp;
112     int packet_multi_size;
113     int packet_obj_size;
114     int packet_time_delta;
115     int packet_time_start;
116
117     int stream_index;
118     ASFStream* asf_st; /* currently decoded stream */
119 } ASFContext;
120
121 static const GUID asf_header = {
122     0x75B22630, 0x668E, 0x11CF, { 0xA6, 0xD9, 0x00, 0xAA, 0x00, 0x62, 0xCE, 0x6C },
123 };
124
125 static const GUID file_header = {
126     0x8CABDCA1, 0xA947, 0x11CF, { 0x8E, 0xE4, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 },
127 };
128
129 static const GUID stream_header = {
130     0xB7DC0791, 0xA9B7, 0x11CF, { 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65 },
131 };
132
133 static const GUID audio_stream = {
134     0xF8699E40, 0x5B4D, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B },
135 };
136
137 static const GUID audio_conceal_none = {
138     // 0x49f1a440, 0x4ece, 0x11d0, { 0xa3, 0xac, 0x00, 0xa0, 0xc9, 0x03, 0x48, 0xf6 },
139     // New value lifted from avifile
140     0x20fb5700, 0x5b55, 0x11cf, { 0xa8, 0xfd, 0x00, 0x80, 0x5f, 0x5c, 0x44, 0x2b },
141 };
142
143 static const GUID video_stream = {
144     0xBC19EFC0, 0x5B4D, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B },
145 };
146
147 static const GUID video_conceal_none = {
148     0x20FB5700, 0x5B55, 0x11CF, { 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B },
149 };
150
151
152 static const GUID comment_header = {
153     0x75b22633, 0x668e, 0x11cf, { 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c },
154 };
155
156 static const GUID codec_comment_header = {
157     0x86D15240, 0x311D, 0x11D0, { 0xA3, 0xA4, 0x00, 0xA0, 0xC9, 0x03, 0x48, 0xF6 },
158 };
159 static const GUID codec_comment1_header = {
160     0x86d15241, 0x311d, 0x11d0, { 0xa3, 0xa4, 0x00, 0xa0, 0xc9, 0x03, 0x48, 0xf6 },
161 };
162
163 static const GUID data_header = {
164     0x75b22636, 0x668e, 0x11cf, { 0xa6, 0xd9, 0x00, 0xaa, 0x00, 0x62, 0xce, 0x6c },
165 };
166
167 static const GUID index_guid = {
168     0x33000890, 0xe5b1, 0x11cf, { 0x89, 0xf4, 0x00, 0xa0, 0xc9, 0x03, 0x49, 0xcb },
169 };
170
171 static const GUID head1_guid = {
172     0x5fbf03b5, 0xa92e, 0x11cf, { 0x8e, 0xe3, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65 },
173 };
174
175 static const GUID head2_guid = {
176     0xabd3d211, 0xa9ba, 0x11cf, { 0x8e, 0xe6, 0x00, 0xc0, 0x0c, 0x20, 0x53, 0x65 },
177 };
178
179 /* I am not a number !!! This GUID is the one found on the PC used to
180    generate the stream */
181 static const GUID my_guid = {
182     0, 0, 0, { 0, 0, 0, 0, 0, 0, 0, 0 },
183 };
184
185 static void put_guid(ByteIOContext *s, const GUID *g)
186 {
187     int i;
188
189     put_le32(s, g->v1);
190     put_le16(s, g->v2);
191     put_le16(s, g->v3);
192     for(i=0;i<8;i++)
193         put_byte(s, g->v4[i]);
194 }
195
196 static void put_str16(ByteIOContext *s, const char *tag)
197 {
198     int c;
199
200     put_le16(s,strlen(tag) + 1);
201     for(;;) {
202         c = (uint8_t)*tag++;
203         put_le16(s, c);
204         if (c == '\0')
205             break;
206     }
207 }
208
209 static void put_str16_nolen(ByteIOContext *s, const char *tag)
210 {
211     int c;
212
213     for(;;) {
214         c = (uint8_t)*tag++;
215         put_le16(s, c);
216         if (c == '\0')
217             break;
218     }
219 }
220
221 static int64_t put_header(ByteIOContext *pb, const GUID *g)
222 {
223     int64_t pos;
224
225     pos = url_ftell(pb);
226     put_guid(pb, g);
227     put_le64(pb, 24);
228     return pos;
229 }
230
231 /* update header size */
232 static void end_header(ByteIOContext *pb, int64_t pos)
233 {
234     int64_t pos1;
235
236     pos1 = url_ftell(pb);
237     url_fseek(pb, pos + 16, SEEK_SET);
238     put_le64(pb, pos1 - pos);
239     url_fseek(pb, pos1, SEEK_SET);
240 }
241
242 /* write an asf chunk (only used in streaming case) */
243 static void put_chunk(AVFormatContext *s, int type, int payload_length, int flags)
244 {
245     ASFContext *asf = s->priv_data;
246     ByteIOContext *pb = &s->pb;
247     int length;
248
249     length = payload_length + 8;
250     put_le16(pb, type);
251     put_le16(pb, length);
252     put_le32(pb, asf->seqno);
253     put_le16(pb, flags); /* unknown bytes */
254     put_le16(pb, length);
255     asf->seqno++;
256 }
257
258 /* convert from unix to windows time */
259 static int64_t unix_to_file_time(int ti)
260 {
261     int64_t t;
262
263     t = ti * int64_t_C(10000000);
264     t += int64_t_C(116444736000000000);
265     return t;
266 }
267
268 /* write the header (used two times if non streamed) */
269 static int asf_write_header1(AVFormatContext *s, int64_t file_size, int64_t data_chunk_size)
270 {
271     ASFContext *asf = s->priv_data;
272     ByteIOContext *pb = &s->pb;
273     int header_size, n, extra_size, extra_size2, wav_extra_size, file_time;
274     int has_title;
275     AVCodecContext *enc;
276     int64_t header_offset, cur_pos, hpos;
277     int bit_rate;
278
279     has_title = (s->title[0] || s->author[0] || s->copyright[0] || s->comment[0]);
280
281     bit_rate = 0;
282     for(n=0;n<s->nb_streams;n++) {
283         enc = &s->streams[n]->codec;
284
285         bit_rate += enc->bit_rate;
286     }
287
288     if (asf->is_streamed) {
289         put_chunk(s, 0x4824, 0, 0xc00); /* start of stream (length will be patched later) */
290     }
291
292     put_guid(pb, &asf_header);
293     put_le64(pb, -1); /* header length, will be patched after */
294     put_le32(pb, 3 + has_title + s->nb_streams); /* number of chunks in header */
295     put_byte(pb, 1); /* ??? */
296     put_byte(pb, 2); /* ??? */
297
298     /* file header */
299     header_offset = url_ftell(pb);
300     hpos = put_header(pb, &file_header);
301     put_guid(pb, &my_guid);
302     put_le64(pb, file_size);
303     file_time = 0;
304     put_le64(pb, unix_to_file_time(file_time));
305     put_le64(pb, asf->nb_packets); /* number of packets */
306     put_le64(pb, asf->duration); /* end time stamp (in 100ns units) */
307     put_le64(pb, asf->duration); /* duration (in 100ns units) */
308     put_le32(pb, 0); /* start time stamp */
309     put_le32(pb, 0); /* ??? */
310     put_le32(pb, asf->is_streamed ? 1 : 0); /* ??? */
311     put_le32(pb, asf->packet_size); /* packet size */
312     put_le32(pb, asf->packet_size); /* packet size */
313     put_le32(pb, bit_rate); /* Nominal data rate in bps */
314     end_header(pb, hpos);
315
316     /* unknown headers */
317     hpos = put_header(pb, &head1_guid);
318     put_guid(pb, &head2_guid);
319     put_le32(pb, 6);
320     put_le16(pb, 0);
321     end_header(pb, hpos);
322
323     /* title and other infos */
324     if (has_title) {
325         hpos = put_header(pb, &comment_header);
326         put_le16(pb, 2 * (strlen(s->title) + 1));
327         put_le16(pb, 2 * (strlen(s->author) + 1));
328         put_le16(pb, 2 * (strlen(s->copyright) + 1));
329         put_le16(pb, 2 * (strlen(s->comment) + 1));
330         put_le16(pb, 0);
331         put_str16_nolen(pb, s->title);
332         put_str16_nolen(pb, s->author);
333         put_str16_nolen(pb, s->copyright);
334         put_str16_nolen(pb, s->comment);
335         end_header(pb, hpos);
336     }
337
338     /* stream headers */
339     for(n=0;n<s->nb_streams;n++) {
340         int64_t es_pos;
341         //        ASFStream *stream = &asf->streams[n];
342
343         enc = &s->streams[n]->codec;
344         asf->streams[n].num = n + 1;
345         asf->streams[n].seq = 0;
346
347         switch(enc->codec_type) {
348         case CODEC_TYPE_AUDIO:
349             wav_extra_size = 0;
350             extra_size = 18 + wav_extra_size;
351             extra_size2 = 0;
352             break;
353         default:
354         case CODEC_TYPE_VIDEO:
355             wav_extra_size = 0;
356             extra_size = 0x33;
357             extra_size2 = 0;
358             break;
359         }
360
361         hpos = put_header(pb, &stream_header);
362         if (enc->codec_type == CODEC_TYPE_AUDIO) {
363             put_guid(pb, &audio_stream);
364             put_guid(pb, &audio_conceal_none);
365         } else {
366             put_guid(pb, &video_stream);
367             put_guid(pb, &video_conceal_none);
368         }
369         put_le64(pb, 0); /* ??? */
370         es_pos = url_ftell(pb);
371         put_le32(pb, extra_size); /* wav header len */
372         put_le32(pb, extra_size2); /* additional data len */
373         put_le16(pb, n + 1); /* stream number */
374         put_le32(pb, 0); /* ??? */
375
376         if (enc->codec_type == CODEC_TYPE_AUDIO) {
377             /* WAVEFORMATEX header */
378             int wavsize = put_wav_header(pb, enc);
379
380             if (wavsize < 0)
381                 return -1;
382             if (wavsize != extra_size) {
383                 cur_pos = url_ftell(pb);
384                 url_fseek(pb, es_pos, SEEK_SET);
385                 put_le32(pb, wavsize); /* wav header len */
386                 url_fseek(pb, cur_pos, SEEK_SET);
387             }
388         } else {
389             put_le32(pb, enc->width);
390             put_le32(pb, enc->height);
391             put_byte(pb, 2); /* ??? */
392             put_le16(pb, 40); /* size */
393
394             /* BITMAPINFOHEADER header */
395             put_bmp_header(pb, enc, codec_bmp_tags, 1);
396         }
397         end_header(pb, hpos);
398     }
399
400     /* media comments */
401
402     hpos = put_header(pb, &codec_comment_header);
403     put_guid(pb, &codec_comment1_header);
404     put_le32(pb, s->nb_streams);
405     for(n=0;n<s->nb_streams;n++) {
406         AVCodec *p;
407
408         enc = &s->streams[n]->codec;
409         p = avcodec_find_encoder(enc->codec_id);
410
411         put_le16(pb, asf->streams[n].num);
412         put_str16(pb, p ? p->name : enc->codec_name);
413         put_le16(pb, 0); /* no parameters */
414         /* id */
415         if (enc->codec_type == CODEC_TYPE_AUDIO) {
416             put_le16(pb, 2);
417             put_le16(pb, codec_get_tag(codec_wav_tags, enc->codec_id));
418         } else {
419             put_le16(pb, 4);
420             put_le32(pb, codec_get_tag(codec_bmp_tags, enc->codec_id));
421         }
422     }
423     end_header(pb, hpos);
424
425     /* patch the header size fields */
426
427     cur_pos = url_ftell(pb);
428     header_size = cur_pos - header_offset;
429     if (asf->is_streamed) {
430         header_size += 8 + 30 + 50;
431
432         url_fseek(pb, header_offset - 10 - 30, SEEK_SET);
433         put_le16(pb, header_size);
434         url_fseek(pb, header_offset - 2 - 30, SEEK_SET);
435         put_le16(pb, header_size);
436
437         header_size -= 8 + 30 + 50;
438     }
439     header_size += 24 + 6;
440     url_fseek(pb, header_offset - 14, SEEK_SET);
441     put_le64(pb, header_size);
442     url_fseek(pb, cur_pos, SEEK_SET);
443
444     /* movie chunk, followed by packets of packet_size */
445     asf->data_offset = cur_pos;
446     put_guid(pb, &data_header);
447     put_le64(pb, data_chunk_size);
448     put_guid(pb, &my_guid);
449     put_le64(pb, asf->nb_packets); /* nb packets */
450     put_byte(pb, 1); /* ??? */
451     put_byte(pb, 1); /* ??? */
452     return 0;
453 }
454
455 static int asf_write_header(AVFormatContext *s)
456 {
457     ASFContext *asf = s->priv_data;
458
459     av_set_pts_info(s, 32, 1, 1000); /* 32 bit pts in ms */
460
461     asf->packet_size = PACKET_SIZE;
462     asf->nb_packets = 0;
463
464     if (asf_write_header1(s, 0, 50) < 0) {
465         //av_free(asf);
466         return -1;
467     }
468
469     put_flush_packet(&s->pb);
470
471     asf->packet_nb_frames = 0;
472     asf->packet_timestamp_start = -1;
473     asf->packet_timestamp_end = -1;
474     asf->packet_size_left = asf->packet_size - PACKET_HEADER_SIZE;
475     init_put_byte(&asf->pb, asf->packet_buf, asf->packet_size, 1,
476                   NULL, NULL, NULL, NULL);
477
478     return 0;
479 }
480
481 static int asf_write_stream_header(AVFormatContext *s)
482 {
483     ASFContext *asf = s->priv_data;
484
485     asf->is_streamed = 1;
486
487     return asf_write_header(s);
488 }
489
490 /* write a fixed size packet */
491 static int put_packet(AVFormatContext *s,
492                        unsigned int timestamp, unsigned int duration,
493                        int nb_frames, int padsize)
494 {
495     ASFContext *asf = s->priv_data;
496     ByteIOContext *pb = &s->pb;
497     int flags;
498
499     if (asf->is_streamed) {
500         put_chunk(s, 0x4424, asf->packet_size, 0);
501     }
502
503     put_byte(pb, 0x82);
504     put_le16(pb, 0);
505
506     flags = 0x01; /* nb segments present */
507     if (padsize > 0) {
508         if (padsize < 256)
509             flags |= 0x08;
510         else
511             flags |= 0x10;
512     }
513     put_byte(pb, flags); /* flags */
514     put_byte(pb, 0x5d);
515     if (flags & 0x10)
516         put_le16(pb, padsize - 2);
517     if (flags & 0x08)
518         put_byte(pb, padsize - 1);
519     put_le32(pb, timestamp);
520     put_le16(pb, duration);
521     put_byte(pb, nb_frames | 0x80);
522
523     return PACKET_HEADER_SIZE + ((flags & 0x18) >> 3);
524 }
525
526 static void flush_packet(AVFormatContext *s)
527 {
528     ASFContext *asf = s->priv_data;
529     int hdr_size, ptr;
530
531     hdr_size = put_packet(s, asf->packet_timestamp_start,
532                asf->packet_timestamp_end - asf->packet_timestamp_start,
533                asf->packet_nb_frames, asf->packet_size_left);
534
535     /* Clear out the padding bytes */
536     ptr = asf->packet_size - hdr_size - asf->packet_size_left;
537     memset(asf->packet_buf + ptr, 0, asf->packet_size_left);
538
539     put_buffer(&s->pb, asf->packet_buf, asf->packet_size - hdr_size);
540
541     put_flush_packet(&s->pb);
542     asf->nb_packets++;
543     asf->packet_nb_frames = 0;
544     asf->packet_timestamp_start = -1;
545     asf->packet_timestamp_end = -1;
546     asf->packet_size_left = asf->packet_size - PACKET_HEADER_SIZE;
547     init_put_byte(&asf->pb, asf->packet_buf, asf->packet_size, 1,
548                   NULL, NULL, NULL, NULL);
549 }
550
551 static void put_frame_header(AVFormatContext *s, ASFStream *stream, int timestamp,
552                              int payload_size, int frag_offset, int frag_len)
553 {
554     ASFContext *asf = s->priv_data;
555     ByteIOContext *pb = &asf->pb;
556     int val;
557
558     val = stream->num;
559     if (s->streams[val - 1]->codec.coded_frame->key_frame /* && frag_offset == 0 */)
560         val |= 0x80;
561     put_byte(pb, val);
562     put_byte(pb, stream->seq);
563     put_le32(pb, frag_offset); /* fragment offset */
564     put_byte(pb, 0x08); /* flags */
565     put_le32(pb, payload_size);
566     put_le32(pb, timestamp);
567     put_le16(pb, frag_len);
568 }
569
570
571 /* Output a frame. We suppose that payload_size <= PACKET_SIZE.
572
573    It is there that you understand that the ASF format is really
574    crap. They have misread the MPEG Systems spec !
575  */
576 static void put_frame(AVFormatContext *s, ASFStream *stream, int timestamp,
577                       uint8_t *buf, int payload_size)
578 {
579     ASFContext *asf = s->priv_data;
580     int frag_pos, frag_len, frag_len1;
581
582     frag_pos = 0;
583     while (frag_pos < payload_size) {
584         frag_len = payload_size - frag_pos;
585         frag_len1 = asf->packet_size_left - FRAME_HEADER_SIZE;
586         if (frag_len1 > 0) {
587             if (frag_len > frag_len1)
588                 frag_len = frag_len1;
589             put_frame_header(s, stream, timestamp+1, payload_size, frag_pos, frag_len);
590             put_buffer(&asf->pb, buf, frag_len);
591             asf->packet_size_left -= (frag_len + FRAME_HEADER_SIZE);
592             asf->packet_timestamp_end = timestamp;
593             if (asf->packet_timestamp_start == -1)
594                 asf->packet_timestamp_start = timestamp;
595             asf->packet_nb_frames++;
596         } else {
597             frag_len = 0;
598         }
599         frag_pos += frag_len;
600         buf += frag_len;
601         /* output the frame if filled */
602         if (asf->packet_size_left <= FRAME_HEADER_SIZE)
603             flush_packet(s);
604     }
605     stream->seq++;
606 }
607
608
609 static int asf_write_packet(AVFormatContext *s, int stream_index,
610                             uint8_t *buf, int size, int timestamp)
611 {
612     ASFContext *asf = s->priv_data;
613     ASFStream *stream;
614     int64_t duration;
615     AVCodecContext *codec;
616
617     codec = &s->streams[stream_index]->codec;
618     stream = &asf->streams[stream_index];
619
620     if (codec->codec_type == CODEC_TYPE_AUDIO) {
621         duration = (codec->frame_number * codec->frame_size * int64_t_C(10000000)) /
622             codec->sample_rate;
623     } else {
624         duration = codec->frame_number *
625             ((int64_t_C(10000000) * FRAME_RATE_BASE) / codec->frame_rate);
626     }
627     if (duration > asf->duration)
628         asf->duration = duration;
629
630     put_frame(s, stream, timestamp, buf, size);
631     return 0;
632 }
633
634 static int asf_write_trailer(AVFormatContext *s)
635 {
636     ASFContext *asf = s->priv_data;
637     int64_t file_size;
638
639     /* flush the current packet */
640     if (asf->pb.buf_ptr > asf->pb.buffer)
641         flush_packet(s);
642
643     if (asf->is_streamed) {
644         put_chunk(s, 0x4524, 0, 0); /* end of stream */
645     } else {
646         /* rewrite an updated header */
647         file_size = url_ftell(&s->pb);
648         url_fseek(&s->pb, 0, SEEK_SET);
649         asf_write_header1(s, file_size, file_size - asf->data_offset);
650     }
651
652     put_flush_packet(&s->pb);
653     return 0;
654 }
655
656 /**********************************/
657 /* decoding */
658
659 //#define DEBUG
660
661 #ifdef DEBUG
662 #define PRINT_IF_GUID(g,cmp) \
663 if (!memcmp(g, &cmp, sizeof(GUID))) \
664     printf("(GUID: %s) ", #cmp)
665
666 static void print_guid(const GUID *g)
667 {
668     int i;
669     PRINT_IF_GUID(g, asf_header);
670     else PRINT_IF_GUID(g, file_header);
671     else PRINT_IF_GUID(g, stream_header);
672     else PRINT_IF_GUID(g, audio_stream);
673     else PRINT_IF_GUID(g, audio_conceal_none);
674     else PRINT_IF_GUID(g, video_stream);
675     else PRINT_IF_GUID(g, video_conceal_none);
676     else PRINT_IF_GUID(g, comment_header);
677     else PRINT_IF_GUID(g, codec_comment_header);
678     else PRINT_IF_GUID(g, codec_comment1_header);
679     else PRINT_IF_GUID(g, data_header);
680     else PRINT_IF_GUID(g, index_guid);
681     else PRINT_IF_GUID(g, head1_guid);
682     else PRINT_IF_GUID(g, head2_guid);
683     else PRINT_IF_GUID(g, my_guid);
684     else
685         printf("(GUID: unknown) ");
686     printf("0x%08x, 0x%04x, 0x%04x, {", g->v1, g->v2, g->v3);
687     for(i=0;i<8;i++)
688         printf(" 0x%02x,", g->v4[i]);
689     printf("}\n");
690 }
691 #undef PRINT_IF_GUID(g,cmp)
692 #endif
693
694 static void get_guid(ByteIOContext *s, GUID *g)
695 {
696     int i;
697
698     g->v1 = get_le32(s);
699     g->v2 = get_le16(s);
700     g->v3 = get_le16(s);
701     for(i=0;i<8;i++)
702         g->v4[i] = get_byte(s);
703 }
704
705 #if 0
706 static void get_str16(ByteIOContext *pb, char *buf, int buf_size)
707 {
708     int len, c;
709     char *q;
710
711     len = get_le16(pb);
712     q = buf;
713     while (len > 0) {
714         c = get_le16(pb);
715         if ((q - buf) < buf_size - 1)
716             *q++ = c;
717         len--;
718     }
719     *q = '\0';
720 }
721 #endif
722
723 static void get_str16_nolen(ByteIOContext *pb, int len, char *buf, int buf_size)
724 {
725     int c;
726     char *q;
727
728     q = buf;
729     while (len > 0) {
730         c = get_le16(pb);
731         if ((q - buf) < buf_size - 1)
732             *q++ = c;
733         len-=2;
734     }
735     *q = '\0';
736 }
737
738 static int asf_probe(AVProbeData *pd)
739 {
740     GUID g;
741     const unsigned char *p;
742     int i;
743
744     /* check file header */
745     if (pd->buf_size <= 32)
746         return 0;
747     p = pd->buf;
748     g.v1 = p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
749     p += 4;
750     g.v2 = p[0] | (p[1] << 8);
751     p += 2;
752     g.v3 = p[0] | (p[1] << 8);
753     p += 2;
754     for(i=0;i<8;i++)
755         g.v4[i] = *p++;
756
757     if (!memcmp(&g, &asf_header, sizeof(GUID)))
758         return AVPROBE_SCORE_MAX;
759     else
760         return 0;
761 }
762
763 static int asf_read_header(AVFormatContext *s, AVFormatParameters *ap)
764 {
765     ASFContext *asf = s->priv_data;
766     GUID g;
767     ByteIOContext *pb = &s->pb;
768     AVStream *st;
769     ASFStream *asf_st;
770     int size, i;
771     int64_t gsize;
772
773     av_set_pts_info(s, 32, 1, 1000); /* 32 bit pts in ms */
774
775     get_guid(pb, &g);
776     if (memcmp(&g, &asf_header, sizeof(GUID)))
777         goto fail;
778     get_le64(pb);
779     get_le32(pb);
780     get_byte(pb);
781     get_byte(pb);
782     memset(&asf->asfid2avid, -1, sizeof(asf->asfid2avid));
783     for(;;) {
784         get_guid(pb, &g);
785         gsize = get_le64(pb);
786 #ifdef DEBUG
787         printf("%08Lx: ", url_ftell(pb) - 24);
788         print_guid(&g);
789         printf("  size=0x%Lx\n", gsize);
790 #endif
791         if (gsize < 24)
792             goto fail;
793         if (!memcmp(&g, &file_header, sizeof(GUID))) {
794             get_guid(pb, &asf->hdr.guid);
795             asf->hdr.file_size          = get_le64(pb);
796             asf->hdr.create_time        = get_le64(pb);
797             asf->hdr.packets_count      = get_le64(pb);
798             asf->hdr.play_time          = get_le64(pb);
799             asf->hdr.send_time          = get_le64(pb);
800             asf->hdr.preroll            = get_le32(pb);
801             asf->hdr.ignore             = get_le32(pb);
802             asf->hdr.flags              = get_le32(pb);
803             asf->hdr.min_pktsize        = get_le32(pb);
804             asf->hdr.max_pktsize        = get_le32(pb);
805             asf->hdr.max_bitrate        = get_le32(pb);
806             asf->packet_size = asf->hdr.max_pktsize;
807             asf->nb_packets = asf->hdr.packets_count;
808         } else if (!memcmp(&g, &stream_header, sizeof(GUID))) {
809             int type, total_size;
810             unsigned int tag1;
811             int64_t pos1, pos2;
812
813             pos1 = url_ftell(pb);
814
815             st = av_mallocz(sizeof(AVStream));
816             if (!st)
817                 goto fail;
818             avcodec_get_context_defaults(&st->codec);
819             s->streams[s->nb_streams] = st;
820             asf_st = av_mallocz(sizeof(ASFStream));
821             if (!asf_st)
822                 goto fail;
823             st->priv_data = asf_st;
824             st->time_length = (asf->hdr.send_time - asf->hdr.preroll) / 10; // us
825             get_guid(pb, &g);
826             if (!memcmp(&g, &audio_stream, sizeof(GUID))) {
827                 type = CODEC_TYPE_AUDIO;
828             } else if (!memcmp(&g, &video_stream, sizeof(GUID))) {
829                 type = CODEC_TYPE_VIDEO;
830             } else {
831                 goto fail;
832             }
833             get_guid(pb, &g);
834             total_size = get_le64(pb);
835             get_le32(pb);
836             get_le32(pb);
837             st->id = get_le16(pb) & 0x7f; /* stream id */
838             // mapping of asf ID to AV stream ID;
839             asf->asfid2avid[st->id] = s->nb_streams++;
840
841             get_le32(pb);
842             st->codec.codec_type = type;
843             st->codec.frame_rate = 15 * s->pts_den / s->pts_num; // 15 fps default
844             if (type == CODEC_TYPE_AUDIO) {
845                 get_wav_header(pb, &st->codec, 1);
846                 /* We have to init the frame size at some point .... */
847                 pos2 = url_ftell(pb);
848                 if (gsize > (pos2 + 8 - pos1 + 24)) {
849                     asf_st->ds_span = get_byte(pb);
850                     asf_st->ds_packet_size = get_le16(pb);
851                     asf_st->ds_chunk_size = get_le16(pb);
852                     asf_st->ds_data_size = get_le16(pb);
853                     asf_st->ds_silence_data = get_byte(pb);
854                 }
855                 //printf("Descrambling: ps:%d cs:%d ds:%d s:%d  sd:%d\n",
856                 //       asf_st->ds_packet_size, asf_st->ds_chunk_size,
857                 //       asf_st->ds_data_size, asf_st->ds_span, asf_st->ds_silence_data);
858                 if (asf_st->ds_span > 1) {
859                     if (!asf_st->ds_chunk_size
860                         || (asf_st->ds_packet_size/asf_st->ds_chunk_size <= 1))
861                         asf_st->ds_span = 0; // disable descrambling
862                 }
863                 switch (st->codec.codec_id) {
864                 case CODEC_ID_MP3LAME:
865                     st->codec.frame_size = MPA_FRAME_SIZE;
866                     break;
867                 case CODEC_ID_PCM_S16LE:
868                 case CODEC_ID_PCM_S16BE:
869                 case CODEC_ID_PCM_U16LE:
870                 case CODEC_ID_PCM_U16BE:
871                 case CODEC_ID_PCM_S8:
872                 case CODEC_ID_PCM_U8:
873                 case CODEC_ID_PCM_ALAW:
874                 case CODEC_ID_PCM_MULAW:
875                     st->codec.frame_size = 1;
876                     break;
877                 default:
878                     /* This is probably wrong, but it prevents a crash later */
879                     st->codec.frame_size = 1;
880                     break;
881                 }
882             } else {
883                 get_le32(pb);
884                 get_le32(pb);
885                 get_byte(pb);
886                 size = get_le16(pb); /* size */
887                 get_le32(pb); /* size */
888                 st->codec.width = get_le32(pb);
889                 st->codec.height = get_le32(pb);
890                 /* not available for asf */
891                 get_le16(pb); /* panes */
892                 get_le16(pb); /* depth */
893                 tag1 = get_le32(pb);
894                 url_fskip(pb, 20);
895                 if (size > 40) {
896                     st->codec.extradata_size = size - 40;
897                     st->codec.extradata = av_mallocz(st->codec.extradata_size);
898                     get_buffer(pb, st->codec.extradata, st->codec.extradata_size);
899                 }
900                 st->codec.codec_tag = tag1;
901                 st->codec.codec_id = codec_get_id(codec_bmp_tags, tag1);
902             }
903             pos2 = url_ftell(pb);
904             url_fskip(pb, gsize - (pos2 - pos1 + 24));
905         } else if (!memcmp(&g, &data_header, sizeof(GUID))) {
906             break;
907         } else if (!memcmp(&g, &comment_header, sizeof(GUID))) {
908             int len1, len2, len3, len4, len5;
909
910             len1 = get_le16(pb);
911             len2 = get_le16(pb);
912             len3 = get_le16(pb);
913             len4 = get_le16(pb);
914             len5 = get_le16(pb);
915             get_str16_nolen(pb, len1, s->title, sizeof(s->title));
916             get_str16_nolen(pb, len2, s->author, sizeof(s->author));
917             get_str16_nolen(pb, len3, s->copyright, sizeof(s->copyright));
918             get_str16_nolen(pb, len4, s->comment, sizeof(s->comment));
919             url_fskip(pb, len5);
920 #if 0
921         } else if (!memcmp(&g, &head1_guid, sizeof(GUID))) {
922             int v1, v2;
923             get_guid(pb, &g);
924             v1 = get_le32(pb);
925             v2 = get_le16(pb);
926         } else if (!memcmp(&g, &codec_comment_header, sizeof(GUID))) {
927             int len, v1, n, num;
928             char str[256], *q;
929             char tag[16];
930
931             get_guid(pb, &g);
932             print_guid(&g);
933
934             n = get_le32(pb);
935             for(i=0;i<n;i++) {
936                 num = get_le16(pb); /* stream number */
937                 get_str16(pb, str, sizeof(str));
938                 get_str16(pb, str, sizeof(str));
939                 len = get_le16(pb);
940                 q = tag;
941                 while (len > 0) {
942                     v1 = get_byte(pb);
943                     if ((q - tag) < sizeof(tag) - 1)
944                         *q++ = v1;
945                     len--;
946                 }
947                 *q = '\0';
948             }
949 #endif
950         } else if (url_feof(pb)) {
951             goto fail;
952         } else {
953             url_fseek(pb, gsize - 24, SEEK_CUR);
954         }
955     }
956     get_guid(pb, &g);
957     get_le64(pb);
958     get_byte(pb);
959     get_byte(pb);
960     if (url_feof(pb))
961         goto fail;
962     asf->data_offset = url_ftell(pb);
963     asf->packet_size_left = 0;
964
965     return 0;
966
967  fail:
968      for(i=0;i<s->nb_streams;i++) {
969         AVStream *st = s->streams[i];
970         if (st) {
971             av_free(st->priv_data);
972             av_free(st->codec.extradata);
973         }
974         av_free(st);
975     }
976     return -1;
977 }
978
979 #define DO_2BITS(bits, var, defval) \
980     switch (bits & 3) \
981     { \
982     case 3: var = get_le32(pb); rsize += 4; break; \
983     case 2: var = get_le16(pb); rsize += 2; break; \
984     case 1: var = get_byte(pb); rsize++; break; \
985     default: var = defval; break; \
986     }
987
988 static int asf_get_packet(AVFormatContext *s)
989 {
990     ASFContext *asf = s->priv_data;
991     ByteIOContext *pb = &s->pb;
992     uint32_t packet_length, padsize;
993     int rsize = 11;
994     int c = get_byte(pb);
995     if (c != 0x82) {
996         if (!url_feof(pb))
997             printf("ff asf bad header %x  at:%Ld\n", c, url_ftell(pb));
998         return -EIO;
999     }
1000     if ((c & 0x0f) == 2) { // always true for now
1001         if (get_le16(pb) != 0) {
1002             if (!url_feof(pb))
1003                 printf("ff asf bad non zero\n");
1004             return -EIO;
1005         }
1006     }
1007
1008     asf->packet_flags = get_byte(pb);
1009     asf->packet_property = get_byte(pb);
1010
1011     DO_2BITS(asf->packet_flags >> 5, packet_length, asf->packet_size);
1012     DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored
1013     DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length
1014
1015     asf->packet_timestamp = get_le32(pb);
1016     get_le16(pb); /* duration */
1017     // rsize has at least 11 bytes which have to be present
1018
1019     if (asf->packet_flags & 0x01) {
1020         asf->packet_segsizetype = get_byte(pb); rsize++;
1021         asf->packet_segments = asf->packet_segsizetype & 0x3f;
1022     } else {
1023         asf->packet_segments = 1;
1024         asf->packet_segsizetype = 0x80;
1025     }
1026     asf->packet_size_left = packet_length - padsize - rsize;
1027     if (packet_length < asf->hdr.min_pktsize)
1028         padsize += asf->hdr.min_pktsize - packet_length;
1029     asf->packet_padsize = padsize;
1030 #ifdef DEBUG
1031     printf("packet: size=%d padsize=%d  left=%d\n", asf->packet_size, asf->packet_padsize, asf->packet_size_left);
1032 #endif
1033     return 0;
1034 }
1035
1036 static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
1037 {
1038     ASFContext *asf = s->priv_data;
1039     ASFStream *asf_st = 0;
1040     ByteIOContext *pb = &s->pb;
1041     //static int pc = 0;
1042     for (;;) {
1043         int rsize = 0;
1044         if (asf->packet_size_left < FRAME_HEADER_SIZE
1045             || asf->packet_segments < 1) {
1046             //asf->packet_size_left <= asf->packet_padsize) {
1047             int ret = asf->packet_size_left + asf->packet_padsize;
1048             //printf("PacketLeftSize:%d  Pad:%d Pos:%Ld\n", asf->packet_size_left, asf->packet_padsize, url_ftell(pb));
1049             /* fail safe */
1050             url_fskip(pb, ret);
1051             ret = asf_get_packet(s);
1052             //printf("READ ASF PACKET  %d   r:%d   c:%d\n", ret, asf->packet_size_left, pc++);
1053             if (ret < 0 || url_feof(pb))
1054                 return -EIO;
1055             asf->packet_time_start = 0;
1056             continue;
1057         }
1058         if (asf->packet_time_start == 0) {
1059             /* read frame header */
1060             int num = get_byte(pb);
1061             asf->packet_segments--;
1062             rsize++;
1063             asf->packet_key_frame = (num & 0x80) >> 7;
1064             asf->stream_index = asf->asfid2avid[num & 0x7f];
1065             // sequence should be ignored!
1066             DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0);
1067             DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0);
1068             DO_2BITS(asf->packet_property, asf->packet_replic_size, 0);
1069
1070             if (asf->packet_replic_size > 1) {
1071                 // it should be always at least 8 bytes - FIXME validate
1072                 asf->packet_obj_size = get_le32(pb);
1073                 asf->packet_frag_timestamp = get_le32(pb); // timestamp
1074                 if (asf->packet_replic_size > 8)
1075                     url_fskip(pb, asf->packet_replic_size - 8);
1076                 rsize += asf->packet_replic_size; // FIXME - check validity
1077             } else {
1078                 // multipacket - frag_offset is begining timestamp
1079                 asf->packet_time_start = asf->packet_frag_offset;
1080                 asf->packet_frag_offset = 0;
1081                 asf->packet_frag_timestamp = asf->packet_timestamp;
1082
1083                 if (asf->packet_replic_size == 1) {
1084                     asf->packet_time_delta = get_byte(pb);
1085                     rsize++;
1086                 }
1087             }
1088             if (asf->packet_flags & 0x01) {
1089                 DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal
1090 #undef DO_2BITS
1091                 //printf("Fragsize %d\n", asf->packet_frag_size);
1092             } else {
1093                 asf->packet_frag_size = asf->packet_size_left - rsize;
1094                 //printf("Using rest  %d %d %d\n", asf->packet_frag_size, asf->packet_size_left, rsize);
1095             }
1096             if (asf->packet_replic_size == 1) {
1097                 asf->packet_multi_size = asf->packet_frag_size;
1098                 if (asf->packet_multi_size > asf->packet_size_left) {
1099                     asf->packet_segments = 0;
1100                     continue;
1101                 }
1102             }
1103             asf->packet_size_left -= rsize;
1104             //printf("___objsize____  %d   %d    rs:%d\n", asf->packet_obj_size, asf->packet_frag_offset, rsize);
1105
1106             if (asf->stream_index < 0) {
1107                 asf->packet_time_start = 0;
1108                 /* unhandled packet (should not happen) */
1109                 url_fskip(pb, asf->packet_frag_size);
1110                 asf->packet_size_left -= asf->packet_frag_size;
1111                 printf("ff asf skip %d  %d\n", asf->packet_frag_size, num & 0x7f);
1112                 continue;
1113             }
1114             asf->asf_st = s->streams[asf->stream_index]->priv_data;
1115         }
1116         asf_st = asf->asf_st;
1117
1118         if ((asf->packet_frag_offset != asf_st->frag_offset
1119              || (asf->packet_frag_offset
1120                  && asf->packet_seq != asf_st->seq)) // seq should be ignored
1121            ) {
1122             /* cannot continue current packet: free it */
1123             // FIXME better check if packet was already allocated
1124             printf("ff asf parser skips: %d - %d     o:%d - %d    %d %d   fl:%d\n",
1125                    asf_st->pkt.size,
1126                    asf->packet_obj_size,
1127                    asf->packet_frag_offset, asf_st->frag_offset,
1128                    asf->packet_seq, asf_st->seq, asf->packet_frag_size);
1129             if (asf_st->pkt.size)
1130                 av_free_packet(&asf_st->pkt);
1131             asf_st->frag_offset = 0;
1132             if (asf->packet_frag_offset != 0) {
1133                 url_fskip(pb, asf->packet_frag_size);
1134                 printf("ff asf parser skiping %db\n", asf->packet_frag_size);
1135                 asf->packet_size_left -= asf->packet_frag_size;
1136                 continue;
1137             }
1138         }
1139         if (asf->packet_replic_size == 1) {
1140             // frag_offset is here used as the begining timestamp
1141             asf->packet_frag_timestamp = asf->packet_time_start;
1142             asf->packet_time_start += asf->packet_time_delta;
1143             asf->packet_obj_size = asf->packet_frag_size = get_byte(pb);
1144             asf->packet_size_left--;
1145             asf->packet_multi_size--;
1146             if (asf->packet_multi_size < asf->packet_obj_size)
1147             {
1148                 asf->packet_time_start = 0;
1149                 url_fskip(pb, asf->packet_multi_size);
1150                 asf->packet_size_left -= asf->packet_multi_size;
1151                 continue;
1152             }
1153             asf->packet_multi_size -= asf->packet_obj_size;
1154             //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);
1155         }
1156         if (asf_st->frag_offset == 0) {
1157             /* new packet */
1158             av_new_packet(&asf_st->pkt, asf->packet_obj_size);
1159             asf_st->seq = asf->packet_seq;
1160             asf_st->pkt.pts = asf->packet_frag_timestamp - asf->hdr.preroll;
1161             asf_st->pkt.stream_index = asf->stream_index;
1162             if (asf->packet_key_frame)
1163                 asf_st->pkt.flags |= PKT_FLAG_KEY;
1164         }
1165
1166         /* read data */
1167         //printf("READ PACKET s:%d  os:%d  o:%d,%d  l:%d   DATA:%p\n",
1168         //       asf->packet_size, asf_st->pkt.size, asf->packet_frag_offset,
1169         //       asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data);
1170         asf->packet_size_left -= asf->packet_frag_size;
1171         if (asf->packet_size_left < 0)
1172             continue;
1173         get_buffer(pb, asf_st->pkt.data + asf->packet_frag_offset,
1174                    asf->packet_frag_size);
1175         asf_st->frag_offset += asf->packet_frag_size;
1176         /* test if whole packet is read */
1177         if (asf_st->frag_offset == asf_st->pkt.size) {
1178             /* return packet */
1179             if (asf_st->ds_span > 1) {
1180                 /* packet descrambling */
1181                 char* newdata = av_malloc(asf_st->pkt.size);
1182                 if (newdata) {
1183                     int offset = 0;
1184                     while (offset < asf_st->pkt.size) {
1185                         int off = offset / asf_st->ds_chunk_size;
1186                         int row = off / asf_st->ds_span;
1187                         int col = off % asf_st->ds_span;
1188                         int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size;
1189                         //printf("off:%d  row:%d  col:%d  idx:%d\n", off, row, col, idx);
1190                         memcpy(newdata + offset,
1191                                asf_st->pkt.data + idx * asf_st->ds_chunk_size,
1192                                asf_st->ds_chunk_size);
1193                         offset += asf_st->ds_chunk_size;
1194                     }
1195                     av_free(asf_st->pkt.data);
1196                     asf_st->pkt.data = newdata;
1197                 }
1198             }
1199             asf_st->frag_offset = 0;
1200             memcpy(pkt, &asf_st->pkt, sizeof(AVPacket));
1201             //printf("packet %d %d\n", asf_st->pkt.size, asf->packet_frag_size);
1202             asf_st->pkt.size = 0;
1203             asf_st->pkt.data = 0;
1204             break; // packet completed
1205         }
1206     }
1207     return 0;
1208 }
1209
1210 static int asf_read_close(AVFormatContext *s)
1211 {
1212     int i;
1213
1214     for(i=0;i<s->nb_streams;i++) {
1215         AVStream *st = s->streams[i];
1216         av_free(st->priv_data);
1217         av_free(st->codec.extradata);
1218     }
1219     return 0;
1220 }
1221
1222 static int asf_read_seek(AVFormatContext *s, int64_t pts)
1223 {
1224     printf("SEEK TO %Ld", pts);
1225     return -1;
1226 }
1227
1228 static AVInputFormat asf_iformat = {
1229     "asf",
1230     "asf format",
1231     sizeof(ASFContext),
1232     asf_probe,
1233     asf_read_header,
1234     asf_read_packet,
1235     asf_read_close,
1236     asf_read_seek,
1237 };
1238
1239 static AVOutputFormat asf_oformat = {
1240     "asf",
1241     "asf format",
1242     "video/x-ms-asf",
1243     "asf,wmv",
1244     sizeof(ASFContext),
1245 #ifdef CONFIG_MP3LAME
1246     CODEC_ID_MP3LAME,
1247 #else
1248     CODEC_ID_MP2,
1249 #endif
1250     CODEC_ID_MSMPEG4V3,
1251     asf_write_header,
1252     asf_write_packet,
1253     asf_write_trailer,
1254 };
1255
1256 static AVOutputFormat asf_stream_oformat = {
1257     "asf_stream",
1258     "asf format",
1259     "video/x-ms-asf",
1260     "asf,wmv",
1261     sizeof(ASFContext),
1262 #ifdef CONFIG_MP3LAME
1263     CODEC_ID_MP3LAME,
1264 #else
1265     CODEC_ID_MP2,
1266 #endif
1267     CODEC_ID_MSMPEG4V3,
1268     asf_write_stream_header,
1269     asf_write_packet,
1270     asf_write_trailer,
1271 };
1272
1273 int asf_init(void)
1274 {
1275     av_register_input_format(&asf_iformat);
1276     av_register_output_format(&asf_oformat);
1277     av_register_output_format(&asf_stream_oformat);
1278     return 0;
1279 }