]> git.sesse.net Git - ffmpeg/blob - libavformat/asf-enc.c
d12b52ad38a4a7a254a24d29e5cf731b71138724
[ffmpeg] / libavformat / asf-enc.c
1 /*
2  * Adaptive stream format muxer
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 "asf.h"
24
25 #undef NDEBUG
26 #include <assert.h>
27
28
29 #define ASF_INDEXED_INTERVAL    10000000
30 #define ASF_INDEX_BLOCK         600
31
32 #define ASF_PACKET_ERROR_CORRECTION_DATA_SIZE 0x2
33 #define ASF_PACKET_ERROR_CORRECTION_FLAGS (\
34                 ASF_PACKET_FLAG_ERROR_CORRECTION_PRESENT | \
35                 ASF_PACKET_ERROR_CORRECTION_DATA_SIZE\
36                 )
37
38 #if (ASF_PACKET_ERROR_CORRECTION_FLAGS != 0)
39 #   define ASF_PACKET_ERROR_CORRECTION_FLAGS_FIELD_SIZE 1
40 #else
41 #   define ASF_PACKET_ERROR_CORRECTION_FLAGS_FIELD_SIZE 0
42 #endif
43
44 #define ASF_PPI_PROPERTY_FLAGS (\
45                 ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_BYTE | \
46                 ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_DWORD | \
47                 ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_BYTE | \
48                 ASF_PL_FLAG_STREAM_NUMBER_LENGTH_FIELD_IS_BYTE \
49                 )
50
51 #define ASF_PPI_LENGTH_TYPE_FLAGS 0
52
53 #define ASF_PAYLOAD_FLAGS ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_WORD
54
55 #if (ASF_PPI_FLAG_SEQUENCE_FIELD_IS_BYTE == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_SEQUENCE_FIELD_SIZE))
56 #   define ASF_PPI_SEQUENCE_FIELD_SIZE 1
57 #endif
58 #if (ASF_PPI_FLAG_SEQUENCE_FIELD_IS_WORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_SEQUENCE_FIELD_SIZE))
59 #   define ASF_PPI_SEQUENCE_FIELD_SIZE 2
60 #endif
61 #if (ASF_PPI_FLAG_SEQUENCE_FIELD_IS_DWORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_SEQUENCE_FIELD_SIZE))
62 #   define ASF_PPI_SEQUENCE_FIELD_SIZE 4
63 #endif
64 #ifndef ASF_PPI_SEQUENCE_FIELD_SIZE
65 #   define ASF_PPI_SEQUENCE_FIELD_SIZE 0
66 #endif
67
68
69 #if (ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_BYTE == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PACKET_LENGTH_FIELD_SIZE))
70 #   define ASF_PPI_PACKET_LENGTH_FIELD_SIZE 1
71 #endif
72 #if (ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_WORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PACKET_LENGTH_FIELD_SIZE))
73 #   define ASF_PPI_PACKET_LENGTH_FIELD_SIZE 2
74 #endif
75 #if (ASF_PPI_FLAG_PACKET_LENGTH_FIELD_IS_DWORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PACKET_LENGTH_FIELD_SIZE))
76 #   define ASF_PPI_PACKET_LENGTH_FIELD_SIZE 4
77 #endif
78 #ifndef ASF_PPI_PACKET_LENGTH_FIELD_SIZE
79 #   define ASF_PPI_PACKET_LENGTH_FIELD_SIZE 0
80 #endif
81
82 #if (ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_BYTE == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PADDING_LENGTH_FIELD_SIZE))
83 #   define ASF_PPI_PADDING_LENGTH_FIELD_SIZE 1
84 #endif
85 #if (ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_WORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PADDING_LENGTH_FIELD_SIZE))
86 #   define ASF_PPI_PADDING_LENGTH_FIELD_SIZE 2
87 #endif
88 #if (ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_DWORD == (ASF_PPI_LENGTH_TYPE_FLAGS & ASF_PPI_MASK_PADDING_LENGTH_FIELD_SIZE))
89 #   define ASF_PPI_PADDING_LENGTH_FIELD_SIZE 4
90 #endif
91 #ifndef ASF_PPI_PADDING_LENGTH_FIELD_SIZE
92 #   define ASF_PPI_PADDING_LENGTH_FIELD_SIZE 0
93 #endif
94
95 #if (ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_BYTE == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_REPLICATED_DATA_LENGTH_FIELD_SIZE))
96 #   define ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE 1
97 #endif
98 #if (ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_WORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_REPLICATED_DATA_LENGTH_FIELD_SIZE))
99 #   define ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE 2
100 #endif
101 #if (ASF_PL_FLAG_REPLICATED_DATA_LENGTH_FIELD_IS_DWORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_REPLICATED_DATA_LENGTH_FIELD_SIZE))
102 #   define ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE 4
103 #endif
104 #ifndef ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE
105 #   define ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE 0
106 #endif
107
108 #if (ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_BYTE == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_SIZE))
109 #   define ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE 1
110 #endif
111 #if (ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_WORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_SIZE))
112 #   define ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE 2
113 #endif
114 #if (ASF_PL_FLAG_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_IS_DWORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_OFFSET_INTO_MEDIA_OBJECT_LENGTH_FIELD_SIZE))
115 #   define ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE 4
116 #endif
117 #ifndef ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE
118 #   define ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE 0
119 #endif
120
121 #if (ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_BYTE == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_SIZE))
122 #   define ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE 1
123 #endif
124 #if (ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_WORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_SIZE))
125 #   define ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE 2
126 #endif
127 #if (ASF_PL_FLAG_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_IS_DWORD == (ASF_PPI_PROPERTY_FLAGS & ASF_PL_MASK_MEDIA_OBJECT_NUMBER_LENGTH_FIELD_SIZE))
128 #   define ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE 4
129 #endif
130 #ifndef ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE
131 #   define ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE 0
132 #endif
133
134 #if (ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_BYTE == (ASF_PAYLOAD_FLAGS & ASF_PL_MASK_PAYLOAD_LENGTH_FIELD_SIZE))
135 #   define ASF_PAYLOAD_LENGTH_FIELD_SIZE 1
136 #endif
137 #if (ASF_PL_FLAG_PAYLOAD_LENGTH_FIELD_IS_WORD == (ASF_PAYLOAD_FLAGS & ASF_PL_MASK_PAYLOAD_LENGTH_FIELD_SIZE))
138 #   define ASF_PAYLOAD_LENGTH_FIELD_SIZE 2
139 #endif
140 #ifndef ASF_PAYLOAD_LENGTH_FIELD_SIZE
141 #   define ASF_PAYLOAD_LENGTH_FIELD_SIZE 0
142 #endif
143
144 #define PACKET_HEADER_MIN_SIZE (\
145                 ASF_PACKET_ERROR_CORRECTION_FLAGS_FIELD_SIZE + \
146                 ASF_PACKET_ERROR_CORRECTION_DATA_SIZE + \
147                 1 + /*Length Type Flags*/ \
148                 1 + /*Property Flags*/ \
149                 ASF_PPI_PACKET_LENGTH_FIELD_SIZE + \
150                 ASF_PPI_SEQUENCE_FIELD_SIZE + \
151                 ASF_PPI_PADDING_LENGTH_FIELD_SIZE + \
152                 4 + /*Send Time Field*/ \
153                 2   /*Duration Field*/ \
154                 )
155
156
157 // Replicated Data shall be at least 8 bytes long.
158 #define ASF_PAYLOAD_REPLICATED_DATA_LENGTH 0x08
159
160 #define PAYLOAD_HEADER_SIZE_SINGLE_PAYLOAD (\
161                 1 + /*Stream Number*/ \
162                 ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE + \
163                 ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE + \
164                 ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE + \
165                 ASF_PAYLOAD_REPLICATED_DATA_LENGTH \
166                 )
167
168 #define PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS (\
169                 1 + /*Stream Number*/ \
170                 ASF_PAYLOAD_MEDIA_OBJECT_NUMBER_FIELD_SIZE + \
171                 ASF_PAYLOAD_OFFSET_INTO_MEDIA_OBJECT_FIELD_SIZE + \
172                 ASF_PAYLOAD_REPLICATED_DATA_LENGTH_FIELD_SIZE + \
173                 ASF_PAYLOAD_REPLICATED_DATA_LENGTH + \
174                 ASF_PAYLOAD_LENGTH_FIELD_SIZE \
175                 )
176
177 #define SINGLE_PAYLOAD_DATA_LENGTH (\
178                 PACKET_SIZE - \
179                 PACKET_HEADER_MIN_SIZE - \
180                 PAYLOAD_HEADER_SIZE_SINGLE_PAYLOAD \
181                 )
182
183 #define MULTI_PAYLOAD_CONSTANT (\
184                 PACKET_SIZE - \
185                 PACKET_HEADER_MIN_SIZE - \
186                 1 - /*Payload Flags*/ \
187                 2*PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS \
188                 )
189
190 static const AVCodecTag codec_asf_bmp_tags[] = {
191     { CODEC_ID_MPEG4, MKTAG('M', 'P', '4', 'S') },
192     { CODEC_ID_MPEG4, MKTAG('M', '4', 'S', '2') },
193     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '3') },
194     { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', '4', '3') },
195     { CODEC_ID_NONE, 0 },
196 };
197
198 static int preroll_time = 2000;
199
200 static const uint8_t error_spread_ADPCM_G726[] = { 0x01, 0x90, 0x01, 0x90, 0x01, 0x01, 0x00, 0x00 };
201
202 static void put_guid(ByteIOContext *s, const GUID *g)
203 {
204     int i;
205
206     put_le32(s, g->v1);
207     put_le16(s, g->v2);
208     put_le16(s, g->v3);
209     for(i=0;i<8;i++)
210         put_byte(s, g->v4[i]);
211 }
212
213 static void put_str16(ByteIOContext *s, const char *tag)
214 {
215     int c;
216
217     put_le16(s,strlen(tag) + 1);
218     for(;;) {
219         c = (uint8_t)*tag++;
220         put_le16(s, c);
221         if (c == '\0')
222             break;
223     }
224 }
225
226 static void put_str16_nolen(ByteIOContext *s, const char *tag)
227 {
228     int c;
229
230     for(;;) {
231         c = (uint8_t)*tag++;
232         put_le16(s, c);
233         if (c == '\0')
234             break;
235     }
236 }
237
238 static int64_t put_header(ByteIOContext *pb, const GUID *g)
239 {
240     int64_t pos;
241
242     pos = url_ftell(pb);
243     put_guid(pb, g);
244     put_le64(pb, 24);
245     return pos;
246 }
247
248 /* update header size */
249 static void end_header(ByteIOContext *pb, int64_t pos)
250 {
251     int64_t pos1;
252
253     pos1 = url_ftell(pb);
254     url_fseek(pb, pos + 16, SEEK_SET);
255     put_le64(pb, pos1 - pos);
256     url_fseek(pb, pos1, SEEK_SET);
257 }
258
259 /* write an asf chunk (only used in streaming case) */
260 static void put_chunk(AVFormatContext *s, int type, int payload_length, int flags)
261 {
262     ASFContext *asf = s->priv_data;
263     ByteIOContext *pb = &s->pb;
264     int length;
265
266     length = payload_length + 8;
267     put_le16(pb, type);
268     put_le16(pb, length);    //size
269     put_le32(pb, asf->seqno);//sequence number
270     put_le16(pb, flags); /* unknown bytes */
271     put_le16(pb, length);    //size_confirm
272     asf->seqno++;
273 }
274
275 /* convert from unix to windows time */
276 static int64_t unix_to_file_time(int ti)
277 {
278     int64_t t;
279
280     t = ti * INT64_C(10000000);
281     t += INT64_C(116444736000000000);
282     return t;
283 }
284
285 /* write the header (used two times if non streamed) */
286 static int asf_write_header1(AVFormatContext *s, int64_t file_size, int64_t data_chunk_size)
287 {
288     ASFContext *asf = s->priv_data;
289     ByteIOContext *pb = &s->pb;
290     int header_size, n, extra_size, extra_size2, wav_extra_size, file_time;
291     int has_title;
292     AVCodecContext *enc;
293     int64_t header_offset, cur_pos, hpos;
294     int bit_rate;
295     int64_t duration;
296
297     duration = asf->duration + preroll_time * 10000;
298     has_title = (s->title[0] || s->author[0] || s->copyright[0] || s->comment[0]);
299
300     bit_rate = 0;
301     for(n=0;n<s->nb_streams;n++) {
302         enc = s->streams[n]->codec;
303
304         av_set_pts_info(s->streams[n], 32, 1, 1000); /* 32 bit pts in ms */
305
306         bit_rate += enc->bit_rate;
307     }
308
309     if (asf->is_streamed) {
310         put_chunk(s, 0x4824, 0, 0xc00); /* start of stream (length will be patched later) */
311     }
312
313     put_guid(pb, &asf_header);
314     put_le64(pb, -1); /* header length, will be patched after */
315     put_le32(pb, 3 + has_title + s->nb_streams); /* number of chunks in header */
316     put_byte(pb, 1); /* ??? */
317     put_byte(pb, 2); /* ??? */
318
319     /* file header */
320     header_offset = url_ftell(pb);
321     hpos = put_header(pb, &file_header);
322     put_guid(pb, &my_guid);
323     put_le64(pb, file_size);
324     file_time = 0;
325     put_le64(pb, unix_to_file_time(file_time));
326     put_le64(pb, asf->nb_packets); /* number of packets */
327     put_le64(pb, duration); /* end time stamp (in 100ns units) */
328     put_le64(pb, duration); /* duration (in 100ns units) */
329     put_le32(pb, preroll_time); /* start time stamp */
330     put_le32(pb, 0); /* ??? */
331     put_le32(pb, asf->is_streamed ? 1 : 0); /* ??? */
332     put_le32(pb, asf->packet_size); /* packet size */
333     put_le32(pb, asf->packet_size); /* packet size */
334     put_le32(pb, bit_rate); /* Nominal data rate in bps */
335     end_header(pb, hpos);
336
337     /* unknown headers */
338     hpos = put_header(pb, &head1_guid);
339     put_guid(pb, &head2_guid);
340     put_le32(pb, 6);
341     put_le16(pb, 0);
342     end_header(pb, hpos);
343
344     /* title and other infos */
345     if (has_title) {
346         hpos = put_header(pb, &comment_header);
347         if ( s->title[0]     ) { put_le16(pb, 2 * (strlen(s->title    ) + 1)); } else { put_le16(pb, 0); }
348         if ( s->author[0]    ) { put_le16(pb, 2 * (strlen(s->author   ) + 1)); } else { put_le16(pb, 0); }
349         if ( s->copyright[0] ) { put_le16(pb, 2 * (strlen(s->copyright) + 1)); } else { put_le16(pb, 0); }
350         if ( s->comment[0]   ) { put_le16(pb, 2 * (strlen(s->comment  ) + 1)); } else { put_le16(pb, 0); }
351         put_le16(pb, 0);
352         if ( s->title[0]     ) put_str16_nolen(pb, s->title);
353         if ( s->author[0]    ) put_str16_nolen(pb, s->author);
354         if ( s->copyright[0] ) put_str16_nolen(pb, s->copyright);
355         if ( s->comment[0]   ) put_str16_nolen(pb, s->comment);
356         end_header(pb, hpos);
357     }
358
359     /* stream headers */
360     for(n=0;n<s->nb_streams;n++) {
361         int64_t es_pos;
362         const uint8_t *er_spr = NULL;
363         int er_spr_len = 0;
364         //        ASFStream *stream = &asf->streams[n];
365
366         enc = s->streams[n]->codec;
367         asf->streams[n].num = n + 1;
368         asf->streams[n].seq = 0;
369
370
371         if (enc->codec_type == CODEC_TYPE_AUDIO) {
372             if (enc->codec_id == CODEC_ID_ADPCM_G726) {
373                 er_spr     = error_spread_ADPCM_G726;
374                 er_spr_len = sizeof(error_spread_ADPCM_G726);
375             }
376         }
377
378         switch(enc->codec_type) {
379         case CODEC_TYPE_AUDIO:
380             wav_extra_size = 0;
381             extra_size = 18 + wav_extra_size;
382             extra_size2 = er_spr_len;
383             break;
384         default:
385         case CODEC_TYPE_VIDEO:
386             wav_extra_size = enc->extradata_size;
387             extra_size = 0x33 + wav_extra_size;
388             extra_size2 = 0;
389             break;
390         }
391
392         hpos = put_header(pb, &stream_header);
393         if (enc->codec_type == CODEC_TYPE_AUDIO) {
394             put_guid(pb, &audio_stream);
395             if ((er_spr != NULL) && (er_spr_len != 0)) {
396                 put_guid(pb, &audio_conceal_spread);
397             } else {
398                 put_guid(pb, &video_conceal_none);
399             }
400         } else {
401             put_guid(pb, &video_stream);
402             put_guid(pb, &video_conceal_none);
403         }
404         put_le64(pb, 0); /* ??? */
405         es_pos = url_ftell(pb);
406         put_le32(pb, extra_size); /* wav header len */
407         put_le32(pb, extra_size2); /* additional data len */
408         put_le16(pb, n + 1); /* stream number */
409         put_le32(pb, 0); /* ??? */
410
411         if (enc->codec_type == CODEC_TYPE_AUDIO) {
412             /* WAVEFORMATEX header */
413             int wavsize = put_wav_header(pb, enc);
414             if ((enc->codec_id != CODEC_ID_MP3) && (enc->codec_id != CODEC_ID_MP2) && (enc->codec_id != CODEC_ID_ADPCM_IMA_WAV) && (enc->extradata_size==0)) {
415                 wavsize += 2;
416                 put_le16(pb, 0);
417             }
418
419             if (wavsize < 0)
420                 return -1;
421             if (wavsize != extra_size) {
422                 cur_pos = url_ftell(pb);
423                 url_fseek(pb, es_pos, SEEK_SET);
424                 put_le32(pb, wavsize); /* wav header len */
425                 url_fseek(pb, cur_pos, SEEK_SET);
426             }
427             /* ERROR Correction */
428             if ((er_spr != NULL) && (er_spr_len != 0))
429                 put_buffer(pb, er_spr, er_spr_len);
430         } else {
431             put_le32(pb, enc->width);
432             put_le32(pb, enc->height);
433             put_byte(pb, 2); /* ??? */
434             put_le16(pb, 40 + enc->extradata_size); /* size */
435
436             /* BITMAPINFOHEADER header */
437             put_bmp_header(pb, enc, codec_bmp_tags, 1);
438         }
439         end_header(pb, hpos);
440     }
441
442     /* media comments */
443
444     hpos = put_header(pb, &codec_comment_header);
445     put_guid(pb, &codec_comment1_header);
446     put_le32(pb, s->nb_streams);
447     for(n=0;n<s->nb_streams;n++) {
448         AVCodec *p;
449
450         enc = s->streams[n]->codec;
451         p = avcodec_find_encoder(enc->codec_id);
452
453         put_le16(pb, asf->streams[n].num);
454         put_str16(pb, p ? p->name : enc->codec_name);
455         put_le16(pb, 0); /* no parameters */
456
457
458         /* id */
459         if (enc->codec_type == CODEC_TYPE_AUDIO) {
460             put_le16(pb, 2);
461             if(!enc->codec_tag)
462                 enc->codec_tag = codec_get_tag(codec_wav_tags, enc->codec_id);
463             if(!enc->codec_tag)
464                 return -1;
465             put_le16(pb, enc->codec_tag);
466         } else {
467             put_le16(pb, 4);
468             if(!enc->codec_tag)
469                 enc->codec_tag = codec_get_tag(codec_bmp_tags, enc->codec_id);
470             if(!enc->codec_tag)
471                 return -1;
472             put_le32(pb, enc->codec_tag);
473         }
474     }
475     end_header(pb, hpos);
476
477     /* patch the header size fields */
478
479     cur_pos = url_ftell(pb);
480     header_size = cur_pos - header_offset;
481     if (asf->is_streamed) {
482         header_size += 8 + 30 + 50;
483
484         url_fseek(pb, header_offset - 10 - 30, SEEK_SET);
485         put_le16(pb, header_size);
486         url_fseek(pb, header_offset - 2 - 30, SEEK_SET);
487         put_le16(pb, header_size);
488
489         header_size -= 8 + 30 + 50;
490     }
491     header_size += 24 + 6;
492     url_fseek(pb, header_offset - 14, SEEK_SET);
493     put_le64(pb, header_size);
494     url_fseek(pb, cur_pos, SEEK_SET);
495
496     /* movie chunk, followed by packets of packet_size */
497     asf->data_offset = cur_pos;
498     put_guid(pb, &data_header);
499     put_le64(pb, data_chunk_size);
500     put_guid(pb, &my_guid);
501     put_le64(pb, asf->nb_packets); /* nb packets */
502     put_byte(pb, 1); /* ??? */
503     put_byte(pb, 1); /* ??? */
504     return 0;
505 }
506
507 static int asf_write_header(AVFormatContext *s)
508 {
509     ASFContext *asf = s->priv_data;
510
511     asf->packet_size = PACKET_SIZE;
512     asf->nb_packets = 0;
513
514     asf->last_indexed_pts = 0;
515     asf->index_ptr = (ASFIndex*)av_malloc( sizeof(ASFIndex) * ASF_INDEX_BLOCK );
516     asf->nb_index_memory_alloc = ASF_INDEX_BLOCK;
517     asf->nb_index_count = 0;
518     asf->maximum_packet = 0;
519
520     if (asf_write_header1(s, 0, 50) < 0) {
521         //av_free(asf);
522         return -1;
523     }
524
525     put_flush_packet(&s->pb);
526
527     asf->packet_nb_payloads = 0;
528     asf->prev_packet_sent_time = 0;
529     asf->packet_timestamp_start = -1;
530     asf->packet_timestamp_end = -1;
531     init_put_byte(&asf->pb, asf->packet_buf, asf->packet_size, 1,
532                   NULL, NULL, NULL, NULL);
533
534     return 0;
535 }
536
537 static int asf_write_stream_header(AVFormatContext *s)
538 {
539     ASFContext *asf = s->priv_data;
540
541     asf->is_streamed = 1;
542
543     return asf_write_header(s);
544 }
545
546 static int put_payload_parsing_info(
547                                 AVFormatContext *s,
548                                 unsigned int    sendtime,
549                                 unsigned int    duration,
550                                 int             nb_payloads,
551                                 int             padsize
552             )
553 {
554     ASFContext *asf = s->priv_data;
555     ByteIOContext *pb = &s->pb;
556     int ppi_size, i;
557     unsigned char *start_ppi_ptr = pb->buf_ptr;
558
559     int iLengthTypeFlags = ASF_PPI_LENGTH_TYPE_FLAGS;
560
561     put_byte(pb, ASF_PACKET_ERROR_CORRECTION_FLAGS);
562     for (i = 0; i < ASF_PACKET_ERROR_CORRECTION_DATA_SIZE; i++){
563         put_byte(pb, 0x0);
564     }
565
566     if (asf->multi_payloads_present)
567         iLengthTypeFlags |= ASF_PPI_FLAG_MULTIPLE_PAYLOADS_PRESENT;
568
569     if (padsize > 0) {
570         if (padsize < 256)
571             iLengthTypeFlags |= ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_BYTE;
572         else
573             iLengthTypeFlags |= ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_WORD;
574     }
575     put_byte(pb, iLengthTypeFlags);
576
577     put_byte(pb, ASF_PPI_PROPERTY_FLAGS);
578
579     if (iLengthTypeFlags & ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_WORD)
580         put_le16(pb, padsize - 2);
581     if (iLengthTypeFlags & ASF_PPI_FLAG_PADDING_LENGTH_FIELD_IS_BYTE)
582         put_byte(pb, padsize - 1);
583
584     put_le32(pb, sendtime);
585     put_le16(pb, duration);
586     if (asf->multi_payloads_present)
587         put_byte(pb, nb_payloads | ASF_PAYLOAD_FLAGS);
588
589     ppi_size = pb->buf_ptr - start_ppi_ptr;
590
591     return ppi_size;
592 }
593
594 static void flush_packet(AVFormatContext *s)
595 {
596     ASFContext *asf = s->priv_data;
597     int packet_hdr_size, packet_filled_size;
598
599     if (asf->is_streamed) {
600         put_chunk(s, 0x4424, asf->packet_size, 0);
601     }
602
603     packet_hdr_size = put_payload_parsing_info(
604                             s,
605                             asf->packet_timestamp_start,
606                             asf->packet_timestamp_end - asf->packet_timestamp_start,
607                             asf->packet_nb_payloads,
608                             asf->packet_size_left
609                         );
610
611     packet_filled_size = PACKET_SIZE - packet_hdr_size - asf->packet_size_left;
612     memset(asf->packet_buf + packet_filled_size, 0, asf->packet_size_left);
613
614     put_buffer(&s->pb, asf->packet_buf, asf->packet_size - packet_hdr_size);
615
616     put_flush_packet(&s->pb);
617     asf->nb_packets++;
618     asf->packet_nb_payloads = 0;
619     asf->prev_packet_sent_time = asf->packet_timestamp_start;
620     asf->packet_timestamp_start = -1;
621     asf->packet_timestamp_end = -1;
622     init_put_byte(&asf->pb, asf->packet_buf, asf->packet_size, 1,
623                   NULL, NULL, NULL, NULL);
624 }
625
626 static void put_payload_header(
627                                 AVFormatContext *s,
628                                 ASFStream       *stream,
629                                 int             presentation_time,
630                                 int             m_obj_size,
631                                 int             m_obj_offset,
632                                 int             payload_len,
633                                 int             flags
634             )
635 {
636     ASFContext *asf = s->priv_data;
637     ByteIOContext *pb = &asf->pb;
638     int val;
639
640     val = stream->num;
641     if (flags & PKT_FLAG_KEY)
642         val |= ASF_PL_FLAG_KEY_FRAME;
643     put_byte(pb, val);
644
645     put_byte(pb, stream->seq);  //Media object number
646     put_le32(pb, m_obj_offset); //Offset Into Media Object
647
648     // Replicated Data shall be at least 8 bytes long.
649     // The first 4 bytes of data shall contain the
650     // Size of the Media Object that the payload belongs to.
651     // The next 4 bytes of data shall contain the
652     // Presentation Time for the media object that the payload belongs to.
653     put_byte(pb, ASF_PAYLOAD_REPLICATED_DATA_LENGTH);
654
655     put_le32(pb, m_obj_size);       //Replicated Data - Media Object Size
656     put_le32(pb, presentation_time);//Replicated Data - Presentation Time
657
658     if (asf->multi_payloads_present){
659         put_le16(pb, payload_len);   //payload length
660     }
661 }
662
663 static void put_frame(
664                     AVFormatContext *s,
665                     ASFStream       *stream,
666                     int             timestamp,
667                     const uint8_t   *buf,
668                     int             m_obj_size,
669                     int             flags
670                 )
671 {
672     ASFContext *asf = s->priv_data;
673     int m_obj_offset, payload_len, frag_len1;
674
675     m_obj_offset = 0;
676     while (m_obj_offset < m_obj_size) {
677         payload_len = m_obj_size - m_obj_offset;
678         if (asf->packet_timestamp_start == -1) {
679             asf->multi_payloads_present = (payload_len < MULTI_PAYLOAD_CONSTANT);
680
681             if (asf->multi_payloads_present){
682                 asf->packet_size_left = PACKET_SIZE; //For debug
683                 asf->packet_size_left = PACKET_SIZE - PACKET_HEADER_MIN_SIZE - 1;
684                 frag_len1 = MULTI_PAYLOAD_CONSTANT - 1;
685             }
686             else {
687                 asf->packet_size_left = PACKET_SIZE - PACKET_HEADER_MIN_SIZE;
688                 frag_len1 = SINGLE_PAYLOAD_DATA_LENGTH;
689             }
690             if (asf->prev_packet_sent_time > timestamp)
691                 asf->packet_timestamp_start = asf->prev_packet_sent_time;
692             else
693                 asf->packet_timestamp_start = timestamp;
694         }
695         else {
696             // multi payloads
697             frag_len1 = asf->packet_size_left - PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS;
698
699             if (asf->prev_packet_sent_time > timestamp)
700                 asf->packet_timestamp_start = asf->prev_packet_sent_time;
701             else if (asf->packet_timestamp_start >= timestamp)
702                 asf->packet_timestamp_start = timestamp;
703         }
704         if (frag_len1 > 0) {
705             if (payload_len > frag_len1)
706                 payload_len = frag_len1;
707             else if (payload_len == (frag_len1 - 1))
708                 payload_len = frag_len1 - 2;  //additional byte need to put padding length
709
710             put_payload_header(s, stream, timestamp+preroll_time, m_obj_size, m_obj_offset, payload_len, flags);
711             put_buffer(&asf->pb, buf, payload_len);
712
713             if (asf->multi_payloads_present)
714                 asf->packet_size_left -= (payload_len + PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS);
715             else
716                 asf->packet_size_left -= (payload_len + PAYLOAD_HEADER_SIZE_SINGLE_PAYLOAD);
717             asf->packet_timestamp_end = timestamp;
718
719             asf->packet_nb_payloads++;
720         } else {
721             payload_len = 0;
722         }
723         m_obj_offset += payload_len;
724         buf += payload_len;
725
726         if (!asf->multi_payloads_present)
727             flush_packet(s);
728         else if (asf->packet_size_left <= (PAYLOAD_HEADER_SIZE_MULTIPLE_PAYLOADS + 1))
729             flush_packet(s);
730     }
731     stream->seq++;
732 }
733
734 static int asf_write_packet(AVFormatContext *s, AVPacket *pkt)
735 {
736     ASFContext *asf = s->priv_data;
737     ASFStream *stream;
738     int64_t duration;
739     AVCodecContext *codec;
740     int64_t packet_st,pts;
741     int start_sec,i;
742
743     codec = s->streams[pkt->stream_index]->codec;
744     stream = &asf->streams[pkt->stream_index];
745
746     //XXX /FIXME use duration from AVPacket (quick hack by)
747     pts = (pkt->pts != AV_NOPTS_VALUE) ? pkt->pts : pkt->dts;
748     if (pts == AV_NOPTS_VALUE) {
749         if (codec->codec_type == CODEC_TYPE_AUDIO) {
750             duration = (codec->frame_number * (int64_t)codec->frame_size * INT64_C(10000000)) /
751                 codec->sample_rate;
752         } else {
753             duration = av_rescale(codec->frame_number * (int64_t)codec->time_base.num, 10000000, codec->time_base.den);
754         }
755     } else {
756         duration = pts * 10000;
757     }
758     if (duration > asf->duration)
759         asf->duration = duration;
760
761     packet_st = asf->nb_packets;
762     put_frame(s, stream, pkt->pts, pkt->data, pkt->size, pkt->flags);
763
764     /* check index */
765     if ((!asf->is_streamed) && (codec->codec_type == CODEC_TYPE_VIDEO) && (pkt->flags & PKT_FLAG_KEY)) {
766         start_sec = (int)(duration / INT64_C(10000000));
767         if (start_sec != (int)(asf->last_indexed_pts / INT64_C(10000000))) {
768             for(i=asf->nb_index_count;i<start_sec;i++) {
769                 if (i>=asf->nb_index_memory_alloc) {
770                     asf->nb_index_memory_alloc += ASF_INDEX_BLOCK;
771                     asf->index_ptr = (ASFIndex*)av_realloc( asf->index_ptr, sizeof(ASFIndex) * asf->nb_index_memory_alloc );
772                 }
773                 // store
774                 asf->index_ptr[i].packet_number = (uint32_t)packet_st;
775                 asf->index_ptr[i].packet_count  = (uint16_t)(asf->nb_packets-packet_st);
776                 if (asf->maximum_packet < (uint16_t)(asf->nb_packets-packet_st))
777                     asf->maximum_packet = (uint16_t)(asf->nb_packets-packet_st);
778             }
779             asf->nb_index_count = start_sec;
780             asf->last_indexed_pts = duration;
781         }
782     }
783     return 0;
784 }
785
786 //
787 static int asf_write_index(AVFormatContext *s, ASFIndex *index, uint16_t max, uint32_t count)
788 {
789     ByteIOContext *pb = &s->pb;
790     int i;
791
792     put_guid(pb, &simple_index_header);
793     put_le64(pb, 24 + 16 + 8 + 4 + 4 + (4 + 2)*count);
794     put_guid(pb, &my_guid);
795     put_le64(pb, ASF_INDEXED_INTERVAL);
796     put_le32(pb, max);
797     put_le32(pb, count);
798     for(i=0; i<count; i++) {
799         put_le32(pb, index[i].packet_number);
800         put_le16(pb, index[i].packet_count);
801     }
802
803     return 0;
804 }
805
806 static int asf_write_trailer(AVFormatContext *s)
807 {
808     ASFContext *asf = s->priv_data;
809     int64_t file_size,data_size;
810
811     /* flush the current packet */
812     if (asf->pb.buf_ptr > asf->pb.buffer)
813         flush_packet(s);
814
815     /* write index */
816     data_size = url_ftell(&s->pb);
817     if ((!asf->is_streamed) && (asf->nb_index_count != 0)) {
818         asf_write_index(s, asf->index_ptr, asf->maximum_packet, asf->nb_index_count);
819     }
820     put_flush_packet(&s->pb);
821
822     if (asf->is_streamed) {
823         put_chunk(s, 0x4524, 0, 0); /* end of stream */
824     } else {
825         /* rewrite an updated header */
826         file_size = url_ftell(&s->pb);
827         url_fseek(&s->pb, 0, SEEK_SET);
828         asf_write_header1(s, file_size, data_size - asf->data_offset);
829     }
830
831     put_flush_packet(&s->pb);
832     av_free(asf->index_ptr);
833     return 0;
834 }
835
836 #ifdef CONFIG_ASF_MUXER
837 AVOutputFormat asf_muxer = {
838     "asf",
839     "asf format",
840     "video/x-ms-asf",
841     "asf,wmv,wma",
842     sizeof(ASFContext),
843 #ifdef CONFIG_LIBMP3LAME
844     CODEC_ID_MP3,
845 #else
846     CODEC_ID_MP2,
847 #endif
848     CODEC_ID_MSMPEG4V3,
849     asf_write_header,
850     asf_write_packet,
851     asf_write_trailer,
852     .flags = AVFMT_GLOBALHEADER,
853     .codec_tag= (const AVCodecTag*[]){codec_asf_bmp_tags, codec_bmp_tags, codec_wav_tags, 0},
854 };
855 #endif
856
857 #ifdef CONFIG_ASF_STREAM_MUXER
858 AVOutputFormat asf_stream_muxer = {
859     "asf_stream",
860     "asf format",
861     "video/x-ms-asf",
862     "asf,wmv,wma",
863     sizeof(ASFContext),
864 #ifdef CONFIG_LIBMP3LAME
865     CODEC_ID_MP3,
866 #else
867     CODEC_ID_MP2,
868 #endif
869     CODEC_ID_MSMPEG4V3,
870     asf_write_stream_header,
871     asf_write_packet,
872     asf_write_trailer,
873     .flags = AVFMT_GLOBALHEADER,
874     .codec_tag= (const AVCodecTag*[]){codec_asf_bmp_tags, codec_bmp_tags, codec_wav_tags, 0},
875 };
876 #endif //CONFIG_ASF_STREAM_MUXER