]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/matroskaenc.c
Move writing codec private element to its own function
[frescor/ffmpeg.git] / libavformat / matroskaenc.c
1 /*
2  * Matroska muxer
3  * Copyright (c) 2007 David Conrad
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
22 #include "avformat.h"
23 #include "md5.h"
24 #include "riff.h"
25 #include "xiph.h"
26 #include "matroska.h"
27
28 typedef struct ebml_master {
29     offset_t        pos;                ///< absolute offset in the file where the master's elements start
30     int             sizebytes;          ///< how many bytes were reserved for the size
31 } ebml_master;
32
33 typedef struct mkv_seekhead_entry {
34     unsigned int    elementid;
35     uint64_t        segmentpos;
36 } mkv_seekhead_entry;
37
38 typedef struct mkv_seekhead {
39     offset_t                filepos;
40     offset_t                segment_offset;     ///< the file offset to the beginning of the segment
41     int                     reserved_size;      ///< -1 if appending to file
42     int                     max_entries;
43     mkv_seekhead_entry      *entries;
44     int                     num_entries;
45 } mkv_seekhead;
46
47 typedef struct {
48     uint64_t        pts;
49     int             tracknum;
50     offset_t        cluster_pos;        ///< file offset of the cluster containing the block
51 } mkv_cuepoint;
52
53 typedef struct {
54     offset_t        segment_offset;
55     mkv_cuepoint    *entries;
56     int             num_entries;
57 } mkv_cues;
58
59 typedef struct MatroskaMuxContext {
60     ebml_master     segment;
61     offset_t        segment_offset;
62     offset_t        segment_uid;
63     ebml_master     cluster;
64     offset_t        cluster_pos;        ///< file offset of the current cluster
65     uint64_t        cluster_pts;
66     offset_t        duration_offset;
67     uint64_t        duration;
68     mkv_seekhead    *main_seekhead;
69     mkv_seekhead    *cluster_seekhead;
70     mkv_cues        *cues;
71
72     struct AVMD5    *md5_ctx;
73 } MatroskaMuxContext;
74
75
76 /** 2 bytes * 3 for EBML IDs, 3 1-byte EBML lengths, 8 bytes for 64 bit
77  * offset, 4 bytes for target EBML ID */
78 #define MAX_SEEKENTRY_SIZE 21
79
80 /** per-cuepoint-track - 3 1-byte EBML IDs, 3 1-byte EBML sizes, 2
81  * 8-byte uint max */
82 #define MAX_CUETRACKPOS_SIZE 22
83
84 /** per-cuepoint - 2 1-byte EBML IDs, 2 1-byte EBML sizes, 8-byte uint max */
85 #define MAX_CUEPOINT_SIZE(num_tracks) 12 + MAX_CUETRACKPOS_SIZE*num_tracks
86
87
88 static int ebml_id_size(unsigned int id)
89 {
90     return (av_log2(id+1)-1)/7+1;
91 }
92
93 static void put_ebml_id(ByteIOContext *pb, unsigned int id)
94 {
95     int i = ebml_id_size(id);
96     while (i--)
97         put_byte(pb, id >> (i*8));
98 }
99
100 /**
101  * Write an EBML size meaning "unknown size"
102  *
103  * @param bytes The number of bytes the size should occupy. Maximum of 8.
104  */
105 static void put_ebml_size_unknown(ByteIOContext *pb, int bytes)
106 {
107     assert(bytes <= 8);
108     put_byte(pb, 0x1ff >> bytes);
109     while (--bytes)
110         put_byte(pb, 0xff);
111 }
112
113 /**
114  * Calculate how many bytes are needed to represent a given size in EBML.
115  */
116 static int ebml_size_bytes(uint64_t size)
117 {
118     int bytes = 1;
119     while ((size+1) >> bytes*7) bytes++;
120     return bytes;
121 }
122
123 /**
124  * Write a size in EBML variable length format.
125  *
126  * @param bytes The number of bytes that need to be used to write the size.
127  *              If zero, any number of bytes can be used.
128  */
129 static void put_ebml_size(ByteIOContext *pb, uint64_t size, int bytes)
130 {
131     int i, needed_bytes = ebml_size_bytes(size);
132
133     // sizes larger than this are currently undefined in EBML
134     // so write "unknown" size
135     if (size >= (1ULL<<56)-1) {
136         put_ebml_size_unknown(pb, 1);
137         return;
138     }
139
140     if (bytes == 0)
141         // don't care how many bytes are used, so use the min
142         bytes = needed_bytes;
143     // the bytes needed to write the given size would exceed the bytes
144     // that we need to use, so write unknown size. This shouldn't happen.
145     assert(bytes >= needed_bytes);
146
147     size |= 1ULL << bytes*7;
148     for (i = bytes - 1; i >= 0; i--)
149         put_byte(pb, size >> i*8);
150 }
151
152 static void put_ebml_uint(ByteIOContext *pb, unsigned int elementid, uint64_t val)
153 {
154     int i, bytes = 1;
155     while (val >> bytes*8) bytes++;
156
157     put_ebml_id(pb, elementid);
158     put_ebml_size(pb, bytes, 0);
159     for (i = bytes - 1; i >= 0; i--)
160         put_byte(pb, val >> i*8);
161 }
162
163 static void put_ebml_float(ByteIOContext *pb, unsigned int elementid, double val)
164 {
165     put_ebml_id(pb, elementid);
166     put_ebml_size(pb, 8, 0);
167     put_be64(pb, av_dbl2int(val));
168 }
169
170 static void put_ebml_binary(ByteIOContext *pb, unsigned int elementid,
171                             const uint8_t *buf, int size)
172 {
173     put_ebml_id(pb, elementid);
174     put_ebml_size(pb, size, 0);
175     put_buffer(pb, buf, size);
176 }
177
178 static void put_ebml_string(ByteIOContext *pb, unsigned int elementid, const char *str)
179 {
180     put_ebml_binary(pb, elementid, str, strlen(str));
181 }
182
183 /**
184  * Writes a void element of a given size. Useful for reserving space in
185  * the file to be written to later.
186  *
187  * @param size The number of bytes to reserve, which must be at least 2.
188  */
189 static void put_ebml_void(ByteIOContext *pb, uint64_t size)
190 {
191     offset_t currentpos = url_ftell(pb);
192
193     assert(size >= 2);
194
195     put_ebml_id(pb, EBML_ID_VOID);
196     // we need to subtract the length needed to store the size from the
197     // size we need to reserve so 2 cases, we use 8 bytes to store the
198     // size if possible, 1 byte otherwise
199     if (size < 10)
200         put_ebml_size(pb, size-1, 0);
201     else
202         put_ebml_size(pb, size-9, 8);
203     url_fseek(pb, currentpos + size, SEEK_SET);
204 }
205
206 static ebml_master start_ebml_master(ByteIOContext *pb, unsigned int elementid, uint64_t expectedsize)
207 {
208     int bytes = expectedsize ? ebml_size_bytes(expectedsize) : 8;
209     put_ebml_id(pb, elementid);
210     put_ebml_size_unknown(pb, bytes);
211     return (ebml_master){ url_ftell(pb), bytes };
212 }
213
214 static void end_ebml_master(ByteIOContext *pb, ebml_master master)
215 {
216     offset_t pos = url_ftell(pb);
217
218     url_fseek(pb, master.pos - master.sizebytes, SEEK_SET);
219     put_ebml_size(pb, pos - master.pos, master.sizebytes);
220     url_fseek(pb, pos, SEEK_SET);
221 }
222
223 static void put_xiph_size(ByteIOContext *pb, int size)
224 {
225     int i;
226     for (i = 0; i < size / 255; i++)
227         put_byte(pb, 255);
228     put_byte(pb, size % 255);
229 }
230
231 /**
232  * Initialize a mkv_seekhead element to be ready to index level 1 Matroska
233  * elements. If a maximum number of elements is specified, enough space
234  * will be reserved at the current file location to write a seek head of
235  * that size.
236  *
237  * @param segment_offset The absolute offset to the position in the file
238  *                       where the segment begins
239  * @param numelements the maximum number of elements that will be indexed
240  *                    by this seek head, 0 if unlimited.
241  */
242 static mkv_seekhead * mkv_start_seekhead(ByteIOContext *pb, offset_t segment_offset, int numelements)
243 {
244     mkv_seekhead *new_seekhead = av_mallocz(sizeof(mkv_seekhead));
245     if (new_seekhead == NULL)
246         return NULL;
247
248     new_seekhead->segment_offset = segment_offset;
249
250     if (numelements > 0) {
251         new_seekhead->filepos = url_ftell(pb);
252         // 21 bytes max for a seek entry, 10 bytes max for the SeekHead ID
253         // and size, and 3 bytes to guarantee that an EBML void element
254         // will fit afterwards
255         new_seekhead->reserved_size = numelements * MAX_SEEKENTRY_SIZE + 13;
256         new_seekhead->max_entries = numelements;
257         put_ebml_void(pb, new_seekhead->reserved_size);
258     }
259     return new_seekhead;
260 }
261
262 static int mkv_add_seekhead_entry(mkv_seekhead *seekhead, unsigned int elementid, uint64_t filepos)
263 {
264     mkv_seekhead_entry *entries = seekhead->entries;
265
266     // don't store more elements than we reserved space for
267     if (seekhead->max_entries > 0 && seekhead->max_entries <= seekhead->num_entries)
268         return -1;
269
270     entries = av_realloc(entries, (seekhead->num_entries + 1) * sizeof(mkv_seekhead_entry));
271     if (entries == NULL)
272         return AVERROR(ENOMEM);
273
274     entries[seekhead->num_entries  ].elementid = elementid;
275     entries[seekhead->num_entries++].segmentpos = filepos - seekhead->segment_offset;
276
277     seekhead->entries = entries;
278     return 0;
279 }
280
281 /**
282  * Write the seek head to the file and free it. If a maximum number of
283  * elements was specified to mkv_start_seekhead(), the seek head will
284  * be written at the location reserved for it. Otherwise, it is written
285  * at the current location in the file.
286  *
287  * @return the file offset where the seekhead was written
288  */
289 static offset_t mkv_write_seekhead(ByteIOContext *pb, mkv_seekhead *seekhead)
290 {
291     ebml_master metaseek, seekentry;
292     offset_t currentpos;
293     int i;
294
295     currentpos = url_ftell(pb);
296
297     if (seekhead->reserved_size > 0)
298         url_fseek(pb, seekhead->filepos, SEEK_SET);
299
300     metaseek = start_ebml_master(pb, MATROSKA_ID_SEEKHEAD, seekhead->reserved_size);
301     for (i = 0; i < seekhead->num_entries; i++) {
302         mkv_seekhead_entry *entry = &seekhead->entries[i];
303
304         seekentry = start_ebml_master(pb, MATROSKA_ID_SEEKENTRY, MAX_SEEKENTRY_SIZE);
305
306         put_ebml_id(pb, MATROSKA_ID_SEEKID);
307         put_ebml_size(pb, ebml_id_size(entry->elementid), 0);
308         put_ebml_id(pb, entry->elementid);
309
310         put_ebml_uint(pb, MATROSKA_ID_SEEKPOSITION, entry->segmentpos);
311         end_ebml_master(pb, seekentry);
312     }
313     end_ebml_master(pb, metaseek);
314
315     if (seekhead->reserved_size > 0) {
316         uint64_t remaining = seekhead->filepos + seekhead->reserved_size - url_ftell(pb);
317         put_ebml_void(pb, remaining);
318         url_fseek(pb, currentpos, SEEK_SET);
319
320         currentpos = seekhead->filepos;
321     }
322     av_free(seekhead->entries);
323     av_free(seekhead);
324
325     return currentpos;
326 }
327
328 static mkv_cues * mkv_start_cues(offset_t segment_offset)
329 {
330     mkv_cues *cues = av_mallocz(sizeof(mkv_cues));
331     if (cues == NULL)
332         return NULL;
333
334     cues->segment_offset = segment_offset;
335     return cues;
336 }
337
338 static int mkv_add_cuepoint(mkv_cues *cues, AVPacket *pkt, offset_t cluster_pos)
339 {
340     mkv_cuepoint *entries = cues->entries;
341
342     entries = av_realloc(entries, (cues->num_entries + 1) * sizeof(mkv_cuepoint));
343     if (entries == NULL)
344         return AVERROR(ENOMEM);
345
346     entries[cues->num_entries  ].pts = pkt->pts;
347     entries[cues->num_entries  ].tracknum = pkt->stream_index + 1;
348     entries[cues->num_entries++].cluster_pos = cluster_pos - cues->segment_offset;
349
350     cues->entries = entries;
351     return 0;
352 }
353
354 static offset_t mkv_write_cues(ByteIOContext *pb, mkv_cues *cues, int num_tracks)
355 {
356     ebml_master cues_element;
357     offset_t currentpos;
358     int i, j;
359
360     currentpos = url_ftell(pb);
361     cues_element = start_ebml_master(pb, MATROSKA_ID_CUES, 0);
362
363     for (i = 0; i < cues->num_entries; i++) {
364         ebml_master cuepoint, track_positions;
365         mkv_cuepoint *entry = &cues->entries[i];
366         uint64_t pts = entry->pts;
367
368         cuepoint = start_ebml_master(pb, MATROSKA_ID_POINTENTRY, MAX_CUEPOINT_SIZE(num_tracks));
369         put_ebml_uint(pb, MATROSKA_ID_CUETIME, pts);
370
371         // put all the entries from different tracks that have the exact same
372         // timestamp into the same CuePoint
373         for (j = 0; j < cues->num_entries - i && entry[j].pts == pts; j++) {
374             track_positions = start_ebml_master(pb, MATROSKA_ID_CUETRACKPOSITION, MAX_CUETRACKPOS_SIZE);
375             put_ebml_uint(pb, MATROSKA_ID_CUETRACK          , entry[j].tracknum   );
376             put_ebml_uint(pb, MATROSKA_ID_CUECLUSTERPOSITION, entry[j].cluster_pos);
377             end_ebml_master(pb, track_positions);
378         }
379         i += j - 1;
380         end_ebml_master(pb, cuepoint);
381     }
382     end_ebml_master(pb, cues_element);
383
384     av_free(cues->entries);
385     av_free(cues);
386     return currentpos;
387 }
388
389 static int put_xiph_codecpriv(ByteIOContext *pb, AVCodecContext *codec)
390 {
391     ebml_master codecprivate;
392     uint8_t *header_start[3];
393     int header_len[3];
394     int first_header_size;
395     int j;
396
397     if (codec->codec_id == CODEC_ID_VORBIS)
398         first_header_size = 30;
399     else
400         first_header_size = 42;
401
402     if (ff_split_xiph_headers(codec->extradata, codec->extradata_size,
403                               first_header_size, header_start, header_len) < 0) {
404         av_log(codec, AV_LOG_ERROR, "Extradata corrupt.\n");
405         return -1;
406     }
407
408     codecprivate = start_ebml_master(pb, MATROSKA_ID_CODECPRIVATE, 0);
409     put_byte(pb, 2);                    // number packets - 1
410     for (j = 0; j < 2; j++) {
411         put_xiph_size(pb, header_len[j]);
412     }
413     for (j = 0; j < 3; j++)
414         put_buffer(pb, header_start[j], header_len[j]);
415     end_ebml_master(pb, codecprivate);
416
417     return 0;
418 }
419
420 #define FLAC_STREAMINFO_SIZE 34
421
422 static int put_flac_codecpriv(ByteIOContext *pb, AVCodecContext *codec)
423 {
424     ebml_master codecpriv = start_ebml_master(pb, MATROSKA_ID_CODECPRIVATE, 0);
425
426     // if the extradata_size is greater than FLAC_STREAMINFO_SIZE,
427     // assume that it's in Matroska's format already
428     if (codec->extradata_size < FLAC_STREAMINFO_SIZE) {
429         av_log(codec, AV_LOG_ERROR, "Invalid FLAC extradata\n");
430         return -1;
431     } else if (codec->extradata_size == FLAC_STREAMINFO_SIZE) {
432         // only the streaminfo packet
433         put_byte(pb, 0);
434         put_xiph_size(pb, codec->extradata_size);
435         av_log(codec, AV_LOG_ERROR, "Only one packet\n");
436     }
437     put_buffer(pb, codec->extradata, codec->extradata_size);
438     end_ebml_master(pb, codecpriv);
439     return 0;
440 }
441
442 static void get_aac_sample_rates(AVCodecContext *codec, int *sample_rate, int *output_sample_rate)
443 {
444     static const int aac_sample_rates[] = {
445         96000, 88200, 64000, 48000, 44100, 32000,
446         24000, 22050, 16000, 12000, 11025,  8000,
447     };
448     int sri;
449
450     if (codec->extradata_size < 2) {
451         av_log(codec, AV_LOG_WARNING, "no AAC extradata, unable to determine samplerate\n");
452         return;
453     }
454
455     sri = ((codec->extradata[0] << 1) & 0xE) | (codec->extradata[1] >> 7);
456     if (sri > 12) {
457         av_log(codec, AV_LOG_WARNING, "AAC samplerate index out of bounds\n");
458         return;
459     }
460     *sample_rate = aac_sample_rates[sri];
461
462     // if sbr, get output sample rate as well
463     if (codec->extradata_size == 5) {
464         sri = (codec->extradata[4] >> 3) & 0xF;
465         if (sri > 12) {
466             av_log(codec, AV_LOG_WARNING, "AAC output samplerate index out of bounds\n");
467             return;
468         }
469         *output_sample_rate = aac_sample_rates[sri];
470     }
471 }
472
473 static int mkv_write_codecprivate(ByteIOContext *pb, AVCodecContext *codec, int native_id)
474 {
475     int ret;
476
477     if (native_id) {
478         if (codec->codec_id == CODEC_ID_VORBIS || codec->codec_id == CODEC_ID_THEORA) {
479             ret = put_xiph_codecpriv(pb, codec);
480             if (ret < 0) return ret;
481         } else if (codec->codec_id == CODEC_ID_FLAC) {
482             ret = put_flac_codecpriv(pb, codec);
483             if (ret < 0) return ret;
484         } else if (codec->extradata_size) {
485             put_ebml_binary(pb, MATROSKA_ID_CODECPRIVATE, codec->extradata, codec->extradata_size);
486         }
487     } else if (codec->codec_type == CODEC_TYPE_VIDEO) {
488         ebml_master bmp_header;
489
490         if (!codec->codec_tag)
491             codec->codec_tag = codec_get_tag(codec_bmp_tags, codec->codec_id);
492
493         bmp_header = start_ebml_master(pb, MATROSKA_ID_CODECPRIVATE, 0);
494         put_bmp_header(pb, codec, codec_bmp_tags, 0);
495         end_ebml_master(pb, bmp_header);
496
497     } else if (codec->codec_type == CODEC_TYPE_AUDIO) {
498         ebml_master wav_header;
499
500         codec->codec_tag = codec_get_tag(codec_wav_tags, codec->codec_id);
501         if (!codec->codec_tag) {
502             av_log(codec, AV_LOG_ERROR, "no wav codec id found");
503             return -1;
504         }
505
506         wav_header = start_ebml_master(pb, MATROSKA_ID_CODECPRIVATE, 0);
507         put_wav_header(pb, codec);
508         end_ebml_master(pb, wav_header);
509     }
510     return 0;
511 }
512
513 static int mkv_write_tracks(AVFormatContext *s)
514 {
515     MatroskaMuxContext *mkv = s->priv_data;
516     ByteIOContext *pb = &s->pb;
517     ebml_master tracks;
518     int i, j, ret;
519
520     ret = mkv_add_seekhead_entry(mkv->main_seekhead, MATROSKA_ID_TRACKS, url_ftell(pb));
521     if (ret < 0) return ret;
522
523     tracks = start_ebml_master(pb, MATROSKA_ID_TRACKS, 0);
524     for (i = 0; i < s->nb_streams; i++) {
525         AVStream *st = s->streams[i];
526         AVCodecContext *codec = st->codec;
527         ebml_master subinfo, track;
528         int native_id = 0;
529         int bit_depth = av_get_bits_per_sample(codec->codec_id);
530         int sample_rate = codec->sample_rate;
531         int output_sample_rate = 0;
532
533         if (!bit_depth)
534             bit_depth = av_get_bits_per_sample_format(codec->sample_fmt);
535
536         if (codec->codec_id == CODEC_ID_AAC)
537             get_aac_sample_rates(codec, &sample_rate, &output_sample_rate);
538
539         track = start_ebml_master(pb, MATROSKA_ID_TRACKENTRY, 0);
540         put_ebml_uint (pb, MATROSKA_ID_TRACKNUMBER     , i + 1);
541         put_ebml_uint (pb, MATROSKA_ID_TRACKUID        , i + 1);
542         put_ebml_uint (pb, MATROSKA_ID_TRACKFLAGLACING , 0);    // no lacing (yet)
543
544         if (st->language[0])
545             put_ebml_string(pb, MATROSKA_ID_TRACKLANGUAGE, st->language);
546         else
547             put_ebml_string(pb, MATROSKA_ID_TRACKLANGUAGE, "und");
548
549         // look for a codec id string specific to mkv to use,
550         // if none are found, use AVI codes
551         for (j = 0; ff_mkv_codec_tags[j].id != CODEC_ID_NONE; j++) {
552             if (ff_mkv_codec_tags[j].id == codec->codec_id) {
553                 put_ebml_string(pb, MATROSKA_ID_CODECID, ff_mkv_codec_tags[j].str);
554                 native_id = 1;
555                 break;
556             }
557         }
558
559         switch (codec->codec_type) {
560             case CODEC_TYPE_VIDEO:
561                 put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_VIDEO);
562
563                 if (!native_id) {
564                     // if there is no mkv-specific codec id, use VFW mode
565                     put_ebml_string(pb, MATROSKA_ID_CODECID, MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC);
566                 }
567                 subinfo = start_ebml_master(pb, MATROSKA_ID_TRACKVIDEO, 0);
568                 // XXX: interlace flag?
569                 put_ebml_uint (pb, MATROSKA_ID_VIDEOPIXELWIDTH , codec->width);
570                 put_ebml_uint (pb, MATROSKA_ID_VIDEOPIXELHEIGHT, codec->height);
571                 if (codec->sample_aspect_ratio.num) {
572                     AVRational dar = av_mul_q(codec->sample_aspect_ratio,
573                                     (AVRational){codec->width, codec->height});
574                     put_ebml_uint(pb, MATROSKA_ID_VIDEODISPLAYWIDTH , dar.num);
575                     put_ebml_uint(pb, MATROSKA_ID_VIDEODISPLAYHEIGHT, dar.den);
576                 }
577                 end_ebml_master(pb, subinfo);
578                 break;
579
580             case CODEC_TYPE_AUDIO:
581                 put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_AUDIO);
582
583                 if (!native_id) {
584                     // no mkv-specific ID, use ACM mode
585                     put_ebml_string(pb, MATROSKA_ID_CODECID, MATROSKA_CODEC_ID_AUDIO_ACM);
586                 }
587                 subinfo = start_ebml_master(pb, MATROSKA_ID_TRACKAUDIO, 0);
588                 put_ebml_uint  (pb, MATROSKA_ID_AUDIOCHANNELS    , codec->channels);
589                 put_ebml_float (pb, MATROSKA_ID_AUDIOSAMPLINGFREQ, sample_rate);
590                 if (output_sample_rate)
591                     put_ebml_float(pb, MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, output_sample_rate);
592                 if (bit_depth)
593                     put_ebml_uint(pb, MATROSKA_ID_AUDIOBITDEPTH, bit_depth);
594                 end_ebml_master(pb, subinfo);
595                 break;
596
597             case CODEC_TYPE_SUBTITLE:
598                 put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_SUBTITLE);
599                 break;
600             default:
601                 av_log(s, AV_LOG_ERROR, "Only audio, video, and subtitles are supported for Matroska.");
602                 break;
603         }
604         ret = mkv_write_codecprivate(pb, codec, native_id);
605         if (ret < 0) return ret;
606
607         end_ebml_master(pb, track);
608
609         // ms precision is the de-facto standard timescale for mkv files
610         av_set_pts_info(st, 64, 1, 1000);
611     }
612     end_ebml_master(pb, tracks);
613     return 0;
614 }
615
616 static int mkv_write_header(AVFormatContext *s)
617 {
618     MatroskaMuxContext *mkv = s->priv_data;
619     ByteIOContext *pb = &s->pb;
620     ebml_master ebml_header, segment_info;
621     int ret;
622
623     mkv->md5_ctx = av_mallocz(av_md5_size);
624     av_md5_init(mkv->md5_ctx);
625
626     ebml_header = start_ebml_master(pb, EBML_ID_HEADER, 0);
627     put_ebml_uint   (pb, EBML_ID_EBMLVERSION        ,           1);
628     put_ebml_uint   (pb, EBML_ID_EBMLREADVERSION    ,           1);
629     put_ebml_uint   (pb, EBML_ID_EBMLMAXIDLENGTH    ,           4);
630     put_ebml_uint   (pb, EBML_ID_EBMLMAXSIZELENGTH  ,           8);
631     put_ebml_string (pb, EBML_ID_DOCTYPE            ,  "matroska");
632     put_ebml_uint   (pb, EBML_ID_DOCTYPEVERSION     ,           2);
633     put_ebml_uint   (pb, EBML_ID_DOCTYPEREADVERSION ,           2);
634     end_ebml_master(pb, ebml_header);
635
636     mkv->segment = start_ebml_master(pb, MATROSKA_ID_SEGMENT, 0);
637     mkv->segment_offset = url_ftell(pb);
638
639     // we write 2 seek heads - one at the end of the file to point to each
640     // cluster, and one at the beginning to point to all other level one
641     // elements (including the seek head at the end of the file), which
642     // isn't more than 10 elements if we only write one of each other
643     // currently defined level 1 element
644     mkv->main_seekhead    = mkv_start_seekhead(pb, mkv->segment_offset, 10);
645     mkv->cluster_seekhead = mkv_start_seekhead(pb, mkv->segment_offset, 0);
646     if (mkv->main_seekhead == NULL || mkv->cluster_seekhead == NULL)
647         return AVERROR(ENOMEM);
648
649     ret = mkv_add_seekhead_entry(mkv->main_seekhead, MATROSKA_ID_INFO, url_ftell(pb));
650     if (ret < 0) return ret;
651
652     segment_info = start_ebml_master(pb, MATROSKA_ID_INFO, 0);
653     put_ebml_uint(pb, MATROSKA_ID_TIMECODESCALE, 1000000);
654     if (strlen(s->title))
655         put_ebml_string(pb, MATROSKA_ID_TITLE, s->title);
656     if (!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) {
657         put_ebml_string(pb, MATROSKA_ID_MUXINGAPP , LIBAVFORMAT_IDENT);
658         put_ebml_string(pb, MATROSKA_ID_WRITINGAPP, LIBAVFORMAT_IDENT);
659
660         // reserve space to write the segment UID later
661         mkv->segment_uid = url_ftell(pb);
662         put_ebml_void(pb, 19);
663     }
664
665     // reserve space for the duration
666     mkv->duration = 0;
667     mkv->duration_offset = url_ftell(pb);
668     put_ebml_void(pb, 11);                  // assumes double-precision float to be written
669     end_ebml_master(pb, segment_info);
670
671     ret = mkv_write_tracks(s);
672     if (ret < 0) return ret;
673
674     ret = mkv_add_seekhead_entry(mkv->cluster_seekhead, MATROSKA_ID_CLUSTER, url_ftell(pb));
675     if (ret < 0) return ret;
676
677     mkv->cluster_pos = url_ftell(pb);
678     mkv->cluster = start_ebml_master(pb, MATROSKA_ID_CLUSTER, 0);
679     put_ebml_uint(pb, MATROSKA_ID_CLUSTERTIMECODE, 0);
680     mkv->cluster_pts = 0;
681
682     mkv->cues = mkv_start_cues(mkv->segment_offset);
683     if (mkv->cues == NULL)
684         return AVERROR(ENOMEM);
685
686     return 0;
687 }
688
689 static int mkv_block_size(AVPacket *pkt)
690 {
691     int size = 4;           // track num + timecode + flags
692     return size + pkt->size;
693 }
694
695 static int mkv_blockgroup_size(AVPacket *pkt)
696 {
697     int size = mkv_block_size(pkt);
698     size += ebml_size_bytes(size);
699     size += 2;              // EBML ID for block and block duration
700     size += 8;              // max size of block duration
701     size += ebml_size_bytes(size);
702     size += 1;              // blockgroup EBML ID
703     return size;
704 }
705
706 static void mkv_write_block(AVFormatContext *s, unsigned int blockid, AVPacket *pkt, int flags)
707 {
708     MatroskaMuxContext *mkv = s->priv_data;
709     ByteIOContext *pb = &s->pb;
710
711     av_log(s, AV_LOG_DEBUG, "Writing block at offset %" PRIu64 ", size %d, "
712            "pts %" PRId64 ", dts %" PRId64 ", duration %d, flags %d\n",
713            url_ftell(pb), pkt->size, pkt->pts, pkt->dts, pkt->duration, flags);
714     put_ebml_id(pb, blockid);
715     put_ebml_size(pb, mkv_block_size(pkt), 0);
716     put_byte(pb, 0x80 | (pkt->stream_index + 1));     // this assumes stream_index is less than 126
717     put_be16(pb, pkt->pts - mkv->cluster_pts);
718     put_byte(pb, flags);
719     put_buffer(pb, pkt->data, pkt->size);
720 }
721
722 static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
723 {
724     MatroskaMuxContext *mkv = s->priv_data;
725     ByteIOContext *pb = &s->pb;
726     AVCodecContext *codec = s->streams[pkt->stream_index]->codec;
727     int keyframe = !!(pkt->flags & PKT_FLAG_KEY);
728     int ret;
729
730     // start a new cluster every 5 MB or 5 sec
731     if (url_ftell(pb) > mkv->cluster_pos + 5*1024*1024 || pkt->pts > mkv->cluster_pts + 5000) {
732         av_log(s, AV_LOG_DEBUG, "Starting new cluster at offset %" PRIu64
733                " bytes, pts %" PRIu64 "\n", url_ftell(pb), pkt->pts);
734         end_ebml_master(pb, mkv->cluster);
735
736         ret = mkv_add_seekhead_entry(mkv->cluster_seekhead, MATROSKA_ID_CLUSTER, url_ftell(pb));
737         if (ret < 0) return ret;
738
739         mkv->cluster_pos = url_ftell(pb);
740         mkv->cluster = start_ebml_master(pb, MATROSKA_ID_CLUSTER, 0);
741         put_ebml_uint(pb, MATROSKA_ID_CLUSTERTIMECODE, pkt->pts);
742         mkv->cluster_pts = pkt->pts;
743         av_md5_update(mkv->md5_ctx, pkt->data, FFMIN(200, pkt->size));
744     }
745
746     if (codec->codec_type != CODEC_TYPE_SUBTITLE) {
747         mkv_write_block(s, MATROSKA_ID_SIMPLEBLOCK, pkt, keyframe << 7);
748     } else {
749         ebml_master blockgroup = start_ebml_master(pb, MATROSKA_ID_BLOCKGROUP, mkv_blockgroup_size(pkt));
750         mkv_write_block(s, MATROSKA_ID_BLOCK, pkt, 0);
751         put_ebml_uint(pb, MATROSKA_ID_DURATION, pkt->duration);
752         end_ebml_master(pb, blockgroup);
753     }
754
755     if (codec->codec_type == CODEC_TYPE_VIDEO && keyframe) {
756         ret = mkv_add_cuepoint(mkv->cues, pkt, mkv->cluster_pos);
757         if (ret < 0) return ret;
758     }
759
760     mkv->duration = FFMAX(mkv->duration, pkt->pts + pkt->duration);
761     return 0;
762 }
763
764 static int mkv_write_trailer(AVFormatContext *s)
765 {
766     MatroskaMuxContext *mkv = s->priv_data;
767     ByteIOContext *pb = &s->pb;
768     offset_t currentpos, second_seekhead, cuespos;
769     int ret;
770
771     end_ebml_master(pb, mkv->cluster);
772
773     cuespos = mkv_write_cues(pb, mkv->cues, s->nb_streams);
774     second_seekhead = mkv_write_seekhead(pb, mkv->cluster_seekhead);
775
776     ret = mkv_add_seekhead_entry(mkv->main_seekhead, MATROSKA_ID_CUES    , cuespos);
777     if (ret < 0) return ret;
778     ret = mkv_add_seekhead_entry(mkv->main_seekhead, MATROSKA_ID_SEEKHEAD, second_seekhead);
779     if (ret < 0) return ret;
780     mkv_write_seekhead(pb, mkv->main_seekhead);
781
782     // update the duration
783     av_log(s, AV_LOG_DEBUG, "end duration = %" PRIu64 "\n", mkv->duration);
784     currentpos = url_ftell(pb);
785     url_fseek(pb, mkv->duration_offset, SEEK_SET);
786     put_ebml_float(pb, MATROSKA_ID_DURATION, mkv->duration);
787
788     // write the md5sum of some frames as the segment UID
789     if (!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) {
790         uint8_t segment_uid[16];
791         av_md5_final(mkv->md5_ctx, segment_uid);
792         url_fseek(pb, mkv->segment_uid, SEEK_SET);
793         put_ebml_binary(pb, MATROSKA_ID_SEGMENTUID, segment_uid, 16);
794     }
795     url_fseek(pb, currentpos, SEEK_SET);
796
797     end_ebml_master(pb, mkv->segment);
798     av_free(mkv->md5_ctx);
799     return 0;
800 }
801
802 AVOutputFormat matroska_muxer = {
803     "matroska",
804     "Matroska File Format",
805     "video/x-matroska",
806     "mkv",
807     sizeof(MatroskaMuxContext),
808     CODEC_ID_MP2,
809     CODEC_ID_MPEG4,
810     mkv_write_header,
811     mkv_write_packet,
812     mkv_write_trailer,
813     .codec_tag = (const AVCodecTag*[]){codec_bmp_tags, codec_wav_tags, 0},
814     .subtitle_codec = CODEC_ID_TEXT,
815 };
816
817 AVOutputFormat matroska_audio_muxer = {
818     "matroska",
819     "Matroska File Format",
820     "audio/x-matroska",
821     "mka",
822     sizeof(MatroskaMuxContext),
823     CODEC_ID_MP2,
824     CODEC_ID_NONE,
825     mkv_write_header,
826     mkv_write_packet,
827     mkv_write_trailer,
828     .codec_tag = (const AVCodecTag*[]){codec_wav_tags, 0},
829 };