]> git.sesse.net Git - ffmpeg/blob - libavformat/avienc.c
4d97ad79b8e5e3312eedae3f81ba7a1a923013d6
[ffmpeg] / libavformat / avienc.c
1 /*
2  * AVI encoder.
3  * Copyright (c) 2000 Fabrice Bellard.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 #include "avformat.h"
20 #include "avi.h"
21
22 /*
23  * TODO:
24  *  - fill all fields if non streamed (nb_frames for example)
25  */
26
27 #ifdef CONFIG_MUXERS
28 typedef struct AVIIentry {
29     unsigned int flags, pos, len;
30 } AVIIentry;
31
32 #define AVI_INDEX_CLUSTER_SIZE 16384
33
34 typedef struct AVIIndex {
35     offset_t    indx_start;
36     int         entry;
37     int         ents_allocated;
38     AVIIentry** cluster;
39 } AVIIndex;
40
41 typedef struct {
42     offset_t riff_start, movi_list, odml_list;
43     offset_t frames_hdr_all, frames_hdr_strm[MAX_STREAMS];
44     int audio_strm_length[MAX_STREAMS];
45     int riff_id;
46     int packet_count[MAX_STREAMS];
47
48     AVIIndex indexes[MAX_STREAMS];
49 } AVIContext;
50
51 static inline AVIIentry* avi_get_ientry(AVIIndex* idx, int ent_id)
52 {
53     int cl = ent_id / AVI_INDEX_CLUSTER_SIZE;
54     int id = ent_id % AVI_INDEX_CLUSTER_SIZE;
55     return &idx->cluster[cl][id];
56 }
57
58 offset_t start_tag(ByteIOContext *pb, const char *tag)
59 {
60     put_tag(pb, tag);
61     put_le32(pb, 0);
62     return url_ftell(pb);
63 }
64
65 void end_tag(ByteIOContext *pb, offset_t start)
66 {
67     offset_t pos;
68
69     pos = url_ftell(pb);
70     url_fseek(pb, start - 4, SEEK_SET);
71     put_le32(pb, (uint32_t)(pos - start));
72     url_fseek(pb, pos, SEEK_SET);
73 }
74 #endif //CONFIG_MUXERS
75
76 /* Note: when encoding, the first matching tag is used, so order is
77    important if multiple tags possible for a given codec. */
78 const CodecTag codec_bmp_tags[] = {
79     { CODEC_ID_H264, MKTAG('H', '2', '6', '4') },
80     { CODEC_ID_H264, MKTAG('h', '2', '6', '4') },
81     { CODEC_ID_H264, MKTAG('X', '2', '6', '4') },
82     { CODEC_ID_H264, MKTAG('x', '2', '6', '4') },
83     { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') },
84     { CODEC_ID_H264, MKTAG('V', 'S', 'S', 'H') },
85
86     { CODEC_ID_H263, MKTAG('H', '2', '6', '3') },
87     { CODEC_ID_H263P, MKTAG('H', '2', '6', '3') },
88     { CODEC_ID_H263I, MKTAG('I', '2', '6', '3') }, /* intel h263 */
89     { CODEC_ID_H261, MKTAG('H', '2', '6', '1') },
90
91     /* added based on MPlayer */
92     { CODEC_ID_H263P, MKTAG('U', '2', '6', '3') },
93     { CODEC_ID_H263P, MKTAG('v', 'i', 'v', '1') },
94
95     { CODEC_ID_MPEG4, MKTAG('F', 'M', 'P', '4')},
96     { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X'), .invalid_asf = 1 },
97     { CODEC_ID_MPEG4, MKTAG('D', 'X', '5', '0'), .invalid_asf = 1 },
98     { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D'), .invalid_asf = 1 },
99     { CODEC_ID_MPEG4, MKTAG('M', 'P', '4', 'S') },
100     { CODEC_ID_MPEG4, MKTAG('M', '4', 'S', '2') },
101     { CODEC_ID_MPEG4, MKTAG(0x04, 0, 0, 0) }, /* some broken avi use this */
102
103     /* added based on MPlayer */
104     { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', '1') },
105     { CODEC_ID_MPEG4, MKTAG('B', 'L', 'Z', '0') },
106     { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') },
107     { CODEC_ID_MPEG4, MKTAG('U', 'M', 'P', '4') },
108     { CODEC_ID_MPEG4, MKTAG('W', 'V', '1', 'F') },
109     { CODEC_ID_MPEG4, MKTAG('S', 'E', 'D', 'G') },
110
111     { CODEC_ID_MPEG4, MKTAG('R', 'M', 'P', '4') },
112
113     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '3'), .invalid_asf = 1 }, /* default signature when using MSMPEG4 */
114     { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', '4', '3') },
115
116     /* added based on MPlayer */
117     { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', 'G', '3') },
118     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '5') },
119     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '6') },
120     { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '4') },
121     { CODEC_ID_MSMPEG4V3, MKTAG('A', 'P', '4', '1') },
122     { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '1') },
123     { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '0') },
124
125     { CODEC_ID_MSMPEG4V2, MKTAG('M', 'P', '4', '2') },
126
127     /* added based on MPlayer */
128     { CODEC_ID_MSMPEG4V2, MKTAG('D', 'I', 'V', '2') },
129
130     { CODEC_ID_MSMPEG4V1, MKTAG('M', 'P', 'G', '4') },
131
132     { CODEC_ID_WMV1, MKTAG('W', 'M', 'V', '1') },
133
134     /* added based on MPlayer */
135     { CODEC_ID_WMV2, MKTAG('W', 'M', 'V', '2') },
136     { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'd') },
137     { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', 'd') },
138     { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'l') },
139     { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '2', '5') },
140     { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '1') },
141     { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '2') },
142     { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'p', 'g', '2') },
143     { CODEC_ID_MPEG1VIDEO, MKTAG('P', 'I', 'M', '1') },
144     { CODEC_ID_MPEG1VIDEO, MKTAG('V', 'C', 'R', '2') },
145     { CODEC_ID_MPEG1VIDEO, 0x10000001 },
146     { CODEC_ID_MPEG2VIDEO, 0x10000002 },
147     { CODEC_ID_MPEG2VIDEO, MKTAG('D', 'V', 'R', ' ') },
148     { CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') },
149     { CODEC_ID_MJPEG, MKTAG('L', 'J', 'P', 'G') },
150     { CODEC_ID_LJPEG, MKTAG('L', 'J', 'P', 'G') },
151     { CODEC_ID_MJPEG, MKTAG('J', 'P', 'G', 'L') }, /* Pegasus lossless JPEG */
152     { CODEC_ID_HUFFYUV, MKTAG('H', 'F', 'Y', 'U') },
153     { CODEC_ID_FFVHUFF, MKTAG('F', 'F', 'V', 'H') },
154     { CODEC_ID_CYUV, MKTAG('C', 'Y', 'U', 'V') },
155     { CODEC_ID_RAWVIDEO, MKTAG('I', '4', '2', '0') },
156     { CODEC_ID_RAWVIDEO, MKTAG('Y', 'U', 'Y', '2') },
157     { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', '2') },
158     { CODEC_ID_RAWVIDEO, MKTAG('U', 'Y', 'V', 'Y') },
159     { CODEC_ID_RAWVIDEO, MKTAG('I', 'Y', 'U', 'V') },
160     { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') },
161     { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') },
162     { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
163     { CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') },
164     { CODEC_ID_ASV1, MKTAG('A', 'S', 'V', '1') },
165     { CODEC_ID_ASV2, MKTAG('A', 'S', 'V', '2') },
166     { CODEC_ID_VCR1, MKTAG('V', 'C', 'R', '1') },
167     { CODEC_ID_FFV1, MKTAG('F', 'F', 'V', '1') },
168     { CODEC_ID_XAN_WC4, MKTAG('X', 'x', 'a', 'n') },
169     { CODEC_ID_MSRLE, MKTAG('m', 'r', 'l', 'e') },
170     { CODEC_ID_MSRLE, MKTAG(0x1, 0x0, 0x0, 0x0) },
171     { CODEC_ID_MSVIDEO1, MKTAG('M', 'S', 'V', 'C') },
172     { CODEC_ID_MSVIDEO1, MKTAG('m', 's', 'v', 'c') },
173     { CODEC_ID_MSVIDEO1, MKTAG('C', 'R', 'A', 'M') },
174     { CODEC_ID_MSVIDEO1, MKTAG('c', 'r', 'a', 'm') },
175     { CODEC_ID_MSVIDEO1, MKTAG('W', 'H', 'A', 'M') },
176     { CODEC_ID_MSVIDEO1, MKTAG('w', 'h', 'a', 'm') },
177     { CODEC_ID_CINEPAK, MKTAG('c', 'v', 'i', 'd') },
178     { CODEC_ID_TRUEMOTION1, MKTAG('D', 'U', 'C', 'K') },
179     { CODEC_ID_MSZH, MKTAG('M', 'S', 'Z', 'H') },
180     { CODEC_ID_ZLIB, MKTAG('Z', 'L', 'I', 'B') },
181     { CODEC_ID_SNOW, MKTAG('S', 'N', 'O', 'W') },
182     { CODEC_ID_4XM, MKTAG('4', 'X', 'M', 'V') },
183     { CODEC_ID_FLV1, MKTAG('F', 'L', 'V', '1') },
184     { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', '1') },
185     { CODEC_ID_TSCC, MKTAG('t', 's', 'c', 'c') },
186     { CODEC_ID_ULTI, MKTAG('U', 'L', 'T', 'I') },
187     { CODEC_ID_VIXL, MKTAG('V', 'I', 'X', 'L') },
188     { CODEC_ID_QPEG, MKTAG('Q', 'P', 'E', 'G') },
189     { CODEC_ID_QPEG, MKTAG('Q', '1', '.', '0') },
190     { CODEC_ID_QPEG, MKTAG('Q', '1', '.', '1') },
191     { CODEC_ID_WMV3, MKTAG('W', 'M', 'V', '3') },
192     { CODEC_ID_LOCO, MKTAG('L', 'O', 'C', 'O') },
193     { CODEC_ID_WNV1, MKTAG('W', 'N', 'V', '1') },
194     { CODEC_ID_AASC, MKTAG('A', 'A', 'S', 'C') },
195     { CODEC_ID_INDEO2, MKTAG('R', 'T', '2', '1') },
196     { CODEC_ID_FRAPS, MKTAG('F', 'P', 'S', '1') },
197     { CODEC_ID_THEORA, MKTAG('t', 'h', 'e', 'o') },
198     { CODEC_ID_TRUEMOTION2, MKTAG('T', 'M', '2', '0') },
199     { CODEC_ID_CSCD, MKTAG('C', 'S', 'C', 'D') },
200     { CODEC_ID_ZMBV, MKTAG('Z', 'M', 'B', 'V') },
201     { CODEC_ID_RAWVIDEO, 0 },
202     { CODEC_ID_NONE, 0 },
203 };
204
205 unsigned int codec_get_tag(const CodecTag *tags, int id)
206 {
207     while (tags->id != CODEC_ID_NONE) {
208         if (tags->id == id)
209             return tags->tag;
210         tags++;
211     }
212     return 0;
213 }
214
215 static unsigned int codec_get_asf_tag(const CodecTag *tags, unsigned int id)
216 {
217     while (tags->id != CODEC_ID_NONE) {
218         if (!tags->invalid_asf && tags->id == id)
219             return tags->tag;
220         tags++;
221     }
222     return 0;
223 }
224
225 enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag)
226 {
227     while (tags->id != CODEC_ID_NONE) {
228         if(   toupper((tag >> 0)&0xFF) == toupper((tags->tag >> 0)&0xFF)
229            && toupper((tag >> 8)&0xFF) == toupper((tags->tag >> 8)&0xFF)
230            && toupper((tag >>16)&0xFF) == toupper((tags->tag >>16)&0xFF)
231            && toupper((tag >>24)&0xFF) == toupper((tags->tag >>24)&0xFF))
232             return tags->id;
233         tags++;
234     }
235     return CODEC_ID_NONE;
236 }
237
238 unsigned int codec_get_bmp_tag(int id)
239 {
240     return codec_get_tag(codec_bmp_tags, id);
241 }
242
243 unsigned int codec_get_wav_tag(int id)
244 {
245     return codec_get_tag(codec_wav_tags, id);
246 }
247
248 enum CodecID codec_get_bmp_id(unsigned int tag)
249 {
250     return codec_get_id(codec_bmp_tags, tag);
251 }
252
253 enum CodecID codec_get_wav_id(unsigned int tag)
254 {
255     return codec_get_id(codec_wav_tags, tag);
256 }
257
258 #ifdef CONFIG_MUXERS
259 /* BITMAPINFOHEADER header */
260 void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const CodecTag *tags, int for_asf)
261 {
262     put_le32(pb, 40 + enc->extradata_size); /* size */
263     put_le32(pb, enc->width);
264     put_le32(pb, enc->height);
265     put_le16(pb, 1); /* planes */
266
267     put_le16(pb, enc->bits_per_sample ? enc->bits_per_sample : 24); /* depth */
268     /* compression type */
269     put_le32(pb, for_asf ? (enc->codec_tag ? enc->codec_tag : codec_get_asf_tag(tags, enc->codec_id)) : enc->codec_tag); //
270     put_le32(pb, enc->width * enc->height * 3);
271     put_le32(pb, 0);
272     put_le32(pb, 0);
273     put_le32(pb, 0);
274     put_le32(pb, 0);
275
276     put_buffer(pb, enc->extradata, enc->extradata_size);
277
278     if (enc->extradata_size & 1)
279         put_byte(pb, 0);
280 }
281
282 void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale)
283 {
284     int gcd;
285
286     *au_ssize= stream->block_align;
287     if(stream->frame_size && stream->sample_rate){
288         *au_scale=stream->frame_size;
289         *au_rate= stream->sample_rate;
290     }else if(stream->codec_type == CODEC_TYPE_VIDEO){
291         *au_scale= stream->time_base.num;
292         *au_rate = stream->time_base.den;
293     }else{
294         *au_scale= stream->block_align ? stream->block_align*8 : 8;
295         *au_rate = stream->bit_rate;
296     }
297     gcd= ff_gcd(*au_scale, *au_rate);
298     *au_scale /= gcd;
299     *au_rate /= gcd;
300 }
301
302 static offset_t avi_start_new_riff(AVIContext *avi, ByteIOContext *pb,
303                                    const char* riff_tag, const char* list_tag)
304 {
305     offset_t loff;
306     int i;
307
308     avi->riff_id++;
309     for (i=0; i<MAX_STREAMS; i++)
310          avi->indexes[i].entry = 0;
311
312     avi->riff_start = start_tag(pb, "RIFF");
313     put_tag(pb, riff_tag);
314     loff = start_tag(pb, "LIST");
315     put_tag(pb, list_tag);
316     return loff;
317 }
318
319 static unsigned char* avi_stream2fourcc(unsigned char* tag, int index,
320                                         enum CodecType type)
321 {
322     tag[0] = '0';
323     tag[1] = '0' + index;
324     if (type == CODEC_TYPE_VIDEO) {
325         tag[2] = 'd';
326         tag[3] = 'c';
327     } else {
328         tag[2] = 'w';
329         tag[3] = 'b';
330     }
331     tag[4] = '\0';
332     return tag;
333 }
334
335 static int avi_write_header(AVFormatContext *s)
336 {
337     AVIContext *avi = s->priv_data;
338     ByteIOContext *pb = &s->pb;
339     int bitrate, n, i, nb_frames, au_byterate, au_ssize, au_scale;
340     AVCodecContext *stream, *video_enc;
341     offset_t list1, list2, strh, strf;
342
343     /* header list */
344     avi->riff_id = 0;
345     list1 = avi_start_new_riff(avi, pb, "AVI ", "hdrl");
346
347     /* avi header */
348     put_tag(pb, "avih");
349     put_le32(pb, 14 * 4);
350     bitrate = 0;
351
352     video_enc = NULL;
353     for(n=0;n<s->nb_streams;n++) {
354         stream = s->streams[n]->codec;
355         bitrate += stream->bit_rate;
356         if (stream->codec_type == CODEC_TYPE_VIDEO)
357             video_enc = stream;
358     }
359
360     nb_frames = 0;
361
362     if(video_enc){
363         put_le32(pb, (uint32_t)(int64_t_C(1000000) * video_enc->time_base.num / video_enc->time_base.den));
364     } else {
365         put_le32(pb, 0);
366     }
367     put_le32(pb, bitrate / 8); /* XXX: not quite exact */
368     put_le32(pb, 0); /* padding */
369     if (url_is_streamed(pb))
370         put_le32(pb, AVIF_TRUSTCKTYPE | AVIF_ISINTERLEAVED); /* flags */
371     else
372         put_le32(pb, AVIF_TRUSTCKTYPE | AVIF_HASINDEX | AVIF_ISINTERLEAVED); /* flags */
373     avi->frames_hdr_all = url_ftell(pb); /* remember this offset to fill later */
374     put_le32(pb, nb_frames); /* nb frames, filled later */
375     put_le32(pb, 0); /* initial frame */
376     put_le32(pb, s->nb_streams); /* nb streams */
377     put_le32(pb, 1024 * 1024); /* suggested buffer size */
378     if(video_enc){
379     put_le32(pb, video_enc->width);
380     put_le32(pb, video_enc->height);
381     } else {
382         put_le32(pb, 0);
383         put_le32(pb, 0);
384     }
385     put_le32(pb, 0); /* reserved */
386     put_le32(pb, 0); /* reserved */
387     put_le32(pb, 0); /* reserved */
388     put_le32(pb, 0); /* reserved */
389
390     /* stream list */
391     for(i=0;i<n;i++) {
392         list2 = start_tag(pb, "LIST");
393         put_tag(pb, "strl");
394
395         stream = s->streams[i]->codec;
396
397         /* FourCC should really be set by the codec itself */
398         if (! stream->codec_tag) {
399             stream->codec_tag = codec_get_bmp_tag(stream->codec_id);
400         }
401
402         /* stream generic header */
403         strh = start_tag(pb, "strh");
404         switch(stream->codec_type) {
405         case CODEC_TYPE_VIDEO: put_tag(pb, "vids"); break;
406         case CODEC_TYPE_AUDIO: put_tag(pb, "auds"); break;
407 //        case CODEC_TYPE_TEXT : put_tag(pb, "txts"); break;
408         case CODEC_TYPE_DATA : put_tag(pb, "dats"); break;
409         }
410         if(stream->codec_type == CODEC_TYPE_VIDEO)
411             put_le32(pb, stream->codec_tag);
412         else
413             put_le32(pb, 1);
414         put_le32(pb, 0); /* flags */
415         put_le16(pb, 0); /* priority */
416         put_le16(pb, 0); /* language */
417         put_le32(pb, 0); /* initial frame */
418
419         ff_parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale);
420
421         put_le32(pb, au_scale); /* scale */
422         put_le32(pb, au_byterate); /* rate */
423         av_set_pts_info(s->streams[i], 64, au_scale, au_byterate);
424
425         put_le32(pb, 0); /* start */
426         avi->frames_hdr_strm[i] = url_ftell(pb); /* remember this offset to fill later */
427         if (url_is_streamed(pb))
428             put_le32(pb, AVI_MAX_RIFF_SIZE); /* FIXME: this may be broken, but who cares */
429         else
430             put_le32(pb, 0); /* length, XXX: filled later */
431
432         /* suggested buffer size */ //FIXME set at the end to largest chunk
433         if(stream->codec_type == CODEC_TYPE_VIDEO)
434             put_le32(pb, 1024 * 1024);
435         else if(stream->codec_type == CODEC_TYPE_AUDIO)
436             put_le32(pb, 12 * 1024);
437         else
438             put_le32(pb, 0);
439         put_le32(pb, -1); /* quality */
440         put_le32(pb, au_ssize); /* sample size */
441         put_le32(pb, 0);
442         put_le16(pb, stream->width);
443         put_le16(pb, stream->height);
444         end_tag(pb, strh);
445
446       if(stream->codec_type != CODEC_TYPE_DATA){
447         strf = start_tag(pb, "strf");
448         switch(stream->codec_type) {
449         case CODEC_TYPE_VIDEO:
450             put_bmp_header(pb, stream, codec_bmp_tags, 0);
451             break;
452         case CODEC_TYPE_AUDIO:
453             if (put_wav_header(pb, stream) < 0) {
454                 av_free(avi);
455                 return -1;
456             }
457             break;
458         default:
459             return -1;
460         }
461         end_tag(pb, strf);
462       }
463
464         if (!url_is_streamed(pb)) {
465             unsigned char tag[5];
466             int j;
467
468             /* Starting to lay out AVI OpenDML master index.
469              * We want to make it JUNK entry for now, since we'd
470              * like to get away without making AVI an OpenDML one
471              * for compatibility reasons.
472              */
473             avi->indexes[i].entry = avi->indexes[i].ents_allocated = 0;
474             avi->indexes[i].indx_start = start_tag(pb, "JUNK");
475             put_le16(pb, 4);        /* wLongsPerEntry */
476             put_byte(pb, 0);        /* bIndexSubType (0 == frame index) */
477             put_byte(pb, 0);        /* bIndexType (0 == AVI_INDEX_OF_INDEXES) */
478             put_le32(pb, 0);        /* nEntriesInUse (will fill out later on) */
479             put_tag(pb, avi_stream2fourcc(&tag[0], i, stream->codec_type));
480                                     /* dwChunkId */
481             put_le64(pb, 0);        /* dwReserved[3]
482             put_le32(pb, 0);           Must be 0.    */
483             for (j=0; j < AVI_MASTER_INDEX_SIZE * 2; j++)
484                  put_le64(pb, 0);
485             end_tag(pb, avi->indexes[i].indx_start);
486         }
487
488         end_tag(pb, list2);
489     }
490
491     if (!url_is_streamed(pb)) {
492         /* AVI could become an OpenDML one, if it grows beyond 2Gb range */
493         avi->odml_list = start_tag(pb, "JUNK");
494         put_tag(pb, "odml");
495         put_tag(pb, "dmlh");
496         put_le32(pb, 248);
497         for (i = 0; i < 248; i+= 4)
498              put_le32(pb, 0);
499         end_tag(pb, avi->odml_list);
500     }
501
502     end_tag(pb, list1);
503
504     avi->movi_list = start_tag(pb, "LIST");
505     put_tag(pb, "movi");
506
507     put_flush_packet(pb);
508
509     return 0;
510 }
511
512 static int avi_write_ix(AVFormatContext *s)
513 {
514     ByteIOContext *pb = &s->pb;
515     AVIContext *avi = s->priv_data;
516     unsigned char tag[5];
517     unsigned char ix_tag[] = "ix00";
518     int i, j;
519
520     assert(!url_is_streamed(pb));
521
522     if (avi->riff_id > AVI_MASTER_INDEX_SIZE)
523         return -1;
524
525     for (i=0;i<s->nb_streams;i++) {
526          offset_t ix, pos;
527
528          avi_stream2fourcc(&tag[0], i, s->streams[i]->codec->codec_type);
529          ix_tag[3] = '0' + i;
530
531          /* Writing AVI OpenDML leaf index chunk */
532          ix = url_ftell(pb);
533          put_tag(pb, &ix_tag[0]);     /* ix?? */
534          put_le32(pb, avi->indexes[i].entry * 8 + 24);
535                                       /* chunk size */
536          put_le16(pb, 2);             /* wLongsPerEntry */
537          put_byte(pb, 0);             /* bIndexSubType (0 == frame index) */
538          put_byte(pb, 1);             /* bIndexType (1 == AVI_INDEX_OF_CHUNKS) */
539          put_le32(pb, avi->indexes[i].entry);
540                                       /* nEntriesInUse */
541          put_tag(pb, &tag[0]);        /* dwChunkId */
542          put_le64(pb, avi->movi_list);/* qwBaseOffset */
543          put_le32(pb, 0);             /* dwReserved_3 (must be 0) */
544
545          for (j=0; j<avi->indexes[i].entry; j++) {
546              AVIIentry* ie = avi_get_ientry(&avi->indexes[i], j);
547              put_le32(pb, ie->pos + 8);
548              put_le32(pb, ((uint32_t)ie->len & ~0x80000000) |
549                           (ie->flags & 0x10 ? 0 : 0x80000000));
550          }
551          put_flush_packet(pb);
552          pos = url_ftell(pb);
553
554          /* Updating one entry in the AVI OpenDML master index */
555          url_fseek(pb, avi->indexes[i].indx_start - 8, SEEK_SET);
556          put_tag(pb, "indx");                 /* enabling this entry */
557          url_fskip(pb, 8);
558          put_le32(pb, avi->riff_id);          /* nEntriesInUse */
559          url_fskip(pb, 16*avi->riff_id);
560          put_le64(pb, ix);                    /* qwOffset */
561          put_le32(pb, pos - ix);              /* dwSize */
562          put_le32(pb, avi->indexes[i].entry); /* dwDuration */
563
564          url_fseek(pb, pos, SEEK_SET);
565     }
566     return 0;
567 }
568
569 static int avi_write_idx1(AVFormatContext *s)
570 {
571     ByteIOContext *pb = &s->pb;
572     AVIContext *avi = s->priv_data;
573     offset_t file_size, idx_chunk;
574     int i, n, nb_frames, au_byterate, au_ssize, au_scale;
575     AVCodecContext *stream;
576     unsigned char tag[5];
577
578     if (!url_is_streamed(pb)) {
579         AVIIentry* ie = 0, *tie;
580         int entry[MAX_STREAMS];
581         int empty, stream_id = -1;
582
583         idx_chunk = start_tag(pb, "idx1");
584         memset(&entry[0], 0, sizeof(entry));
585         do {
586             empty = 1;
587             for (i=0; i<s->nb_streams; i++) {
588                  if (avi->indexes[i].entry <= entry[i])
589                      continue;
590
591                  tie = avi_get_ientry(&avi->indexes[i], entry[i]);
592                  if (empty || tie->pos < ie->pos) {
593                      ie = tie;
594                      stream_id = i;
595                  }
596                  empty = 0;
597             }
598             if (!empty) {
599                 avi_stream2fourcc(&tag[0], stream_id,
600                                   s->streams[stream_id]->codec->codec_type);
601                 put_tag(pb, &tag[0]);
602                 put_le32(pb, ie->flags);
603                 put_le32(pb, ie->pos);
604                 put_le32(pb, ie->len);
605                 entry[stream_id]++;
606             }
607         } while (!empty);
608         end_tag(pb, idx_chunk);
609
610         /* Fill in frame/sample counters */
611         file_size = url_ftell(pb);
612         nb_frames = 0;
613         for(n=0;n<s->nb_streams;n++) {
614             if (avi->frames_hdr_strm[n] != 0) {
615                 stream = s->streams[n]->codec;
616                 url_fseek(pb, avi->frames_hdr_strm[n], SEEK_SET);
617                 ff_parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale);
618                 if (au_ssize == 0) {
619                     put_le32(pb, avi->packet_count[n]);
620                     nb_frames += avi->packet_count[n];
621                 } else {
622                     put_le32(pb, avi->audio_strm_length[n] / au_ssize);
623                 }
624             }
625        }
626        if (avi->frames_hdr_all != 0) {
627            url_fseek(pb, avi->frames_hdr_all, SEEK_SET);
628            put_le32(pb, nb_frames);
629        }
630        url_fseek(pb, file_size, SEEK_SET);
631     }
632     return 0;
633 }
634
635 static int avi_write_packet(AVFormatContext *s, AVPacket *pkt)
636 {
637     AVIContext *avi = s->priv_data;
638     ByteIOContext *pb = &s->pb;
639     unsigned char tag[5];
640     unsigned int flags=0;
641     const int stream_index= pkt->stream_index;
642     AVCodecContext *enc= s->streams[stream_index]->codec;
643     int size= pkt->size;
644
645 //    av_log(s, AV_LOG_DEBUG, "%lld %d %d\n", pkt->dts, avi->packet_count[stream_index], stream_index);
646     while(enc->block_align==0 && pkt->dts != AV_NOPTS_VALUE && pkt->dts > avi->packet_count[stream_index]){
647         AVPacket empty_packet;
648
649         av_init_packet(&empty_packet);
650         empty_packet.size= 0;
651         empty_packet.data= NULL;
652         empty_packet.stream_index= stream_index;
653         avi_write_packet(s, &empty_packet);
654 //        av_log(s, AV_LOG_DEBUG, "dup %lld %d\n", pkt->dts, avi->packet_count[stream_index]);
655     }
656     avi->packet_count[stream_index]++;
657
658     // Make sure to put an OpenDML chunk when the file size exceeds the limits
659     if (!url_is_streamed(pb) &&
660         (url_ftell(pb) - avi->riff_start > AVI_MAX_RIFF_SIZE)) {
661
662         avi_write_ix(s);
663         end_tag(pb, avi->movi_list);
664
665         if (avi->riff_id == 1)
666             avi_write_idx1(s);
667
668         end_tag(pb, avi->riff_start);
669         avi->movi_list = avi_start_new_riff(avi, pb, "AVIX", "movi");
670     }
671
672     avi_stream2fourcc(&tag[0], stream_index, enc->codec_type);
673     if(pkt->flags&PKT_FLAG_KEY)
674         flags = 0x10;
675     if (enc->codec_type == CODEC_TYPE_AUDIO) {
676        avi->audio_strm_length[stream_index] += size;
677     }
678
679     if (!url_is_streamed(&s->pb)) {
680         AVIIndex* idx = &avi->indexes[stream_index];
681         int cl = idx->entry / AVI_INDEX_CLUSTER_SIZE;
682         int id = idx->entry % AVI_INDEX_CLUSTER_SIZE;
683         if (idx->ents_allocated <= idx->entry) {
684             idx->cluster = av_realloc(idx->cluster, (cl+1)*sizeof(void*));
685             if (!idx->cluster)
686                 return -1;
687             idx->cluster[cl] = av_malloc(AVI_INDEX_CLUSTER_SIZE*sizeof(AVIIentry));
688             if (!idx->cluster[cl])
689                 return -1;
690             idx->ents_allocated += AVI_INDEX_CLUSTER_SIZE;
691         }
692
693         idx->cluster[cl][id].flags = flags;
694         idx->cluster[cl][id].pos = url_ftell(pb) - avi->movi_list;
695         idx->cluster[cl][id].len = size;
696         idx->entry++;
697     }
698
699     put_buffer(pb, tag, 4);
700     put_le32(pb, size);
701     put_buffer(pb, pkt->data, size);
702     if (size & 1)
703         put_byte(pb, 0);
704
705     put_flush_packet(pb);
706     return 0;
707 }
708
709 static int avi_write_trailer(AVFormatContext *s)
710 {
711     AVIContext *avi = s->priv_data;
712     ByteIOContext *pb = &s->pb;
713     int res = 0;
714     int i, j, n, nb_frames;
715     offset_t file_size;
716
717     if (!url_is_streamed(pb))
718     {
719     if (avi->riff_id == 1) {
720         end_tag(pb, avi->movi_list);
721         res = avi_write_idx1(s);
722         end_tag(pb, avi->riff_start);
723     } else {
724         avi_write_ix(s);
725         end_tag(pb, avi->movi_list);
726         end_tag(pb, avi->riff_start);
727
728         file_size = url_ftell(pb);
729         url_fseek(pb, avi->odml_list - 8, SEEK_SET);
730         put_tag(pb, "LIST"); /* Making this AVI OpenDML one */
731         url_fskip(pb, 16);
732
733         for (n=nb_frames=0;n<s->nb_streams;n++) {
734              AVCodecContext *stream = s->streams[n]->codec;
735              if (stream->codec_type == CODEC_TYPE_VIDEO) {
736                  if (nb_frames < avi->packet_count[n])
737                      nb_frames = avi->packet_count[n];
738              } else {
739                  if (stream->codec_id == CODEC_ID_MP2 || stream->codec_id == CODEC_ID_MP3) {
740                      nb_frames += avi->packet_count[n];
741                 }
742             }
743         }
744         put_le32(pb, nb_frames);
745         url_fseek(pb, file_size, SEEK_SET);
746     }
747     }
748     put_flush_packet(pb);
749
750     for (i=0; i<MAX_STREAMS; i++) {
751          for (j=0; j<avi->indexes[i].ents_allocated/AVI_INDEX_CLUSTER_SIZE; j++)
752               av_free(avi->indexes[i].cluster[j]);
753          av_free(avi->indexes[i].cluster);
754          avi->indexes[i].cluster = NULL;
755          avi->indexes[i].ents_allocated = avi->indexes[i].entry = 0;
756     }
757
758     return res;
759 }
760
761 static AVOutputFormat avi_oformat = {
762     "avi",
763     "avi format",
764     "video/x-msvideo",
765     "avi",
766     sizeof(AVIContext),
767     CODEC_ID_MP2,
768     CODEC_ID_MPEG4,
769     avi_write_header,
770     avi_write_packet,
771     avi_write_trailer,
772 };
773
774 int avienc_init(void)
775 {
776     av_register_output_format(&avi_oformat);
777     return 0;
778 }
779 #endif //CONFIG_MUXERS