]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/matroskaenc.c
Simplify
[frescor/ffmpeg.git] / libavformat / matroskaenc.c
1 /*
2  * Matroska file 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 "riff.h"
24 #include "xiph.h"
25 #include "matroska.h"
26
27 typedef struct mkv_seekhead_entry {
28     unsigned int    elementid;
29     uint64_t        segmentpos;
30 } mkv_seekhead_entry;
31
32 typedef struct mkv_seekhead {
33     offset_t                filepos;
34     offset_t                segment_offset;     ///< the file offset to the beginning of the segment
35     int                     reserved_size;      ///< -1 if appending to file
36     int                     max_entries;
37     mkv_seekhead_entry      *entries;
38     int                     num_entries;
39 } mkv_seekhead;
40
41 typedef struct {
42     uint64_t        pts;
43     int             tracknum;
44     offset_t        cluster_pos;        ///< file offset of the cluster containing the block
45 } mkv_cuepoint;
46
47 typedef struct {
48     offset_t        segment_offset;
49     mkv_cuepoint    *entries;
50     int             num_entries;
51 } mkv_cues;
52
53 typedef struct MatroskaMuxContext {
54     offset_t        segment;
55     offset_t        segment_offset;
56     offset_t        cluster;
57     offset_t        cluster_pos;        ///< file offset of the current cluster
58     uint64_t        cluster_pts;
59     offset_t        duration_offset;
60     uint64_t        duration;
61     mkv_seekhead    *main_seekhead;
62     mkv_seekhead    *cluster_seekhead;
63     mkv_cues        *cues;
64 } MatroskaMuxContext;
65
66 static void put_ebml_id(ByteIOContext *pb, unsigned int id)
67 {
68     if (id >= 0x3fffff)
69         put_byte(pb, id >> 24);
70     if (id >= 0x7fff)
71         put_byte(pb, id >> 16);
72     if (id >= 0xff)
73         put_byte(pb, id >> 8);
74     put_byte(pb, id);
75 }
76
77 static int ebml_id_size(unsigned int id)
78 {
79     return (av_log2(id+1)-1)/7+1;
80 }
81
82 // XXX: test this thoroughly and get rid of minbytes hack (currently needed to
83 // use up all of the space reserved in start_ebml_master)
84 static void put_ebml_size(ByteIOContext *pb, uint64_t size, int minbytes)
85 {
86     int bytes = minbytes;
87
88     // sizes larger than this are currently undefined in EBML
89     // so write "unknown" size
90     size = FFMIN(size, (1ULL<<56)-1);
91
92     while (size >> (bytes*7 + 7)) bytes++;
93
94     put_byte(pb, (0x80 >> bytes) | (size >> bytes*8));
95     for (bytes -= 1; bytes >= 0; bytes--)
96         put_byte(pb, size >> bytes*8);
97 }
98
99 static void put_ebml_uint(ByteIOContext *pb, unsigned int elementid, uint64_t val)
100 {
101     int bytes = 1;
102     while (val >> bytes*8) bytes++;
103
104     put_ebml_id(pb, elementid);
105     put_ebml_size(pb, bytes, 0);
106     for (bytes -= 1; bytes >= 0; bytes--)
107         put_byte(pb, val >> bytes*8);
108 }
109
110 static void put_ebml_float(ByteIOContext *pb, unsigned int elementid, double val)
111 {
112     // XXX: single-precision floats?
113     put_ebml_id(pb, elementid);
114     put_ebml_size(pb, 8, 0);
115     put_be64(pb, av_dbl2int(val));
116 }
117
118 static void put_ebml_binary(ByteIOContext *pb, unsigned int elementid,
119                             const uint8_t *buf, int size)
120 {
121     put_ebml_id(pb, elementid);
122     put_ebml_size(pb, size, 0);
123     put_buffer(pb, buf, size);
124 }
125
126 static void put_ebml_string(ByteIOContext *pb, unsigned int elementid, const char *str)
127 {
128     put_ebml_binary(pb, elementid, str, strlen(str));
129 }
130
131 // this reserves exactly the amount of space specified by size, which must be at least 2
132 static void put_ebml_void(ByteIOContext *pb, uint64_t size)
133 {
134     offset_t currentpos = url_ftell(pb);
135
136     if (size < 2)
137         return;
138
139     put_ebml_id(pb, EBML_ID_VOID);
140     // we need to subtract the length needed to store the size from the size we need to reserve
141     // so 2 cases, we use 8 bytes to store the size if possible, 1 byte otherwise
142     if (size < 10)
143         put_ebml_size(pb, size-1, 0);
144     else
145         put_ebml_size(pb, size-9, 7);
146     url_fseek(pb, currentpos + size, SEEK_SET);
147 }
148
149 static offset_t start_ebml_master(ByteIOContext *pb, unsigned int elementid)
150 {
151     put_ebml_id(pb, elementid);
152     // XXX: this always reserves the maximum needed space to store any size value
153     // we should be smarter (additional parameter for expected size?)
154     put_ebml_size(pb, (1ULL<<56)-1, 0);     // largest unknown size
155     return url_ftell(pb);
156 }
157
158 static void end_ebml_master(ByteIOContext *pb, offset_t start)
159 {
160     offset_t pos = url_ftell(pb);
161
162     url_fseek(pb, start - 8, SEEK_SET);
163     put_ebml_size(pb, pos - start, 7);
164     url_fseek(pb, pos, SEEK_SET);
165 }
166
167 // initializes a mkv_seekhead element to be ready to index level 1 matroska elements
168 // if numelements is greater than 0, it reserves enough space for that many elements
169 // at the current file position and writes the seekhead there, otherwise the seekhead
170 // will be appended to the file when end_mkv_seekhead() is called
171 static mkv_seekhead * mkv_start_seekhead(ByteIOContext *pb, offset_t segment_offset, int numelements)
172 {
173     mkv_seekhead *new_seekhead = av_mallocz(sizeof(mkv_seekhead));
174     if (new_seekhead == NULL)
175         return NULL;
176
177     new_seekhead->segment_offset = segment_offset;
178
179     if (numelements > 0) {
180         new_seekhead->filepos = url_ftell(pb);
181         // 21 bytes max for a seek entry, 10 bytes max for the SeekHead ID and size,
182         // and 3 bytes to guarantee that an EBML void element will fit afterwards
183         // XXX: 28 bytes right now because begin_ebml_master() reserves more than necessary
184         new_seekhead->reserved_size = numelements * 28 + 13;
185         new_seekhead->max_entries = numelements;
186         put_ebml_void(pb, new_seekhead->reserved_size);
187     }
188     return new_seekhead;
189 }
190
191 static int mkv_add_seekhead_entry(mkv_seekhead *seekhead, unsigned int elementid, uint64_t filepos)
192 {
193     mkv_seekhead_entry *entries = seekhead->entries;
194     int new_entry = seekhead->num_entries;
195
196     // don't store more elements than we reserved space for
197     if (seekhead->max_entries > 0 && seekhead->max_entries <= seekhead->num_entries)
198         return -1;
199
200     entries = av_realloc(entries, (seekhead->num_entries + 1) * sizeof(mkv_seekhead_entry));
201     if (entries == NULL)
202         return -1;
203
204     entries[new_entry].elementid = elementid;
205     entries[new_entry].segmentpos = filepos - seekhead->segment_offset;
206
207     seekhead->entries = entries;
208     seekhead->num_entries++;
209
210     return 0;
211 }
212
213 // returns the file offset where the seekhead was written and frees the seekhead
214 static offset_t mkv_write_seekhead(ByteIOContext *pb, mkv_seekhead *seekhead)
215 {
216     offset_t metaseek, seekentry, currentpos;
217     int i;
218
219     currentpos = url_ftell(pb);
220
221     if (seekhead->reserved_size > 0)
222         url_fseek(pb, seekhead->filepos, SEEK_SET);
223
224     metaseek = start_ebml_master(pb, MATROSKA_ID_SEEKHEAD);
225     for (i = 0; i < seekhead->num_entries; i++) {
226         mkv_seekhead_entry *entry = &seekhead->entries[i];
227
228         seekentry = start_ebml_master(pb, MATROSKA_ID_SEEKENTRY);
229
230         put_ebml_id(pb, MATROSKA_ID_SEEKID);
231         put_ebml_size(pb, ebml_id_size(entry->elementid), 0);
232         put_ebml_id(pb, entry->elementid);
233
234         put_ebml_uint(pb, MATROSKA_ID_SEEKPOSITION, entry->segmentpos);
235         end_ebml_master(pb, seekentry);
236     }
237     end_ebml_master(pb, metaseek);
238
239     if (seekhead->reserved_size > 0) {
240         uint64_t remaining = seekhead->filepos + seekhead->reserved_size - url_ftell(pb);
241         put_ebml_void(pb, remaining);
242         url_fseek(pb, currentpos, SEEK_SET);
243
244         currentpos = seekhead->filepos;
245     }
246     av_free(seekhead->entries);
247     av_free(seekhead);
248
249     return currentpos;
250 }
251
252 static mkv_cues * mkv_start_cues(offset_t segment_offset)
253 {
254     mkv_cues *cues = av_mallocz(sizeof(mkv_cues));
255     if (cues == NULL)
256         return NULL;
257
258     cues->segment_offset = segment_offset;
259     return cues;
260 }
261
262 static int mkv_add_cuepoint(mkv_cues *cues, AVPacket *pkt, offset_t cluster_pos)
263 {
264     mkv_cuepoint *entries = cues->entries;
265     int new_entry = cues->num_entries;
266
267     entries = av_realloc(entries, (cues->num_entries + 1) * sizeof(mkv_cuepoint));
268     if (entries == NULL)
269         return -1;
270
271     entries[new_entry].pts = pkt->pts;
272     entries[new_entry].tracknum = pkt->stream_index + 1;
273     entries[new_entry].cluster_pos = cluster_pos - cues->segment_offset;
274
275     cues->entries = entries;
276     cues->num_entries++;
277     return 0;
278 }
279
280 static offset_t mkv_write_cues(ByteIOContext *pb, mkv_cues *cues)
281 {
282     offset_t currentpos, cues_element;
283     int i, j;
284
285     currentpos = url_ftell(pb);
286     cues_element = start_ebml_master(pb, MATROSKA_ID_CUES);
287
288     for (i = 0; i < cues->num_entries; i++) {
289         offset_t cuepoint, track_positions;
290         mkv_cuepoint *entry = &cues->entries[i];
291         uint64_t pts = entry->pts;
292
293         cuepoint = start_ebml_master(pb, MATROSKA_ID_POINTENTRY);
294         put_ebml_uint(pb, MATROSKA_ID_CUETIME, pts);
295
296         // put all the entries from different tracks that have the exact same
297         // timestamp into the same CuePoint
298         for (j = 0; j < cues->num_entries - i && entry[j].pts == pts; j++) {
299             track_positions = start_ebml_master(pb, MATROSKA_ID_CUETRACKPOSITION);
300             put_ebml_uint(pb, MATROSKA_ID_CUETRACK          , entry[j].tracknum   );
301             put_ebml_uint(pb, MATROSKA_ID_CUECLUSTERPOSITION, entry[j].cluster_pos);
302             end_ebml_master(pb, track_positions);
303         }
304         i += j - 1;
305         end_ebml_master(pb, cuepoint);
306     }
307     end_ebml_master(pb, cues_element);
308
309     av_free(cues->entries);
310     av_free(cues);
311     return currentpos;
312 }
313
314 static int put_xiph_codecpriv(ByteIOContext *pb, AVCodecContext *codec)
315 {
316     offset_t codecprivate;
317     uint8_t *header_start[3];
318     int header_len[3];
319     int first_header_size;
320     int j, k;
321
322     if (codec->codec_id == CODEC_ID_VORBIS)
323         first_header_size = 30;
324     else
325         first_header_size = 42;
326
327     if (ff_split_xiph_headers(codec->extradata, codec->extradata_size,
328                               first_header_size, header_start, header_len) < 0) {
329         av_log(codec, AV_LOG_ERROR, "Extradata corrupt.\n");
330         return -1;
331     }
332
333     codecprivate = start_ebml_master(pb, MATROSKA_ID_CODECPRIVATE);
334     put_byte(pb, 2);                    // number packets - 1
335     for (j = 0; j < 2; j++) {
336         for (k = 0; k < header_len[j] / 255; k++)
337             put_byte(pb, 255);
338         put_byte(pb, header_len[j] % 255);
339     }
340     for (j = 0; j < 3; j++)
341         put_buffer(pb, header_start[j], header_len[j]);
342     end_ebml_master(pb, codecprivate);
343
344     return 0;
345 }
346
347 static int mkv_write_tracks(AVFormatContext *s)
348 {
349     MatroskaMuxContext *mkv = s->priv_data;
350     ByteIOContext *pb = &s->pb;
351     offset_t tracks;
352     int i, j;
353
354     if (mkv_add_seekhead_entry(mkv->main_seekhead, MATROSKA_ID_TRACKS, url_ftell(pb)) < 0)
355         return -1;
356
357     tracks = start_ebml_master(pb, MATROSKA_ID_TRACKS);
358     for (i = 0; i < s->nb_streams; i++) {
359         AVStream *st = s->streams[i];
360         AVCodecContext *codec = st->codec;
361         offset_t subinfo, track;
362         int native_id = 0;
363         int bit_depth = av_get_bits_per_sample(codec->codec_id);
364
365         track = start_ebml_master(pb, MATROSKA_ID_TRACKENTRY);
366         put_ebml_uint (pb, MATROSKA_ID_TRACKNUMBER     , i + 1);
367         put_ebml_uint (pb, MATROSKA_ID_TRACKUID        , i + 1);
368         put_ebml_uint (pb, MATROSKA_ID_TRACKFLAGLACING , 0);    // no lacing (yet)
369
370         if (st->language[0])
371             put_ebml_string(pb, MATROSKA_ID_TRACKLANGUAGE, st->language);
372
373         // look for a codec id string specific to mkv to use, if none are found, use AVI codes
374         for (j = 0; ff_mkv_codec_tags[j].id != CODEC_ID_NONE; j++) {
375             if (ff_mkv_codec_tags[j].id == codec->codec_id) {
376                 put_ebml_string(pb, MATROSKA_ID_CODECID, ff_mkv_codec_tags[j].str);
377                 native_id = 1;
378                 break;
379             }
380         }
381
382         // XXX: CodecPrivate for vorbis, theora, aac, native mpeg4, ...
383         if (native_id) {
384             if (codec->codec_id == CODEC_ID_VORBIS || codec->codec_id == CODEC_ID_THEORA) {
385                 if (put_xiph_codecpriv(pb, codec) < 0)
386                     return -1;
387             } else {
388                 put_ebml_binary(pb, MATROSKA_ID_CODECPRIVATE, codec->extradata, codec->extradata_size);
389             }
390         }
391
392         switch (codec->codec_type) {
393             case CODEC_TYPE_VIDEO:
394                 put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_VIDEO);
395
396                 if (!native_id) {
397                     offset_t bmp_header;
398                     // if there is no mkv-specific codec id, use VFW mode
399                     if (!codec->codec_tag)
400                         codec->codec_tag = codec_get_tag(codec_bmp_tags, codec->codec_id);
401
402                     put_ebml_string(pb, MATROSKA_ID_CODECID, MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC);
403                     // XXX: codec private isn't a master; is there a better way to re-use put_bmp_header?
404                     bmp_header = start_ebml_master(pb, MATROSKA_ID_CODECPRIVATE);
405                     put_bmp_header(pb, codec, codec_bmp_tags, 0);
406                     end_ebml_master(pb, bmp_header);
407                 }
408                 subinfo = start_ebml_master(pb, MATROSKA_ID_TRACKVIDEO);
409                 // XXX: interlace flag?
410                 put_ebml_uint (pb, MATROSKA_ID_VIDEOPIXELWIDTH , codec->width);
411                 put_ebml_uint (pb, MATROSKA_ID_VIDEOPIXELHEIGHT, codec->height);
412                 // XXX: display width/height
413                 end_ebml_master(pb, subinfo);
414                 break;
415
416             case CODEC_TYPE_AUDIO:
417                 put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_AUDIO);
418
419                 if (!native_id) {
420                     offset_t wav_header;
421                     // no mkv-specific ID, use ACM mode
422                     codec->codec_tag = codec_get_tag(codec_wav_tags, codec->codec_id);
423                     if (!codec->codec_tag) {
424                         av_log(s, AV_LOG_ERROR, "no codec id found for stream %d", i);
425                         return -1;
426                     }
427
428                     put_ebml_string(pb, MATROSKA_ID_CODECID, MATROSKA_CODEC_ID_AUDIO_ACM);
429                     wav_header = start_ebml_master(pb, MATROSKA_ID_CODECPRIVATE);
430                     put_wav_header(pb, codec);
431                     end_ebml_master(pb, wav_header);
432                 }
433                 subinfo = start_ebml_master(pb, MATROSKA_ID_TRACKAUDIO);
434                 put_ebml_uint  (pb, MATROSKA_ID_AUDIOCHANNELS    , codec->channels);
435                 put_ebml_float (pb, MATROSKA_ID_AUDIOSAMPLINGFREQ, codec->sample_rate);
436                 // XXX: output sample freq (for sbr)
437                 if (bit_depth)
438                     put_ebml_uint(pb, MATROSKA_ID_AUDIOBITDEPTH, bit_depth);
439                 end_ebml_master(pb, subinfo);
440                 break;
441
442             default:
443                 av_log(s, AV_LOG_ERROR, "Only audio and video are supported for Matroska.");
444                 break;
445         }
446         end_ebml_master(pb, track);
447
448         // ms precision is the de-facto standard timescale for mkv files
449         av_set_pts_info(st, 64, 1, 1000);
450     }
451     end_ebml_master(pb, tracks);
452     return 0;
453 }
454
455 static int mkv_write_header(AVFormatContext *s)
456 {
457     MatroskaMuxContext *mkv = s->priv_data;
458     ByteIOContext *pb = &s->pb;
459     offset_t ebml_header, segment_info;
460
461     ebml_header = start_ebml_master(pb, EBML_ID_HEADER);
462     put_ebml_uint   (pb, EBML_ID_EBMLVERSION        ,           1);
463     put_ebml_uint   (pb, EBML_ID_EBMLREADVERSION    ,           1);
464     put_ebml_uint   (pb, EBML_ID_EBMLMAXIDLENGTH    ,           4);
465     put_ebml_uint   (pb, EBML_ID_EBMLMAXSIZELENGTH  ,           8);
466     put_ebml_string (pb, EBML_ID_DOCTYPE            ,  "matroska");
467     put_ebml_uint   (pb, EBML_ID_DOCTYPEVERSION     ,           2);
468     put_ebml_uint   (pb, EBML_ID_DOCTYPEREADVERSION ,           2);
469     end_ebml_master(pb, ebml_header);
470
471     mkv->segment = start_ebml_master(pb, MATROSKA_ID_SEGMENT);
472     mkv->segment_offset = url_ftell(pb);
473
474     // we write 2 seek heads - one at the end of the file to point to each cluster, and
475     // one at the beginning to point to all other level one elements (including the seek
476     // head at the end of the file), which isn't more than 10 elements if we only write one
477     // of each other currently defined level 1 element
478     mkv->main_seekhead    = mkv_start_seekhead(pb, mkv->segment_offset, 10);
479     mkv->cluster_seekhead = mkv_start_seekhead(pb, mkv->segment_offset, 0);
480
481     if (mkv_add_seekhead_entry(mkv->main_seekhead, MATROSKA_ID_INFO, url_ftell(pb)) < 0)
482         return -1;
483
484     segment_info = start_ebml_master(pb, MATROSKA_ID_INFO);
485     put_ebml_uint(pb, MATROSKA_ID_TIMECODESCALE, 1000000);
486     if (strlen(s->title))
487         put_ebml_string(pb, MATROSKA_ID_TITLE, s->title);
488     if (!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)) {
489         put_ebml_string(pb, MATROSKA_ID_MUXINGAPP, LIBAVFORMAT_IDENT);
490         // XXX: both are required; something better for writing app?
491         put_ebml_string(pb, MATROSKA_ID_WRITINGAPP, LIBAVFORMAT_IDENT);
492     }
493     // XXX: segment UID
494     // reserve space for the duration
495     mkv->duration = 0;
496     mkv->duration_offset = url_ftell(pb);
497     put_ebml_void(pb, 11);                  // assumes double-precision float to be written
498     end_ebml_master(pb, segment_info);
499
500     if (mkv_write_tracks(s) < 0)
501         return -1;
502
503     if (mkv_add_seekhead_entry(mkv->cluster_seekhead, MATROSKA_ID_CLUSTER, url_ftell(pb)) < 0)
504         return -1;
505
506     mkv->cluster_pos = url_ftell(pb);
507     mkv->cluster = start_ebml_master(pb, MATROSKA_ID_CLUSTER);
508     put_ebml_uint(pb, MATROSKA_ID_CLUSTERTIMECODE, 0);
509     mkv->cluster_pts = 0;
510
511     mkv->cues = mkv_start_cues(mkv->segment_offset);
512     if (mkv->cues == NULL)
513         return -1;
514
515     return 0;
516 }
517
518 static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
519 {
520     MatroskaMuxContext *mkv = s->priv_data;
521     ByteIOContext *pb = &s->pb;
522     int keyframe = !!(pkt->flags & PKT_FLAG_KEY);
523
524     // start a new cluster every 5 MB or 5 sec
525     if (url_ftell(pb) > mkv->cluster + 5*1024*1024 || pkt->pts > mkv->cluster_pts + 5000) {
526         end_ebml_master(pb, mkv->cluster);
527
528         if (mkv_add_seekhead_entry(mkv->cluster_seekhead, MATROSKA_ID_CLUSTER, url_ftell(pb)) < 0)
529             return -1;
530
531         mkv->cluster_pos = url_ftell(pb);
532         mkv->cluster = start_ebml_master(pb, MATROSKA_ID_CLUSTER);
533         put_ebml_uint(pb, MATROSKA_ID_CLUSTERTIMECODE, pkt->pts);
534         mkv->cluster_pts = pkt->pts;
535     }
536
537     put_ebml_id(pb, MATROSKA_ID_SIMPLEBLOCK);
538     put_ebml_size(pb, pkt->size + 4, 0);
539     put_byte(pb, 0x80 | (pkt->stream_index + 1));     // this assumes stream_index is less than 126
540     put_be16(pb, pkt->pts - mkv->cluster_pts);
541     put_byte(pb, keyframe << 7);
542     put_buffer(pb, pkt->data, pkt->size);
543
544     if (s->streams[pkt->stream_index]->codec->codec_type == CODEC_TYPE_VIDEO && keyframe) {
545         if (mkv_add_cuepoint(mkv->cues, pkt, mkv->cluster_pos) < 0)
546             return -1;
547     }
548
549     mkv->duration = pkt->pts + pkt->duration;
550     return 0;
551 }
552
553 static int mkv_write_trailer(AVFormatContext *s)
554 {
555     MatroskaMuxContext *mkv = s->priv_data;
556     ByteIOContext *pb = &s->pb;
557     offset_t currentpos, second_seekhead, cuespos;
558
559     end_ebml_master(pb, mkv->cluster);
560
561     cuespos = mkv_write_cues(pb, mkv->cues);
562     second_seekhead = mkv_write_seekhead(pb, mkv->cluster_seekhead);
563
564     mkv_add_seekhead_entry(mkv->main_seekhead, MATROSKA_ID_CUES    , cuespos);
565     mkv_add_seekhead_entry(mkv->main_seekhead, MATROSKA_ID_SEEKHEAD, second_seekhead);
566     mkv_write_seekhead(pb, mkv->main_seekhead);
567
568     // update the duration
569     currentpos = url_ftell(pb);
570     url_fseek(pb, mkv->duration_offset, SEEK_SET);
571     put_ebml_float(pb, MATROSKA_ID_DURATION, mkv->duration);
572     url_fseek(pb, currentpos, SEEK_SET);
573
574     end_ebml_master(pb, mkv->segment);
575     return 0;
576 }
577
578 AVOutputFormat matroska_muxer = {
579     "matroska",
580     "Matroska File Format",
581     "video/x-matroska",
582     "mkv",
583     sizeof(MatroskaMuxContext),
584     CODEC_ID_MP2,
585     CODEC_ID_MPEG4,
586     mkv_write_header,
587     mkv_write_packet,
588     mkv_write_trailer,
589     .codec_tag = (const AVCodecTag*[]){codec_bmp_tags, codec_wav_tags, 0},
590 };