]> git.sesse.net Git - ffmpeg/blob - libavformat/movenc.c
avformat/mpeg: Don't free unintialized pointer
[ffmpeg] / libavformat / movenc.c
1 /*
2  * MOV, 3GP, MP4 muxer
3  * Copyright (c) 2003 Thomas Raivio
4  * Copyright (c) 2004 Gildas Bazin <gbazin at videolan dot org>
5  * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 #include <stdint.h>
25 #include <inttypes.h>
26
27 #include "movenc.h"
28 #include "avformat.h"
29 #include "avio_internal.h"
30 #include "riff.h"
31 #include "avio.h"
32 #include "isom.h"
33 #include "av1.h"
34 #include "avc.h"
35 #include "libavcodec/ac3_parser_internal.h"
36 #include "libavcodec/dnxhddata.h"
37 #include "libavcodec/flac.h"
38 #include "libavcodec/get_bits.h"
39
40 #include "libavcodec/internal.h"
41 #include "libavcodec/put_bits.h"
42 #include "libavcodec/vc1_common.h"
43 #include "libavcodec/raw.h"
44 #include "internal.h"
45 #include "libavutil/avstring.h"
46 #include "libavutil/intfloat.h"
47 #include "libavutil/mathematics.h"
48 #include "libavutil/libm.h"
49 #include "libavutil/opt.h"
50 #include "libavutil/dict.h"
51 #include "libavutil/pixdesc.h"
52 #include "libavutil/stereo3d.h"
53 #include "libavutil/timecode.h"
54 #include "libavutil/color_utils.h"
55 #include "hevc.h"
56 #include "rtpenc.h"
57 #include "mov_chan.h"
58 #include "vpcc.h"
59
60 static const AVOption options[] = {
61     { "movflags", "MOV muxer flags", offsetof(MOVMuxContext, flags), AV_OPT_TYPE_FLAGS, {.i64 = 0}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
62     { "rtphint", "Add RTP hint tracks", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_RTP_HINT}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
63     { "moov_size", "maximum moov size so it can be placed at the begin", offsetof(MOVMuxContext, reserved_moov_size), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, 0 },
64     { "empty_moov", "Make the initial moov atom empty", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_EMPTY_MOOV}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
65     { "frag_keyframe", "Fragment at video keyframes", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_FRAG_KEYFRAME}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
66     { "frag_every_frame", "Fragment at every frame", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_FRAG_EVERY_FRAME}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
67     { "separate_moof", "Write separate moof/mdat atoms for each track", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_SEPARATE_MOOF}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
68     { "frag_custom", "Flush fragments on caller requests", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_FRAG_CUSTOM}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
69     { "isml", "Create a live smooth streaming feed (for pushing to a publishing point)", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_ISML}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
70     { "faststart", "Run a second pass to put the index (moov atom) at the beginning of the file", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_FASTSTART}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
71     { "omit_tfhd_offset", "Omit the base data offset in tfhd atoms", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_OMIT_TFHD_OFFSET}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
72     { "disable_chpl", "Disable Nero chapter atom", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_DISABLE_CHPL}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
73     { "default_base_moof", "Set the default-base-is-moof flag in tfhd atoms", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_DEFAULT_BASE_MOOF}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
74     { "dash", "Write DASH compatible fragmented MP4", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_DASH}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
75     { "frag_discont", "Signal that the next fragment is discontinuous from earlier ones", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_FRAG_DISCONT}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
76     { "delay_moov", "Delay writing the initial moov until the first fragment is cut, or until the first fragment flush", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_DELAY_MOOV}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
77     { "global_sidx", "Write a global sidx index at the start of the file", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_GLOBAL_SIDX}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
78     { "skip_sidx", "Skip writing of sidx atom", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_SKIP_SIDX}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
79     { "write_colr", "Write colr atom (Experimental, may be renamed or changed, do not use from scripts)", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_WRITE_COLR}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
80     { "write_gama", "Write deprecated gama atom", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_WRITE_GAMA}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
81     { "use_metadata_tags", "Use mdta atom for metadata.", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_USE_MDTA}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
82     { "skip_trailer", "Skip writing the mfra/tfra/mfro trailer for fragmented files", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_SKIP_TRAILER}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
83     { "negative_cts_offsets", "Use negative CTS offsets (reducing the need for edit lists)", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
84     FF_RTP_FLAG_OPTS(MOVMuxContext, rtp_flags),
85     { "skip_iods", "Skip writing iods atom.", offsetof(MOVMuxContext, iods_skip), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
86     { "iods_audio_profile", "iods audio profile atom.", offsetof(MOVMuxContext, iods_audio_profile), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 255, AV_OPT_FLAG_ENCODING_PARAM},
87     { "iods_video_profile", "iods video profile atom.", offsetof(MOVMuxContext, iods_video_profile), AV_OPT_TYPE_INT, {.i64 = -1}, -1, 255, AV_OPT_FLAG_ENCODING_PARAM},
88     { "frag_duration", "Maximum fragment duration", offsetof(MOVMuxContext, max_fragment_duration), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM},
89     { "min_frag_duration", "Minimum fragment duration", offsetof(MOVMuxContext, min_fragment_duration), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM},
90     { "frag_size", "Maximum fragment size", offsetof(MOVMuxContext, max_fragment_size), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM},
91     { "ism_lookahead", "Number of lookahead entries for ISM files", offsetof(MOVMuxContext, ism_lookahead), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM},
92     { "video_track_timescale", "set timescale of all video tracks", offsetof(MOVMuxContext, video_track_timescale), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM},
93     { "brand",    "Override major brand", offsetof(MOVMuxContext, major_brand),   AV_OPT_TYPE_STRING, {.str = NULL}, .flags = AV_OPT_FLAG_ENCODING_PARAM },
94     { "use_editlist", "use edit list", offsetof(MOVMuxContext, use_editlist), AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, AV_OPT_FLAG_ENCODING_PARAM},
95     { "fragment_index", "Fragment number of the next fragment", offsetof(MOVMuxContext, fragments), AV_OPT_TYPE_INT, {.i64 = 1}, 1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM},
96     { "mov_gamma", "gamma value for gama atom", offsetof(MOVMuxContext, gamma), AV_OPT_TYPE_FLOAT, {.dbl = 0.0 }, 0.0, 10, AV_OPT_FLAG_ENCODING_PARAM},
97     { "frag_interleave", "Interleave samples within fragments (max number of consecutive samples, lower is tighter interleaving, but with more overhead)", offsetof(MOVMuxContext, frag_interleave), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
98     { "encryption_scheme",    "Configures the encryption scheme, allowed values are none, cenc-aes-ctr", offsetof(MOVMuxContext, encryption_scheme_str),   AV_OPT_TYPE_STRING, {.str = NULL}, .flags = AV_OPT_FLAG_ENCODING_PARAM },
99     { "encryption_key", "The media encryption key (hex)", offsetof(MOVMuxContext, encryption_key), AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_ENCODING_PARAM },
100     { "encryption_kid", "The media encryption key identifier (hex)", offsetof(MOVMuxContext, encryption_kid), AV_OPT_TYPE_BINARY, .flags = AV_OPT_FLAG_ENCODING_PARAM },
101     { "use_stream_ids_as_track_ids", "use stream ids as track ids", offsetof(MOVMuxContext, use_stream_ids_as_track_ids), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
102     { "write_tmcd", "force or disable writing tmcd", offsetof(MOVMuxContext, write_tmcd), AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, AV_OPT_FLAG_ENCODING_PARAM},
103     { "write_prft", "Write producer reference time box with specified time source", offsetof(MOVMuxContext, write_prft), AV_OPT_TYPE_INT, {.i64 = MOV_PRFT_NONE}, 0, MOV_PRFT_NB-1, AV_OPT_FLAG_ENCODING_PARAM, "prft"},
104     { "wallclock", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = MOV_PRFT_SRC_WALLCLOCK}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM, "prft"},
105     { "pts", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = MOV_PRFT_SRC_PTS}, 0, 0, AV_OPT_FLAG_ENCODING_PARAM, "prft"},
106     { "empty_hdlr_name", "write zero-length name string in hdlr atoms within mdia and minf atoms", offsetof(MOVMuxContext, empty_hdlr_name), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM},
107     { NULL },
108 };
109
110 #define MOV_CLASS(flavor)\
111 static const AVClass flavor ## _muxer_class = {\
112     .class_name = #flavor " muxer",\
113     .item_name  = av_default_item_name,\
114     .option     = options,\
115     .version    = LIBAVUTIL_VERSION_INT,\
116 };
117
118 static int get_moov_size(AVFormatContext *s);
119
120 static int utf8len(const uint8_t *b)
121 {
122     int len = 0;
123     int val;
124     while (*b) {
125         GET_UTF8(val, *b++, return -1;)
126         len++;
127     }
128     return len;
129 }
130
131 //FIXME support 64 bit variant with wide placeholders
132 static int64_t update_size(AVIOContext *pb, int64_t pos)
133 {
134     int64_t curpos = avio_tell(pb);
135     avio_seek(pb, pos, SEEK_SET);
136     avio_wb32(pb, curpos - pos); /* rewrite size */
137     avio_seek(pb, curpos, SEEK_SET);
138
139     return curpos - pos;
140 }
141
142 static int co64_required(const MOVTrack *track)
143 {
144     if (track->entry > 0 && track->cluster[track->entry - 1].pos + track->data_offset > UINT32_MAX)
145         return 1;
146     return 0;
147 }
148
149 static int is_cover_image(const AVStream *st)
150 {
151     /* Eg. AV_DISPOSITION_ATTACHED_PIC | AV_DISPOSITION_TIMED_THUMBNAILS
152      * is encoded as sparse video track */
153     return st && st->disposition == AV_DISPOSITION_ATTACHED_PIC;
154 }
155
156 static int rtp_hinting_needed(const AVStream *st)
157 {
158     /* Add hint tracks for each real audio and video stream */
159     if (is_cover_image(st))
160         return 0;
161     return st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO ||
162            st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO;
163 }
164
165 /* Chunk offset atom */
166 static int mov_write_stco_tag(AVIOContext *pb, MOVTrack *track)
167 {
168     int i;
169     int mode64 = co64_required(track); // use 32 bit size variant if possible
170     int64_t pos = avio_tell(pb);
171     avio_wb32(pb, 0); /* size */
172     if (mode64)
173         ffio_wfourcc(pb, "co64");
174     else
175         ffio_wfourcc(pb, "stco");
176     avio_wb32(pb, 0); /* version & flags */
177     avio_wb32(pb, track->chunkCount); /* entry count */
178     for (i = 0; i < track->entry; i++) {
179         if (!track->cluster[i].chunkNum)
180             continue;
181         if (mode64 == 1)
182             avio_wb64(pb, track->cluster[i].pos + track->data_offset);
183         else
184             avio_wb32(pb, track->cluster[i].pos + track->data_offset);
185     }
186     return update_size(pb, pos);
187 }
188
189 /* Sample size atom */
190 static int mov_write_stsz_tag(AVIOContext *pb, MOVTrack *track)
191 {
192     int equalChunks = 1;
193     int i, j, entries = 0, tst = -1, oldtst = -1;
194
195     int64_t pos = avio_tell(pb);
196     avio_wb32(pb, 0); /* size */
197     ffio_wfourcc(pb, "stsz");
198     avio_wb32(pb, 0); /* version & flags */
199
200     for (i = 0; i < track->entry; i++) {
201         tst = track->cluster[i].size / track->cluster[i].entries;
202         if (oldtst != -1 && tst != oldtst)
203             equalChunks = 0;
204         oldtst = tst;
205         entries += track->cluster[i].entries;
206     }
207     if (equalChunks && track->entry) {
208         int sSize = track->entry ? track->cluster[0].size / track->cluster[0].entries : 0;
209         sSize = FFMAX(1, sSize); // adpcm mono case could make sSize == 0
210         avio_wb32(pb, sSize); // sample size
211         avio_wb32(pb, entries); // sample count
212     } else {
213         avio_wb32(pb, 0); // sample size
214         avio_wb32(pb, entries); // sample count
215         for (i = 0; i < track->entry; i++) {
216             for (j = 0; j < track->cluster[i].entries; j++) {
217                 avio_wb32(pb, track->cluster[i].size /
218                           track->cluster[i].entries);
219             }
220         }
221     }
222     return update_size(pb, pos);
223 }
224
225 /* Sample to chunk atom */
226 static int mov_write_stsc_tag(AVIOContext *pb, MOVTrack *track)
227 {
228     int index = 0, oldval = -1, i;
229     int64_t entryPos, curpos;
230
231     int64_t pos = avio_tell(pb);
232     avio_wb32(pb, 0); /* size */
233     ffio_wfourcc(pb, "stsc");
234     avio_wb32(pb, 0); // version & flags
235     entryPos = avio_tell(pb);
236     avio_wb32(pb, track->chunkCount); // entry count
237     for (i = 0; i < track->entry; i++) {
238         if (oldval != track->cluster[i].samples_in_chunk && track->cluster[i].chunkNum) {
239             avio_wb32(pb, track->cluster[i].chunkNum); // first chunk
240             avio_wb32(pb, track->cluster[i].samples_in_chunk); // samples per chunk
241             avio_wb32(pb, 0x1); // sample description index
242             oldval = track->cluster[i].samples_in_chunk;
243             index++;
244         }
245     }
246     curpos = avio_tell(pb);
247     avio_seek(pb, entryPos, SEEK_SET);
248     avio_wb32(pb, index); // rewrite size
249     avio_seek(pb, curpos, SEEK_SET);
250
251     return update_size(pb, pos);
252 }
253
254 /* Sync sample atom */
255 static int mov_write_stss_tag(AVIOContext *pb, MOVTrack *track, uint32_t flag)
256 {
257     int64_t curpos, entryPos;
258     int i, index = 0;
259     int64_t pos = avio_tell(pb);
260     avio_wb32(pb, 0); // size
261     ffio_wfourcc(pb, flag == MOV_SYNC_SAMPLE ? "stss" : "stps");
262     avio_wb32(pb, 0); // version & flags
263     entryPos = avio_tell(pb);
264     avio_wb32(pb, track->entry); // entry count
265     for (i = 0; i < track->entry; i++) {
266         if (track->cluster[i].flags & flag) {
267             avio_wb32(pb, i + 1);
268             index++;
269         }
270     }
271     curpos = avio_tell(pb);
272     avio_seek(pb, entryPos, SEEK_SET);
273     avio_wb32(pb, index); // rewrite size
274     avio_seek(pb, curpos, SEEK_SET);
275     return update_size(pb, pos);
276 }
277
278 /* Sample dependency atom */
279 static int mov_write_sdtp_tag(AVIOContext *pb, MOVTrack *track)
280 {
281     int i;
282     uint8_t leading, dependent, reference, redundancy;
283     int64_t pos = avio_tell(pb);
284     avio_wb32(pb, 0); // size
285     ffio_wfourcc(pb, "sdtp");
286     avio_wb32(pb, 0); // version & flags
287     for (i = 0; i < track->entry; i++) {
288         dependent = MOV_SAMPLE_DEPENDENCY_YES;
289         leading = reference = redundancy = MOV_SAMPLE_DEPENDENCY_UNKNOWN;
290         if (track->cluster[i].flags & MOV_DISPOSABLE_SAMPLE) {
291             reference = MOV_SAMPLE_DEPENDENCY_NO;
292         }
293         if (track->cluster[i].flags & MOV_SYNC_SAMPLE) {
294             dependent = MOV_SAMPLE_DEPENDENCY_NO;
295         }
296         avio_w8(pb, (leading << 6)   | (dependent << 4) |
297                     (reference << 2) | redundancy);
298     }
299     return update_size(pb, pos);
300 }
301
302 static int mov_write_amr_tag(AVIOContext *pb, MOVTrack *track)
303 {
304     avio_wb32(pb, 0x11); /* size */
305     if (track->mode == MODE_MOV) ffio_wfourcc(pb, "samr");
306     else                         ffio_wfourcc(pb, "damr");
307     ffio_wfourcc(pb, "FFMP");
308     avio_w8(pb, 0); /* decoder version */
309
310     avio_wb16(pb, 0x81FF); /* Mode set (all modes for AMR_NB) */
311     avio_w8(pb, 0x00); /* Mode change period (no restriction) */
312     avio_w8(pb, 0x01); /* Frames per sample */
313     return 0x11;
314 }
315
316 static int mov_write_ac3_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
317 {
318     GetBitContext gbc;
319     PutBitContext pbc;
320     uint8_t buf[3];
321     int fscod, bsid, bsmod, acmod, lfeon, frmsizecod;
322
323     if (track->vos_len < 7) {
324         av_log(s, AV_LOG_ERROR,
325                "Cannot write moov atom before AC3 packets."
326                " Set the delay_moov flag to fix this.\n");
327         return AVERROR(EINVAL);
328     }
329
330     avio_wb32(pb, 11);
331     ffio_wfourcc(pb, "dac3");
332
333     init_get_bits(&gbc, track->vos_data + 4, (track->vos_len - 4) * 8);
334     fscod      = get_bits(&gbc, 2);
335     frmsizecod = get_bits(&gbc, 6);
336     bsid       = get_bits(&gbc, 5);
337     bsmod      = get_bits(&gbc, 3);
338     acmod      = get_bits(&gbc, 3);
339     if (acmod == 2) {
340         skip_bits(&gbc, 2); // dsurmod
341     } else {
342         if ((acmod & 1) && acmod != 1)
343             skip_bits(&gbc, 2); // cmixlev
344         if (acmod & 4)
345             skip_bits(&gbc, 2); // surmixlev
346     }
347     lfeon = get_bits1(&gbc);
348
349     init_put_bits(&pbc, buf, sizeof(buf));
350     put_bits(&pbc, 2, fscod);
351     put_bits(&pbc, 5, bsid);
352     put_bits(&pbc, 3, bsmod);
353     put_bits(&pbc, 3, acmod);
354     put_bits(&pbc, 1, lfeon);
355     put_bits(&pbc, 5, frmsizecod >> 1); // bit_rate_code
356     put_bits(&pbc, 5, 0); // reserved
357
358     flush_put_bits(&pbc);
359     avio_write(pb, buf, sizeof(buf));
360
361     return 11;
362 }
363
364 struct eac3_info {
365     AVPacket pkt;
366     uint8_t ec3_done;
367     uint8_t num_blocks;
368
369     /* Layout of the EC3SpecificBox */
370     /* maximum bitrate */
371     uint16_t data_rate;
372     /* number of independent substreams */
373     uint8_t  num_ind_sub;
374     struct {
375         /* sample rate code (see ff_ac3_sample_rate_tab) 2 bits */
376         uint8_t fscod;
377         /* bit stream identification 5 bits */
378         uint8_t bsid;
379         /* one bit reserved */
380         /* audio service mixing (not supported yet) 1 bit */
381         /* bit stream mode 3 bits */
382         uint8_t bsmod;
383         /* audio coding mode 3 bits */
384         uint8_t acmod;
385         /* sub woofer on 1 bit */
386         uint8_t lfeon;
387         /* 3 bits reserved */
388         /* number of dependent substreams associated with this substream 4 bits */
389         uint8_t num_dep_sub;
390         /* channel locations of the dependent substream(s), if any, 9 bits */
391         uint16_t chan_loc;
392         /* if there is no dependent substream, then one bit reserved instead */
393     } substream[1]; /* TODO: support 8 independent substreams */
394 };
395
396 #if CONFIG_AC3_PARSER
397 static int handle_eac3(MOVMuxContext *mov, AVPacket *pkt, MOVTrack *track)
398 {
399     AC3HeaderInfo *hdr = NULL;
400     struct eac3_info *info;
401     int num_blocks, ret;
402
403     if (!track->eac3_priv && !(track->eac3_priv = av_mallocz(sizeof(*info))))
404         return AVERROR(ENOMEM);
405     info = track->eac3_priv;
406
407     if (avpriv_ac3_parse_header(&hdr, pkt->data, pkt->size) < 0) {
408         /* drop the packets until we see a good one */
409         if (!track->entry) {
410             av_log(mov->fc, AV_LOG_WARNING, "Dropping invalid packet from start of the stream\n");
411             ret = 0;
412         } else
413             ret = AVERROR_INVALIDDATA;
414         goto end;
415     }
416
417     info->data_rate = FFMAX(info->data_rate, hdr->bit_rate / 1000);
418     num_blocks = hdr->num_blocks;
419
420     if (!info->ec3_done) {
421         /* AC-3 substream must be the first one */
422         if (hdr->bitstream_id <= 10 && hdr->substreamid != 0) {
423             ret = AVERROR(EINVAL);
424             goto end;
425         }
426
427         /* this should always be the case, given that our AC-3 parser
428          * concatenates dependent frames to their independent parent */
429         if (hdr->frame_type == EAC3_FRAME_TYPE_INDEPENDENT) {
430             /* substream ids must be incremental */
431             if (hdr->substreamid > info->num_ind_sub + 1) {
432                 ret = AVERROR(EINVAL);
433                 goto end;
434             }
435
436             if (hdr->substreamid == info->num_ind_sub + 1) {
437                 //info->num_ind_sub++;
438                 avpriv_request_sample(mov->fc, "Multiple independent substreams");
439                 ret = AVERROR_PATCHWELCOME;
440                 goto end;
441             } else if (hdr->substreamid < info->num_ind_sub ||
442                        hdr->substreamid == 0 && info->substream[0].bsid) {
443                 info->ec3_done = 1;
444                 goto concatenate;
445             }
446         } else {
447             if (hdr->substreamid != 0) {
448                 avpriv_request_sample(mov->fc, "Multiple non EAC3 independent substreams");
449                 ret = AVERROR_PATCHWELCOME;
450                 goto end;
451             }
452         }
453
454         /* fill the info needed for the "dec3" atom */
455         info->substream[hdr->substreamid].fscod = hdr->sr_code;
456         info->substream[hdr->substreamid].bsid  = hdr->bitstream_id;
457         info->substream[hdr->substreamid].bsmod = hdr->bitstream_mode;
458         info->substream[hdr->substreamid].acmod = hdr->channel_mode;
459         info->substream[hdr->substreamid].lfeon = hdr->lfe_on;
460
461         /* Parse dependent substream(s), if any */
462         if (pkt->size != hdr->frame_size) {
463             int cumul_size = hdr->frame_size;
464             int parent = hdr->substreamid;
465
466             while (cumul_size != pkt->size) {
467                 GetBitContext gbc;
468                 int i;
469                 ret = avpriv_ac3_parse_header(&hdr, pkt->data + cumul_size, pkt->size - cumul_size);
470                 if (ret < 0)
471                     goto end;
472                 if (hdr->frame_type != EAC3_FRAME_TYPE_DEPENDENT) {
473                     ret = AVERROR(EINVAL);
474                     goto end;
475                 }
476                 info->substream[parent].num_dep_sub++;
477                 ret /= 8;
478
479                 /* header is parsed up to lfeon, but custom channel map may be needed */
480                 init_get_bits8(&gbc, pkt->data + cumul_size + ret, pkt->size - cumul_size - ret);
481                 /* skip bsid */
482                 skip_bits(&gbc, 5);
483                 /* skip volume control params */
484                 for (i = 0; i < (hdr->channel_mode ? 1 : 2); i++) {
485                     skip_bits(&gbc, 5); // skip dialog normalization
486                     if (get_bits1(&gbc)) {
487                         skip_bits(&gbc, 8); // skip compression gain word
488                     }
489                 }
490                 /* get the dependent stream channel map, if exists */
491                 if (get_bits1(&gbc))
492                     info->substream[parent].chan_loc |= (get_bits(&gbc, 16) >> 5) & 0x1f;
493                 else
494                     info->substream[parent].chan_loc |= hdr->channel_mode;
495                 cumul_size += hdr->frame_size;
496             }
497         }
498     }
499
500 concatenate:
501     if (!info->num_blocks && num_blocks == 6) {
502         ret = pkt->size;
503         goto end;
504     }
505     else if (info->num_blocks + num_blocks > 6) {
506         ret = AVERROR_INVALIDDATA;
507         goto end;
508     }
509
510     if (!info->num_blocks) {
511         ret = av_packet_ref(&info->pkt, pkt);
512         if (!ret)
513             info->num_blocks = num_blocks;
514         goto end;
515     } else {
516         if ((ret = av_grow_packet(&info->pkt, pkt->size)) < 0)
517             goto end;
518         memcpy(info->pkt.data + info->pkt.size - pkt->size, pkt->data, pkt->size);
519         info->num_blocks += num_blocks;
520         info->pkt.duration += pkt->duration;
521         if ((ret = av_copy_packet_side_data(&info->pkt, pkt)) < 0)
522             goto end;
523         if (info->num_blocks != 6)
524             goto end;
525         av_packet_unref(pkt);
526         av_packet_move_ref(pkt, &info->pkt);
527         info->num_blocks = 0;
528     }
529     ret = pkt->size;
530
531 end:
532     av_free(hdr);
533
534     return ret;
535 }
536 #endif
537
538 static int mov_write_eac3_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
539 {
540     PutBitContext pbc;
541     uint8_t *buf;
542     struct eac3_info *info;
543     int size, i;
544
545     if (!track->eac3_priv) {
546         av_log(s, AV_LOG_ERROR,
547                "Cannot write moov atom before EAC3 packets parsed.\n");
548         return AVERROR(EINVAL);
549     }
550
551     info = track->eac3_priv;
552     size = 2 + ((34 * (info->num_ind_sub + 1) + 7) >> 3);
553     buf = av_malloc(size);
554     if (!buf) {
555         return AVERROR(ENOMEM);
556     }
557
558     init_put_bits(&pbc, buf, size);
559     put_bits(&pbc, 13, info->data_rate);
560     put_bits(&pbc,  3, info->num_ind_sub);
561     for (i = 0; i <= info->num_ind_sub; i++) {
562         put_bits(&pbc, 2, info->substream[i].fscod);
563         put_bits(&pbc, 5, info->substream[i].bsid);
564         put_bits(&pbc, 1, 0); /* reserved */
565         put_bits(&pbc, 1, 0); /* asvc */
566         put_bits(&pbc, 3, info->substream[i].bsmod);
567         put_bits(&pbc, 3, info->substream[i].acmod);
568         put_bits(&pbc, 1, info->substream[i].lfeon);
569         put_bits(&pbc, 5, 0); /* reserved */
570         put_bits(&pbc, 4, info->substream[i].num_dep_sub);
571         if (!info->substream[i].num_dep_sub) {
572             put_bits(&pbc, 1, 0); /* reserved */
573         } else {
574             put_bits(&pbc, 9, info->substream[i].chan_loc);
575         }
576     }
577     flush_put_bits(&pbc);
578     size = put_bits_count(&pbc) >> 3;
579
580     avio_wb32(pb, size + 8);
581     ffio_wfourcc(pb, "dec3");
582     avio_write(pb, buf, size);
583
584     av_free(buf);
585
586     return size;
587 }
588
589 /**
590  * This function writes extradata "as is".
591  * Extradata must be formatted like a valid atom (with size and tag).
592  */
593 static int mov_write_extradata_tag(AVIOContext *pb, MOVTrack *track)
594 {
595     avio_write(pb, track->par->extradata, track->par->extradata_size);
596     return track->par->extradata_size;
597 }
598
599 static int mov_write_enda_tag(AVIOContext *pb)
600 {
601     avio_wb32(pb, 10);
602     ffio_wfourcc(pb, "enda");
603     avio_wb16(pb, 1); /* little endian */
604     return 10;
605 }
606
607 static int mov_write_enda_tag_be(AVIOContext *pb)
608 {
609   avio_wb32(pb, 10);
610   ffio_wfourcc(pb, "enda");
611   avio_wb16(pb, 0); /* big endian */
612   return 10;
613 }
614
615 static void put_descr(AVIOContext *pb, int tag, unsigned int size)
616 {
617     int i = 3;
618     avio_w8(pb, tag);
619     for (; i > 0; i--)
620         avio_w8(pb, (size >> (7 * i)) | 0x80);
621     avio_w8(pb, size & 0x7F);
622 }
623
624 static unsigned compute_avg_bitrate(MOVTrack *track)
625 {
626     uint64_t size = 0;
627     int i;
628     if (!track->track_duration)
629         return 0;
630     for (i = 0; i < track->entry; i++)
631         size += track->cluster[i].size;
632     return size * 8 * track->timescale / track->track_duration;
633 }
634
635 static int mov_write_esds_tag(AVIOContext *pb, MOVTrack *track) // Basic
636 {
637     AVCPBProperties *props;
638     int64_t pos = avio_tell(pb);
639     int decoder_specific_info_len = track->vos_len ? 5 + track->vos_len : 0;
640     unsigned avg_bitrate;
641
642     avio_wb32(pb, 0); // size
643     ffio_wfourcc(pb, "esds");
644     avio_wb32(pb, 0); // Version
645
646     // ES descriptor
647     put_descr(pb, 0x03, 3 + 5+13 + decoder_specific_info_len + 5+1);
648     avio_wb16(pb, track->track_id);
649     avio_w8(pb, 0x00); // flags (= no flags)
650
651     // DecoderConfig descriptor
652     put_descr(pb, 0x04, 13 + decoder_specific_info_len);
653
654     // Object type indication
655     if ((track->par->codec_id == AV_CODEC_ID_MP2 ||
656          track->par->codec_id == AV_CODEC_ID_MP3) &&
657         track->par->sample_rate > 24000)
658         avio_w8(pb, 0x6B); // 11172-3
659     else
660         avio_w8(pb, ff_codec_get_tag(ff_mp4_obj_type, track->par->codec_id));
661
662     // the following fields is made of 6 bits to identify the streamtype (4 for video, 5 for audio)
663     // plus 1 bit to indicate upstream and 1 bit set to 1 (reserved)
664     if (track->par->codec_id == AV_CODEC_ID_DVD_SUBTITLE)
665         avio_w8(pb, (0x38 << 2) | 1); // flags (= NeroSubpicStream)
666     else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO)
667         avio_w8(pb, 0x15); // flags (= Audiostream)
668     else
669         avio_w8(pb, 0x11); // flags (= Visualstream)
670
671     props = (AVCPBProperties*)av_stream_get_side_data(track->st, AV_PKT_DATA_CPB_PROPERTIES,
672                                                       NULL);
673
674     avio_wb24(pb, props ? props->buffer_size / 8 : 0); // Buffersize DB
675
676     avg_bitrate = compute_avg_bitrate(track);
677     avio_wb32(pb, props ? FFMAX3(props->max_bitrate, props->avg_bitrate, avg_bitrate) : FFMAX(track->par->bit_rate, avg_bitrate)); // maxbitrate (FIXME should be max rate in any 1 sec window)
678     avio_wb32(pb, avg_bitrate);
679
680     if (track->vos_len) {
681         // DecoderSpecific info descriptor
682         put_descr(pb, 0x05, track->vos_len);
683         avio_write(pb, track->vos_data, track->vos_len);
684     }
685
686     // SL descriptor
687     put_descr(pb, 0x06, 1);
688     avio_w8(pb, 0x02);
689     return update_size(pb, pos);
690 }
691
692 static int mov_pcm_le_gt16(enum AVCodecID codec_id)
693 {
694     return codec_id == AV_CODEC_ID_PCM_S24LE ||
695            codec_id == AV_CODEC_ID_PCM_S32LE ||
696            codec_id == AV_CODEC_ID_PCM_F32LE ||
697            codec_id == AV_CODEC_ID_PCM_F64LE;
698 }
699
700 static int mov_pcm_be_gt16(enum AVCodecID codec_id)
701 {
702     return codec_id == AV_CODEC_ID_PCM_S24BE ||
703            codec_id == AV_CODEC_ID_PCM_S32BE ||
704            codec_id == AV_CODEC_ID_PCM_F32BE ||
705            codec_id == AV_CODEC_ID_PCM_F64BE;
706 }
707
708 static int mov_write_ms_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
709 {
710     int ret;
711     int64_t pos = avio_tell(pb);
712     avio_wb32(pb, 0);
713     avio_wl32(pb, track->tag); // store it byteswapped
714     track->par->codec_tag = av_bswap16(track->tag >> 16);
715     if ((ret = ff_put_wav_header(s, pb, track->par, 0)) < 0)
716         return ret;
717     return update_size(pb, pos);
718 }
719
720 static int mov_write_wfex_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
721 {
722     int ret;
723     int64_t pos = avio_tell(pb);
724     avio_wb32(pb, 0);
725     ffio_wfourcc(pb, "wfex");
726     if ((ret = ff_put_wav_header(s, pb, track->st->codecpar, FF_PUT_WAV_HEADER_FORCE_WAVEFORMATEX)) < 0)
727         return ret;
728     return update_size(pb, pos);
729 }
730
731 static int mov_write_dfla_tag(AVIOContext *pb, MOVTrack *track)
732 {
733     int64_t pos = avio_tell(pb);
734     avio_wb32(pb, 0);
735     ffio_wfourcc(pb, "dfLa");
736     avio_w8(pb, 0); /* version */
737     avio_wb24(pb, 0); /* flags */
738
739     /* Expect the encoder to pass a METADATA_BLOCK_TYPE_STREAMINFO. */
740     if (track->par->extradata_size != FLAC_STREAMINFO_SIZE)
741         return AVERROR_INVALIDDATA;
742
743     /* TODO: Write other METADATA_BLOCK_TYPEs if the encoder makes them available. */
744     avio_w8(pb, 1 << 7 | FLAC_METADATA_TYPE_STREAMINFO); /* LastMetadataBlockFlag << 7 | BlockType */
745     avio_wb24(pb, track->par->extradata_size); /* Length */
746     avio_write(pb, track->par->extradata, track->par->extradata_size); /* BlockData[Length] */
747
748     return update_size(pb, pos);
749 }
750
751 static int mov_write_dops_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
752 {
753     int64_t pos = avio_tell(pb);
754     avio_wb32(pb, 0);
755     ffio_wfourcc(pb, "dOps");
756     avio_w8(pb, 0); /* Version */
757     if (track->par->extradata_size < 19) {
758         av_log(s, AV_LOG_ERROR, "invalid extradata size\n");
759         return AVERROR_INVALIDDATA;
760     }
761     /* extradata contains an Ogg OpusHead, other than byte-ordering and
762        OpusHead's preceeding magic/version, OpusSpecificBox is currently
763        identical. */
764     avio_w8(pb, AV_RB8(track->par->extradata + 9)); /* OuputChannelCount */
765     avio_wb16(pb, AV_RL16(track->par->extradata + 10)); /* PreSkip */
766     avio_wb32(pb, AV_RL32(track->par->extradata + 12)); /* InputSampleRate */
767     avio_wb16(pb, AV_RL16(track->par->extradata + 16)); /* OutputGain */
768     /* Write the rest of the header out without byte-swapping. */
769     avio_write(pb, track->par->extradata + 18, track->par->extradata_size - 18);
770
771     return update_size(pb, pos);
772 }
773
774 static int mov_write_dmlp_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
775 {
776     int64_t pos = avio_tell(pb);
777     int length;
778     avio_wb32(pb, 0);
779     ffio_wfourcc(pb, "dmlp");
780
781     if (track->vos_len < 20) {
782         av_log(s, AV_LOG_ERROR,
783                "Cannot write moov atom before TrueHD packets."
784                " Set the delay_moov flag to fix this.\n");
785         return AVERROR(EINVAL);
786     }
787
788     length = (AV_RB16(track->vos_data) & 0xFFF) * 2;
789     if (length < 20 || length > track->vos_len)
790         return AVERROR_INVALIDDATA;
791
792     // Only TrueHD is supported
793     if (AV_RB32(track->vos_data + 4) != 0xF8726FBA)
794         return AVERROR_INVALIDDATA;
795
796     avio_wb32(pb, AV_RB32(track->vos_data + 8)); /* format_info */
797     avio_wb16(pb, AV_RB16(track->vos_data + 18) << 1); /* peak_data_rate */
798     avio_wb32(pb, 0); /* reserved */
799
800     return update_size(pb, pos);
801 }
802
803 static int mov_write_chan_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
804 {
805     uint32_t layout_tag, bitmap;
806     int64_t pos = avio_tell(pb);
807
808     layout_tag = ff_mov_get_channel_layout_tag(track->par->codec_id,
809                                                track->par->channel_layout,
810                                                &bitmap);
811     if (!layout_tag) {
812         av_log(s, AV_LOG_WARNING, "not writing 'chan' tag due to "
813                "lack of channel information\n");
814         return 0;
815     }
816
817     if (track->multichannel_as_mono)
818         return 0;
819
820     avio_wb32(pb, 0);           // Size
821     ffio_wfourcc(pb, "chan");   // Type
822     avio_w8(pb, 0);             // Version
823     avio_wb24(pb, 0);           // Flags
824     avio_wb32(pb, layout_tag);  // mChannelLayoutTag
825     avio_wb32(pb, bitmap);      // mChannelBitmap
826     avio_wb32(pb, 0);           // mNumberChannelDescriptions
827
828     return update_size(pb, pos);
829 }
830
831 static int mov_write_wave_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
832 {
833     int64_t pos = avio_tell(pb);
834
835     avio_wb32(pb, 0);     /* size */
836     ffio_wfourcc(pb, "wave");
837
838     if (track->par->codec_id != AV_CODEC_ID_QDM2) {
839     avio_wb32(pb, 12);    /* size */
840     ffio_wfourcc(pb, "frma");
841     avio_wl32(pb, track->tag);
842     }
843
844     if (track->par->codec_id == AV_CODEC_ID_AAC) {
845         /* useless atom needed by mplayer, ipod, not needed by quicktime */
846         avio_wb32(pb, 12); /* size */
847         ffio_wfourcc(pb, "mp4a");
848         avio_wb32(pb, 0);
849         mov_write_esds_tag(pb, track);
850     } else if (mov_pcm_le_gt16(track->par->codec_id))  {
851       mov_write_enda_tag(pb);
852     } else if (mov_pcm_be_gt16(track->par->codec_id))  {
853       mov_write_enda_tag_be(pb);
854     } else if (track->par->codec_id == AV_CODEC_ID_AMR_NB) {
855         mov_write_amr_tag(pb, track);
856     } else if (track->par->codec_id == AV_CODEC_ID_AC3) {
857         mov_write_ac3_tag(s, pb, track);
858     } else if (track->par->codec_id == AV_CODEC_ID_EAC3) {
859         mov_write_eac3_tag(s, pb, track);
860     } else if (track->par->codec_id == AV_CODEC_ID_ALAC ||
861                track->par->codec_id == AV_CODEC_ID_QDM2) {
862         mov_write_extradata_tag(pb, track);
863     } else if (track->par->codec_id == AV_CODEC_ID_ADPCM_MS ||
864                track->par->codec_id == AV_CODEC_ID_ADPCM_IMA_WAV) {
865         mov_write_ms_tag(s, pb, track);
866     }
867
868     avio_wb32(pb, 8);     /* size */
869     avio_wb32(pb, 0);     /* null tag */
870
871     return update_size(pb, pos);
872 }
873
874 static int mov_write_dvc1_structs(MOVTrack *track, uint8_t *buf)
875 {
876     uint8_t *unescaped;
877     const uint8_t *start, *next, *end = track->vos_data + track->vos_len;
878     int unescaped_size, seq_found = 0;
879     int level = 0, interlace = 0;
880     int packet_seq   = track->vc1_info.packet_seq;
881     int packet_entry = track->vc1_info.packet_entry;
882     int slices       = track->vc1_info.slices;
883     PutBitContext pbc;
884
885     if (track->start_dts == AV_NOPTS_VALUE) {
886         /* No packets written yet, vc1_info isn't authoritative yet. */
887         /* Assume inline sequence and entry headers. */
888         packet_seq = packet_entry = 1;
889         av_log(NULL, AV_LOG_WARNING,
890                "moov atom written before any packets, unable to write correct "
891                "dvc1 atom. Set the delay_moov flag to fix this.\n");
892     }
893
894     unescaped = av_mallocz(track->vos_len + AV_INPUT_BUFFER_PADDING_SIZE);
895     if (!unescaped)
896         return AVERROR(ENOMEM);
897     start = find_next_marker(track->vos_data, end);
898     for (next = start; next < end; start = next) {
899         GetBitContext gb;
900         int size;
901         next = find_next_marker(start + 4, end);
902         size = next - start - 4;
903         if (size <= 0)
904             continue;
905         unescaped_size = vc1_unescape_buffer(start + 4, size, unescaped);
906         init_get_bits(&gb, unescaped, 8 * unescaped_size);
907         if (AV_RB32(start) == VC1_CODE_SEQHDR) {
908             int profile = get_bits(&gb, 2);
909             if (profile != PROFILE_ADVANCED) {
910                 av_free(unescaped);
911                 return AVERROR(ENOSYS);
912             }
913             seq_found = 1;
914             level = get_bits(&gb, 3);
915             /* chromaformat, frmrtq_postproc, bitrtq_postproc, postprocflag,
916              * width, height */
917             skip_bits_long(&gb, 2 + 3 + 5 + 1 + 2*12);
918             skip_bits(&gb, 1); /* broadcast */
919             interlace = get_bits1(&gb);
920             skip_bits(&gb, 4); /* tfcntrflag, finterpflag, reserved, psf */
921         }
922     }
923     if (!seq_found) {
924         av_free(unescaped);
925         return AVERROR(ENOSYS);
926     }
927
928     init_put_bits(&pbc, buf, 7);
929     /* VC1DecSpecStruc */
930     put_bits(&pbc, 4, 12); /* profile - advanced */
931     put_bits(&pbc, 3, level);
932     put_bits(&pbc, 1, 0); /* reserved */
933     /* VC1AdvDecSpecStruc */
934     put_bits(&pbc, 3, level);
935     put_bits(&pbc, 1, 0); /* cbr */
936     put_bits(&pbc, 6, 0); /* reserved */
937     put_bits(&pbc, 1, !interlace); /* no interlace */
938     put_bits(&pbc, 1, !packet_seq); /* no multiple seq */
939     put_bits(&pbc, 1, !packet_entry); /* no multiple entry */
940     put_bits(&pbc, 1, !slices); /* no slice code */
941     put_bits(&pbc, 1, 0); /* no bframe */
942     put_bits(&pbc, 1, 0); /* reserved */
943
944     /* framerate */
945     if (track->st->avg_frame_rate.num > 0 && track->st->avg_frame_rate.den > 0)
946         put_bits32(&pbc, track->st->avg_frame_rate.num / track->st->avg_frame_rate.den);
947     else
948         put_bits32(&pbc, 0xffffffff);
949
950     flush_put_bits(&pbc);
951
952     av_free(unescaped);
953
954     return 0;
955 }
956
957 static int mov_write_dvc1_tag(AVIOContext *pb, MOVTrack *track)
958 {
959     uint8_t buf[7] = { 0 };
960     int ret;
961
962     if ((ret = mov_write_dvc1_structs(track, buf)) < 0)
963         return ret;
964
965     avio_wb32(pb, track->vos_len + 8 + sizeof(buf));
966     ffio_wfourcc(pb, "dvc1");
967     avio_write(pb, buf, sizeof(buf));
968     avio_write(pb, track->vos_data, track->vos_len);
969
970     return 0;
971 }
972
973 static int mov_write_glbl_tag(AVIOContext *pb, MOVTrack *track)
974 {
975     avio_wb32(pb, track->vos_len + 8);
976     ffio_wfourcc(pb, "glbl");
977     avio_write(pb, track->vos_data, track->vos_len);
978     return 8 + track->vos_len;
979 }
980
981 /**
982  * Compute flags for 'lpcm' tag.
983  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
984  */
985 static int mov_get_lpcm_flags(enum AVCodecID codec_id)
986 {
987     switch (codec_id) {
988     case AV_CODEC_ID_PCM_F32BE:
989     case AV_CODEC_ID_PCM_F64BE:
990         return 11;
991     case AV_CODEC_ID_PCM_F32LE:
992     case AV_CODEC_ID_PCM_F64LE:
993         return 9;
994     case AV_CODEC_ID_PCM_U8:
995         return 10;
996     case AV_CODEC_ID_PCM_S16BE:
997     case AV_CODEC_ID_PCM_S24BE:
998     case AV_CODEC_ID_PCM_S32BE:
999         return 14;
1000     case AV_CODEC_ID_PCM_S8:
1001     case AV_CODEC_ID_PCM_S16LE:
1002     case AV_CODEC_ID_PCM_S24LE:
1003     case AV_CODEC_ID_PCM_S32LE:
1004         return 12;
1005     default:
1006         return 0;
1007     }
1008 }
1009
1010 static int get_cluster_duration(MOVTrack *track, int cluster_idx)
1011 {
1012     int64_t next_dts;
1013
1014     if (cluster_idx >= track->entry)
1015         return 0;
1016
1017     if (cluster_idx + 1 == track->entry)
1018         next_dts = track->track_duration + track->start_dts;
1019     else
1020         next_dts = track->cluster[cluster_idx + 1].dts;
1021
1022     next_dts -= track->cluster[cluster_idx].dts;
1023
1024     av_assert0(next_dts >= 0);
1025     av_assert0(next_dts <= INT_MAX);
1026
1027     return next_dts;
1028 }
1029
1030 static int get_samples_per_packet(MOVTrack *track)
1031 {
1032     int i, first_duration;
1033
1034 // return track->par->frame_size;
1035
1036     /* use 1 for raw PCM */
1037     if (!track->audio_vbr)
1038         return 1;
1039
1040     /* check to see if duration is constant for all clusters */
1041     if (!track->entry)
1042         return 0;
1043     first_duration = get_cluster_duration(track, 0);
1044     for (i = 1; i < track->entry; i++) {
1045         if (get_cluster_duration(track, i) != first_duration)
1046             return 0;
1047     }
1048     return first_duration;
1049 }
1050
1051 static int mov_write_audio_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext *mov, MOVTrack *track)
1052 {
1053     int64_t pos = avio_tell(pb);
1054     int version = 0;
1055     uint32_t tag = track->tag;
1056     int ret = 0;
1057
1058     if (track->mode == MODE_MOV) {
1059         if (track->timescale > UINT16_MAX || !track->par->channels) {
1060             if (mov_get_lpcm_flags(track->par->codec_id))
1061                 tag = AV_RL32("lpcm");
1062             version = 2;
1063         } else if (track->audio_vbr || mov_pcm_le_gt16(track->par->codec_id) ||
1064                    mov_pcm_be_gt16(track->par->codec_id) ||
1065                    track->par->codec_id == AV_CODEC_ID_ADPCM_MS ||
1066                    track->par->codec_id == AV_CODEC_ID_ADPCM_IMA_WAV ||
1067                    track->par->codec_id == AV_CODEC_ID_QDM2) {
1068             version = 1;
1069         }
1070     }
1071
1072     avio_wb32(pb, 0); /* size */
1073     if (mov->encryption_scheme != MOV_ENC_NONE) {
1074         ffio_wfourcc(pb, "enca");
1075     } else {
1076         avio_wl32(pb, tag); // store it byteswapped
1077     }
1078     avio_wb32(pb, 0); /* Reserved */
1079     avio_wb16(pb, 0); /* Reserved */
1080     avio_wb16(pb, 1); /* Data-reference index, XXX  == 1 */
1081
1082     /* SoundDescription */
1083     avio_wb16(pb, version); /* Version */
1084     avio_wb16(pb, 0); /* Revision level */
1085     avio_wb32(pb, 0); /* Reserved */
1086
1087     if (version == 2) {
1088         avio_wb16(pb, 3);
1089         avio_wb16(pb, 16);
1090         avio_wb16(pb, 0xfffe);
1091         avio_wb16(pb, 0);
1092         avio_wb32(pb, 0x00010000);
1093         avio_wb32(pb, 72);
1094         avio_wb64(pb, av_double2int(track->par->sample_rate));
1095         avio_wb32(pb, track->par->channels);
1096         avio_wb32(pb, 0x7F000000);
1097         avio_wb32(pb, av_get_bits_per_sample(track->par->codec_id));
1098         avio_wb32(pb, mov_get_lpcm_flags(track->par->codec_id));
1099         avio_wb32(pb, track->sample_size);
1100         avio_wb32(pb, get_samples_per_packet(track));
1101     } else {
1102         if (track->mode == MODE_MOV) {
1103             avio_wb16(pb, track->par->channels);
1104             if (track->par->codec_id == AV_CODEC_ID_PCM_U8 ||
1105                 track->par->codec_id == AV_CODEC_ID_PCM_S8)
1106                 avio_wb16(pb, 8); /* bits per sample */
1107             else if (track->par->codec_id == AV_CODEC_ID_ADPCM_G726)
1108                 avio_wb16(pb, track->par->bits_per_coded_sample);
1109             else
1110                 avio_wb16(pb, 16);
1111             avio_wb16(pb, track->audio_vbr ? -2 : 0); /* compression ID */
1112         } else { /* reserved for mp4/3gp */
1113             if (track->par->codec_id == AV_CODEC_ID_FLAC ||
1114                 track->par->codec_id == AV_CODEC_ID_ALAC ||
1115                 track->par->codec_id == AV_CODEC_ID_OPUS) {
1116                 avio_wb16(pb, track->par->channels);
1117             } else {
1118                 avio_wb16(pb, 2);
1119             }
1120             if (track->par->codec_id == AV_CODEC_ID_FLAC ||
1121                 track->par->codec_id == AV_CODEC_ID_ALAC) {
1122                 avio_wb16(pb, track->par->bits_per_raw_sample);
1123             } else {
1124                 avio_wb16(pb, 16);
1125             }
1126             avio_wb16(pb, 0);
1127         }
1128
1129         avio_wb16(pb, 0); /* packet size (= 0) */
1130         if (track->par->codec_id == AV_CODEC_ID_OPUS)
1131             avio_wb16(pb, 48000);
1132         else if (track->par->codec_id == AV_CODEC_ID_TRUEHD)
1133             avio_wb32(pb, track->par->sample_rate);
1134         else
1135             avio_wb16(pb, track->par->sample_rate <= UINT16_MAX ?
1136                           track->par->sample_rate : 0);
1137
1138         if (track->par->codec_id != AV_CODEC_ID_TRUEHD)
1139             avio_wb16(pb, 0); /* Reserved */
1140     }
1141
1142     if (version == 1) { /* SoundDescription V1 extended info */
1143         if (mov_pcm_le_gt16(track->par->codec_id) ||
1144             mov_pcm_be_gt16(track->par->codec_id))
1145             avio_wb32(pb, 1); /*  must be 1 for  uncompressed formats */
1146         else
1147             avio_wb32(pb, track->par->frame_size); /* Samples per packet */
1148         avio_wb32(pb, track->sample_size / track->par->channels); /* Bytes per packet */
1149         avio_wb32(pb, track->sample_size); /* Bytes per frame */
1150         avio_wb32(pb, 2); /* Bytes per sample */
1151     }
1152
1153     if (track->mode == MODE_MOV &&
1154         (track->par->codec_id == AV_CODEC_ID_AAC           ||
1155          track->par->codec_id == AV_CODEC_ID_AC3           ||
1156          track->par->codec_id == AV_CODEC_ID_EAC3          ||
1157          track->par->codec_id == AV_CODEC_ID_AMR_NB        ||
1158          track->par->codec_id == AV_CODEC_ID_ALAC          ||
1159          track->par->codec_id == AV_CODEC_ID_ADPCM_MS      ||
1160          track->par->codec_id == AV_CODEC_ID_ADPCM_IMA_WAV ||
1161          track->par->codec_id == AV_CODEC_ID_QDM2          ||
1162          (mov_pcm_le_gt16(track->par->codec_id) && version==1) ||
1163          (mov_pcm_be_gt16(track->par->codec_id) && version==1)))
1164         ret = mov_write_wave_tag(s, pb, track);
1165     else if (track->tag == MKTAG('m','p','4','a'))
1166         ret = mov_write_esds_tag(pb, track);
1167     else if (track->par->codec_id == AV_CODEC_ID_AMR_NB)
1168         ret = mov_write_amr_tag(pb, track);
1169     else if (track->par->codec_id == AV_CODEC_ID_AC3)
1170         ret = mov_write_ac3_tag(s, pb, track);
1171     else if (track->par->codec_id == AV_CODEC_ID_EAC3)
1172         ret = mov_write_eac3_tag(s, pb, track);
1173     else if (track->par->codec_id == AV_CODEC_ID_ALAC)
1174         ret = mov_write_extradata_tag(pb, track);
1175     else if (track->par->codec_id == AV_CODEC_ID_WMAPRO)
1176         ret = mov_write_wfex_tag(s, pb, track);
1177     else if (track->par->codec_id == AV_CODEC_ID_FLAC)
1178         ret = mov_write_dfla_tag(pb, track);
1179     else if (track->par->codec_id == AV_CODEC_ID_OPUS)
1180         ret = mov_write_dops_tag(s, pb, track);
1181     else if (track->par->codec_id == AV_CODEC_ID_TRUEHD)
1182         ret = mov_write_dmlp_tag(s, pb, track);
1183     else if (track->vos_len > 0)
1184         ret = mov_write_glbl_tag(pb, track);
1185
1186     if (ret < 0)
1187         return ret;
1188
1189     if (track->mode == MODE_MOV && track->par->codec_type == AVMEDIA_TYPE_AUDIO
1190             && ((ret = mov_write_chan_tag(s, pb, track)) < 0)) {
1191         return ret;
1192     }
1193
1194     if (mov->encryption_scheme != MOV_ENC_NONE
1195             && ((ret = ff_mov_cenc_write_sinf_tag(track, pb, mov->encryption_kid)) < 0)) {
1196         return ret;
1197     }
1198
1199     ret = update_size(pb, pos);
1200     return ret;
1201 }
1202
1203 static int mov_write_d263_tag(AVIOContext *pb)
1204 {
1205     avio_wb32(pb, 0xf); /* size */
1206     ffio_wfourcc(pb, "d263");
1207     ffio_wfourcc(pb, "FFMP");
1208     avio_w8(pb, 0); /* decoder version */
1209     /* FIXME use AVCodecContext level/profile, when encoder will set values */
1210     avio_w8(pb, 0xa); /* level */
1211     avio_w8(pb, 0); /* profile */
1212     return 0xf;
1213 }
1214
1215 static int mov_write_av1c_tag(AVIOContext *pb, MOVTrack *track)
1216 {
1217     int64_t pos = avio_tell(pb);
1218
1219     avio_wb32(pb, 0);
1220     ffio_wfourcc(pb, "av1C");
1221     ff_isom_write_av1c(pb, track->vos_data, track->vos_len);
1222     return update_size(pb, pos);
1223 }
1224
1225 static int mov_write_avcc_tag(AVIOContext *pb, MOVTrack *track)
1226 {
1227     int64_t pos = avio_tell(pb);
1228
1229     avio_wb32(pb, 0);
1230     ffio_wfourcc(pb, "avcC");
1231     ff_isom_write_avcc(pb, track->vos_data, track->vos_len);
1232     return update_size(pb, pos);
1233 }
1234
1235 static int mov_write_vpcc_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
1236 {
1237     int64_t pos = avio_tell(pb);
1238
1239     avio_wb32(pb, 0);
1240     ffio_wfourcc(pb, "vpcC");
1241     avio_w8(pb, 1); /* version */
1242     avio_wb24(pb, 0); /* flags */
1243     ff_isom_write_vpcc(s, pb, track->par);
1244     return update_size(pb, pos);
1245 }
1246
1247 static int mov_write_hvcc_tag(AVIOContext *pb, MOVTrack *track)
1248 {
1249     int64_t pos = avio_tell(pb);
1250
1251     avio_wb32(pb, 0);
1252     ffio_wfourcc(pb, "hvcC");
1253     if (track->tag == MKTAG('h','v','c','1'))
1254         ff_isom_write_hvcc(pb, track->vos_data, track->vos_len, 1);
1255     else
1256         ff_isom_write_hvcc(pb, track->vos_data, track->vos_len, 0);
1257     return update_size(pb, pos);
1258 }
1259
1260 /* also used by all avid codecs (dv, imx, meridien) and their variants */
1261 static int mov_write_avid_tag(AVIOContext *pb, MOVTrack *track)
1262 {
1263     int i;
1264     int interlaced;
1265     int cid;
1266     int display_width = track->par->width;
1267
1268     if (track->vos_data && track->vos_len > 0x29) {
1269         if (ff_dnxhd_parse_header_prefix(track->vos_data) != 0) {
1270             /* looks like a DNxHD bit stream */
1271             interlaced = (track->vos_data[5] & 2);
1272             cid = AV_RB32(track->vos_data + 0x28);
1273         } else {
1274             av_log(NULL, AV_LOG_WARNING, "Could not locate DNxHD bit stream in vos_data\n");
1275             return 0;
1276         }
1277     } else {
1278         av_log(NULL, AV_LOG_WARNING, "Could not locate DNxHD bit stream, vos_data too small\n");
1279         return 0;
1280     }
1281
1282     avio_wb32(pb, 24); /* size */
1283     ffio_wfourcc(pb, "ACLR");
1284     ffio_wfourcc(pb, "ACLR");
1285     ffio_wfourcc(pb, "0001");
1286     if (track->par->color_range == AVCOL_RANGE_MPEG || /* Legal range (16-235) */
1287         track->par->color_range == AVCOL_RANGE_UNSPECIFIED) {
1288         avio_wb32(pb, 1); /* Corresponds to 709 in official encoder */
1289     } else { /* Full range (0-255) */
1290         avio_wb32(pb, 2); /* Corresponds to RGB in official encoder */
1291     }
1292     avio_wb32(pb, 0); /* unknown */
1293
1294     if (track->tag == MKTAG('A','V','d','h')) {
1295         avio_wb32(pb, 32);
1296         ffio_wfourcc(pb, "ADHR");
1297         ffio_wfourcc(pb, "0001");
1298         avio_wb32(pb, cid);
1299         avio_wb32(pb, 0); /* unknown */
1300         avio_wb32(pb, 1); /* unknown */
1301         avio_wb32(pb, 0); /* unknown */
1302         avio_wb32(pb, 0); /* unknown */
1303         return 0;
1304     }
1305
1306     avio_wb32(pb, 24); /* size */
1307     ffio_wfourcc(pb, "APRG");
1308     ffio_wfourcc(pb, "APRG");
1309     ffio_wfourcc(pb, "0001");
1310     avio_wb32(pb, 1); /* unknown */
1311     avio_wb32(pb, 0); /* unknown */
1312
1313     avio_wb32(pb, 120); /* size */
1314     ffio_wfourcc(pb, "ARES");
1315     ffio_wfourcc(pb, "ARES");
1316     ffio_wfourcc(pb, "0001");
1317     avio_wb32(pb, cid); /* dnxhd cid, some id ? */
1318     if (   track->par->sample_aspect_ratio.num > 0
1319         && track->par->sample_aspect_ratio.den > 0)
1320         display_width = display_width * track->par->sample_aspect_ratio.num / track->par->sample_aspect_ratio.den;
1321     avio_wb32(pb, display_width);
1322     /* values below are based on samples created with quicktime and avid codecs */
1323     if (interlaced) {
1324         avio_wb32(pb, track->par->height / 2);
1325         avio_wb32(pb, 2); /* unknown */
1326         avio_wb32(pb, 0); /* unknown */
1327         avio_wb32(pb, 4); /* unknown */
1328     } else {
1329         avio_wb32(pb, track->par->height);
1330         avio_wb32(pb, 1); /* unknown */
1331         avio_wb32(pb, 0); /* unknown */
1332         if (track->par->height == 1080)
1333             avio_wb32(pb, 5); /* unknown */
1334         else
1335             avio_wb32(pb, 6); /* unknown */
1336     }
1337     /* padding */
1338     for (i = 0; i < 10; i++)
1339         avio_wb64(pb, 0);
1340
1341     return 0;
1342 }
1343
1344 static int mov_write_dpxe_tag(AVIOContext *pb, MOVTrack *track)
1345 {
1346     avio_wb32(pb, 12);
1347     ffio_wfourcc(pb, "DpxE");
1348     if (track->par->extradata_size >= 12 &&
1349         !memcmp(&track->par->extradata[4], "DpxE", 4)) {
1350         avio_wb32(pb, track->par->extradata[11]);
1351     } else {
1352         avio_wb32(pb, 1);
1353     }
1354     return 0;
1355 }
1356
1357 static int mov_get_dv_codec_tag(AVFormatContext *s, MOVTrack *track)
1358 {
1359     int tag;
1360
1361     if (track->par->width == 720) { /* SD */
1362         if (track->par->height == 480) { /* NTSC */
1363             if  (track->par->format == AV_PIX_FMT_YUV422P) tag = MKTAG('d','v','5','n');
1364             else                                            tag = MKTAG('d','v','c',' ');
1365        }else if (track->par->format == AV_PIX_FMT_YUV422P) tag = MKTAG('d','v','5','p');
1366         else if (track->par->format == AV_PIX_FMT_YUV420P) tag = MKTAG('d','v','c','p');
1367         else                                                tag = MKTAG('d','v','p','p');
1368     } else if (track->par->height == 720) { /* HD 720 line */
1369         if  (track->st->time_base.den == 50)                tag = MKTAG('d','v','h','q');
1370         else                                                tag = MKTAG('d','v','h','p');
1371     } else if (track->par->height == 1080) { /* HD 1080 line */
1372         if  (track->st->time_base.den == 25)                tag = MKTAG('d','v','h','5');
1373         else                                                tag = MKTAG('d','v','h','6');
1374     } else {
1375         av_log(s, AV_LOG_ERROR, "unsupported height for dv codec\n");
1376         return 0;
1377     }
1378
1379     return tag;
1380 }
1381
1382 static AVRational find_fps(AVFormatContext *s, AVStream *st)
1383 {
1384     AVRational rate = st->avg_frame_rate;
1385
1386 #if FF_API_LAVF_AVCTX
1387     FF_DISABLE_DEPRECATION_WARNINGS
1388     rate = av_inv_q(st->codec->time_base);
1389     if (av_timecode_check_frame_rate(rate) < 0) {
1390         av_log(s, AV_LOG_DEBUG, "timecode: tbc=%d/%d invalid, fallback on %d/%d\n",
1391                rate.num, rate.den, st->avg_frame_rate.num, st->avg_frame_rate.den);
1392         rate = st->avg_frame_rate;
1393     }
1394     FF_ENABLE_DEPRECATION_WARNINGS
1395 #endif
1396
1397     return rate;
1398 }
1399
1400 static int defined_frame_rate(AVFormatContext *s, AVStream *st)
1401 {
1402     AVRational rational_framerate = find_fps(s, st);
1403     int rate = 0;
1404     if (rational_framerate.den != 0)
1405         rate = av_q2d(rational_framerate);
1406     return rate;
1407 }
1408
1409 static int mov_get_mpeg2_xdcam_codec_tag(AVFormatContext *s, MOVTrack *track)
1410 {
1411     int tag = track->par->codec_tag;
1412     int interlaced = track->par->field_order > AV_FIELD_PROGRESSIVE;
1413     AVStream *st = track->st;
1414     int rate = defined_frame_rate(s, st);
1415
1416     if (!tag)
1417         tag = MKTAG('m', '2', 'v', '1'); //fallback tag
1418
1419     if (track->par->format == AV_PIX_FMT_YUV420P) {
1420         if (track->par->width == 1280 && track->par->height == 720) {
1421             if (!interlaced) {
1422                 if      (rate == 24) tag = MKTAG('x','d','v','4');
1423                 else if (rate == 25) tag = MKTAG('x','d','v','5');
1424                 else if (rate == 30) tag = MKTAG('x','d','v','1');
1425                 else if (rate == 50) tag = MKTAG('x','d','v','a');
1426                 else if (rate == 60) tag = MKTAG('x','d','v','9');
1427             }
1428         } else if (track->par->width == 1440 && track->par->height == 1080) {
1429             if (!interlaced) {
1430                 if      (rate == 24) tag = MKTAG('x','d','v','6');
1431                 else if (rate == 25) tag = MKTAG('x','d','v','7');
1432                 else if (rate == 30) tag = MKTAG('x','d','v','8');
1433             } else {
1434                 if      (rate == 25) tag = MKTAG('x','d','v','3');
1435                 else if (rate == 30) tag = MKTAG('x','d','v','2');
1436             }
1437         } else if (track->par->width == 1920 && track->par->height == 1080) {
1438             if (!interlaced) {
1439                 if      (rate == 24) tag = MKTAG('x','d','v','d');
1440                 else if (rate == 25) tag = MKTAG('x','d','v','e');
1441                 else if (rate == 30) tag = MKTAG('x','d','v','f');
1442             } else {
1443                 if      (rate == 25) tag = MKTAG('x','d','v','c');
1444                 else if (rate == 30) tag = MKTAG('x','d','v','b');
1445             }
1446         }
1447     } else if (track->par->format == AV_PIX_FMT_YUV422P) {
1448         if (track->par->width == 1280 && track->par->height == 720) {
1449             if (!interlaced) {
1450                 if      (rate == 24) tag = MKTAG('x','d','5','4');
1451                 else if (rate == 25) tag = MKTAG('x','d','5','5');
1452                 else if (rate == 30) tag = MKTAG('x','d','5','1');
1453                 else if (rate == 50) tag = MKTAG('x','d','5','a');
1454                 else if (rate == 60) tag = MKTAG('x','d','5','9');
1455             }
1456         } else if (track->par->width == 1920 && track->par->height == 1080) {
1457             if (!interlaced) {
1458                 if      (rate == 24) tag = MKTAG('x','d','5','d');
1459                 else if (rate == 25) tag = MKTAG('x','d','5','e');
1460                 else if (rate == 30) tag = MKTAG('x','d','5','f');
1461             } else {
1462                 if      (rate == 25) tag = MKTAG('x','d','5','c');
1463                 else if (rate == 30) tag = MKTAG('x','d','5','b');
1464             }
1465         }
1466     }
1467
1468     return tag;
1469 }
1470
1471 static int mov_get_h264_codec_tag(AVFormatContext *s, MOVTrack *track)
1472 {
1473     int tag = track->par->codec_tag;
1474     int interlaced = track->par->field_order > AV_FIELD_PROGRESSIVE;
1475     AVStream *st = track->st;
1476     int rate = defined_frame_rate(s, st);
1477
1478     if (!tag)
1479         tag = MKTAG('a', 'v', 'c', 'i'); //fallback tag
1480
1481     if (track->par->format == AV_PIX_FMT_YUV420P10) {
1482         if (track->par->width == 960 && track->par->height == 720) {
1483             if (!interlaced) {
1484                 if      (rate == 24) tag = MKTAG('a','i','5','p');
1485                 else if (rate == 25) tag = MKTAG('a','i','5','q');
1486                 else if (rate == 30) tag = MKTAG('a','i','5','p');
1487                 else if (rate == 50) tag = MKTAG('a','i','5','q');
1488                 else if (rate == 60) tag = MKTAG('a','i','5','p');
1489             }
1490         } else if (track->par->width == 1440 && track->par->height == 1080) {
1491             if (!interlaced) {
1492                 if      (rate == 24) tag = MKTAG('a','i','5','3');
1493                 else if (rate == 25) tag = MKTAG('a','i','5','2');
1494                 else if (rate == 30) tag = MKTAG('a','i','5','3');
1495             } else {
1496                 if      (rate == 50) tag = MKTAG('a','i','5','5');
1497                 else if (rate == 60) tag = MKTAG('a','i','5','6');
1498             }
1499         }
1500     } else if (track->par->format == AV_PIX_FMT_YUV422P10) {
1501         if (track->par->width == 1280 && track->par->height == 720) {
1502             if (!interlaced) {
1503                 if      (rate == 24) tag = MKTAG('a','i','1','p');
1504                 else if (rate == 25) tag = MKTAG('a','i','1','q');
1505                 else if (rate == 30) tag = MKTAG('a','i','1','p');
1506                 else if (rate == 50) tag = MKTAG('a','i','1','q');
1507                 else if (rate == 60) tag = MKTAG('a','i','1','p');
1508             }
1509         } else if (track->par->width == 1920 && track->par->height == 1080) {
1510             if (!interlaced) {
1511                 if      (rate == 24) tag = MKTAG('a','i','1','3');
1512                 else if (rate == 25) tag = MKTAG('a','i','1','2');
1513                 else if (rate == 30) tag = MKTAG('a','i','1','3');
1514             } else {
1515                 if      (rate == 25) tag = MKTAG('a','i','1','5');
1516                 else if (rate == 50) tag = MKTAG('a','i','1','5');
1517                 else if (rate == 60) tag = MKTAG('a','i','1','6');
1518             }
1519         } else if (   track->par->width == 4096 && track->par->height == 2160
1520                    || track->par->width == 3840 && track->par->height == 2160
1521                    || track->par->width == 2048 && track->par->height == 1080) {
1522             tag = MKTAG('a','i','v','x');
1523         }
1524     }
1525
1526     return tag;
1527 }
1528
1529 static const struct {
1530     enum AVPixelFormat pix_fmt;
1531     uint32_t tag;
1532     unsigned bps;
1533 } mov_pix_fmt_tags[] = {
1534     { AV_PIX_FMT_YUYV422, MKTAG('y','u','v','2'),  0 },
1535     { AV_PIX_FMT_YUYV422, MKTAG('y','u','v','s'),  0 },
1536     { AV_PIX_FMT_UYVY422, MKTAG('2','v','u','y'),  0 },
1537     { AV_PIX_FMT_RGB555BE,MKTAG('r','a','w',' '), 16 },
1538     { AV_PIX_FMT_RGB555LE,MKTAG('L','5','5','5'), 16 },
1539     { AV_PIX_FMT_RGB565LE,MKTAG('L','5','6','5'), 16 },
1540     { AV_PIX_FMT_RGB565BE,MKTAG('B','5','6','5'), 16 },
1541     { AV_PIX_FMT_GRAY16BE,MKTAG('b','1','6','g'), 16 },
1542     { AV_PIX_FMT_RGB24,   MKTAG('r','a','w',' '), 24 },
1543     { AV_PIX_FMT_BGR24,   MKTAG('2','4','B','G'), 24 },
1544     { AV_PIX_FMT_ARGB,    MKTAG('r','a','w',' '), 32 },
1545     { AV_PIX_FMT_BGRA,    MKTAG('B','G','R','A'), 32 },
1546     { AV_PIX_FMT_RGBA,    MKTAG('R','G','B','A'), 32 },
1547     { AV_PIX_FMT_ABGR,    MKTAG('A','B','G','R'), 32 },
1548     { AV_PIX_FMT_RGB48BE, MKTAG('b','4','8','r'), 48 },
1549 };
1550
1551 static int mov_get_dnxhd_codec_tag(AVFormatContext *s, MOVTrack *track)
1552 {
1553   int tag = MKTAG('A','V','d','n');
1554   if (track->par->profile != FF_PROFILE_UNKNOWN &&
1555       track->par->profile != FF_PROFILE_DNXHD)
1556       tag = MKTAG('A','V','d','h');
1557   return tag;
1558 }
1559
1560 static int mov_get_rawvideo_codec_tag(AVFormatContext *s, MOVTrack *track)
1561 {
1562     int tag = track->par->codec_tag;
1563     int i;
1564     enum AVPixelFormat pix_fmt;
1565
1566     for (i = 0; i < FF_ARRAY_ELEMS(mov_pix_fmt_tags); i++) {
1567         if (track->par->format == mov_pix_fmt_tags[i].pix_fmt) {
1568             tag = mov_pix_fmt_tags[i].tag;
1569             track->par->bits_per_coded_sample = mov_pix_fmt_tags[i].bps;
1570             if (track->par->codec_tag == mov_pix_fmt_tags[i].tag)
1571                 break;
1572         }
1573     }
1574
1575     pix_fmt = avpriv_find_pix_fmt(avpriv_pix_fmt_bps_mov,
1576                                   track->par->bits_per_coded_sample);
1577     if (tag == MKTAG('r','a','w',' ') &&
1578         track->par->format != pix_fmt &&
1579         track->par->format != AV_PIX_FMT_GRAY8 &&
1580         track->par->format != AV_PIX_FMT_NONE)
1581         av_log(s, AV_LOG_ERROR, "%s rawvideo cannot be written to mov, output file will be unreadable\n",
1582                av_get_pix_fmt_name(track->par->format));
1583     return tag;
1584 }
1585
1586 static unsigned int mov_get_codec_tag(AVFormatContext *s, MOVTrack *track)
1587 {
1588     unsigned int tag = track->par->codec_tag;
1589
1590     if (!tag || (s->strict_std_compliance >= FF_COMPLIANCE_NORMAL &&
1591                  (track->par->codec_id == AV_CODEC_ID_DVVIDEO ||
1592                   track->par->codec_id == AV_CODEC_ID_RAWVIDEO ||
1593                   track->par->codec_id == AV_CODEC_ID_H263 ||
1594                   track->par->codec_id == AV_CODEC_ID_H264 ||
1595                   track->par->codec_id == AV_CODEC_ID_DNXHD ||
1596                   track->par->codec_id == AV_CODEC_ID_MPEG2VIDEO ||
1597                   av_get_bits_per_sample(track->par->codec_id)))) { // pcm audio
1598         if (track->par->codec_id == AV_CODEC_ID_DVVIDEO)
1599             tag = mov_get_dv_codec_tag(s, track);
1600         else if (track->par->codec_id == AV_CODEC_ID_RAWVIDEO)
1601             tag = mov_get_rawvideo_codec_tag(s, track);
1602         else if (track->par->codec_id == AV_CODEC_ID_MPEG2VIDEO)
1603             tag = mov_get_mpeg2_xdcam_codec_tag(s, track);
1604         else if (track->par->codec_id == AV_CODEC_ID_H264)
1605             tag = mov_get_h264_codec_tag(s, track);
1606         else if (track->par->codec_id == AV_CODEC_ID_DNXHD)
1607             tag = mov_get_dnxhd_codec_tag(s, track);
1608         else if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
1609             tag = ff_codec_get_tag(ff_codec_movvideo_tags, track->par->codec_id);
1610             if (!tag) { // if no mac fcc found, try with Microsoft tags
1611                 tag = ff_codec_get_tag(ff_codec_bmp_tags, track->par->codec_id);
1612                 if (tag)
1613                     av_log(s, AV_LOG_WARNING, "Using MS style video codec tag, "
1614                            "the file may be unplayable!\n");
1615             }
1616         } else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO) {
1617             tag = ff_codec_get_tag(ff_codec_movaudio_tags, track->par->codec_id);
1618             if (!tag) { // if no mac fcc found, try with Microsoft tags
1619                 int ms_tag = ff_codec_get_tag(ff_codec_wav_tags, track->par->codec_id);
1620                 if (ms_tag) {
1621                     tag = MKTAG('m', 's', ((ms_tag >> 8) & 0xff), (ms_tag & 0xff));
1622                     av_log(s, AV_LOG_WARNING, "Using MS style audio codec tag, "
1623                            "the file may be unplayable!\n");
1624                 }
1625             }
1626         } else if (track->par->codec_type == AVMEDIA_TYPE_SUBTITLE)
1627             tag = ff_codec_get_tag(ff_codec_movsubtitle_tags, track->par->codec_id);
1628     }
1629
1630     return tag;
1631 }
1632
1633 static const AVCodecTag codec_cover_image_tags[] = {
1634     { AV_CODEC_ID_MJPEG,  0xD },
1635     { AV_CODEC_ID_PNG,    0xE },
1636     { AV_CODEC_ID_BMP,    0x1B },
1637     { AV_CODEC_ID_NONE, 0 },
1638 };
1639
1640 static unsigned int validate_codec_tag(const AVCodecTag *const *tags,
1641                                        unsigned int tag, int codec_id)
1642 {
1643     int i;
1644
1645     /**
1646      * Check that tag + id is in the table
1647      */
1648     for (i = 0; tags && tags[i]; i++) {
1649         const AVCodecTag *codec_tags = tags[i];
1650         while (codec_tags->id != AV_CODEC_ID_NONE) {
1651             if (avpriv_toupper4(codec_tags->tag) == avpriv_toupper4(tag) &&
1652                 codec_tags->id == codec_id)
1653                 return codec_tags->tag;
1654             codec_tags++;
1655         }
1656     }
1657     return 0;
1658 }
1659
1660 static unsigned int mov_find_codec_tag(AVFormatContext *s, MOVTrack *track)
1661 {
1662     if (is_cover_image(track->st))
1663         return ff_codec_get_tag(codec_cover_image_tags, track->par->codec_id);
1664
1665     if (track->mode == MODE_IPOD)
1666         if (!av_match_ext(s->url, "m4a") &&
1667             !av_match_ext(s->url, "m4v") &&
1668             !av_match_ext(s->url, "m4b"))
1669             av_log(s, AV_LOG_WARNING, "Warning, extension is not .m4a nor .m4v "
1670                    "Quicktime/Ipod might not play the file\n");
1671
1672     if (track->mode == MODE_MOV) {
1673         return mov_get_codec_tag(s, track);
1674     } else
1675         return validate_codec_tag(s->oformat->codec_tag, track->par->codec_tag,
1676                                   track->par->codec_id);
1677 }
1678
1679 /** Write uuid atom.
1680  * Needed to make file play in iPods running newest firmware
1681  * goes after avcC atom in moov.trak.mdia.minf.stbl.stsd.avc1
1682  */
1683 static int mov_write_uuid_tag_ipod(AVIOContext *pb)
1684 {
1685     avio_wb32(pb, 28);
1686     ffio_wfourcc(pb, "uuid");
1687     avio_wb32(pb, 0x6b6840f2);
1688     avio_wb32(pb, 0x5f244fc5);
1689     avio_wb32(pb, 0xba39a51b);
1690     avio_wb32(pb, 0xcf0323f3);
1691     avio_wb32(pb, 0x0);
1692     return 28;
1693 }
1694
1695 static const uint16_t fiel_data[] = {
1696     0x0000, 0x0100, 0x0201, 0x0206, 0x0209, 0x020e
1697 };
1698
1699 static int mov_write_fiel_tag(AVIOContext *pb, MOVTrack *track, int field_order)
1700 {
1701     unsigned mov_field_order = 0;
1702     if (field_order < FF_ARRAY_ELEMS(fiel_data))
1703         mov_field_order = fiel_data[field_order];
1704     else
1705         return 0;
1706     avio_wb32(pb, 10);
1707     ffio_wfourcc(pb, "fiel");
1708     avio_wb16(pb, mov_field_order);
1709     return 10;
1710 }
1711
1712 static int mov_write_subtitle_tag(AVIOContext *pb, MOVTrack *track)
1713 {
1714     int64_t pos = avio_tell(pb);
1715     avio_wb32(pb, 0);    /* size */
1716     avio_wl32(pb, track->tag); // store it byteswapped
1717     avio_wb32(pb, 0);    /* Reserved */
1718     avio_wb16(pb, 0);    /* Reserved */
1719     avio_wb16(pb, 1);    /* Data-reference index */
1720
1721     if (track->par->codec_id == AV_CODEC_ID_DVD_SUBTITLE)
1722         mov_write_esds_tag(pb, track);
1723     else if (track->par->extradata_size)
1724         avio_write(pb, track->par->extradata, track->par->extradata_size);
1725
1726     return update_size(pb, pos);
1727 }
1728
1729 static int mov_write_st3d_tag(AVFormatContext *s, AVIOContext *pb, AVStereo3D *stereo_3d)
1730 {
1731     int8_t stereo_mode;
1732
1733     if (stereo_3d->flags != 0) {
1734         av_log(s, AV_LOG_WARNING, "Unsupported stereo_3d flags %x. st3d not written.\n", stereo_3d->flags);
1735         return 0;
1736     }
1737
1738     switch (stereo_3d->type) {
1739     case AV_STEREO3D_2D:
1740         stereo_mode = 0;
1741         break;
1742     case AV_STEREO3D_TOPBOTTOM:
1743         stereo_mode = 1;
1744         break;
1745     case AV_STEREO3D_SIDEBYSIDE:
1746         stereo_mode = 2;
1747         break;
1748     default:
1749         av_log(s, AV_LOG_WARNING, "Unsupported stereo_3d type %s. st3d not written.\n", av_stereo3d_type_name(stereo_3d->type));
1750         return 0;
1751     }
1752     avio_wb32(pb, 13); /* size */
1753     ffio_wfourcc(pb, "st3d");
1754     avio_wb32(pb, 0); /* version = 0 & flags = 0 */
1755     avio_w8(pb, stereo_mode);
1756     return 13;
1757 }
1758
1759 static int mov_write_sv3d_tag(AVFormatContext *s, AVIOContext *pb, AVSphericalMapping *spherical_mapping)
1760 {
1761     int64_t sv3d_pos, svhd_pos, proj_pos;
1762     const char* metadata_source = s->flags & AVFMT_FLAG_BITEXACT ? "Lavf" : LIBAVFORMAT_IDENT;
1763
1764     if (spherical_mapping->projection != AV_SPHERICAL_EQUIRECTANGULAR &&
1765         spherical_mapping->projection != AV_SPHERICAL_EQUIRECTANGULAR_TILE &&
1766         spherical_mapping->projection != AV_SPHERICAL_CUBEMAP) {
1767         av_log(s, AV_LOG_WARNING, "Unsupported projection %d. sv3d not written.\n", spherical_mapping->projection);
1768         return 0;
1769     }
1770
1771     sv3d_pos = avio_tell(pb);
1772     avio_wb32(pb, 0);  /* size */
1773     ffio_wfourcc(pb, "sv3d");
1774
1775     svhd_pos = avio_tell(pb);
1776     avio_wb32(pb, 0);  /* size */
1777     ffio_wfourcc(pb, "svhd");
1778     avio_wb32(pb, 0); /* version = 0 & flags = 0 */
1779     avio_put_str(pb, metadata_source);
1780     update_size(pb, svhd_pos);
1781
1782     proj_pos = avio_tell(pb);
1783     avio_wb32(pb, 0); /* size */
1784     ffio_wfourcc(pb, "proj");
1785
1786     avio_wb32(pb, 24); /* size */
1787     ffio_wfourcc(pb, "prhd");
1788     avio_wb32(pb, 0); /* version = 0 & flags = 0 */
1789     avio_wb32(pb, spherical_mapping->yaw);
1790     avio_wb32(pb, spherical_mapping->pitch);
1791     avio_wb32(pb, spherical_mapping->roll);
1792
1793     switch (spherical_mapping->projection) {
1794     case AV_SPHERICAL_EQUIRECTANGULAR:
1795     case AV_SPHERICAL_EQUIRECTANGULAR_TILE:
1796         avio_wb32(pb, 28);    /* size */
1797         ffio_wfourcc(pb, "equi");
1798         avio_wb32(pb, 0); /* version = 0 & flags = 0 */
1799         avio_wb32(pb, spherical_mapping->bound_top);
1800         avio_wb32(pb, spherical_mapping->bound_bottom);
1801         avio_wb32(pb, spherical_mapping->bound_left);
1802         avio_wb32(pb, spherical_mapping->bound_right);
1803         break;
1804     case AV_SPHERICAL_CUBEMAP:
1805         avio_wb32(pb, 20);    /* size */
1806         ffio_wfourcc(pb, "cbmp");
1807         avio_wb32(pb, 0); /* version = 0 & flags = 0 */
1808         avio_wb32(pb, 0); /* layout */
1809         avio_wb32(pb, spherical_mapping->padding); /* padding */
1810         break;
1811     }
1812     update_size(pb, proj_pos);
1813
1814     return update_size(pb, sv3d_pos);
1815 }
1816
1817 static int mov_write_clap_tag(AVIOContext *pb, MOVTrack *track)
1818 {
1819     avio_wb32(pb, 40);
1820     ffio_wfourcc(pb, "clap");
1821     avio_wb32(pb, track->par->width); /* apertureWidth_N */
1822     avio_wb32(pb, 1); /* apertureWidth_D (= 1) */
1823     avio_wb32(pb, track->height); /* apertureHeight_N */
1824     avio_wb32(pb, 1); /* apertureHeight_D (= 1) */
1825     avio_wb32(pb, 0); /* horizOff_N (= 0) */
1826     avio_wb32(pb, 1); /* horizOff_D (= 1) */
1827     avio_wb32(pb, 0); /* vertOff_N (= 0) */
1828     avio_wb32(pb, 1); /* vertOff_D (= 1) */
1829     return 40;
1830 }
1831
1832 static int mov_write_pasp_tag(AVIOContext *pb, MOVTrack *track)
1833 {
1834     AVRational sar;
1835     av_reduce(&sar.num, &sar.den, track->par->sample_aspect_ratio.num,
1836               track->par->sample_aspect_ratio.den, INT_MAX);
1837
1838     avio_wb32(pb, 16);
1839     ffio_wfourcc(pb, "pasp");
1840     avio_wb32(pb, sar.num);
1841     avio_wb32(pb, sar.den);
1842     return 16;
1843 }
1844
1845 static int mov_write_gama_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track, double gamma)
1846 {
1847     uint32_t gama = 0;
1848     if (gamma <= 0.0) {
1849         gamma = avpriv_get_gamma_from_trc(track->par->color_trc);
1850     }
1851     av_log(s, AV_LOG_DEBUG, "gamma value %g\n", gamma);
1852
1853     if (gamma > 1e-6) {
1854         gama = (uint32_t)lrint((double)(1<<16) * gamma);
1855         av_log(s, AV_LOG_DEBUG, "writing gama value %"PRId32"\n", gama);
1856
1857         av_assert0(track->mode == MODE_MOV);
1858         avio_wb32(pb, 12);
1859         ffio_wfourcc(pb, "gama");
1860         avio_wb32(pb, gama);
1861         return 12;
1862     } else {
1863         av_log(s, AV_LOG_WARNING, "gamma value unknown, unable to write gama atom\n");
1864     }
1865     return 0;
1866 }
1867
1868 static int mov_write_colr_tag(AVIOContext *pb, MOVTrack *track)
1869 {
1870     int64_t pos = avio_tell(pb);
1871
1872     // Ref (MOV): https://developer.apple.com/library/mac/technotes/tn2162/_index.html#//apple_ref/doc/uid/DTS40013070-CH1-TNTAG9
1873     // Ref (MP4): ISO/IEC 14496-12:2012
1874
1875     if (track->par->color_primaries == AVCOL_PRI_UNSPECIFIED &&
1876         track->par->color_trc == AVCOL_TRC_UNSPECIFIED &&
1877         track->par->color_space == AVCOL_SPC_UNSPECIFIED) {
1878         if ((track->par->width >= 1920 && track->par->height >= 1080)
1879           || (track->par->width == 1280 && track->par->height == 720)) {
1880             av_log(NULL, AV_LOG_WARNING, "color primaries unspecified, assuming bt709\n");
1881             track->par->color_primaries = AVCOL_PRI_BT709;
1882         } else if (track->par->width == 720 && track->height == 576) {
1883             av_log(NULL, AV_LOG_WARNING, "color primaries unspecified, assuming bt470bg\n");
1884             track->par->color_primaries = AVCOL_PRI_BT470BG;
1885         } else if (track->par->width == 720 &&
1886                    (track->height == 486 || track->height == 480)) {
1887             av_log(NULL, AV_LOG_WARNING, "color primaries unspecified, assuming smpte170\n");
1888             track->par->color_primaries = AVCOL_PRI_SMPTE170M;
1889         } else {
1890             av_log(NULL, AV_LOG_WARNING, "color primaries unspecified, unable to assume anything\n");
1891         }
1892         switch (track->par->color_primaries) {
1893         case AVCOL_PRI_BT709:
1894             track->par->color_trc = AVCOL_TRC_BT709;
1895             track->par->color_space = AVCOL_SPC_BT709;
1896             break;
1897         case AVCOL_PRI_SMPTE170M:
1898         case AVCOL_PRI_BT470BG:
1899             track->par->color_trc = AVCOL_TRC_BT709;
1900             track->par->color_space = AVCOL_SPC_SMPTE170M;
1901             break;
1902         }
1903     }
1904
1905     /* We should only ever be called by MOV or MP4. */
1906     av_assert0(track->mode == MODE_MOV || track->mode == MODE_MP4);
1907
1908     avio_wb32(pb, 0); /* size */
1909     ffio_wfourcc(pb, "colr");
1910     if (track->mode == MODE_MP4)
1911         ffio_wfourcc(pb, "nclx");
1912     else
1913         ffio_wfourcc(pb, "nclc");
1914     switch (track->par->color_primaries) {
1915     case AVCOL_PRI_BT709:     avio_wb16(pb, 1); break;
1916     case AVCOL_PRI_BT470BG:   avio_wb16(pb, 5); break;
1917     case AVCOL_PRI_SMPTE170M:
1918     case AVCOL_PRI_SMPTE240M: avio_wb16(pb, 6); break;
1919     case AVCOL_PRI_BT2020:    avio_wb16(pb, 9); break;
1920     case AVCOL_PRI_SMPTE431:  avio_wb16(pb, 11); break;
1921     case AVCOL_PRI_SMPTE432:  avio_wb16(pb, 12); break;
1922     default:                  avio_wb16(pb, 2);
1923     }
1924     switch (track->par->color_trc) {
1925     case AVCOL_TRC_BT709:        avio_wb16(pb, 1); break;
1926     case AVCOL_TRC_SMPTE170M:    avio_wb16(pb, 1); break; // remapped
1927     case AVCOL_TRC_SMPTE240M:    avio_wb16(pb, 7); break;
1928     case AVCOL_TRC_SMPTEST2084:  avio_wb16(pb, 16); break;
1929     case AVCOL_TRC_SMPTE428:     avio_wb16(pb, 17); break;
1930     case AVCOL_TRC_ARIB_STD_B67: avio_wb16(pb, 18); break;
1931     default:                     avio_wb16(pb, 2);
1932     }
1933     switch (track->par->color_space) {
1934     case AVCOL_SPC_BT709:      avio_wb16(pb, 1); break;
1935     case AVCOL_SPC_BT470BG:
1936     case AVCOL_SPC_SMPTE170M:  avio_wb16(pb, 6); break;
1937     case AVCOL_SPC_SMPTE240M:  avio_wb16(pb, 7); break;
1938     case AVCOL_SPC_BT2020_NCL: avio_wb16(pb, 9); break;
1939     default:                   avio_wb16(pb, 2);
1940     }
1941
1942     if (track->mode == MODE_MP4) {
1943         int full_range = track->par->color_range == AVCOL_RANGE_JPEG;
1944         avio_w8(pb, full_range << 7);
1945     }
1946
1947     return update_size(pb, pos);
1948 }
1949
1950 static void find_compressor(char * compressor_name, int len, MOVTrack *track)
1951 {
1952     AVDictionaryEntry *encoder;
1953     int xdcam_res =  (track->par->width == 1280 && track->par->height == 720)
1954                   || (track->par->width == 1440 && track->par->height == 1080)
1955                   || (track->par->width == 1920 && track->par->height == 1080);
1956
1957     if (track->mode == MODE_MOV &&
1958         (encoder = av_dict_get(track->st->metadata, "encoder", NULL, 0))) {
1959         av_strlcpy(compressor_name, encoder->value, 32);
1960     } else if (track->par->codec_id == AV_CODEC_ID_MPEG2VIDEO && xdcam_res) {
1961         int interlaced = track->par->field_order > AV_FIELD_PROGRESSIVE;
1962         AVStream *st = track->st;
1963         int rate = defined_frame_rate(NULL, st);
1964         av_strlcatf(compressor_name, len, "XDCAM");
1965         if (track->par->format == AV_PIX_FMT_YUV422P) {
1966             av_strlcatf(compressor_name, len, " HD422");
1967         } else if(track->par->width == 1440) {
1968             av_strlcatf(compressor_name, len, " HD");
1969         } else
1970             av_strlcatf(compressor_name, len, " EX");
1971
1972         av_strlcatf(compressor_name, len, " %d%c", track->par->height, interlaced ? 'i' : 'p');
1973
1974         av_strlcatf(compressor_name, len, "%d", rate * (interlaced + 1));
1975     }
1976 }
1977
1978 static int mov_write_video_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext *mov, MOVTrack *track)
1979 {
1980     int64_t pos = avio_tell(pb);
1981     char compressor_name[32] = { 0 };
1982     int avid = 0;
1983
1984     int uncompressed_ycbcr = ((track->par->codec_id == AV_CODEC_ID_RAWVIDEO && track->par->format == AV_PIX_FMT_UYVY422)
1985                            || (track->par->codec_id == AV_CODEC_ID_RAWVIDEO && track->par->format == AV_PIX_FMT_YUYV422)
1986                            ||  track->par->codec_id == AV_CODEC_ID_V308
1987                            ||  track->par->codec_id == AV_CODEC_ID_V408
1988                            ||  track->par->codec_id == AV_CODEC_ID_V410
1989                            ||  track->par->codec_id == AV_CODEC_ID_V210);
1990
1991     avio_wb32(pb, 0); /* size */
1992     if (mov->encryption_scheme != MOV_ENC_NONE) {
1993         ffio_wfourcc(pb, "encv");
1994     } else {
1995         avio_wl32(pb, track->tag); // store it byteswapped
1996     }
1997     avio_wb32(pb, 0); /* Reserved */
1998     avio_wb16(pb, 0); /* Reserved */
1999     avio_wb16(pb, 1); /* Data-reference index */
2000
2001     if (uncompressed_ycbcr) {
2002         avio_wb16(pb, 2); /* Codec stream version */
2003     } else {
2004         avio_wb16(pb, 0); /* Codec stream version */
2005     }
2006     avio_wb16(pb, 0); /* Codec stream revision (=0) */
2007     if (track->mode == MODE_MOV) {
2008         ffio_wfourcc(pb, "FFMP"); /* Vendor */
2009         if (track->par->codec_id == AV_CODEC_ID_RAWVIDEO || uncompressed_ycbcr) {
2010             avio_wb32(pb, 0); /* Temporal Quality */
2011             avio_wb32(pb, 0x400); /* Spatial Quality = lossless*/
2012         } else {
2013             avio_wb32(pb, 0x200); /* Temporal Quality = normal */
2014             avio_wb32(pb, 0x200); /* Spatial Quality = normal */
2015         }
2016     } else {
2017         avio_wb32(pb, 0); /* Reserved */
2018         avio_wb32(pb, 0); /* Reserved */
2019         avio_wb32(pb, 0); /* Reserved */
2020     }
2021     avio_wb16(pb, track->par->width); /* Video width */
2022     avio_wb16(pb, track->height); /* Video height */
2023     avio_wb32(pb, 0x00480000); /* Horizontal resolution 72dpi */
2024     avio_wb32(pb, 0x00480000); /* Vertical resolution 72dpi */
2025     avio_wb32(pb, 0); /* Data size (= 0) */
2026     avio_wb16(pb, 1); /* Frame count (= 1) */
2027
2028     /* FIXME not sure, ISO 14496-1 draft where it shall be set to 0 */
2029     find_compressor(compressor_name, 32, track);
2030     avio_w8(pb, strlen(compressor_name));
2031     avio_write(pb, compressor_name, 31);
2032
2033     if (track->mode == MODE_MOV &&
2034        (track->par->codec_id == AV_CODEC_ID_V410 || track->par->codec_id == AV_CODEC_ID_V210))
2035         avio_wb16(pb, 0x18);
2036     else if (track->mode == MODE_MOV && track->par->bits_per_coded_sample)
2037         avio_wb16(pb, track->par->bits_per_coded_sample |
2038                   (track->par->format == AV_PIX_FMT_GRAY8 ? 0x20 : 0));
2039     else
2040         avio_wb16(pb, 0x18); /* Reserved */
2041
2042     if (track->mode == MODE_MOV && track->par->format == AV_PIX_FMT_PAL8) {
2043         int pal_size = 1 << track->par->bits_per_coded_sample;
2044         int i;
2045         avio_wb16(pb, 0);             /* Color table ID */
2046         avio_wb32(pb, 0);             /* Color table seed */
2047         avio_wb16(pb, 0x8000);        /* Color table flags */
2048         avio_wb16(pb, pal_size - 1);  /* Color table size (zero-relative) */
2049         for (i = 0; i < pal_size; i++) {
2050             uint32_t rgb = track->palette[i];
2051             uint16_t r = (rgb >> 16) & 0xff;
2052             uint16_t g = (rgb >> 8)  & 0xff;
2053             uint16_t b = rgb         & 0xff;
2054             avio_wb16(pb, 0);
2055             avio_wb16(pb, (r << 8) | r);
2056             avio_wb16(pb, (g << 8) | g);
2057             avio_wb16(pb, (b << 8) | b);
2058         }
2059     } else
2060         avio_wb16(pb, 0xffff); /* Reserved */
2061
2062     if (track->tag == MKTAG('m','p','4','v'))
2063         mov_write_esds_tag(pb, track);
2064     else if (track->par->codec_id == AV_CODEC_ID_H263)
2065         mov_write_d263_tag(pb);
2066     else if (track->par->codec_id == AV_CODEC_ID_AVUI ||
2067             track->par->codec_id == AV_CODEC_ID_SVQ3) {
2068         mov_write_extradata_tag(pb, track);
2069         avio_wb32(pb, 0);
2070     } else if (track->par->codec_id == AV_CODEC_ID_DNXHD) {
2071         mov_write_avid_tag(pb, track);
2072         avid = 1;
2073     } else if (track->par->codec_id == AV_CODEC_ID_HEVC)
2074         mov_write_hvcc_tag(pb, track);
2075     else if (track->par->codec_id == AV_CODEC_ID_H264 && !TAG_IS_AVCI(track->tag)) {
2076         mov_write_avcc_tag(pb, track);
2077         if (track->mode == MODE_IPOD)
2078             mov_write_uuid_tag_ipod(pb);
2079     } else if (track->par->codec_id == AV_CODEC_ID_VP9) {
2080         mov_write_vpcc_tag(mov->fc, pb, track);
2081     } else if (track->par->codec_id == AV_CODEC_ID_AV1) {
2082         mov_write_av1c_tag(pb, track);
2083     } else if (track->par->codec_id == AV_CODEC_ID_VC1 && track->vos_len > 0)
2084         mov_write_dvc1_tag(pb, track);
2085     else if (track->par->codec_id == AV_CODEC_ID_VP6F ||
2086              track->par->codec_id == AV_CODEC_ID_VP6A) {
2087         /* Don't write any potential extradata here - the cropping
2088          * is signalled via the normal width/height fields. */
2089     } else if (track->par->codec_id == AV_CODEC_ID_R10K) {
2090         if (track->par->codec_tag == MKTAG('R','1','0','k'))
2091             mov_write_dpxe_tag(pb, track);
2092     } else if (track->vos_len > 0)
2093         mov_write_glbl_tag(pb, track);
2094
2095     if (track->par->codec_id != AV_CODEC_ID_H264 &&
2096         track->par->codec_id != AV_CODEC_ID_MPEG4 &&
2097         track->par->codec_id != AV_CODEC_ID_DNXHD) {
2098         int field_order = track->par->field_order;
2099
2100 #if FF_API_LAVF_AVCTX
2101     FF_DISABLE_DEPRECATION_WARNINGS
2102     if (field_order != track->st->codec->field_order && track->st->codec->field_order != AV_FIELD_UNKNOWN)
2103         field_order = track->st->codec->field_order;
2104     FF_ENABLE_DEPRECATION_WARNINGS
2105 #endif
2106
2107         if (field_order != AV_FIELD_UNKNOWN)
2108             mov_write_fiel_tag(pb, track, field_order);
2109     }
2110
2111     if (mov->flags & FF_MOV_FLAG_WRITE_GAMA) {
2112         if (track->mode == MODE_MOV)
2113             mov_write_gama_tag(s, pb, track, mov->gamma);
2114         else
2115             av_log(mov->fc, AV_LOG_WARNING, "Not writing 'gama' atom. Format is not MOV.\n");
2116     }
2117     if (mov->flags & FF_MOV_FLAG_WRITE_COLR) {
2118         if (track->mode == MODE_MOV || track->mode == MODE_MP4)
2119             mov_write_colr_tag(pb, track);
2120         else
2121             av_log(mov->fc, AV_LOG_WARNING, "Not writing 'colr' atom. Format is not MOV or MP4.\n");
2122     }
2123
2124     if (track->mode == MODE_MP4 && mov->fc->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL) {
2125         AVStereo3D* stereo_3d = (AVStereo3D*) av_stream_get_side_data(track->st, AV_PKT_DATA_STEREO3D, NULL);
2126         AVSphericalMapping* spherical_mapping = (AVSphericalMapping*)av_stream_get_side_data(track->st, AV_PKT_DATA_SPHERICAL, NULL);
2127
2128         if (stereo_3d)
2129             mov_write_st3d_tag(s, pb, stereo_3d);
2130         if (spherical_mapping)
2131             mov_write_sv3d_tag(mov->fc, pb, spherical_mapping);
2132     }
2133
2134     if (track->par->sample_aspect_ratio.den && track->par->sample_aspect_ratio.num) {
2135         mov_write_pasp_tag(pb, track);
2136     }
2137
2138     if (uncompressed_ycbcr){
2139         mov_write_clap_tag(pb, track);
2140     }
2141
2142     if (mov->encryption_scheme != MOV_ENC_NONE) {
2143         ff_mov_cenc_write_sinf_tag(track, pb, mov->encryption_kid);
2144     }
2145
2146     /* extra padding for avid stsd */
2147     /* https://developer.apple.com/library/mac/documentation/QuickTime/QTFF/QTFFChap2/qtff2.html#//apple_ref/doc/uid/TP40000939-CH204-61112 */
2148     if (avid)
2149         avio_wb32(pb, 0);
2150
2151     return update_size(pb, pos);
2152 }
2153
2154 static int mov_write_rtp_tag(AVIOContext *pb, MOVTrack *track)
2155 {
2156     int64_t pos = avio_tell(pb);
2157     avio_wb32(pb, 0); /* size */
2158     ffio_wfourcc(pb, "rtp ");
2159     avio_wb32(pb, 0); /* Reserved */
2160     avio_wb16(pb, 0); /* Reserved */
2161     avio_wb16(pb, 1); /* Data-reference index */
2162
2163     avio_wb16(pb, 1); /* Hint track version */
2164     avio_wb16(pb, 1); /* Highest compatible version */
2165     avio_wb32(pb, track->max_packet_size); /* Max packet size */
2166
2167     avio_wb32(pb, 12); /* size */
2168     ffio_wfourcc(pb, "tims");
2169     avio_wb32(pb, track->timescale);
2170
2171     return update_size(pb, pos);
2172 }
2173
2174 static int mov_write_source_reference_tag(AVIOContext *pb, MOVTrack *track, const char *reel_name)
2175 {
2176     uint64_t str_size =strlen(reel_name);
2177     int64_t pos = avio_tell(pb);
2178
2179     if (str_size >= UINT16_MAX){
2180         av_log(NULL, AV_LOG_ERROR, "reel_name length %"PRIu64" is too large\n", str_size);
2181         avio_wb16(pb, 0);
2182         return AVERROR(EINVAL);
2183     }
2184
2185     avio_wb32(pb, 0);                              /* size */
2186     ffio_wfourcc(pb, "name");                      /* Data format */
2187     avio_wb16(pb, str_size);                       /* string size */
2188     avio_wb16(pb, track->language);                /* langcode */
2189     avio_write(pb, reel_name, str_size);           /* reel name */
2190     return update_size(pb,pos);
2191 }
2192
2193 static int mov_write_tmcd_tag(AVIOContext *pb, MOVTrack *track)
2194 {
2195     int64_t pos = avio_tell(pb);
2196 #if 1
2197     int frame_duration;
2198     int nb_frames;
2199     AVDictionaryEntry *t = NULL;
2200
2201     if (!track->st->avg_frame_rate.num || !track->st->avg_frame_rate.den) {
2202 #if FF_API_LAVF_AVCTX
2203     FF_DISABLE_DEPRECATION_WARNINGS
2204         frame_duration = av_rescale(track->timescale, track->st->codec->time_base.num, track->st->codec->time_base.den);
2205         nb_frames      = ROUNDED_DIV(track->st->codec->time_base.den, track->st->codec->time_base.num);
2206     FF_ENABLE_DEPRECATION_WARNINGS
2207 #else
2208         av_log(NULL, AV_LOG_ERROR, "avg_frame_rate not set for tmcd track.\n");
2209         return AVERROR(EINVAL);
2210 #endif
2211     } else {
2212         frame_duration = av_rescale(track->timescale, track->st->avg_frame_rate.num, track->st->avg_frame_rate.den);
2213         nb_frames      = ROUNDED_DIV(track->st->avg_frame_rate.den, track->st->avg_frame_rate.num);
2214     }
2215
2216     if (nb_frames > 255) {
2217         av_log(NULL, AV_LOG_ERROR, "fps %d is too large\n", nb_frames);
2218         return AVERROR(EINVAL);
2219     }
2220
2221     avio_wb32(pb, 0); /* size */
2222     ffio_wfourcc(pb, "tmcd");               /* Data format */
2223     avio_wb32(pb, 0);                       /* Reserved */
2224     avio_wb32(pb, 1);                       /* Data reference index */
2225     avio_wb32(pb, 0);                       /* Flags */
2226     avio_wb32(pb, track->timecode_flags);   /* Flags (timecode) */
2227     avio_wb32(pb, track->timescale);        /* Timescale */
2228     avio_wb32(pb, frame_duration);          /* Frame duration */
2229     avio_w8(pb, nb_frames);                 /* Number of frames */
2230     avio_w8(pb, 0);                         /* Reserved */
2231
2232     t = av_dict_get(track->st->metadata, "reel_name", NULL, 0);
2233     if (t && utf8len(t->value) && track->mode != MODE_MP4)
2234         mov_write_source_reference_tag(pb, track, t->value);
2235     else
2236         avio_wb16(pb, 0); /* zero size */
2237 #else
2238
2239     avio_wb32(pb, 0); /* size */
2240     ffio_wfourcc(pb, "tmcd");               /* Data format */
2241     avio_wb32(pb, 0);                       /* Reserved */
2242     avio_wb32(pb, 1);                       /* Data reference index */
2243     if (track->par->extradata_size)
2244         avio_write(pb, track->par->extradata, track->par->extradata_size);
2245 #endif
2246     return update_size(pb, pos);
2247 }
2248
2249 static int mov_write_gpmd_tag(AVIOContext *pb, const MOVTrack *track)
2250 {
2251     int64_t pos = avio_tell(pb);
2252     avio_wb32(pb, 0); /* size */
2253     ffio_wfourcc(pb, "gpmd");
2254     avio_wb32(pb, 0); /* Reserved */
2255     avio_wb16(pb, 0); /* Reserved */
2256     avio_wb16(pb, 1); /* Data-reference index */
2257     avio_wb32(pb, 0); /* Reserved */
2258     return update_size(pb, pos);
2259 }
2260
2261 static int mov_write_stsd_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext *mov, MOVTrack *track)
2262 {
2263     int64_t pos = avio_tell(pb);
2264     int ret = 0;
2265     avio_wb32(pb, 0); /* size */
2266     ffio_wfourcc(pb, "stsd");
2267     avio_wb32(pb, 0); /* version & flags */
2268     avio_wb32(pb, 1); /* entry count */
2269     if (track->par->codec_type == AVMEDIA_TYPE_VIDEO)
2270         ret = mov_write_video_tag(s, pb, mov, track);
2271     else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO)
2272         ret = mov_write_audio_tag(s, pb, mov, track);
2273     else if (track->par->codec_type == AVMEDIA_TYPE_SUBTITLE)
2274         ret = mov_write_subtitle_tag(pb, track);
2275     else if (track->par->codec_tag == MKTAG('r','t','p',' '))
2276         ret = mov_write_rtp_tag(pb, track);
2277     else if (track->par->codec_tag == MKTAG('t','m','c','d'))
2278         ret = mov_write_tmcd_tag(pb, track);
2279     else if (track->par->codec_tag == MKTAG('g','p','m','d'))
2280         ret = mov_write_gpmd_tag(pb, track);
2281
2282     if (ret < 0)
2283         return ret;
2284
2285     return update_size(pb, pos);
2286 }
2287
2288 static int mov_write_ctts_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
2289 {
2290     MOVMuxContext *mov = s->priv_data;
2291     MOVStts *ctts_entries;
2292     uint32_t entries = 0;
2293     uint32_t atom_size;
2294     int i;
2295
2296     ctts_entries = av_malloc_array((track->entry + 1), sizeof(*ctts_entries)); /* worst case */
2297     if (!ctts_entries)
2298         return AVERROR(ENOMEM);
2299     ctts_entries[0].count = 1;
2300     ctts_entries[0].duration = track->cluster[0].cts;
2301     for (i = 1; i < track->entry; i++) {
2302         if (track->cluster[i].cts == ctts_entries[entries].duration) {
2303             ctts_entries[entries].count++; /* compress */
2304         } else {
2305             entries++;
2306             ctts_entries[entries].duration = track->cluster[i].cts;
2307             ctts_entries[entries].count = 1;
2308         }
2309     }
2310     entries++; /* last one */
2311     atom_size = 16 + (entries * 8);
2312     avio_wb32(pb, atom_size); /* size */
2313     ffio_wfourcc(pb, "ctts");
2314     if (mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS)
2315         avio_w8(pb, 1); /* version */
2316     else
2317         avio_w8(pb, 0); /* version */
2318     avio_wb24(pb, 0); /* flags */
2319     avio_wb32(pb, entries); /* entry count */
2320     for (i = 0; i < entries; i++) {
2321         avio_wb32(pb, ctts_entries[i].count);
2322         avio_wb32(pb, ctts_entries[i].duration);
2323     }
2324     av_free(ctts_entries);
2325     return atom_size;
2326 }
2327
2328 /* Time to sample atom */
2329 static int mov_write_stts_tag(AVIOContext *pb, MOVTrack *track)
2330 {
2331     MOVStts *stts_entries = NULL;
2332     uint32_t entries = -1;
2333     uint32_t atom_size;
2334     int i;
2335
2336     if (track->par->codec_type == AVMEDIA_TYPE_AUDIO && !track->audio_vbr) {
2337         stts_entries = av_malloc(sizeof(*stts_entries)); /* one entry */
2338         if (!stts_entries)
2339             return AVERROR(ENOMEM);
2340         stts_entries[0].count = track->sample_count;
2341         stts_entries[0].duration = 1;
2342         entries = 1;
2343     } else {
2344         if (track->entry) {
2345             stts_entries = av_malloc_array(track->entry, sizeof(*stts_entries)); /* worst case */
2346             if (!stts_entries)
2347                 return AVERROR(ENOMEM);
2348         }
2349         for (i = 0; i < track->entry; i++) {
2350             int duration = get_cluster_duration(track, i);
2351             if (i && duration == stts_entries[entries].duration) {
2352                 stts_entries[entries].count++; /* compress */
2353             } else {
2354                 entries++;
2355                 stts_entries[entries].duration = duration;
2356                 stts_entries[entries].count = 1;
2357             }
2358         }
2359         entries++; /* last one */
2360     }
2361     atom_size = 16 + (entries * 8);
2362     avio_wb32(pb, atom_size); /* size */
2363     ffio_wfourcc(pb, "stts");
2364     avio_wb32(pb, 0); /* version & flags */
2365     avio_wb32(pb, entries); /* entry count */
2366     for (i = 0; i < entries; i++) {
2367         avio_wb32(pb, stts_entries[i].count);
2368         avio_wb32(pb, stts_entries[i].duration);
2369     }
2370     av_free(stts_entries);
2371     return atom_size;
2372 }
2373
2374 static int mov_write_dref_tag(AVIOContext *pb)
2375 {
2376     avio_wb32(pb, 28); /* size */
2377     ffio_wfourcc(pb, "dref");
2378     avio_wb32(pb, 0); /* version & flags */
2379     avio_wb32(pb, 1); /* entry count */
2380
2381     avio_wb32(pb, 0xc); /* size */
2382     //FIXME add the alis and rsrc atom
2383     ffio_wfourcc(pb, "url ");
2384     avio_wb32(pb, 1); /* version & flags */
2385
2386     return 28;
2387 }
2388
2389 static int mov_preroll_write_stbl_atoms(AVIOContext *pb, MOVTrack *track)
2390 {
2391     struct sgpd_entry {
2392         int count;
2393         int16_t roll_distance;
2394         int group_description_index;
2395     };
2396
2397     struct sgpd_entry *sgpd_entries = NULL;
2398     int entries = -1;
2399     int group = 0;
2400     int i, j;
2401
2402     const int OPUS_SEEK_PREROLL_MS = 80;
2403     int roll_samples = av_rescale_q(OPUS_SEEK_PREROLL_MS,
2404                                     (AVRational){1, 1000},
2405                                     (AVRational){1, 48000});
2406
2407     if (!track->entry)
2408         return 0;
2409
2410     sgpd_entries = av_malloc_array(track->entry, sizeof(*sgpd_entries));
2411     if (!sgpd_entries)
2412         return AVERROR(ENOMEM);
2413
2414     av_assert0(track->par->codec_id == AV_CODEC_ID_OPUS || track->par->codec_id == AV_CODEC_ID_AAC);
2415
2416     if (track->par->codec_id == AV_CODEC_ID_OPUS) {
2417         for (i = 0; i < track->entry; i++) {
2418             int roll_samples_remaining = roll_samples;
2419             int distance = 0;
2420             for (j = i - 1; j >= 0; j--) {
2421                 roll_samples_remaining -= get_cluster_duration(track, j);
2422                 distance++;
2423                 if (roll_samples_remaining <= 0)
2424                     break;
2425             }
2426             /* We don't have enough preceeding samples to compute a valid
2427                roll_distance here, so this sample can't be independently
2428                decoded. */
2429             if (roll_samples_remaining > 0)
2430                 distance = 0;
2431             /* Verify distance is a maximum of 32 (2.5ms) packets. */
2432             if (distance > 32)
2433                 return AVERROR_INVALIDDATA;
2434             if (i && distance == sgpd_entries[entries].roll_distance) {
2435                 sgpd_entries[entries].count++;
2436             } else {
2437                 entries++;
2438                 sgpd_entries[entries].count = 1;
2439                 sgpd_entries[entries].roll_distance = distance;
2440                 sgpd_entries[entries].group_description_index = distance ? ++group : 0;
2441             }
2442         }
2443     } else {
2444         entries++;
2445         sgpd_entries[entries].count = track->sample_count;
2446         sgpd_entries[entries].roll_distance = 1;
2447         sgpd_entries[entries].group_description_index = ++group;
2448     }
2449     entries++;
2450
2451     if (!group) {
2452         av_free(sgpd_entries);
2453         return 0;
2454     }
2455
2456     /* Write sgpd tag */
2457     avio_wb32(pb, 24 + (group * 2)); /* size */
2458     ffio_wfourcc(pb, "sgpd");
2459     avio_wb32(pb, 1 << 24); /* fullbox */
2460     ffio_wfourcc(pb, "roll");
2461     avio_wb32(pb, 2); /* default_length */
2462     avio_wb32(pb, group); /* entry_count */
2463     for (i = 0; i < entries; i++) {
2464         if (sgpd_entries[i].group_description_index) {
2465             avio_wb16(pb, -sgpd_entries[i].roll_distance); /* roll_distance */
2466         }
2467     }
2468
2469     /* Write sbgp tag */
2470     avio_wb32(pb, 20 + (entries * 8)); /* size */
2471     ffio_wfourcc(pb, "sbgp");
2472     avio_wb32(pb, 0); /* fullbox */
2473     ffio_wfourcc(pb, "roll");
2474     avio_wb32(pb, entries); /* entry_count */
2475     for (i = 0; i < entries; i++) {
2476         avio_wb32(pb, sgpd_entries[i].count); /* sample_count */
2477         avio_wb32(pb, sgpd_entries[i].group_description_index); /* group_description_index */
2478     }
2479
2480     av_free(sgpd_entries);
2481     return 0;
2482 }
2483
2484 static int mov_write_stbl_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext *mov, MOVTrack *track)
2485 {
2486     int64_t pos = avio_tell(pb);
2487     int ret = 0;
2488
2489     avio_wb32(pb, 0); /* size */
2490     ffio_wfourcc(pb, "stbl");
2491     if ((ret = mov_write_stsd_tag(s, pb, mov, track)) < 0)
2492         return ret;
2493     mov_write_stts_tag(pb, track);
2494     if ((track->par->codec_type == AVMEDIA_TYPE_VIDEO ||
2495          track->par->codec_id == AV_CODEC_ID_TRUEHD ||
2496          track->par->codec_tag == MKTAG('r','t','p',' ')) &&
2497         track->has_keyframes && track->has_keyframes < track->entry)
2498         mov_write_stss_tag(pb, track, MOV_SYNC_SAMPLE);
2499     if (track->par->codec_type == AVMEDIA_TYPE_VIDEO && track->has_disposable)
2500         mov_write_sdtp_tag(pb, track);
2501     if (track->mode == MODE_MOV && track->flags & MOV_TRACK_STPS)
2502         mov_write_stss_tag(pb, track, MOV_PARTIAL_SYNC_SAMPLE);
2503     if (track->par->codec_type == AVMEDIA_TYPE_VIDEO &&
2504         track->flags & MOV_TRACK_CTTS && track->entry) {
2505
2506         if ((ret = mov_write_ctts_tag(s, pb, track)) < 0)
2507             return ret;
2508     }
2509     mov_write_stsc_tag(pb, track);
2510     mov_write_stsz_tag(pb, track);
2511     mov_write_stco_tag(pb, track);
2512     if (track->cenc.aes_ctr) {
2513         ff_mov_cenc_write_stbl_atoms(&track->cenc, pb);
2514     }
2515     if (track->par->codec_id == AV_CODEC_ID_OPUS || track->par->codec_id == AV_CODEC_ID_AAC) {
2516         mov_preroll_write_stbl_atoms(pb, track);
2517     }
2518     return update_size(pb, pos);
2519 }
2520
2521 static int mov_write_dinf_tag(AVIOContext *pb)
2522 {
2523     int64_t pos = avio_tell(pb);
2524     avio_wb32(pb, 0); /* size */
2525     ffio_wfourcc(pb, "dinf");
2526     mov_write_dref_tag(pb);
2527     return update_size(pb, pos);
2528 }
2529
2530 static int mov_write_nmhd_tag(AVIOContext *pb)
2531 {
2532     avio_wb32(pb, 12);
2533     ffio_wfourcc(pb, "nmhd");
2534     avio_wb32(pb, 0);
2535     return 12;
2536 }
2537
2538 static int mov_write_tcmi_tag(AVIOContext *pb, MOVTrack *track)
2539 {
2540     int64_t pos = avio_tell(pb);
2541     const char *font = "Lucida Grande";
2542     avio_wb32(pb, 0);                   /* size */
2543     ffio_wfourcc(pb, "tcmi");           /* timecode media information atom */
2544     avio_wb32(pb, 0);                   /* version & flags */
2545     avio_wb16(pb, 0);                   /* text font */
2546     avio_wb16(pb, 0);                   /* text face */
2547     avio_wb16(pb, 12);                  /* text size */
2548     avio_wb16(pb, 0);                   /* (unknown, not in the QT specs...) */
2549     avio_wb16(pb, 0x0000);              /* text color (red) */
2550     avio_wb16(pb, 0x0000);              /* text color (green) */
2551     avio_wb16(pb, 0x0000);              /* text color (blue) */
2552     avio_wb16(pb, 0xffff);              /* background color (red) */
2553     avio_wb16(pb, 0xffff);              /* background color (green) */
2554     avio_wb16(pb, 0xffff);              /* background color (blue) */
2555     avio_w8(pb, strlen(font));          /* font len (part of the pascal string) */
2556     avio_write(pb, font, strlen(font)); /* font name */
2557     return update_size(pb, pos);
2558 }
2559
2560 static int mov_write_gmhd_tag(AVIOContext *pb, MOVTrack *track)
2561 {
2562     int64_t pos = avio_tell(pb);
2563     avio_wb32(pb, 0);      /* size */
2564     ffio_wfourcc(pb, "gmhd");
2565     avio_wb32(pb, 0x18);   /* gmin size */
2566     ffio_wfourcc(pb, "gmin");/* generic media info */
2567     avio_wb32(pb, 0);      /* version & flags */
2568     avio_wb16(pb, 0x40);   /* graphics mode = */
2569     avio_wb16(pb, 0x8000); /* opColor (r?) */
2570     avio_wb16(pb, 0x8000); /* opColor (g?) */
2571     avio_wb16(pb, 0x8000); /* opColor (b?) */
2572     avio_wb16(pb, 0);      /* balance */
2573     avio_wb16(pb, 0);      /* reserved */
2574
2575     /*
2576      * This special text atom is required for
2577      * Apple Quicktime chapters. The contents
2578      * don't appear to be documented, so the
2579      * bytes are copied verbatim.
2580      */
2581     if (track->tag != MKTAG('c','6','0','8')) {
2582     avio_wb32(pb, 0x2C);   /* size */
2583     ffio_wfourcc(pb, "text");
2584     avio_wb16(pb, 0x01);
2585     avio_wb32(pb, 0x00);
2586     avio_wb32(pb, 0x00);
2587     avio_wb32(pb, 0x00);
2588     avio_wb32(pb, 0x01);
2589     avio_wb32(pb, 0x00);
2590     avio_wb32(pb, 0x00);
2591     avio_wb32(pb, 0x00);
2592     avio_wb32(pb, 0x00004000);
2593     avio_wb16(pb, 0x0000);
2594     }
2595
2596     if (track->par->codec_tag == MKTAG('t','m','c','d')) {
2597         int64_t tmcd_pos = avio_tell(pb);
2598         avio_wb32(pb, 0); /* size */
2599         ffio_wfourcc(pb, "tmcd");
2600         mov_write_tcmi_tag(pb, track);
2601         update_size(pb, tmcd_pos);
2602     } else if (track->par->codec_tag == MKTAG('g','p','m','d')) {
2603         int64_t gpmd_pos = avio_tell(pb);
2604         avio_wb32(pb, 0); /* size */
2605         ffio_wfourcc(pb, "gpmd");
2606         avio_wb32(pb, 0); /* version */
2607         update_size(pb, gpmd_pos);
2608     }
2609     return update_size(pb, pos);
2610 }
2611
2612 static int mov_write_smhd_tag(AVIOContext *pb)
2613 {
2614     avio_wb32(pb, 16); /* size */
2615     ffio_wfourcc(pb, "smhd");
2616     avio_wb32(pb, 0); /* version & flags */
2617     avio_wb16(pb, 0); /* reserved (balance, normally = 0) */
2618     avio_wb16(pb, 0); /* reserved */
2619     return 16;
2620 }
2621
2622 static int mov_write_vmhd_tag(AVIOContext *pb)
2623 {
2624     avio_wb32(pb, 0x14); /* size (always 0x14) */
2625     ffio_wfourcc(pb, "vmhd");
2626     avio_wb32(pb, 0x01); /* version & flags */
2627     avio_wb64(pb, 0); /* reserved (graphics mode = copy) */
2628     return 0x14;
2629 }
2630
2631 static int is_clcp_track(MOVTrack *track)
2632 {
2633     return track->tag == MKTAG('c','7','0','8') ||
2634            track->tag == MKTAG('c','6','0','8');
2635 }
2636
2637 static int mov_write_hdlr_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
2638 {
2639     MOVMuxContext *mov = s->priv_data;
2640     const char *hdlr, *descr = NULL, *hdlr_type = NULL;
2641     int64_t pos = avio_tell(pb);
2642
2643     hdlr      = "dhlr";
2644     hdlr_type = "url ";
2645     descr     = "DataHandler";
2646
2647     if (track) {
2648         hdlr = (track->mode == MODE_MOV) ? "mhlr" : "\0\0\0\0";
2649         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
2650             hdlr_type = "vide";
2651             descr     = "VideoHandler";
2652         } else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO) {
2653             hdlr_type = "soun";
2654             descr     = "SoundHandler";
2655         } else if (track->par->codec_type == AVMEDIA_TYPE_SUBTITLE) {
2656             if (is_clcp_track(track)) {
2657                 hdlr_type = "clcp";
2658                 descr = "ClosedCaptionHandler";
2659             } else {
2660                 if (track->tag == MKTAG('t','x','3','g')) {
2661                     hdlr_type = "sbtl";
2662                 } else if (track->tag == MKTAG('m','p','4','s')) {
2663                     hdlr_type = "subp";
2664                 } else {
2665                     hdlr_type = "text";
2666                 }
2667             descr = "SubtitleHandler";
2668             }
2669         } else if (track->par->codec_tag == MKTAG('r','t','p',' ')) {
2670             hdlr_type = "hint";
2671             descr     = "HintHandler";
2672         } else if (track->par->codec_tag == MKTAG('t','m','c','d')) {
2673             hdlr_type = "tmcd";
2674             descr = "TimeCodeHandler";
2675         } else if (track->par->codec_tag == MKTAG('g','p','m','d')) {
2676             hdlr_type = "meta";
2677             descr = "GoPro MET"; // GoPro Metadata
2678         } else {
2679             av_log(s, AV_LOG_WARNING,
2680                    "Unknown hldr_type for %s, writing dummy values\n",
2681                    av_fourcc2str(track->par->codec_tag));
2682         }
2683         if (track->st) {
2684             // hdlr.name is used by some players to identify the content title
2685             // of the track. So if an alternate handler description is
2686             // specified, use it.
2687             AVDictionaryEntry *t;
2688             t = av_dict_get(track->st->metadata, "handler_name", NULL, 0);
2689             if (t && utf8len(t->value))
2690                 descr = t->value;
2691         }
2692     }
2693
2694     if (mov->empty_hdlr_name) /* expressly allowed by QTFF and not prohibited in ISO 14496-12 8.4.3.3 */
2695         descr = "";
2696
2697     avio_wb32(pb, 0); /* size */
2698     ffio_wfourcc(pb, "hdlr");
2699     avio_wb32(pb, 0); /* Version & flags */
2700     avio_write(pb, hdlr, 4); /* handler */
2701     ffio_wfourcc(pb, hdlr_type); /* handler type */
2702     avio_wb32(pb, 0); /* reserved */
2703     avio_wb32(pb, 0); /* reserved */
2704     avio_wb32(pb, 0); /* reserved */
2705     if (!track || track->mode == MODE_MOV)
2706         avio_w8(pb, strlen(descr)); /* pascal string */
2707     avio_write(pb, descr, strlen(descr)); /* handler description */
2708     if (track && track->mode != MODE_MOV)
2709         avio_w8(pb, 0); /* c string */
2710     return update_size(pb, pos);
2711 }
2712
2713 static int mov_write_hmhd_tag(AVIOContext *pb)
2714 {
2715     /* This atom must be present, but leaving the values at zero
2716      * seems harmless. */
2717     avio_wb32(pb, 28); /* size */
2718     ffio_wfourcc(pb, "hmhd");
2719     avio_wb32(pb, 0); /* version, flags */
2720     avio_wb16(pb, 0); /* maxPDUsize */
2721     avio_wb16(pb, 0); /* avgPDUsize */
2722     avio_wb32(pb, 0); /* maxbitrate */
2723     avio_wb32(pb, 0); /* avgbitrate */
2724     avio_wb32(pb, 0); /* reserved */
2725     return 28;
2726 }
2727
2728 static int mov_write_minf_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext *mov, MOVTrack *track)
2729 {
2730     int64_t pos = avio_tell(pb);
2731     int ret;
2732
2733     avio_wb32(pb, 0); /* size */
2734     ffio_wfourcc(pb, "minf");
2735     if (track->par->codec_type == AVMEDIA_TYPE_VIDEO)
2736         mov_write_vmhd_tag(pb);
2737     else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO)
2738         mov_write_smhd_tag(pb);
2739     else if (track->par->codec_type == AVMEDIA_TYPE_SUBTITLE) {
2740         if (track->tag == MKTAG('t','e','x','t') || is_clcp_track(track)) {
2741             mov_write_gmhd_tag(pb, track);
2742         } else {
2743             mov_write_nmhd_tag(pb);
2744         }
2745     } else if (track->tag == MKTAG('r','t','p',' ')) {
2746         mov_write_hmhd_tag(pb);
2747     } else if (track->tag == MKTAG('t','m','c','d')) {
2748         if (track->mode != MODE_MOV)
2749             mov_write_nmhd_tag(pb);
2750         else
2751             mov_write_gmhd_tag(pb, track);
2752     } else if (track->tag == MKTAG('g','p','m','d')) {
2753         mov_write_gmhd_tag(pb, track);
2754     }
2755     if (track->mode == MODE_MOV) /* ISO 14496-12 8.4.3.1 specifies hdlr only within mdia or meta boxes */
2756         mov_write_hdlr_tag(s, pb, NULL);
2757     mov_write_dinf_tag(pb);
2758     if ((ret = mov_write_stbl_tag(s, pb, mov, track)) < 0)
2759         return ret;
2760     return update_size(pb, pos);
2761 }
2762
2763 static int mov_write_mdhd_tag(AVIOContext *pb, MOVMuxContext *mov,
2764                               MOVTrack *track)
2765 {
2766     int version = track->track_duration < INT32_MAX ? 0 : 1;
2767
2768     if (track->mode == MODE_ISM)
2769         version = 1;
2770
2771     (version == 1) ? avio_wb32(pb, 44) : avio_wb32(pb, 32); /* size */
2772     ffio_wfourcc(pb, "mdhd");
2773     avio_w8(pb, version);
2774     avio_wb24(pb, 0); /* flags */
2775     if (version == 1) {
2776         avio_wb64(pb, track->time);
2777         avio_wb64(pb, track->time);
2778     } else {
2779         avio_wb32(pb, track->time); /* creation time */
2780         avio_wb32(pb, track->time); /* modification time */
2781     }
2782     avio_wb32(pb, track->timescale); /* time scale (sample rate for audio) */
2783     if (!track->entry && mov->mode == MODE_ISM)
2784         (version == 1) ? avio_wb64(pb, UINT64_C(0xffffffffffffffff)) : avio_wb32(pb, 0xffffffff);
2785     else if (!track->entry)
2786         (version == 1) ? avio_wb64(pb, 0) : avio_wb32(pb, 0);
2787     else
2788         (version == 1) ? avio_wb64(pb, track->track_duration) : avio_wb32(pb, track->track_duration); /* duration */
2789     avio_wb16(pb, track->language); /* language */
2790     avio_wb16(pb, 0); /* reserved (quality) */
2791
2792     if (version != 0 && track->mode == MODE_MOV) {
2793         av_log(NULL, AV_LOG_ERROR,
2794                "FATAL error, file duration too long for timebase, this file will not be\n"
2795                "playable with QuickTime. Choose a different timebase with "
2796                "-video_track_timescale or a different container format\n");
2797     }
2798
2799     return 32;
2800 }
2801
2802 static int mov_write_mdia_tag(AVFormatContext *s, AVIOContext *pb,
2803                               MOVMuxContext *mov, MOVTrack *track)
2804 {
2805     int64_t pos = avio_tell(pb);
2806     int ret;
2807
2808     avio_wb32(pb, 0); /* size */
2809     ffio_wfourcc(pb, "mdia");
2810     mov_write_mdhd_tag(pb, mov, track);
2811     mov_write_hdlr_tag(s, pb, track);
2812     if ((ret = mov_write_minf_tag(s, pb, mov, track)) < 0)
2813         return ret;
2814     return update_size(pb, pos);
2815 }
2816
2817 /* transformation matrix
2818      |a  b  u|
2819      |c  d  v|
2820      |tx ty w| */
2821 static void write_matrix(AVIOContext *pb, int16_t a, int16_t b, int16_t c,
2822                          int16_t d, int16_t tx, int16_t ty)
2823 {
2824     avio_wb32(pb, a << 16);  /* 16.16 format */
2825     avio_wb32(pb, b << 16);  /* 16.16 format */
2826     avio_wb32(pb, 0);        /* u in 2.30 format */
2827     avio_wb32(pb, c << 16);  /* 16.16 format */
2828     avio_wb32(pb, d << 16);  /* 16.16 format */
2829     avio_wb32(pb, 0);        /* v in 2.30 format */
2830     avio_wb32(pb, tx << 16); /* 16.16 format */
2831     avio_wb32(pb, ty << 16); /* 16.16 format */
2832     avio_wb32(pb, 1 << 30);  /* w in 2.30 format */
2833 }
2834
2835 static int mov_write_tkhd_tag(AVIOContext *pb, MOVMuxContext *mov,
2836                               MOVTrack *track, AVStream *st)
2837 {
2838     int64_t duration = av_rescale_rnd(track->track_duration, MOV_TIMESCALE,
2839                                       track->timescale, AV_ROUND_UP);
2840     int version = duration < INT32_MAX ? 0 : 1;
2841     int flags   = MOV_TKHD_FLAG_IN_MOVIE;
2842     int rotation = 0;
2843     int group   = 0;
2844
2845     uint32_t *display_matrix = NULL;
2846     int      display_matrix_size, i;
2847
2848     if (st) {
2849         if (mov->per_stream_grouping)
2850             group = st->index;
2851         else
2852             group = st->codecpar->codec_type;
2853
2854         display_matrix = (uint32_t*)av_stream_get_side_data(st, AV_PKT_DATA_DISPLAYMATRIX,
2855                                                             &display_matrix_size);
2856         if (display_matrix && display_matrix_size < 9 * sizeof(*display_matrix))
2857             display_matrix = NULL;
2858     }
2859
2860     if (track->flags & MOV_TRACK_ENABLED)
2861         flags |= MOV_TKHD_FLAG_ENABLED;
2862
2863     if (track->mode == MODE_ISM)
2864         version = 1;
2865
2866     (version == 1) ? avio_wb32(pb, 104) : avio_wb32(pb, 92); /* size */
2867     ffio_wfourcc(pb, "tkhd");
2868     avio_w8(pb, version);
2869     avio_wb24(pb, flags);
2870     if (version == 1) {
2871         avio_wb64(pb, track->time);
2872         avio_wb64(pb, track->time);
2873     } else {
2874         avio_wb32(pb, track->time); /* creation time */
2875         avio_wb32(pb, track->time); /* modification time */
2876     }
2877     avio_wb32(pb, track->track_id); /* track-id */
2878     avio_wb32(pb, 0); /* reserved */
2879     if (!track->entry && mov->mode == MODE_ISM)
2880         (version == 1) ? avio_wb64(pb, UINT64_C(0xffffffffffffffff)) : avio_wb32(pb, 0xffffffff);
2881     else if (!track->entry)
2882         (version == 1) ? avio_wb64(pb, 0) : avio_wb32(pb, 0);
2883     else
2884         (version == 1) ? avio_wb64(pb, duration) : avio_wb32(pb, duration);
2885
2886     avio_wb32(pb, 0); /* reserved */
2887     avio_wb32(pb, 0); /* reserved */
2888     avio_wb16(pb, 0); /* layer */
2889     avio_wb16(pb, group); /* alternate group) */
2890     /* Volume, only for audio */
2891     if (track->par->codec_type == AVMEDIA_TYPE_AUDIO)
2892         avio_wb16(pb, 0x0100);
2893     else
2894         avio_wb16(pb, 0);
2895     avio_wb16(pb, 0); /* reserved */
2896
2897     /* Matrix structure */
2898 #if FF_API_OLD_ROTATE_API
2899     if (st && st->metadata) {
2900         AVDictionaryEntry *rot = av_dict_get(st->metadata, "rotate", NULL, 0);
2901         rotation = (rot && rot->value) ? atoi(rot->value) : 0;
2902     }
2903 #endif
2904     if (display_matrix) {
2905         for (i = 0; i < 9; i++)
2906             avio_wb32(pb, display_matrix[i]);
2907 #if FF_API_OLD_ROTATE_API
2908     } else if (rotation == 90) {
2909         write_matrix(pb,  0,  1, -1,  0, track->par->height, 0);
2910     } else if (rotation == 180) {
2911         write_matrix(pb, -1,  0,  0, -1, track->par->width, track->par->height);
2912     } else if (rotation == 270) {
2913         write_matrix(pb,  0, -1,  1,  0, 0, track->par->width);
2914 #endif
2915     } else {
2916         write_matrix(pb,  1,  0,  0,  1, 0, 0);
2917     }
2918     /* Track width and height, for visual only */
2919     if (st && (track->par->codec_type == AVMEDIA_TYPE_VIDEO ||
2920                track->par->codec_type == AVMEDIA_TYPE_SUBTITLE)) {
2921         int64_t track_width_1616;
2922         if (track->mode == MODE_MOV) {
2923             track_width_1616 = track->par->width * 0x10000ULL;
2924         } else {
2925             track_width_1616 = av_rescale(st->sample_aspect_ratio.num,
2926                                                   track->par->width * 0x10000LL,
2927                                                   st->sample_aspect_ratio.den);
2928             if (!track_width_1616 ||
2929                 track->height != track->par->height ||
2930                 track_width_1616 > UINT32_MAX)
2931                 track_width_1616 = track->par->width * 0x10000ULL;
2932         }
2933         if (track_width_1616 > UINT32_MAX) {
2934             av_log(mov->fc, AV_LOG_WARNING, "track width is too large\n");
2935             track_width_1616 = 0;
2936         }
2937         avio_wb32(pb, track_width_1616);
2938         if (track->height > 0xFFFF) {
2939             av_log(mov->fc, AV_LOG_WARNING, "track height is too large\n");
2940             avio_wb32(pb, 0);
2941         } else
2942             avio_wb32(pb, track->height * 0x10000U);
2943     } else {
2944         avio_wb32(pb, 0);
2945         avio_wb32(pb, 0);
2946     }
2947     return 0x5c;
2948 }
2949
2950 static int mov_write_tapt_tag(AVIOContext *pb, MOVTrack *track)
2951 {
2952     int32_t width = av_rescale(track->par->sample_aspect_ratio.num, track->par->width,
2953                                track->par->sample_aspect_ratio.den);
2954
2955     int64_t pos = avio_tell(pb);
2956
2957     avio_wb32(pb, 0); /* size */
2958     ffio_wfourcc(pb, "tapt");
2959
2960     avio_wb32(pb, 20);
2961     ffio_wfourcc(pb, "clef");
2962     avio_wb32(pb, 0);
2963     avio_wb32(pb, width << 16);
2964     avio_wb32(pb, track->par->height << 16);
2965
2966     avio_wb32(pb, 20);
2967     ffio_wfourcc(pb, "prof");
2968     avio_wb32(pb, 0);
2969     avio_wb32(pb, width << 16);
2970     avio_wb32(pb, track->par->height << 16);
2971
2972     avio_wb32(pb, 20);
2973     ffio_wfourcc(pb, "enof");
2974     avio_wb32(pb, 0);
2975     avio_wb32(pb, track->par->width << 16);
2976     avio_wb32(pb, track->par->height << 16);
2977
2978     return update_size(pb, pos);
2979 }
2980
2981 // This box seems important for the psp playback ... without it the movie seems to hang
2982 static int mov_write_edts_tag(AVIOContext *pb, MOVMuxContext *mov,
2983                               MOVTrack *track)
2984 {
2985     int64_t duration = av_rescale_rnd(track->track_duration, MOV_TIMESCALE,
2986                                       track->timescale, AV_ROUND_UP);
2987     int version = duration < INT32_MAX ? 0 : 1;
2988     int entry_size, entry_count, size;
2989     int64_t delay, start_ct = track->start_cts;
2990     int64_t start_dts = track->start_dts;
2991
2992     if (track->entry) {
2993         if (start_dts != track->cluster[0].dts || start_ct != track->cluster[0].cts) {
2994
2995             av_log(mov->fc, AV_LOG_DEBUG,
2996                    "EDTS using dts:%"PRId64" cts:%d instead of dts:%"PRId64" cts:%"PRId64" tid:%d\n",
2997                    track->cluster[0].dts, track->cluster[0].cts,
2998                    start_dts, start_ct, track->track_id);
2999             start_dts = track->cluster[0].dts;
3000             start_ct  = track->cluster[0].cts;
3001         }
3002     }
3003
3004     delay = av_rescale_rnd(start_dts + start_ct, MOV_TIMESCALE,
3005                            track->timescale, AV_ROUND_DOWN);
3006     version |= delay < INT32_MAX ? 0 : 1;
3007
3008     entry_size = (version == 1) ? 20 : 12;
3009     entry_count = 1 + (delay > 0);
3010     size = 24 + entry_count * entry_size;
3011
3012     /* write the atom data */
3013     avio_wb32(pb, size);
3014     ffio_wfourcc(pb, "edts");
3015     avio_wb32(pb, size - 8);
3016     ffio_wfourcc(pb, "elst");
3017     avio_w8(pb, version);
3018     avio_wb24(pb, 0); /* flags */
3019
3020     avio_wb32(pb, entry_count);
3021     if (delay > 0) { /* add an empty edit to delay presentation */
3022         /* In the positive delay case, the delay includes the cts
3023          * offset, and the second edit list entry below trims out
3024          * the same amount from the actual content. This makes sure
3025          * that the offset last sample is included in the edit
3026          * list duration as well. */
3027         if (version == 1) {
3028             avio_wb64(pb, delay);
3029             avio_wb64(pb, -1);
3030         } else {
3031             avio_wb32(pb, delay);
3032             avio_wb32(pb, -1);
3033         }
3034         avio_wb32(pb, 0x00010000);
3035     } else {
3036         /* Avoid accidentally ending up with start_ct = -1 which has got a
3037          * special meaning. Normally start_ct should end up positive or zero
3038          * here, but use FFMIN in case dts is a small positive integer
3039          * rounded to 0 when represented in MOV_TIMESCALE units. */
3040         av_assert0(av_rescale_rnd(start_dts, MOV_TIMESCALE, track->timescale, AV_ROUND_DOWN) <= 0);
3041         start_ct  = -FFMIN(start_dts, 0);
3042         /* Note, this delay is calculated from the pts of the first sample,
3043          * ensuring that we don't reduce the duration for cases with
3044          * dts<0 pts=0. */
3045         duration += delay;
3046     }
3047
3048     /* For fragmented files, we don't know the full length yet. Setting
3049      * duration to 0 allows us to only specify the offset, including
3050      * the rest of the content (from all future fragments) without specifying
3051      * an explicit duration. */
3052     if (mov->flags & FF_MOV_FLAG_FRAGMENT)
3053         duration = 0;
3054
3055     /* duration */
3056     if (version == 1) {
3057         avio_wb64(pb, duration);
3058         avio_wb64(pb, start_ct);
3059     } else {
3060         avio_wb32(pb, duration);
3061         avio_wb32(pb, start_ct);
3062     }
3063     avio_wb32(pb, 0x00010000);
3064     return size;
3065 }
3066
3067 static int mov_write_tref_tag(AVIOContext *pb, MOVTrack *track)
3068 {
3069     avio_wb32(pb, 20);   // size
3070     ffio_wfourcc(pb, "tref");
3071     avio_wb32(pb, 12);   // size (subatom)
3072     avio_wl32(pb, track->tref_tag);
3073     avio_wb32(pb, track->tref_id);
3074     return 20;
3075 }
3076
3077 // goes at the end of each track!  ... Critical for PSP playback ("Incompatible data" without it)
3078 static int mov_write_uuid_tag_psp(AVIOContext *pb, MOVTrack *mov)
3079 {
3080     avio_wb32(pb, 0x34); /* size ... reports as 28 in mp4box! */
3081     ffio_wfourcc(pb, "uuid");
3082     ffio_wfourcc(pb, "USMT");
3083     avio_wb32(pb, 0x21d24fce);
3084     avio_wb32(pb, 0xbb88695c);
3085     avio_wb32(pb, 0xfac9c740);
3086     avio_wb32(pb, 0x1c);     // another size here!
3087     ffio_wfourcc(pb, "MTDT");
3088     avio_wb32(pb, 0x00010012);
3089     avio_wb32(pb, 0x0a);
3090     avio_wb32(pb, 0x55c40000);
3091     avio_wb32(pb, 0x1);
3092     avio_wb32(pb, 0x0);
3093     return 0x34;
3094 }
3095
3096 static int mov_write_udta_sdp(AVIOContext *pb, MOVTrack *track)
3097 {
3098     AVFormatContext *ctx = track->rtp_ctx;
3099     char buf[1000] = "";
3100     int len;
3101
3102     ff_sdp_write_media(buf, sizeof(buf), ctx->streams[0], track->src_track,
3103                        NULL, NULL, 0, 0, ctx);
3104     av_strlcatf(buf, sizeof(buf), "a=control:streamid=%d\r\n", track->track_id);
3105     len = strlen(buf);
3106
3107     avio_wb32(pb, len + 24);
3108     ffio_wfourcc(pb, "udta");
3109     avio_wb32(pb, len + 16);
3110     ffio_wfourcc(pb, "hnti");
3111     avio_wb32(pb, len + 8);
3112     ffio_wfourcc(pb, "sdp ");
3113     avio_write(pb, buf, len);
3114     return len + 24;
3115 }
3116
3117 static int mov_write_track_metadata(AVIOContext *pb, AVStream *st,
3118                                     const char *tag, const char *str)
3119 {
3120     int64_t pos = avio_tell(pb);
3121     AVDictionaryEntry *t = av_dict_get(st->metadata, str, NULL, 0);
3122     if (!t || !utf8len(t->value))
3123         return 0;
3124
3125     avio_wb32(pb, 0);   /* size */
3126     ffio_wfourcc(pb, tag); /* type */
3127     avio_write(pb, t->value, strlen(t->value)); /* UTF8 string value */
3128     return update_size(pb, pos);
3129 }
3130
3131 static int mov_write_track_udta_tag(AVIOContext *pb, MOVMuxContext *mov,
3132                                     AVStream *st)
3133 {
3134     AVIOContext *pb_buf;
3135     int ret, size;
3136     uint8_t *buf;
3137
3138     if (!st)
3139         return 0;
3140
3141     ret = avio_open_dyn_buf(&pb_buf);
3142     if (ret < 0)
3143         return ret;
3144
3145     if (mov->mode & (MODE_MP4|MODE_MOV))
3146         mov_write_track_metadata(pb_buf, st, "name", "title");
3147
3148     if ((size = avio_close_dyn_buf(pb_buf, &buf)) > 0) {
3149         avio_wb32(pb, size + 8);
3150         ffio_wfourcc(pb, "udta");
3151         avio_write(pb, buf, size);
3152     }
3153     av_free(buf);
3154
3155     return 0;
3156 }
3157
3158 static int mov_write_trak_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext *mov,
3159                               MOVTrack *track, AVStream *st)
3160 {
3161     int64_t pos = avio_tell(pb);
3162     int entry_backup = track->entry;
3163     int chunk_backup = track->chunkCount;
3164     int ret;
3165
3166     /* If we want to have an empty moov, but some samples already have been
3167      * buffered (delay_moov), pretend that no samples have been written yet. */
3168     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV)
3169         track->chunkCount = track->entry = 0;
3170
3171     avio_wb32(pb, 0); /* size */
3172     ffio_wfourcc(pb, "trak");
3173     mov_write_tkhd_tag(pb, mov, track, st);
3174
3175     av_assert2(mov->use_editlist >= 0);
3176
3177     if (track->start_dts != AV_NOPTS_VALUE) {
3178         if (mov->use_editlist)
3179             mov_write_edts_tag(pb, mov, track);  // PSP Movies and several other cases require edts box
3180         else if ((track->entry && track->cluster[0].dts) || track->mode == MODE_PSP || is_clcp_track(track))
3181             av_log(mov->fc, AV_LOG_WARNING,
3182                    "Not writing any edit list even though one would have been required\n");
3183     }
3184
3185     if (track->tref_tag)
3186         mov_write_tref_tag(pb, track);
3187
3188     if ((ret = mov_write_mdia_tag(s, pb, mov, track)) < 0)
3189         return ret;
3190     if (track->mode == MODE_PSP)
3191         mov_write_uuid_tag_psp(pb, track); // PSP Movies require this uuid box
3192     if (track->tag == MKTAG('r','t','p',' '))
3193         mov_write_udta_sdp(pb, track);
3194     if (track->mode == MODE_MOV) {
3195         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
3196             double sample_aspect_ratio = av_q2d(st->sample_aspect_ratio);
3197             if (st->sample_aspect_ratio.num && 1.0 != sample_aspect_ratio) {
3198                 mov_write_tapt_tag(pb, track);
3199             }
3200         }
3201         if (is_clcp_track(track) && st->sample_aspect_ratio.num) {
3202             mov_write_tapt_tag(pb, track);
3203         }
3204     }
3205     mov_write_track_udta_tag(pb, mov, st);
3206     track->entry = entry_backup;
3207     track->chunkCount = chunk_backup;
3208     return update_size(pb, pos);
3209 }
3210
3211 static int mov_write_iods_tag(AVIOContext *pb, MOVMuxContext *mov)
3212 {
3213     int i, has_audio = 0, has_video = 0;
3214     int64_t pos = avio_tell(pb);
3215     int audio_profile = mov->iods_audio_profile;
3216     int video_profile = mov->iods_video_profile;
3217     for (i = 0; i < mov->nb_streams; i++) {
3218         if (mov->tracks[i].entry > 0 || mov->flags & FF_MOV_FLAG_EMPTY_MOOV) {
3219             has_audio |= mov->tracks[i].par->codec_type == AVMEDIA_TYPE_AUDIO;
3220             has_video |= mov->tracks[i].par->codec_type == AVMEDIA_TYPE_VIDEO;
3221         }
3222     }
3223     if (audio_profile < 0)
3224         audio_profile = 0xFF - has_audio;
3225     if (video_profile < 0)
3226         video_profile = 0xFF - has_video;
3227     avio_wb32(pb, 0x0); /* size */
3228     ffio_wfourcc(pb, "iods");
3229     avio_wb32(pb, 0);    /* version & flags */
3230     put_descr(pb, 0x10, 7);
3231     avio_wb16(pb, 0x004f);
3232     avio_w8(pb, 0xff);
3233     avio_w8(pb, 0xff);
3234     avio_w8(pb, audio_profile);
3235     avio_w8(pb, video_profile);
3236     avio_w8(pb, 0xff);
3237     return update_size(pb, pos);
3238 }
3239
3240 static int mov_write_trex_tag(AVIOContext *pb, MOVTrack *track)
3241 {
3242     avio_wb32(pb, 0x20); /* size */
3243     ffio_wfourcc(pb, "trex");
3244     avio_wb32(pb, 0);   /* version & flags */
3245     avio_wb32(pb, track->track_id); /* track ID */
3246     avio_wb32(pb, 1);   /* default sample description index */
3247     avio_wb32(pb, 0);   /* default sample duration */
3248     avio_wb32(pb, 0);   /* default sample size */
3249     avio_wb32(pb, 0);   /* default sample flags */
3250     return 0;
3251 }
3252
3253 static int mov_write_mvex_tag(AVIOContext *pb, MOVMuxContext *mov)
3254 {
3255     int64_t pos = avio_tell(pb);
3256     int i;
3257     avio_wb32(pb, 0x0); /* size */
3258     ffio_wfourcc(pb, "mvex");
3259     for (i = 0; i < mov->nb_streams; i++)
3260         mov_write_trex_tag(pb, &mov->tracks[i]);
3261     return update_size(pb, pos);
3262 }
3263
3264 static int mov_write_mvhd_tag(AVIOContext *pb, MOVMuxContext *mov)
3265 {
3266     int max_track_id = 1, i;
3267     int64_t max_track_len = 0;
3268     int version;
3269
3270     for (i = 0; i < mov->nb_streams; i++) {
3271         if (mov->tracks[i].entry > 0 && mov->tracks[i].timescale) {
3272             int64_t max_track_len_temp = av_rescale_rnd(mov->tracks[i].track_duration,
3273                                                 MOV_TIMESCALE,
3274                                                 mov->tracks[i].timescale,
3275                                                 AV_ROUND_UP);
3276             if (max_track_len < max_track_len_temp)
3277                 max_track_len = max_track_len_temp;
3278             if (max_track_id < mov->tracks[i].track_id)
3279                 max_track_id = mov->tracks[i].track_id;
3280         }
3281     }
3282     /* If using delay_moov, make sure the output is the same as if no
3283      * samples had been written yet. */
3284     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV) {
3285         max_track_len = 0;
3286         max_track_id  = 1;
3287     }
3288
3289     version = max_track_len < UINT32_MAX ? 0 : 1;
3290     avio_wb32(pb, version == 1 ? 120 : 108); /* size */
3291
3292     ffio_wfourcc(pb, "mvhd");
3293     avio_w8(pb, version);
3294     avio_wb24(pb, 0); /* flags */
3295     if (version == 1) {
3296         avio_wb64(pb, mov->time);
3297         avio_wb64(pb, mov->time);
3298     } else {
3299         avio_wb32(pb, mov->time); /* creation time */
3300         avio_wb32(pb, mov->time); /* modification time */
3301     }
3302     avio_wb32(pb, MOV_TIMESCALE);
3303     (version == 1) ? avio_wb64(pb, max_track_len) : avio_wb32(pb, max_track_len); /* duration of longest track */
3304
3305     avio_wb32(pb, 0x00010000); /* reserved (preferred rate) 1.0 = normal */
3306     avio_wb16(pb, 0x0100); /* reserved (preferred volume) 1.0 = normal */
3307     avio_wb16(pb, 0); /* reserved */
3308     avio_wb32(pb, 0); /* reserved */
3309     avio_wb32(pb, 0); /* reserved */
3310
3311     /* Matrix structure */
3312     write_matrix(pb, 1, 0, 0, 1, 0, 0);
3313
3314     avio_wb32(pb, 0); /* reserved (preview time) */
3315     avio_wb32(pb, 0); /* reserved (preview duration) */
3316     avio_wb32(pb, 0); /* reserved (poster time) */
3317     avio_wb32(pb, 0); /* reserved (selection time) */
3318     avio_wb32(pb, 0); /* reserved (selection duration) */
3319     avio_wb32(pb, 0); /* reserved (current time) */
3320     avio_wb32(pb, max_track_id + 1); /* Next track id */
3321     return 0x6c;
3322 }
3323
3324 static int mov_write_itunes_hdlr_tag(AVIOContext *pb, MOVMuxContext *mov,
3325                                      AVFormatContext *s)
3326 {
3327     avio_wb32(pb, 33); /* size */
3328     ffio_wfourcc(pb, "hdlr");
3329     avio_wb32(pb, 0);
3330     avio_wb32(pb, 0);
3331     ffio_wfourcc(pb, "mdir");
3332     ffio_wfourcc(pb, "appl");
3333     avio_wb32(pb, 0);
3334     avio_wb32(pb, 0);
3335     avio_w8(pb, 0);
3336     return 33;
3337 }
3338
3339 /* helper function to write a data tag with the specified string as data */
3340 static int mov_write_string_data_tag(AVIOContext *pb, const char *data, int lang, int long_style)
3341 {
3342     if (long_style) {
3343         int size = 16 + strlen(data);
3344         avio_wb32(pb, size); /* size */
3345         ffio_wfourcc(pb, "data");
3346         avio_wb32(pb, 1);
3347         avio_wb32(pb, 0);
3348         avio_write(pb, data, strlen(data));
3349         return size;
3350     } else {
3351         if (!lang)
3352             lang = ff_mov_iso639_to_lang("und", 1);
3353         avio_wb16(pb, strlen(data)); /* string length */
3354         avio_wb16(pb, lang);
3355         avio_write(pb, data, strlen(data));
3356         return strlen(data) + 4;
3357     }
3358 }
3359
3360 static int mov_write_string_tag(AVIOContext *pb, const char *name,
3361                                 const char *value, int lang, int long_style)
3362 {
3363     int size = 0;
3364     if (value && value[0]) {
3365         int64_t pos = avio_tell(pb);
3366         avio_wb32(pb, 0); /* size */
3367         ffio_wfourcc(pb, name);
3368         mov_write_string_data_tag(pb, value, lang, long_style);
3369         size = update_size(pb, pos);
3370     }
3371     return size;
3372 }
3373
3374 static AVDictionaryEntry *get_metadata_lang(AVFormatContext *s,
3375                                             const char *tag, int *lang)
3376 {
3377     int l, len, len2;
3378     AVDictionaryEntry *t, *t2 = NULL;
3379     char tag2[16];
3380
3381     *lang = 0;
3382
3383     if (!(t = av_dict_get(s->metadata, tag, NULL, 0)))
3384         return NULL;
3385
3386     len = strlen(t->key);
3387     snprintf(tag2, sizeof(tag2), "%s-", tag);
3388     while ((t2 = av_dict_get(s->metadata, tag2, t2, AV_DICT_IGNORE_SUFFIX))) {
3389         len2 = strlen(t2->key);
3390         if (len2 == len + 4 && !strcmp(t->value, t2->value)
3391             && (l = ff_mov_iso639_to_lang(&t2->key[len2 - 3], 1)) >= 0) {
3392             *lang = l;
3393             return t;
3394         }
3395     }
3396     return t;
3397 }
3398
3399 static int mov_write_string_metadata(AVFormatContext *s, AVIOContext *pb,
3400                                      const char *name, const char *tag,
3401                                      int long_style)
3402 {
3403     int lang;
3404     AVDictionaryEntry *t = get_metadata_lang(s, tag, &lang);
3405     if (!t)
3406         return 0;
3407     return mov_write_string_tag(pb, name, t->value, lang, long_style);
3408 }
3409
3410 /* iTunes bpm number */
3411 static int mov_write_tmpo_tag(AVIOContext *pb, AVFormatContext *s)
3412 {
3413     AVDictionaryEntry *t = av_dict_get(s->metadata, "tmpo", NULL, 0);
3414     int size = 0, tmpo = t ? atoi(t->value) : 0;
3415     if (tmpo) {
3416         size = 26;
3417         avio_wb32(pb, size);
3418         ffio_wfourcc(pb, "tmpo");
3419         avio_wb32(pb, size-8); /* size */
3420         ffio_wfourcc(pb, "data");
3421         avio_wb32(pb, 0x15);  //type specifier
3422         avio_wb32(pb, 0);
3423         avio_wb16(pb, tmpo);        // data
3424     }
3425     return size;
3426 }
3427
3428 /* 3GPP TS 26.244 */
3429 static int mov_write_loci_tag(AVFormatContext *s, AVIOContext *pb)
3430 {
3431     int lang;
3432     int64_t pos = avio_tell(pb);
3433     double latitude, longitude, altitude;
3434     int32_t latitude_fix, longitude_fix, altitude_fix;
3435     AVDictionaryEntry *t = get_metadata_lang(s, "location", &lang);
3436     const char *ptr, *place = "";
3437     char *end;
3438     static const char *astronomical_body = "earth";
3439     if (!t)
3440         return 0;
3441
3442     ptr = t->value;
3443     longitude = strtod(ptr, &end);
3444     if (end == ptr) {
3445         av_log(s, AV_LOG_WARNING, "malformed location metadata\n");
3446         return 0;
3447     }
3448     ptr = end;
3449     latitude = strtod(ptr, &end);
3450     if (end == ptr) {
3451         av_log(s, AV_LOG_WARNING, "malformed location metadata\n");
3452         return 0;
3453     }
3454     ptr = end;
3455     altitude = strtod(ptr, &end);
3456     /* If no altitude was present, the default 0 should be fine */
3457     if (*end == '/')
3458         place = end + 1;
3459
3460     latitude_fix  = (int32_t) ((1 << 16) * latitude);
3461     longitude_fix = (int32_t) ((1 << 16) * longitude);
3462     altitude_fix  = (int32_t) ((1 << 16) * altitude);
3463
3464     avio_wb32(pb, 0);         /* size */
3465     ffio_wfourcc(pb, "loci"); /* type */
3466     avio_wb32(pb, 0);         /* version + flags */
3467     avio_wb16(pb, lang);
3468     avio_write(pb, place, strlen(place) + 1);
3469     avio_w8(pb, 0);           /* role of place (0 == shooting location, 1 == real location, 2 == fictional location) */
3470     avio_wb32(pb, latitude_fix);
3471     avio_wb32(pb, longitude_fix);
3472     avio_wb32(pb, altitude_fix);
3473     avio_write(pb, astronomical_body, strlen(astronomical_body) + 1);
3474     avio_w8(pb, 0);           /* additional notes, null terminated string */
3475
3476     return update_size(pb, pos);
3477 }
3478
3479 /* iTunes track or disc number */
3480 static int mov_write_trkn_tag(AVIOContext *pb, MOVMuxContext *mov,
3481                               AVFormatContext *s, int disc)
3482 {
3483     AVDictionaryEntry *t = av_dict_get(s->metadata,
3484                                        disc ? "disc" : "track",
3485                                        NULL, 0);
3486     int size = 0, track = t ? atoi(t->value) : 0;
3487     if (track) {
3488         int tracks = 0;
3489         char *slash = strchr(t->value, '/');
3490         if (slash)
3491             tracks = atoi(slash + 1);
3492         avio_wb32(pb, 32); /* size */
3493         ffio_wfourcc(pb, disc ? "disk" : "trkn");
3494         avio_wb32(pb, 24); /* size */
3495         ffio_wfourcc(pb, "data");
3496         avio_wb32(pb, 0);        // 8 bytes empty
3497         avio_wb32(pb, 0);
3498         avio_wb16(pb, 0);        // empty
3499         avio_wb16(pb, track);    // track / disc number
3500         avio_wb16(pb, tracks);   // total track / disc number
3501         avio_wb16(pb, 0);        // empty
3502         size = 32;
3503     }
3504     return size;
3505 }
3506
3507 static int mov_write_int8_metadata(AVFormatContext *s, AVIOContext *pb,
3508                                    const char *name, const char *tag,
3509                                    int len)
3510 {
3511     AVDictionaryEntry *t = NULL;
3512     uint8_t num;
3513     int size = 24 + len;
3514
3515     if (len != 1 && len != 4)
3516         return -1;
3517
3518     if (!(t = av_dict_get(s->metadata, tag, NULL, 0)))
3519         return 0;
3520     num = atoi(t->value);
3521
3522     avio_wb32(pb, size);
3523     ffio_wfourcc(pb, name);
3524     avio_wb32(pb, size - 8);
3525     ffio_wfourcc(pb, "data");
3526     avio_wb32(pb, 0x15);
3527     avio_wb32(pb, 0);
3528     if (len==4) avio_wb32(pb, num);
3529     else        avio_w8 (pb, num);
3530
3531     return size;
3532 }
3533
3534 static int mov_write_covr(AVIOContext *pb, AVFormatContext *s)
3535 {
3536     MOVMuxContext *mov = s->priv_data;
3537     int64_t pos = 0;
3538     int i;
3539
3540     for (i = 0; i < s->nb_streams; i++) {
3541         MOVTrack *trk = &mov->tracks[i];
3542
3543         if (!is_cover_image(trk->st) || trk->cover_image.size <= 0)
3544             continue;
3545
3546         if (!pos) {
3547             pos = avio_tell(pb);
3548             avio_wb32(pb, 0);
3549             ffio_wfourcc(pb, "covr");
3550         }
3551         avio_wb32(pb, 16 + trk->cover_image.size);
3552         ffio_wfourcc(pb, "data");
3553         avio_wb32(pb, trk->tag);
3554         avio_wb32(pb , 0);
3555         avio_write(pb, trk->cover_image.data, trk->cover_image.size);
3556     }
3557
3558     return pos ? update_size(pb, pos) : 0;
3559 }
3560
3561 /* iTunes meta data list */
3562 static int mov_write_ilst_tag(AVIOContext *pb, MOVMuxContext *mov,
3563                               AVFormatContext *s)
3564 {
3565     int64_t pos = avio_tell(pb);
3566     avio_wb32(pb, 0); /* size */
3567     ffio_wfourcc(pb, "ilst");
3568     mov_write_string_metadata(s, pb, "\251nam", "title"    , 1);
3569     mov_write_string_metadata(s, pb, "\251ART", "artist"   , 1);
3570     mov_write_string_metadata(s, pb, "aART", "album_artist", 1);
3571     mov_write_string_metadata(s, pb, "\251wrt", "composer" , 1);
3572     mov_write_string_metadata(s, pb, "\251alb", "album"    , 1);
3573     mov_write_string_metadata(s, pb, "\251day", "date"     , 1);
3574     if (!mov_write_string_metadata(s, pb, "\251too", "encoding_tool", 1)) {
3575         if (!(s->flags & AVFMT_FLAG_BITEXACT))
3576             mov_write_string_tag(pb, "\251too", LIBAVFORMAT_IDENT, 0, 1);
3577     }
3578     mov_write_string_metadata(s, pb, "\251cmt", "comment"  , 1);
3579     mov_write_string_metadata(s, pb, "\251gen", "genre"    , 1);
3580     mov_write_string_metadata(s, pb, "cprt",    "copyright", 1);
3581     mov_write_string_metadata(s, pb, "\251grp", "grouping" , 1);
3582     mov_write_string_metadata(s, pb, "\251lyr", "lyrics"   , 1);
3583     mov_write_string_metadata(s, pb, "desc",    "description",1);
3584     mov_write_string_metadata(s, pb, "ldes",    "synopsis" , 1);
3585     mov_write_string_metadata(s, pb, "tvsh",    "show"     , 1);
3586     mov_write_string_metadata(s, pb, "tven",    "episode_id",1);
3587     mov_write_string_metadata(s, pb, "tvnn",    "network"  , 1);
3588     mov_write_string_metadata(s, pb, "keyw",    "keywords"  , 1);
3589     mov_write_int8_metadata  (s, pb, "tves",    "episode_sort",4);
3590     mov_write_int8_metadata  (s, pb, "tvsn",    "season_number",4);
3591     mov_write_int8_metadata  (s, pb, "stik",    "media_type",1);
3592     mov_write_int8_metadata  (s, pb, "hdvd",    "hd_video",  1);
3593     mov_write_int8_metadata  (s, pb, "pgap",    "gapless_playback",1);
3594     mov_write_int8_metadata  (s, pb, "cpil",    "compilation", 1);
3595     mov_write_covr(pb, s);
3596     mov_write_trkn_tag(pb, mov, s, 0); // track number
3597     mov_write_trkn_tag(pb, mov, s, 1); // disc number
3598     mov_write_tmpo_tag(pb, s);
3599     return update_size(pb, pos);
3600 }
3601
3602 static int mov_write_mdta_hdlr_tag(AVIOContext *pb, MOVMuxContext *mov,
3603                                    AVFormatContext *s)
3604 {
3605     avio_wb32(pb, 33); /* size */
3606     ffio_wfourcc(pb, "hdlr");
3607     avio_wb32(pb, 0);
3608     avio_wb32(pb, 0);
3609     ffio_wfourcc(pb, "mdta");
3610     avio_wb32(pb, 0);
3611     avio_wb32(pb, 0);
3612     avio_wb32(pb, 0);
3613     avio_w8(pb, 0);
3614     return 33;
3615 }
3616
3617 static int mov_write_mdta_keys_tag(AVIOContext *pb, MOVMuxContext *mov,
3618                                    AVFormatContext *s)
3619 {
3620     AVDictionaryEntry *t = NULL;
3621     int64_t pos = avio_tell(pb);
3622     int64_t curpos, entry_pos;
3623     int count = 0;
3624
3625     avio_wb32(pb, 0); /* size */
3626     ffio_wfourcc(pb, "keys");
3627     avio_wb32(pb, 0);
3628     entry_pos = avio_tell(pb);
3629     avio_wb32(pb, 0); /* entry count */
3630
3631     while (t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX)) {
3632         avio_wb32(pb, strlen(t->key) + 8);
3633         ffio_wfourcc(pb, "mdta");
3634         avio_write(pb, t->key, strlen(t->key));
3635         count += 1;
3636     }
3637     curpos = avio_tell(pb);
3638     avio_seek(pb, entry_pos, SEEK_SET);
3639     avio_wb32(pb, count); // rewrite entry count
3640     avio_seek(pb, curpos, SEEK_SET);
3641
3642     return update_size(pb, pos);
3643 }
3644
3645 static int mov_write_mdta_ilst_tag(AVIOContext *pb, MOVMuxContext *mov,
3646                                    AVFormatContext *s)
3647 {
3648     AVDictionaryEntry *t = NULL;
3649     int64_t pos = avio_tell(pb);
3650     int count = 1; /* keys are 1-index based */
3651
3652     avio_wb32(pb, 0); /* size */
3653     ffio_wfourcc(pb, "ilst");
3654
3655     while (t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX)) {
3656         int64_t entry_pos = avio_tell(pb);
3657         avio_wb32(pb, 0); /* size */
3658         avio_wb32(pb, count); /* key */
3659         mov_write_string_data_tag(pb, t->value, 0, 1);
3660         update_size(pb, entry_pos);
3661         count += 1;
3662     }
3663     return update_size(pb, pos);
3664 }
3665
3666 /* meta data tags */
3667 static int mov_write_meta_tag(AVIOContext *pb, MOVMuxContext *mov,
3668                               AVFormatContext *s)
3669 {
3670     int size = 0;
3671     int64_t pos = avio_tell(pb);
3672     avio_wb32(pb, 0); /* size */
3673     ffio_wfourcc(pb, "meta");
3674     avio_wb32(pb, 0);
3675     if (mov->flags & FF_MOV_FLAG_USE_MDTA) {
3676         mov_write_mdta_hdlr_tag(pb, mov, s);
3677         mov_write_mdta_keys_tag(pb, mov, s);
3678         mov_write_mdta_ilst_tag(pb, mov, s);
3679     }
3680     else {
3681         /* iTunes metadata tag */
3682         mov_write_itunes_hdlr_tag(pb, mov, s);
3683         mov_write_ilst_tag(pb, mov, s);
3684     }
3685     size = update_size(pb, pos);
3686     return size;
3687 }
3688
3689 static int mov_write_raw_metadata_tag(AVFormatContext *s, AVIOContext *pb,
3690                                       const char *name, const char *key)
3691 {
3692     int len;
3693     AVDictionaryEntry *t;
3694
3695     if (!(t = av_dict_get(s->metadata, key, NULL, 0)))
3696         return 0;
3697
3698     len = strlen(t->value);
3699     if (len > 0) {
3700         int size = len + 8;
3701         avio_wb32(pb, size);
3702         ffio_wfourcc(pb, name);
3703         avio_write(pb, t->value, len);
3704         return size;
3705     }
3706     return 0;
3707 }
3708
3709 static int ascii_to_wc(AVIOContext *pb, const uint8_t *b)
3710 {
3711     int val;
3712     while (*b) {
3713         GET_UTF8(val, *b++, return -1;)
3714         avio_wb16(pb, val);
3715     }
3716     avio_wb16(pb, 0x00);
3717     return 0;
3718 }
3719
3720 static uint16_t language_code(const char *str)
3721 {
3722     return (((str[0] - 0x60) & 0x1F) << 10) +
3723            (((str[1] - 0x60) & 0x1F) <<  5) +
3724            (( str[2] - 0x60) & 0x1F);
3725 }
3726
3727 static int mov_write_3gp_udta_tag(AVIOContext *pb, AVFormatContext *s,
3728                                   const char *tag, const char *str)
3729 {
3730     int64_t pos = avio_tell(pb);
3731     AVDictionaryEntry *t = av_dict_get(s->metadata, str, NULL, 0);
3732     if (!t || !utf8len(t->value))
3733         return 0;
3734     avio_wb32(pb, 0);   /* size */
3735     ffio_wfourcc(pb, tag); /* type */
3736     avio_wb32(pb, 0);   /* version + flags */
3737     if (!strcmp(tag, "yrrc"))
3738         avio_wb16(pb, atoi(t->value));
3739     else {
3740         avio_wb16(pb, language_code("eng")); /* language */
3741         avio_write(pb, t->value, strlen(t->value) + 1); /* UTF8 string value */
3742         if (!strcmp(tag, "albm") &&
3743             (t = av_dict_get(s->metadata, "track", NULL, 0)))
3744             avio_w8(pb, atoi(t->value));
3745     }
3746     return update_size(pb, pos);
3747 }
3748
3749 static int mov_write_chpl_tag(AVIOContext *pb, AVFormatContext *s)
3750 {
3751     int64_t pos = avio_tell(pb);
3752     int i, nb_chapters = FFMIN(s->nb_chapters, 255);
3753
3754     avio_wb32(pb, 0);            // size
3755     ffio_wfourcc(pb, "chpl");
3756     avio_wb32(pb, 0x01000000);   // version + flags
3757     avio_wb32(pb, 0);            // unknown
3758     avio_w8(pb, nb_chapters);
3759
3760     for (i = 0; i < nb_chapters; i++) {
3761         AVChapter *c = s->chapters[i];
3762         AVDictionaryEntry *t;
3763         avio_wb64(pb, av_rescale_q(c->start, c->time_base, (AVRational){1,10000000}));
3764
3765         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
3766             int len = FFMIN(strlen(t->value), 255);
3767             avio_w8(pb, len);
3768             avio_write(pb, t->value, len);
3769         } else
3770             avio_w8(pb, 0);
3771     }
3772     return update_size(pb, pos);
3773 }
3774
3775 static int mov_write_udta_tag(AVIOContext *pb, MOVMuxContext *mov,
3776                               AVFormatContext *s)
3777 {
3778     AVIOContext *pb_buf;
3779     int ret, size;
3780     uint8_t *buf;
3781
3782     ret = avio_open_dyn_buf(&pb_buf);
3783     if (ret < 0)
3784         return ret;
3785
3786     if (mov->mode & MODE_3GP) {
3787         mov_write_3gp_udta_tag(pb_buf, s, "perf", "artist");
3788         mov_write_3gp_udta_tag(pb_buf, s, "titl", "title");
3789         mov_write_3gp_udta_tag(pb_buf, s, "auth", "author");
3790         mov_write_3gp_udta_tag(pb_buf, s, "gnre", "genre");
3791         mov_write_3gp_udta_tag(pb_buf, s, "dscp", "comment");
3792         mov_write_3gp_udta_tag(pb_buf, s, "albm", "album");
3793         mov_write_3gp_udta_tag(pb_buf, s, "cprt", "copyright");
3794         mov_write_3gp_udta_tag(pb_buf, s, "yrrc", "date");
3795         mov_write_loci_tag(s, pb_buf);
3796     } else if (mov->mode == MODE_MOV && !(mov->flags & FF_MOV_FLAG_USE_MDTA)) { // the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
3797         mov_write_string_metadata(s, pb_buf, "\251ART", "artist",      0);
3798         mov_write_string_metadata(s, pb_buf, "\251nam", "title",       0);
3799         mov_write_string_metadata(s, pb_buf, "\251aut", "author",      0);
3800         mov_write_string_metadata(s, pb_buf, "\251alb", "album",       0);
3801         mov_write_string_metadata(s, pb_buf, "\251day", "date",        0);
3802         mov_write_string_metadata(s, pb_buf, "\251swr", "encoder",     0);
3803         // currently ignored by mov.c
3804         mov_write_string_metadata(s, pb_buf, "\251des", "comment",     0);
3805         // add support for libquicktime, this atom is also actually read by mov.c
3806         mov_write_string_metadata(s, pb_buf, "\251cmt", "comment",     0);
3807         mov_write_string_metadata(s, pb_buf, "\251gen", "genre",       0);
3808         mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright",   0);
3809         mov_write_string_metadata(s, pb_buf, "\251mak", "make",        0);
3810         mov_write_string_metadata(s, pb_buf, "\251mod", "model",       0);
3811         mov_write_string_metadata(s, pb_buf, "\251xyz", "location",    0);
3812         mov_write_string_metadata(s, pb_buf, "\251key", "keywords",    0);
3813         mov_write_raw_metadata_tag(s, pb_buf, "XMP_", "xmp");
3814     } else {
3815         /* iTunes meta data */
3816         mov_write_meta_tag(pb_buf, mov, s);
3817         mov_write_loci_tag(s, pb_buf);
3818     }
3819
3820     if (s->nb_chapters && !(mov->flags & FF_MOV_FLAG_DISABLE_CHPL))
3821         mov_write_chpl_tag(pb_buf, s);
3822
3823     if ((size = avio_close_dyn_buf(pb_buf, &buf)) > 0) {
3824         avio_wb32(pb, size + 8);
3825         ffio_wfourcc(pb, "udta");
3826         avio_write(pb, buf, size);
3827     }
3828     av_free(buf);
3829
3830     return 0;
3831 }
3832
3833 static void mov_write_psp_udta_tag(AVIOContext *pb,
3834                                    const char *str, const char *lang, int type)
3835 {
3836     int len = utf8len(str) + 1;
3837     if (len <= 0)
3838         return;
3839     avio_wb16(pb, len * 2 + 10);        /* size */
3840     avio_wb32(pb, type);                /* type */
3841     avio_wb16(pb, language_code(lang)); /* language */
3842     avio_wb16(pb, 0x01);                /* ? */
3843     ascii_to_wc(pb, str);
3844 }
3845
3846 static int mov_write_uuidusmt_tag(AVIOContext *pb, AVFormatContext *s)
3847 {
3848     AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
3849     int64_t pos, pos2;
3850
3851     if (title) {
3852         pos = avio_tell(pb);
3853         avio_wb32(pb, 0); /* size placeholder*/
3854         ffio_wfourcc(pb, "uuid");
3855         ffio_wfourcc(pb, "USMT");
3856         avio_wb32(pb, 0x21d24fce); /* 96 bit UUID */
3857         avio_wb32(pb, 0xbb88695c);
3858         avio_wb32(pb, 0xfac9c740);
3859
3860         pos2 = avio_tell(pb);
3861         avio_wb32(pb, 0); /* size placeholder*/
3862         ffio_wfourcc(pb, "MTDT");
3863         avio_wb16(pb, 4);
3864
3865         // ?
3866         avio_wb16(pb, 0x0C);                 /* size */
3867         avio_wb32(pb, 0x0B);                 /* type */
3868         avio_wb16(pb, language_code("und")); /* language */
3869         avio_wb16(pb, 0x0);                  /* ? */
3870         avio_wb16(pb, 0x021C);               /* data */
3871
3872         if (!(s->flags & AVFMT_FLAG_BITEXACT))
3873             mov_write_psp_udta_tag(pb, LIBAVCODEC_IDENT,      "eng", 0x04);
3874         mov_write_psp_udta_tag(pb, title->value,          "eng", 0x01);
3875         mov_write_psp_udta_tag(pb, "2006/04/01 11:11:11", "und", 0x03);
3876
3877         update_size(pb, pos2);
3878         return update_size(pb, pos);
3879     }
3880
3881     return 0;
3882 }
3883
3884 static void build_chunks(MOVTrack *trk)
3885 {
3886     int i;
3887     MOVIentry *chunk = &trk->cluster[0];
3888     uint64_t chunkSize = chunk->size;
3889     chunk->chunkNum = 1;
3890     if (trk->chunkCount)
3891         return;
3892     trk->chunkCount = 1;
3893     for (i = 1; i<trk->entry; i++){
3894         if (chunk->pos + chunkSize == trk->cluster[i].pos &&
3895             chunkSize + trk->cluster[i].size < (1<<20)){
3896             chunkSize             += trk->cluster[i].size;
3897             chunk->samples_in_chunk += trk->cluster[i].entries;
3898         } else {
3899             trk->cluster[i].chunkNum = chunk->chunkNum+1;
3900             chunk=&trk->cluster[i];
3901             chunkSize = chunk->size;
3902             trk->chunkCount++;
3903         }
3904     }
3905 }
3906
3907 /**
3908  * Assign track ids. If option "use_stream_ids_as_track_ids" is set,
3909  * the stream ids are used as track ids.
3910  *
3911  * This assumes mov->tracks and s->streams are in the same order and
3912  * there are no gaps in either of them (so mov->tracks[n] refers to
3913  * s->streams[n]).
3914  *
3915  * As an exception, there can be more entries in
3916  * s->streams than in mov->tracks, in which case new track ids are
3917  * generated (starting after the largest found stream id).
3918  */
3919 static int mov_setup_track_ids(MOVMuxContext *mov, AVFormatContext *s)
3920 {
3921     int i;
3922
3923     if (mov->track_ids_ok)
3924         return 0;
3925
3926     if (mov->use_stream_ids_as_track_ids) {
3927         int next_generated_track_id = 0;
3928         for (i = 0; i < s->nb_streams; i++) {
3929             if (s->streams[i]->id > next_generated_track_id)
3930                 next_generated_track_id = s->streams[i]->id;
3931         }
3932
3933         for (i = 0; i < mov->nb_streams; i++) {
3934             if (mov->tracks[i].entry <= 0 && !(mov->flags & FF_MOV_FLAG_FRAGMENT))
3935                 continue;
3936
3937             mov->tracks[i].track_id = i >= s->nb_streams ? ++next_generated_track_id : s->streams[i]->id;
3938         }
3939     } else {
3940         for (i = 0; i < mov->nb_streams; i++) {
3941             if (mov->tracks[i].entry <= 0 && !(mov->flags & FF_MOV_FLAG_FRAGMENT))
3942                 continue;
3943
3944             mov->tracks[i].track_id = i + 1;
3945         }
3946     }
3947
3948     mov->track_ids_ok = 1;
3949
3950     return 0;
3951 }
3952
3953 static int mov_write_moov_tag(AVIOContext *pb, MOVMuxContext *mov,
3954                               AVFormatContext *s)
3955 {
3956     int i;
3957     int64_t pos = avio_tell(pb);
3958     avio_wb32(pb, 0); /* size placeholder*/
3959     ffio_wfourcc(pb, "moov");
3960
3961     mov_setup_track_ids(mov, s);
3962
3963     for (i = 0; i < mov->nb_streams; i++) {
3964         if (mov->tracks[i].entry <= 0 && !(mov->flags & FF_MOV_FLAG_FRAGMENT))
3965             continue;
3966
3967         mov->tracks[i].time     = mov->time;
3968
3969         if (mov->tracks[i].entry)
3970             build_chunks(&mov->tracks[i]);
3971     }
3972
3973     if (mov->chapter_track)
3974         for (i = 0; i < s->nb_streams; i++) {
3975             mov->tracks[i].tref_tag = MKTAG('c','h','a','p');
3976             mov->tracks[i].tref_id  = mov->tracks[mov->chapter_track].track_id;
3977         }
3978     for (i = 0; i < mov->nb_streams; i++) {
3979         MOVTrack *track = &mov->tracks[i];
3980         if (track->tag == MKTAG('r','t','p',' ')) {
3981             track->tref_tag = MKTAG('h','i','n','t');
3982             track->tref_id = mov->tracks[track->src_track].track_id;
3983         } else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO) {
3984             int * fallback, size;
3985             fallback = (int*)av_stream_get_side_data(track->st,
3986                                                      AV_PKT_DATA_FALLBACK_TRACK,
3987                                                      &size);
3988             if (fallback != NULL && size == sizeof(int)) {
3989                 if (*fallback >= 0 && *fallback < mov->nb_streams) {
3990                     track->tref_tag = MKTAG('f','a','l','l');
3991                     track->tref_id = mov->tracks[*fallback].track_id;
3992                 }
3993             }
3994         }
3995     }
3996     for (i = 0; i < mov->nb_streams; i++) {
3997         if (mov->tracks[i].tag == MKTAG('t','m','c','d')) {
3998             int src_trk = mov->tracks[i].src_track;
3999             mov->tracks[src_trk].tref_tag = mov->tracks[i].tag;
4000             mov->tracks[src_trk].tref_id  = mov->tracks[i].track_id;
4001             //src_trk may have a different timescale than the tmcd track
4002             mov->tracks[i].track_duration = av_rescale(mov->tracks[src_trk].track_duration,
4003                                                        mov->tracks[i].timescale,
4004                                                        mov->tracks[src_trk].timescale);
4005         }
4006     }
4007
4008     mov_write_mvhd_tag(pb, mov);
4009     if (mov->mode != MODE_MOV && !mov->iods_skip)
4010         mov_write_iods_tag(pb, mov);
4011     for (i = 0; i < mov->nb_streams; i++) {
4012         if (mov->tracks[i].entry > 0 || mov->flags & FF_MOV_FLAG_FRAGMENT) {
4013             int ret = mov_write_trak_tag(s, pb, mov, &(mov->tracks[i]), i < s->nb_streams ? s->streams[i] : NULL);
4014             if (ret < 0)
4015                 return ret;
4016         }
4017     }
4018     if (mov->flags & FF_MOV_FLAG_FRAGMENT)
4019         mov_write_mvex_tag(pb, mov); /* QuickTime requires trak to precede this */
4020
4021     if (mov->mode == MODE_PSP)
4022         mov_write_uuidusmt_tag(pb, s);
4023     else
4024         mov_write_udta_tag(pb, mov, s);
4025
4026     return update_size(pb, pos);
4027 }
4028
4029 static void param_write_int(AVIOContext *pb, const char *name, int value)
4030 {
4031     avio_printf(pb, "<param name=\"%s\" value=\"%d\" valuetype=\"data\"/>\n", name, value);
4032 }
4033
4034 static void param_write_string(AVIOContext *pb, const char *name, const char *value)
4035 {
4036     avio_printf(pb, "<param name=\"%s\" value=\"%s\" valuetype=\"data\"/>\n", name, value);
4037 }
4038
4039 static void param_write_hex(AVIOContext *pb, const char *name, const uint8_t *value, int len)
4040 {
4041     char buf[150];
4042     len = FFMIN(sizeof(buf) / 2 - 1, len);
4043     ff_data_to_hex(buf, value, len, 0);
4044     buf[2 * len] = '\0';
4045     avio_printf(pb, "<param name=\"%s\" value=\"%s\" valuetype=\"data\"/>\n", name, buf);
4046 }
4047
4048 static int mov_write_isml_manifest(AVIOContext *pb, MOVMuxContext *mov, AVFormatContext *s)
4049 {
4050     int64_t pos = avio_tell(pb);
4051     int i;
4052     int64_t manifest_bit_rate = 0;
4053     AVCPBProperties *props = NULL;
4054
4055     static const uint8_t uuid[] = {
4056         0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd,
4057         0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66
4058     };
4059
4060     avio_wb32(pb, 0);
4061     ffio_wfourcc(pb, "uuid");
4062     avio_write(pb, uuid, sizeof(uuid));
4063     avio_wb32(pb, 0);
4064
4065     avio_printf(pb, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
4066     avio_printf(pb, "<smil xmlns=\"http://www.w3.org/2001/SMIL20/Language\">\n");
4067     avio_printf(pb, "<head>\n");
4068     if (!(mov->fc->flags & AVFMT_FLAG_BITEXACT))
4069         avio_printf(pb, "<meta name=\"creator\" content=\"%s\" />\n",
4070                     LIBAVFORMAT_IDENT);
4071     avio_printf(pb, "</head>\n");
4072     avio_printf(pb, "<body>\n");
4073     avio_printf(pb, "<switch>\n");
4074
4075     mov_setup_track_ids(mov, s);
4076
4077     for (i = 0; i < mov->nb_streams; i++) {
4078         MOVTrack *track = &mov->tracks[i];
4079         const char *type;
4080         int track_id = track->track_id;
4081         char track_name_buf[32] = { 0 };
4082
4083         AVStream *st = track->st;
4084         AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL,0);
4085
4086         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO && !is_cover_image(st)) {
4087             type = "video";
4088         } else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO) {
4089             type = "audio";
4090         } else {
4091             continue;
4092         }
4093
4094         props = (AVCPBProperties*)av_stream_get_side_data(track->st, AV_PKT_DATA_CPB_PROPERTIES, NULL);
4095
4096         if (track->par->bit_rate) {
4097             manifest_bit_rate = track->par->bit_rate;
4098         } else if (props) {
4099             manifest_bit_rate = props->max_bitrate;
4100         }
4101
4102         avio_printf(pb, "<%s systemBitrate=\"%"PRId64"\">\n", type,
4103                     manifest_bit_rate);
4104         param_write_int(pb, "systemBitrate", manifest_bit_rate);
4105         param_write_int(pb, "trackID", track_id);
4106         param_write_string(pb, "systemLanguage", lang ? lang->value : "und");
4107
4108         /* Build track name piece by piece: */
4109         /* 1. track type */
4110         av_strlcat(track_name_buf, type, sizeof(track_name_buf));
4111         /* 2. track language, if available */
4112         if (lang)
4113             av_strlcatf(track_name_buf, sizeof(track_name_buf),
4114                         "_%s", lang->value);
4115         /* 3. special type suffix */
4116         /* "_cc" = closed captions, "_ad" = audio_description */
4117         if (st->disposition & AV_DISPOSITION_HEARING_IMPAIRED)
4118             av_strlcat(track_name_buf, "_cc", sizeof(track_name_buf));
4119         else if (st->disposition & AV_DISPOSITION_VISUAL_IMPAIRED)
4120             av_strlcat(track_name_buf, "_ad", sizeof(track_name_buf));
4121
4122         param_write_string(pb, "trackName", track_name_buf);
4123
4124         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
4125             if (track->par->codec_id == AV_CODEC_ID_H264) {
4126                 uint8_t *ptr;
4127                 int size = track->par->extradata_size;
4128                 if (!ff_avc_write_annexb_extradata(track->par->extradata, &ptr,
4129                                                    &size)) {
4130                     param_write_hex(pb, "CodecPrivateData",
4131                                     ptr ? ptr : track->par->extradata,
4132                                     size);
4133                     av_free(ptr);
4134                 }
4135                 param_write_string(pb, "FourCC", "H264");
4136             } else if (track->par->codec_id == AV_CODEC_ID_VC1) {
4137                 param_write_string(pb, "FourCC", "WVC1");
4138                 param_write_hex(pb, "CodecPrivateData", track->par->extradata,
4139                                 track->par->extradata_size);
4140             }
4141             param_write_int(pb, "MaxWidth", track->par->width);
4142             param_write_int(pb, "MaxHeight", track->par->height);
4143             param_write_int(pb, "DisplayWidth", track->par->width);
4144             param_write_int(pb, "DisplayHeight", track->par->height);
4145         } else {
4146             if (track->par->codec_id == AV_CODEC_ID_AAC) {
4147                 switch (track->par->profile)
4148                 {
4149                     case FF_PROFILE_AAC_HE_V2:
4150                         param_write_string(pb, "FourCC", "AACP");
4151                         break;
4152                     case FF_PROFILE_AAC_HE:
4153                         param_write_string(pb, "FourCC", "AACH");
4154                         break;
4155                     default:
4156                         param_write_string(pb, "FourCC", "AACL");
4157                 }
4158             } else if (track->par->codec_id == AV_CODEC_ID_WMAPRO) {
4159                 param_write_string(pb, "FourCC", "WMAP");
4160             }
4161             param_write_hex(pb, "CodecPrivateData", track->par->extradata,
4162                             track->par->extradata_size);
4163             param_write_int(pb, "AudioTag", ff_codec_get_tag(ff_codec_wav_tags,
4164                                                              track->par->codec_id));
4165             param_write_int(pb, "Channels", track->par->channels);
4166             param_write_int(pb, "SamplingRate", track->par->sample_rate);
4167             param_write_int(pb, "BitsPerSample", 16);
4168             param_write_int(pb, "PacketSize", track->par->block_align ?
4169                                               track->par->block_align : 4);
4170         }
4171         avio_printf(pb, "</%s>\n", type);
4172     }
4173     avio_printf(pb, "</switch>\n");
4174     avio_printf(pb, "</body>\n");
4175     avio_printf(pb, "</smil>\n");
4176
4177     return update_size(pb, pos);
4178 }
4179
4180 static int mov_write_mfhd_tag(AVIOContext *pb, MOVMuxContext *mov)
4181 {
4182     avio_wb32(pb, 16);
4183     ffio_wfourcc(pb, "mfhd");
4184     avio_wb32(pb, 0);
4185     avio_wb32(pb, mov->fragments);
4186     return 0;
4187 }
4188
4189 static uint32_t get_sample_flags(MOVTrack *track, MOVIentry *entry)
4190 {
4191     return entry->flags & MOV_SYNC_SAMPLE ? MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO :
4192            (MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES | MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC);
4193 }
4194
4195 static int mov_write_tfhd_tag(AVIOContext *pb, MOVMuxContext *mov,
4196                               MOVTrack *track, int64_t moof_offset)
4197 {
4198     int64_t pos = avio_tell(pb);
4199     uint32_t flags = MOV_TFHD_DEFAULT_SIZE | MOV_TFHD_DEFAULT_DURATION |
4200                      MOV_TFHD_BASE_DATA_OFFSET;
4201     if (!track->entry) {
4202         flags |= MOV_TFHD_DURATION_IS_EMPTY;
4203     } else {
4204         flags |= MOV_TFHD_DEFAULT_FLAGS;
4205     }
4206     if (mov->flags & FF_MOV_FLAG_OMIT_TFHD_OFFSET)
4207         flags &= ~MOV_TFHD_BASE_DATA_OFFSET;
4208     if (mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF) {
4209         flags &= ~MOV_TFHD_BASE_DATA_OFFSET;
4210         flags |= MOV_TFHD_DEFAULT_BASE_IS_MOOF;
4211     }
4212
4213     /* Don't set a default sample size, the silverlight player refuses
4214      * to play files with that set. Don't set a default sample duration,
4215      * WMP freaks out if it is set. Don't set a base data offset, PIFF
4216      * file format says it MUST NOT be set. */
4217     if (track->mode == MODE_ISM)
4218         flags &= ~(MOV_TFHD_DEFAULT_SIZE | MOV_TFHD_DEFAULT_DURATION |
4219                    MOV_TFHD_BASE_DATA_OFFSET);
4220
4221     avio_wb32(pb, 0); /* size placeholder */
4222     ffio_wfourcc(pb, "tfhd");
4223     avio_w8(pb, 0); /* version */
4224     avio_wb24(pb, flags);
4225
4226     avio_wb32(pb, track->track_id); /* track-id */
4227     if (flags & MOV_TFHD_BASE_DATA_OFFSET)
4228         avio_wb64(pb, moof_offset);
4229     if (flags & MOV_TFHD_DEFAULT_DURATION) {
4230         track->default_duration = get_cluster_duration(track, 0);
4231         avio_wb32(pb, track->default_duration);
4232     }
4233     if (flags & MOV_TFHD_DEFAULT_SIZE) {
4234         track->default_size = track->entry ? track->cluster[0].size : 1;
4235         avio_wb32(pb, track->default_size);
4236     } else
4237         track->default_size = -1;
4238
4239     if (flags & MOV_TFHD_DEFAULT_FLAGS) {
4240         /* Set the default flags based on the second sample, if available.
4241          * If the first sample is different, that can be signaled via a separate field. */
4242         if (track->entry > 1)
4243             track->default_sample_flags = get_sample_flags(track, &track->cluster[1]);
4244         else
4245             track->default_sample_flags =
4246                 track->par->codec_type == AVMEDIA_TYPE_VIDEO ?
4247                 (MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES | MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC) :
4248                 MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO;
4249         avio_wb32(pb, track->default_sample_flags);
4250     }
4251
4252     return update_size(pb, pos);
4253 }
4254
4255 static int mov_write_trun_tag(AVIOContext *pb, MOVMuxContext *mov,
4256                               MOVTrack *track, int moof_size,
4257                               int first, int end)
4258 {
4259     int64_t pos = avio_tell(pb);
4260     uint32_t flags = MOV_TRUN_DATA_OFFSET;
4261     int i;
4262
4263     for (i = first; i < end; i++) {
4264         if (get_cluster_duration(track, i) != track->default_duration)
4265             flags |= MOV_TRUN_SAMPLE_DURATION;
4266         if (track->cluster[i].size != track->default_size)
4267             flags |= MOV_TRUN_SAMPLE_SIZE;
4268         if (i > first && get_sample_flags(track, &track->cluster[i]) != track->default_sample_flags)
4269             flags |= MOV_TRUN_SAMPLE_FLAGS;
4270     }
4271     if (!(flags & MOV_TRUN_SAMPLE_FLAGS) && track->entry > 0 &&
4272          get_sample_flags(track, &track->cluster[0]) != track->default_sample_flags)
4273         flags |= MOV_TRUN_FIRST_SAMPLE_FLAGS;
4274     if (track->flags & MOV_TRACK_CTTS)
4275         flags |= MOV_TRUN_SAMPLE_CTS;
4276
4277     avio_wb32(pb, 0); /* size placeholder */
4278     ffio_wfourcc(pb, "trun");
4279     if (mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS)
4280         avio_w8(pb, 1); /* version */
4281     else
4282         avio_w8(pb, 0); /* version */
4283     avio_wb24(pb, flags);
4284
4285     avio_wb32(pb, end - first); /* sample count */
4286     if (mov->flags & FF_MOV_FLAG_OMIT_TFHD_OFFSET &&
4287         !(mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF) &&
4288         !mov->first_trun)
4289         avio_wb32(pb, 0); /* Later tracks follow immediately after the previous one */
4290     else
4291         avio_wb32(pb, moof_size + 8 + track->data_offset +
4292                       track->cluster[first].pos); /* data offset */
4293     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS)
4294         avio_wb32(pb, get_sample_flags(track, &track->cluster[first]));
4295
4296     for (i = first; i < end; i++) {
4297         if (flags & MOV_TRUN_SAMPLE_DURATION)
4298             avio_wb32(pb, get_cluster_duration(track, i));
4299         if (flags & MOV_TRUN_SAMPLE_SIZE)
4300             avio_wb32(pb, track->cluster[i].size);
4301         if (flags & MOV_TRUN_SAMPLE_FLAGS)
4302             avio_wb32(pb, get_sample_flags(track, &track->cluster[i]));
4303         if (flags & MOV_TRUN_SAMPLE_CTS)
4304             avio_wb32(pb, track->cluster[i].cts);
4305     }
4306
4307     mov->first_trun = 0;
4308     return update_size(pb, pos);
4309 }
4310
4311 static int mov_write_tfxd_tag(AVIOContext *pb, MOVTrack *track)
4312 {
4313     int64_t pos = avio_tell(pb);
4314     static const uint8_t uuid[] = {
4315         0x6d, 0x1d, 0x9b, 0x05, 0x42, 0xd5, 0x44, 0xe6,
4316         0x80, 0xe2, 0x14, 0x1d, 0xaf, 0xf7, 0x57, 0xb2
4317     };
4318
4319     avio_wb32(pb, 0); /* size placeholder */
4320     ffio_wfourcc(pb, "uuid");
4321     avio_write(pb, uuid, sizeof(uuid));
4322     avio_w8(pb, 1);
4323     avio_wb24(pb, 0);
4324     avio_wb64(pb, track->start_dts + track->frag_start +
4325                   track->cluster[0].cts);
4326     avio_wb64(pb, track->end_pts -
4327                   (track->cluster[0].dts + track->cluster[0].cts));
4328
4329     return update_size(pb, pos);
4330 }
4331
4332 static int mov_write_tfrf_tag(AVIOContext *pb, MOVMuxContext *mov,
4333                               MOVTrack *track, int entry)
4334 {
4335     int n = track->nb_frag_info - 1 - entry, i;
4336     int size = 8 + 16 + 4 + 1 + 16*n;
4337     static const uint8_t uuid[] = {
4338         0xd4, 0x80, 0x7e, 0xf2, 0xca, 0x39, 0x46, 0x95,
4339         0x8e, 0x54, 0x26, 0xcb, 0x9e, 0x46, 0xa7, 0x9f
4340     };
4341
4342     if (entry < 0)
4343         return 0;
4344
4345     avio_seek(pb, track->frag_info[entry].tfrf_offset, SEEK_SET);
4346     avio_wb32(pb, size);
4347     ffio_wfourcc(pb, "uuid");
4348     avio_write(pb, uuid, sizeof(uuid));
4349     avio_w8(pb, 1);
4350     avio_wb24(pb, 0);
4351     avio_w8(pb, n);
4352     for (i = 0; i < n; i++) {
4353         int index = entry + 1 + i;
4354         avio_wb64(pb, track->frag_info[index].time);
4355         avio_wb64(pb, track->frag_info[index].duration);
4356     }
4357     if (n < mov->ism_lookahead) {
4358         int free_size = 16 * (mov->ism_lookahead - n);
4359         avio_wb32(pb, free_size);
4360         ffio_wfourcc(pb, "free");
4361         ffio_fill(pb, 0, free_size - 8);
4362     }
4363
4364     return 0;
4365 }
4366
4367 static int mov_write_tfrf_tags(AVIOContext *pb, MOVMuxContext *mov,
4368                                MOVTrack *track)
4369 {
4370     int64_t pos = avio_tell(pb);
4371     int i;
4372     for (i = 0; i < mov->ism_lookahead; i++) {
4373         /* Update the tfrf tag for the last ism_lookahead fragments,
4374          * nb_frag_info - 1 is the next fragment to be written. */
4375         mov_write_tfrf_tag(pb, mov, track, track->nb_frag_info - 2 - i);
4376     }
4377     avio_seek(pb, pos, SEEK_SET);
4378     return 0;
4379 }
4380
4381 static int mov_add_tfra_entries(AVIOContext *pb, MOVMuxContext *mov, int tracks,
4382                                 int size)
4383 {
4384     int i;
4385     for (i = 0; i < mov->nb_streams; i++) {
4386         MOVTrack *track = &mov->tracks[i];
4387         MOVFragmentInfo *info;
4388         if ((tracks >= 0 && i != tracks) || !track->entry)
4389             continue;
4390         track->nb_frag_info++;
4391         if (track->nb_frag_info >= track->frag_info_capacity) {
4392             unsigned new_capacity = track->nb_frag_info + MOV_FRAG_INFO_ALLOC_INCREMENT;
4393             if (av_reallocp_array(&track->frag_info,
4394                                   new_capacity,
4395                                   sizeof(*track->frag_info)))
4396                 return AVERROR(ENOMEM);
4397             track->frag_info_capacity = new_capacity;
4398         }
4399         info = &track->frag_info[track->nb_frag_info - 1];
4400         info->offset   = avio_tell(pb);
4401         info->size     = size;
4402         // Try to recreate the original pts for the first packet
4403         // from the fields we have stored
4404         info->time     = track->start_dts + track->frag_start +
4405                          track->cluster[0].cts;
4406         info->duration = track->end_pts -
4407                          (track->cluster[0].dts + track->cluster[0].cts);
4408         // If the pts is less than zero, we will have trimmed
4409         // away parts of the media track using an edit list,
4410         // and the corresponding start presentation time is zero.
4411         if (info->time < 0) {
4412             info->duration += info->time;
4413             info->time = 0;
4414         }
4415         info->tfrf_offset = 0;
4416         mov_write_tfrf_tags(pb, mov, track);
4417     }
4418     return 0;
4419 }
4420
4421 static void mov_prune_frag_info(MOVMuxContext *mov, int tracks, int max)
4422 {
4423     int i;
4424     for (i = 0; i < mov->nb_streams; i++) {
4425         MOVTrack *track = &mov->tracks[i];
4426         if ((tracks >= 0 && i != tracks) || !track->entry)
4427             continue;
4428         if (track->nb_frag_info > max) {
4429             memmove(track->frag_info, track->frag_info + (track->nb_frag_info - max), max * sizeof(*track->frag_info));
4430             track->nb_frag_info = max;
4431         }
4432     }
4433 }
4434
4435 static int mov_write_tfdt_tag(AVIOContext *pb, MOVTrack *track)
4436 {
4437     int64_t pos = avio_tell(pb);
4438
4439     avio_wb32(pb, 0); /* size */
4440     ffio_wfourcc(pb, "tfdt");
4441     avio_w8(pb, 1); /* version */
4442     avio_wb24(pb, 0);
4443     avio_wb64(pb, track->frag_start);
4444     return update_size(pb, pos);
4445 }
4446
4447 static int mov_write_traf_tag(AVIOContext *pb, MOVMuxContext *mov,
4448                               MOVTrack *track, int64_t moof_offset,
4449                               int moof_size)
4450 {
4451     int64_t pos = avio_tell(pb);
4452     int i, start = 0;
4453     avio_wb32(pb, 0); /* size placeholder */
4454     ffio_wfourcc(pb, "traf");
4455
4456     mov_write_tfhd_tag(pb, mov, track, moof_offset);
4457     if (mov->mode != MODE_ISM)
4458         mov_write_tfdt_tag(pb, track);
4459     for (i = 1; i < track->entry; i++) {
4460         if (track->cluster[i].pos != track->cluster[i - 1].pos + track->cluster[i - 1].size) {
4461             mov_write_trun_tag(pb, mov, track, moof_size, start, i);
4462             start = i;
4463         }
4464     }
4465     mov_write_trun_tag(pb, mov, track, moof_size, start, track->entry);
4466     if (mov->mode == MODE_ISM) {
4467         mov_write_tfxd_tag(pb, track);
4468
4469         if (mov->ism_lookahead) {
4470             int i, size = 16 + 4 + 1 + 16 * mov->ism_lookahead;
4471
4472             if (track->nb_frag_info > 0) {
4473                 MOVFragmentInfo *info = &track->frag_info[track->nb_frag_info - 1];
4474                 if (!info->tfrf_offset)
4475                     info->tfrf_offset = avio_tell(pb);
4476             }
4477             avio_wb32(pb, 8 + size);
4478             ffio_wfourcc(pb, "free");
4479             for (i = 0; i < size; i++)
4480                 avio_w8(pb, 0);
4481         }
4482     }
4483
4484     return update_size(pb, pos);
4485 }
4486
4487 static int mov_write_moof_tag_internal(AVIOContext *pb, MOVMuxContext *mov,
4488                                        int tracks, int moof_size)
4489 {
4490     int64_t pos = avio_tell(pb);
4491     int i;
4492
4493     avio_wb32(pb, 0); /* size placeholder */
4494     ffio_wfourcc(pb, "moof");
4495     mov->first_trun = 1;
4496
4497     mov_write_mfhd_tag(pb, mov);
4498     for (i = 0; i < mov->nb_streams; i++) {
4499         MOVTrack *track = &mov->tracks[i];
4500         if (tracks >= 0 && i != tracks)
4501             continue;
4502         if (!track->entry)
4503             continue;
4504         mov_write_traf_tag(pb, mov, track, pos, moof_size);
4505     }
4506
4507     return update_size(pb, pos);
4508 }
4509
4510 static int mov_write_sidx_tag(AVIOContext *pb,
4511                               MOVTrack *track, int ref_size, int total_sidx_size)
4512 {
4513     int64_t pos = avio_tell(pb), offset_pos, end_pos;
4514     int64_t presentation_time, duration, offset;
4515     unsigned starts_with_SAP;
4516     int i, entries;
4517
4518     if (track->entry) {
4519         entries = 1;
4520         presentation_time = track->start_dts + track->frag_start +
4521                             track->cluster[0].cts;
4522         duration = track->end_pts -
4523                    (track->cluster[0].dts + track->cluster[0].cts);
4524         starts_with_SAP = track->cluster[0].flags & MOV_SYNC_SAMPLE;
4525
4526         // pts<0 should be cut away using edts
4527         if (presentation_time < 0) {
4528             duration += presentation_time;
4529             presentation_time = 0;
4530         }
4531     } else {
4532         entries = track->nb_frag_info;
4533         if (entries <= 0)
4534             return 0;
4535         presentation_time = track->frag_info[0].time;
4536     }
4537
4538     avio_wb32(pb, 0); /* size */
4539     ffio_wfourcc(pb, "sidx");
4540     avio_w8(pb, 1); /* version */
4541     avio_wb24(pb, 0);
4542     avio_wb32(pb, track->track_id); /* reference_ID */
4543     avio_wb32(pb, track->timescale); /* timescale */
4544     avio_wb64(pb, presentation_time); /* earliest_presentation_time */
4545     offset_pos = avio_tell(pb);
4546     avio_wb64(pb, 0); /* first_offset (offset to referenced moof) */
4547     avio_wb16(pb, 0); /* reserved */
4548
4549     avio_wb16(pb, entries); /* reference_count */
4550     for (i = 0; i < entries; i++) {
4551         if (!track->entry) {
4552             if (i > 1 && track->frag_info[i].offset != track->frag_info[i - 1].offset + track->frag_info[i - 1].size) {
4553                av_log(NULL, AV_LOG_ERROR, "Non-consecutive fragments, writing incorrect sidx\n");
4554             }
4555             duration = track->frag_info[i].duration;
4556             ref_size = track->frag_info[i].size;
4557             starts_with_SAP = 1;
4558         }
4559         avio_wb32(pb, (0 << 31) | (ref_size & 0x7fffffff)); /* reference_type (0 = media) | referenced_size */
4560         avio_wb32(pb, duration); /* subsegment_duration */
4561         avio_wb32(pb, (starts_with_SAP << 31) | (0 << 28) | 0); /* starts_with_SAP | SAP_type | SAP_delta_time */
4562     }
4563
4564     end_pos = avio_tell(pb);
4565     offset = pos + total_sidx_size - end_pos;
4566     avio_seek(pb, offset_pos, SEEK_SET);
4567     avio_wb64(pb, offset);
4568     avio_seek(pb, end_pos, SEEK_SET);
4569     return update_size(pb, pos);
4570 }
4571
4572 static int mov_write_sidx_tags(AVIOContext *pb, MOVMuxContext *mov,
4573                                int tracks, int ref_size)
4574 {
4575     int i, round, ret;
4576     AVIOContext *avio_buf;
4577     int total_size = 0;
4578     for (round = 0; round < 2; round++) {
4579         // First run one round to calculate the total size of all
4580         // sidx atoms.
4581         // This would be much simpler if we'd only write one sidx
4582         // atom, for the first track in the moof.
4583         if (round == 0) {
4584             if ((ret = ffio_open_null_buf(&avio_buf)) < 0)
4585                 return ret;
4586         } else {
4587             avio_buf = pb;
4588         }
4589         for (i = 0; i < mov->nb_streams; i++) {
4590             MOVTrack *track = &mov->tracks[i];
4591             if (tracks >= 0 && i != tracks)
4592                 continue;
4593             // When writing a sidx for the full file, entry is 0, but
4594             // we want to include all tracks. ref_size is 0 in this case,
4595             // since we read it from frag_info instead.
4596             if (!track->entry && ref_size > 0)
4597                 continue;
4598             total_size -= mov_write_sidx_tag(avio_buf, track, ref_size,
4599                                              total_size);
4600         }
4601         if (round == 0)
4602             total_size = ffio_close_null_buf(avio_buf);
4603     }
4604     return 0;
4605 }
4606
4607 static int mov_write_prft_tag(AVIOContext *pb, MOVMuxContext *mov, int tracks)
4608 {
4609     int64_t pos = avio_tell(pb), pts_us, ntp_ts;
4610     MOVTrack *first_track;
4611
4612     /* PRFT should be associated with at most one track. So, choosing only the
4613      * first track. */
4614     if (tracks > 0)
4615         return 0;
4616     first_track = &(mov->tracks[0]);
4617
4618     if (!first_track->entry) {
4619         av_log(mov->fc, AV_LOG_WARNING, "Unable to write PRFT, no entries in the track\n");
4620         return 0;
4621     }
4622
4623     if (first_track->cluster[0].pts == AV_NOPTS_VALUE) {
4624         av_log(mov->fc, AV_LOG_WARNING, "Unable to write PRFT, first PTS is invalid\n");
4625         return 0;
4626     }
4627
4628     if (mov->write_prft == MOV_PRFT_SRC_WALLCLOCK) {
4629         ntp_ts = ff_get_formatted_ntp_time(ff_ntp_time());
4630     } else if (mov->write_prft == MOV_PRFT_SRC_PTS) {
4631         pts_us = av_rescale_q(first_track->cluster[0].pts,
4632                               first_track->st->time_base, AV_TIME_BASE_Q);
4633         ntp_ts = ff_get_formatted_ntp_time(pts_us + NTP_OFFSET_US);
4634     } else {
4635         av_log(mov->fc, AV_LOG_WARNING, "Unsupported PRFT box configuration: %d\n",
4636                mov->write_prft);
4637         return 0;
4638     }
4639
4640     avio_wb32(pb, 0);                           // Size place holder
4641     ffio_wfourcc(pb, "prft");                   // Type
4642     avio_w8(pb, 1);                             // Version
4643     avio_wb24(pb, 0);                           // Flags
4644     avio_wb32(pb, first_track->track_id);       // reference track ID
4645     avio_wb64(pb, ntp_ts);                      // NTP time stamp
4646     avio_wb64(pb, first_track->cluster[0].pts); //media time
4647     return update_size(pb, pos);
4648 }
4649
4650 static int mov_write_moof_tag(AVIOContext *pb, MOVMuxContext *mov, int tracks,
4651                               int64_t mdat_size)
4652 {
4653     AVIOContext *avio_buf;
4654     int ret, moof_size;
4655
4656     if ((ret = ffio_open_null_buf(&avio_buf)) < 0)
4657         return ret;
4658     mov_write_moof_tag_internal(avio_buf, mov, tracks, 0);
4659     moof_size = ffio_close_null_buf(avio_buf);
4660
4661     if (mov->flags & FF_MOV_FLAG_DASH &&
4662         !(mov->flags & (FF_MOV_FLAG_GLOBAL_SIDX | FF_MOV_FLAG_SKIP_SIDX)))
4663         mov_write_sidx_tags(pb, mov, tracks, moof_size + 8 + mdat_size);
4664
4665     if (mov->write_prft > MOV_PRFT_NONE && mov->write_prft < MOV_PRFT_NB)
4666         mov_write_prft_tag(pb, mov, tracks);
4667
4668     if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX ||
4669         !(mov->flags & FF_MOV_FLAG_SKIP_TRAILER) ||
4670         mov->ism_lookahead) {
4671         if ((ret = mov_add_tfra_entries(pb, mov, tracks, moof_size + 8 + mdat_size)) < 0)
4672             return ret;
4673         if (!(mov->flags & FF_MOV_FLAG_GLOBAL_SIDX) &&
4674             mov->flags & FF_MOV_FLAG_SKIP_TRAILER) {
4675             mov_prune_frag_info(mov, tracks, mov->ism_lookahead + 1);
4676         }
4677     }
4678
4679     return mov_write_moof_tag_internal(pb, mov, tracks, moof_size);
4680 }
4681
4682 static int mov_write_tfra_tag(AVIOContext *pb, MOVTrack *track)
4683 {
4684     int64_t pos = avio_tell(pb);
4685     int i;
4686
4687     avio_wb32(pb, 0); /* size placeholder */
4688     ffio_wfourcc(pb, "tfra");
4689     avio_w8(pb, 1); /* version */
4690     avio_wb24(pb, 0);
4691
4692     avio_wb32(pb, track->track_id);
4693     avio_wb32(pb, 0); /* length of traf/trun/sample num */
4694     avio_wb32(pb, track->nb_frag_info);
4695     for (i = 0; i < track->nb_frag_info; i++) {
4696         avio_wb64(pb, track->frag_info[i].time);
4697         avio_wb64(pb, track->frag_info[i].offset + track->data_offset);
4698         avio_w8(pb, 1); /* traf number */
4699         avio_w8(pb, 1); /* trun number */
4700         avio_w8(pb, 1); /* sample number */
4701     }
4702
4703     return update_size(pb, pos);
4704 }
4705
4706 static int mov_write_mfra_tag(AVIOContext *pb, MOVMuxContext *mov)
4707 {
4708     int64_t pos = avio_tell(pb);
4709     int i;
4710
4711     avio_wb32(pb, 0); /* size placeholder */
4712     ffio_wfourcc(pb, "mfra");
4713     /* An empty mfra atom is enough to indicate to the publishing point that
4714      * the stream has ended. */
4715     if (mov->flags & FF_MOV_FLAG_ISML)
4716         return update_size(pb, pos);
4717
4718     for (i = 0; i < mov->nb_streams; i++) {
4719         MOVTrack *track = &mov->tracks[i];
4720         if (track->nb_frag_info)
4721             mov_write_tfra_tag(pb, track);
4722     }
4723
4724     avio_wb32(pb, 16);
4725     ffio_wfourcc(pb, "mfro");
4726     avio_wb32(pb, 0); /* version + flags */
4727     avio_wb32(pb, avio_tell(pb) + 4 - pos);
4728
4729     return update_size(pb, pos);
4730 }
4731
4732 static int mov_write_mdat_tag(AVIOContext *pb, MOVMuxContext *mov)
4733 {
4734     avio_wb32(pb, 8);    // placeholder for extended size field (64 bit)
4735     ffio_wfourcc(pb, mov->mode == MODE_MOV ? "wide" : "free");
4736
4737     mov->mdat_pos = avio_tell(pb);
4738     avio_wb32(pb, 0); /* size placeholder*/
4739     ffio_wfourcc(pb, "mdat");
4740     return 0;
4741 }
4742
4743 /* TODO: This needs to be more general */
4744 static int mov_write_ftyp_tag(AVIOContext *pb, AVFormatContext *s)
4745 {
4746     MOVMuxContext *mov = s->priv_data;
4747     int64_t pos = avio_tell(pb);
4748     int has_h264 = 0, has_video = 0;
4749     int minor = 0x200;
4750     int i;
4751
4752     for (i = 0; i < s->nb_streams; i++) {
4753         AVStream *st = s->streams[i];
4754         if (is_cover_image(st))
4755             continue;
4756         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
4757             has_video = 1;
4758         if (st->codecpar->codec_id == AV_CODEC_ID_H264)
4759             has_h264 = 1;
4760     }
4761
4762     avio_wb32(pb, 0); /* size */
4763     ffio_wfourcc(pb, "ftyp");
4764
4765     if (mov->major_brand && strlen(mov->major_brand) >= 4)
4766         ffio_wfourcc(pb, mov->major_brand);
4767     else if (mov->mode == MODE_3GP) {
4768         ffio_wfourcc(pb, has_h264 ? "3gp6"  : "3gp4");
4769         minor =     has_h264 ?   0x100 :   0x200;
4770     } else if (mov->mode & MODE_3G2) {
4771         ffio_wfourcc(pb, has_h264 ? "3g2b"  : "3g2a");
4772         minor =     has_h264 ? 0x20000 : 0x10000;
4773     } else if (mov->mode == MODE_PSP)
4774         ffio_wfourcc(pb, "MSNV");
4775     else if (mov->mode == MODE_MP4 && mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)
4776         ffio_wfourcc(pb, "iso5"); // Required when using default-base-is-moof
4777     else if (mov->mode == MODE_MP4 && mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS)
4778         ffio_wfourcc(pb, "iso4");
4779     else if (mov->mode == MODE_MP4)
4780         ffio_wfourcc(pb, "isom");
4781     else if (mov->mode == MODE_IPOD)
4782         ffio_wfourcc(pb, has_video ? "M4V ":"M4A ");
4783     else if (mov->mode == MODE_ISM)
4784         ffio_wfourcc(pb, "isml");
4785     else if (mov->mode == MODE_F4V)
4786         ffio_wfourcc(pb, "f4v ");
4787     else
4788         ffio_wfourcc(pb, "qt  ");
4789
4790     avio_wb32(pb, minor);
4791
4792     if (mov->mode == MODE_MOV)
4793         ffio_wfourcc(pb, "qt  ");
4794     else if (mov->mode == MODE_ISM) {
4795         ffio_wfourcc(pb, "piff");
4796     } else if (!(mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)) {
4797         ffio_wfourcc(pb, "isom");
4798         ffio_wfourcc(pb, "iso2");
4799         if (has_h264)
4800             ffio_wfourcc(pb, "avc1");
4801     }
4802
4803     // We add tfdt atoms when fragmenting, signal this with the iso6 compatible
4804     // brand. This is compatible with users that don't understand tfdt.
4805     if (mov->flags & FF_MOV_FLAG_FRAGMENT && mov->mode != MODE_ISM)
4806         ffio_wfourcc(pb, "iso6");
4807
4808     if (mov->mode == MODE_3GP)
4809         ffio_wfourcc(pb, has_h264 ? "3gp6":"3gp4");
4810     else if (mov->mode & MODE_3G2)
4811         ffio_wfourcc(pb, has_h264 ? "3g2b":"3g2a");
4812     else if (mov->mode == MODE_PSP)
4813         ffio_wfourcc(pb, "MSNV");
4814     else if (mov->mode == MODE_MP4)
4815         ffio_wfourcc(pb, "mp41");
4816
4817     if (mov->flags & FF_MOV_FLAG_DASH && mov->flags & FF_MOV_FLAG_GLOBAL_SIDX)
4818         ffio_wfourcc(pb, "dash");
4819
4820     return update_size(pb, pos);
4821 }
4822
4823 static int mov_write_uuidprof_tag(AVIOContext *pb, AVFormatContext *s)
4824 {
4825     AVStream       *video_st    = s->streams[0];
4826     AVCodecParameters *video_par = s->streams[0]->codecpar;
4827     AVCodecParameters *audio_par = s->streams[1]->codecpar;
4828     int audio_rate = audio_par->sample_rate;
4829     int64_t frame_rate = video_st->avg_frame_rate.den ?
4830                         (video_st->avg_frame_rate.num * 0x10000LL) / video_st->avg_frame_rate.den :
4831                         0;
4832     int audio_kbitrate = audio_par->bit_rate / 1000;
4833     int video_kbitrate = FFMIN(video_par->bit_rate / 1000, 800 - audio_kbitrate);
4834
4835     if (frame_rate < 0 || frame_rate > INT32_MAX) {
4836         av_log(s, AV_LOG_ERROR, "Frame rate %f outside supported range\n", frame_rate / (double)0x10000);
4837         return AVERROR(EINVAL);
4838     }
4839
4840     avio_wb32(pb, 0x94); /* size */
4841     ffio_wfourcc(pb, "uuid");
4842     ffio_wfourcc(pb, "PROF");
4843
4844     avio_wb32(pb, 0x21d24fce); /* 96 bit UUID */
4845     avio_wb32(pb, 0xbb88695c);
4846     avio_wb32(pb, 0xfac9c740);
4847
4848     avio_wb32(pb, 0x0);  /* ? */
4849     avio_wb32(pb, 0x3);  /* 3 sections ? */
4850
4851     avio_wb32(pb, 0x14); /* size */
4852     ffio_wfourcc(pb, "FPRF");
4853     avio_wb32(pb, 0x0);  /* ? */
4854     avio_wb32(pb, 0x0);  /* ? */
4855     avio_wb32(pb, 0x0);  /* ? */
4856
4857     avio_wb32(pb, 0x2c);  /* size */
4858     ffio_wfourcc(pb, "APRF"); /* audio */
4859     avio_wb32(pb, 0x0);
4860     avio_wb32(pb, 0x2);   /* TrackID */
4861     ffio_wfourcc(pb, "mp4a");
4862     avio_wb32(pb, 0x20f);
4863     avio_wb32(pb, 0x0);
4864     avio_wb32(pb, audio_kbitrate);
4865     avio_wb32(pb, audio_kbitrate);
4866     avio_wb32(pb, audio_rate);
4867     avio_wb32(pb, audio_par->channels);
4868
4869     avio_wb32(pb, 0x34);  /* size */
4870     ffio_wfourcc(pb, "VPRF");   /* video */
4871     avio_wb32(pb, 0x0);
4872     avio_wb32(pb, 0x1);    /* TrackID */
4873     if (video_par->codec_id == AV_CODEC_ID_H264) {
4874         ffio_wfourcc(pb, "avc1");
4875         avio_wb16(pb, 0x014D);
4876         avio_wb16(pb, 0x0015);
4877     } else {
4878         ffio_wfourcc(pb, "mp4v");
4879         avio_wb16(pb, 0x0000);
4880         avio_wb16(pb, 0x0103);
4881     }
4882     avio_wb32(pb, 0x0);
4883     avio_wb32(pb, video_kbitrate);
4884     avio_wb32(pb, video_kbitrate);
4885     avio_wb32(pb, frame_rate);
4886     avio_wb32(pb, frame_rate);
4887     avio_wb16(pb, video_par->width);
4888     avio_wb16(pb, video_par->height);
4889     avio_wb32(pb, 0x010001); /* ? */
4890
4891     return 0;
4892 }
4893
4894 static int mov_write_identification(AVIOContext *pb, AVFormatContext *s)
4895 {
4896     MOVMuxContext *mov = s->priv_data;
4897     int i;
4898
4899     mov_write_ftyp_tag(pb,s);
4900     if (mov->mode == MODE_PSP) {
4901         int video_streams_nb = 0, audio_streams_nb = 0, other_streams_nb = 0;
4902         for (i = 0; i < s->nb_streams; i++) {
4903             AVStream *st = s->streams[i];
4904             if (is_cover_image(st))
4905                 continue;
4906             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
4907                 video_streams_nb++;
4908             else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)
4909                 audio_streams_nb++;
4910             else
4911                 other_streams_nb++;
4912             }
4913
4914         if (video_streams_nb != 1 || audio_streams_nb != 1 || other_streams_nb) {
4915             av_log(s, AV_LOG_ERROR, "PSP mode need one video and one audio stream\n");
4916             return AVERROR(EINVAL);
4917         }
4918         return mov_write_uuidprof_tag(pb, s);
4919     }
4920     return 0;
4921 }
4922
4923 static int mov_parse_mpeg2_frame(AVPacket *pkt, uint32_t *flags)
4924 {
4925     uint32_t c = -1;
4926     int i, closed_gop = 0;
4927
4928     for (i = 0; i < pkt->size - 4; i++) {
4929         c = (c << 8) + pkt->data[i];
4930         if (c == 0x1b8) { // gop
4931             closed_gop = pkt->data[i + 4] >> 6 & 0x01;
4932         } else if (c == 0x100) { // pic
4933             int temp_ref = (pkt->data[i + 1] << 2) | (pkt->data[i + 2] >> 6);
4934             if (!temp_ref || closed_gop) // I picture is not reordered
4935                 *flags = MOV_SYNC_SAMPLE;
4936             else
4937                 *flags = MOV_PARTIAL_SYNC_SAMPLE;
4938             break;
4939         }
4940     }
4941     return 0;
4942 }
4943
4944 static void mov_parse_vc1_frame(AVPacket *pkt, MOVTrack *trk)
4945 {
4946     const uint8_t *start, *next, *end = pkt->data + pkt->size;
4947     int seq = 0, entry = 0;
4948     int key = pkt->flags & AV_PKT_FLAG_KEY;
4949     start = find_next_marker(pkt->data, end);
4950     for (next = start; next < end; start = next) {
4951         next = find_next_marker(start + 4, end);
4952         switch (AV_RB32(start)) {
4953         case VC1_CODE_SEQHDR:
4954             seq = 1;
4955             break;
4956         case VC1_CODE_ENTRYPOINT:
4957             entry = 1;
4958             break;
4959         case VC1_CODE_SLICE:
4960             trk->vc1_info.slices = 1;
4961             break;
4962         }
4963     }
4964     if (!trk->entry && trk->vc1_info.first_packet_seen)
4965         trk->vc1_info.first_frag_written = 1;
4966     if (!trk->entry && !trk->vc1_info.first_frag_written) {
4967         /* First packet in first fragment */
4968         trk->vc1_info.first_packet_seq   = seq;
4969         trk->vc1_info.first_packet_entry = entry;
4970         trk->vc1_info.first_packet_seen  = 1;
4971     } else if ((seq && !trk->vc1_info.packet_seq) ||
4972                (entry && !trk->vc1_info.packet_entry)) {
4973         int i;
4974         for (i = 0; i < trk->entry; i++)
4975             trk->cluster[i].flags &= ~MOV_SYNC_SAMPLE;
4976         trk->has_keyframes = 0;
4977         if (seq)
4978             trk->vc1_info.packet_seq = 1;
4979         if (entry)
4980             trk->vc1_info.packet_entry = 1;
4981         if (!trk->vc1_info.first_frag_written) {
4982             /* First fragment */
4983             if ((!seq   || trk->vc1_info.first_packet_seq) &&
4984                 (!entry || trk->vc1_info.first_packet_entry)) {
4985                 /* First packet had the same headers as this one, readd the
4986                  * sync sample flag. */
4987                 trk->cluster[0].flags |= MOV_SYNC_SAMPLE;
4988                 trk->has_keyframes = 1;
4989             }
4990         }
4991     }
4992     if (trk->vc1_info.packet_seq && trk->vc1_info.packet_entry)
4993         key = seq && entry;
4994     else if (trk->vc1_info.packet_seq)
4995         key = seq;
4996     else if (trk->vc1_info.packet_entry)
4997         key = entry;
4998     if (key) {
4999         trk->cluster[trk->entry].flags |= MOV_SYNC_SAMPLE;
5000         trk->has_keyframes++;
5001     }
5002 }
5003
5004 static void mov_parse_truehd_frame(AVPacket *pkt, MOVTrack *trk)
5005 {
5006     int length;
5007
5008     if (pkt->size < 8)
5009         return;
5010
5011     length = (AV_RB16(pkt->data) & 0xFFF) * 2;
5012     if (length < 8 || length > pkt->size)
5013         return;
5014
5015     if (AV_RB32(pkt->data + 4) == 0xF8726FBA) {
5016         trk->cluster[trk->entry].flags |= MOV_SYNC_SAMPLE;
5017         trk->has_keyframes++;
5018     }
5019
5020     return;
5021 }
5022
5023 static int mov_flush_fragment_interleaving(AVFormatContext *s, MOVTrack *track)
5024 {
5025     MOVMuxContext *mov = s->priv_data;
5026     int ret, buf_size;
5027     uint8_t *buf;
5028     int i, offset;
5029
5030     if (!track->mdat_buf)
5031         return 0;
5032     if (!mov->mdat_buf) {
5033         if ((ret = avio_open_dyn_buf(&mov->mdat_buf)) < 0)
5034             return ret;
5035     }
5036     buf_size = avio_close_dyn_buf(track->mdat_buf, &buf);
5037     track->mdat_buf = NULL;
5038
5039     offset = avio_tell(mov->mdat_buf);
5040     avio_write(mov->mdat_buf, buf, buf_size);
5041     av_free(buf);
5042
5043     for (i = track->entries_flushed; i < track->entry; i++)
5044         track->cluster[i].pos += offset;
5045     track->entries_flushed = track->entry;
5046     return 0;
5047 }
5048
5049 static int mov_flush_fragment(AVFormatContext *s, int force)
5050 {
5051     MOVMuxContext *mov = s->priv_data;
5052     int i, first_track = -1;
5053     int64_t mdat_size = 0;
5054     int ret;
5055     int has_video = 0, starts_with_key = 0, first_video_track = 1;
5056
5057     if (!(mov->flags & FF_MOV_FLAG_FRAGMENT))
5058         return 0;
5059
5060     // Try to fill in the duration of the last packet in each stream
5061     // from queued packets in the interleave queues. If the flushing
5062     // of fragments was triggered automatically by an AVPacket, we
5063     // already have reliable info for the end of that track, but other
5064     // tracks may need to be filled in.
5065     for (i = 0; i < s->nb_streams; i++) {
5066         MOVTrack *track = &mov->tracks[i];
5067         if (!track->end_reliable) {
5068             AVPacket pkt;
5069             if (!ff_interleaved_peek(s, i, &pkt, 1)) {
5070                 if (track->dts_shift != AV_NOPTS_VALUE)
5071                     pkt.dts += track->dts_shift;
5072                 track->track_duration = pkt.dts - track->start_dts;
5073                 if (pkt.pts != AV_NOPTS_VALUE)
5074                     track->end_pts = pkt.pts;
5075                 else
5076                     track->end_pts = pkt.dts;
5077             }
5078         }
5079     }
5080
5081     for (i = 0; i < mov->nb_streams; i++) {
5082         MOVTrack *track = &mov->tracks[i];
5083         if (track->entry <= 1)
5084             continue;
5085         // Sample durations are calculated as the diff of dts values,
5086         // but for the last sample in a fragment, we don't know the dts
5087         // of the first sample in the next fragment, so we have to rely
5088         // on what was set as duration in the AVPacket. Not all callers
5089         // set this though, so we might want to replace it with an
5090         // estimate if it currently is zero.
5091         if (get_cluster_duration(track, track->entry - 1) != 0)
5092             continue;
5093         // Use the duration (i.e. dts diff) of the second last sample for
5094         // the last one. This is a wild guess (and fatal if it turns out
5095         // to be too long), but probably the best we can do - having a zero
5096         // duration is bad as well.
5097         track->track_duration += get_cluster_duration(track, track->entry - 2);
5098         track->end_pts        += get_cluster_duration(track, track->entry - 2);
5099         if (!mov->missing_duration_warned) {
5100             av_log(s, AV_LOG_WARNING,
5101                    "Estimating the duration of the last packet in a "
5102                    "fragment, consider setting the duration field in "
5103                    "AVPacket instead.\n");
5104             mov->missing_duration_warned = 1;
5105         }
5106     }
5107
5108     if (!mov->moov_written) {
5109         int64_t pos = avio_tell(s->pb);
5110         uint8_t *buf;
5111         int buf_size, moov_size;
5112
5113         for (i = 0; i < mov->nb_streams; i++)
5114             if (!mov->tracks[i].entry && !is_cover_image(mov->tracks[i].st))
5115                 break;
5116         /* Don't write the initial moov unless all tracks have data */
5117         if (i < mov->nb_streams && !force)
5118             return 0;
5119
5120         moov_size = get_moov_size(s);
5121         for (i = 0; i < mov->nb_streams; i++)
5122             mov->tracks[i].data_offset = pos + moov_size + 8;
5123
5124         avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_HEADER);
5125         if (mov->flags & FF_MOV_FLAG_DELAY_MOOV)
5126             mov_write_identification(s->pb, s);
5127         if ((ret = mov_write_moov_tag(s->pb, mov, s)) < 0)
5128             return ret;
5129
5130         if (mov->flags & FF_MOV_FLAG_DELAY_MOOV) {
5131             if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX)
5132                 mov->reserved_header_pos = avio_tell(s->pb);
5133             avio_flush(s->pb);
5134             mov->moov_written = 1;
5135             return 0;
5136         }
5137
5138         buf_size = avio_close_dyn_buf(mov->mdat_buf, &buf);
5139         mov->mdat_buf = NULL;
5140         avio_wb32(s->pb, buf_size + 8);
5141         ffio_wfourcc(s->pb, "mdat");
5142         avio_write(s->pb, buf, buf_size);
5143         av_free(buf);
5144
5145         if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX)
5146             mov->reserved_header_pos = avio_tell(s->pb);
5147
5148         mov->moov_written = 1;
5149         mov->mdat_size = 0;
5150         for (i = 0; i < mov->nb_streams; i++) {
5151             if (mov->tracks[i].entry)
5152                 mov->tracks[i].frag_start += mov->tracks[i].start_dts +
5153                                              mov->tracks[i].track_duration -
5154                                              mov->tracks[i].cluster[0].dts;
5155             mov->tracks[i].entry = 0;
5156             mov->tracks[i].end_reliable = 0;
5157         }
5158         avio_flush(s->pb);
5159         return 0;
5160     }
5161
5162     if (mov->frag_interleave) {
5163         for (i = 0; i < mov->nb_streams; i++) {
5164             MOVTrack *track = &mov->tracks[i];
5165             int ret;
5166             if ((ret = mov_flush_fragment_interleaving(s, track)) < 0)
5167                 return ret;
5168         }
5169
5170         if (!mov->mdat_buf)
5171             return 0;
5172         mdat_size = avio_tell(mov->mdat_buf);
5173     }
5174
5175     for (i = 0; i < mov->nb_streams; i++) {
5176         MOVTrack *track = &mov->tracks[i];
5177         if (mov->flags & FF_MOV_FLAG_SEPARATE_MOOF || mov->frag_interleave)
5178             track->data_offset = 0;
5179         else
5180             track->data_offset = mdat_size;
5181         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
5182             has_video = 1;
5183             if (first_video_track) {
5184                 if (track->entry)
5185                     starts_with_key = track->cluster[0].flags & MOV_SYNC_SAMPLE;
5186                 first_video_track = 0;
5187             }
5188         }
5189         if (!track->entry)
5190             continue;
5191         if (track->mdat_buf)
5192             mdat_size += avio_tell(track->mdat_buf);
5193         if (first_track < 0)
5194             first_track = i;
5195     }
5196
5197     if (!mdat_size)
5198         return 0;
5199
5200     avio_write_marker(s->pb,
5201                       av_rescale(mov->tracks[first_track].cluster[0].dts, AV_TIME_BASE, mov->tracks[first_track].timescale),
5202                       (has_video ? starts_with_key : mov->tracks[first_track].cluster[0].flags & MOV_SYNC_SAMPLE) ? AVIO_DATA_MARKER_SYNC_POINT : AVIO_DATA_MARKER_BOUNDARY_POINT);
5203
5204     for (i = 0; i < mov->nb_streams; i++) {
5205         MOVTrack *track = &mov->tracks[i];
5206         int buf_size, write_moof = 1, moof_tracks = -1;
5207         uint8_t *buf;
5208         int64_t duration = 0;
5209
5210         if (track->entry)
5211             duration = track->start_dts + track->track_duration -
5212                        track->cluster[0].dts;
5213         if (mov->flags & FF_MOV_FLAG_SEPARATE_MOOF) {
5214             if (!track->mdat_buf)
5215                 continue;
5216             mdat_size = avio_tell(track->mdat_buf);
5217             moof_tracks = i;
5218         } else {
5219             write_moof = i == first_track;
5220         }
5221
5222         if (write_moof) {
5223             avio_flush(s->pb);
5224
5225             mov_write_moof_tag(s->pb, mov, moof_tracks, mdat_size);
5226             mov->fragments++;
5227
5228             avio_wb32(s->pb, mdat_size + 8);
5229             ffio_wfourcc(s->pb, "mdat");
5230         }
5231
5232         if (track->entry)
5233             track->frag_start += duration;
5234         track->entry = 0;
5235         track->entries_flushed = 0;
5236         track->end_reliable = 0;
5237         if (!mov->frag_interleave) {
5238             if (!track->mdat_buf)
5239                 continue;
5240             buf_size = avio_close_dyn_buf(track->mdat_buf, &buf);
5241             track->mdat_buf = NULL;
5242         } else {
5243             if (!mov->mdat_buf)
5244                 continue;
5245             buf_size = avio_close_dyn_buf(mov->mdat_buf, &buf);
5246             mov->mdat_buf = NULL;
5247         }
5248
5249         avio_write(s->pb, buf, buf_size);
5250         av_free(buf);
5251     }
5252
5253     mov->mdat_size = 0;
5254
5255     avio_flush(s->pb);
5256     return 0;
5257 }
5258
5259 static int mov_auto_flush_fragment(AVFormatContext *s, int force)
5260 {
5261     MOVMuxContext *mov = s->priv_data;
5262     int had_moov = mov->moov_written;
5263     int ret = mov_flush_fragment(s, force);
5264     if (ret < 0)
5265         return ret;
5266     // If using delay_moov, the first flush only wrote the moov,
5267     // not the actual moof+mdat pair, thus flush once again.
5268     if (!had_moov && mov->flags & FF_MOV_FLAG_DELAY_MOOV)
5269         ret = mov_flush_fragment(s, force);
5270     return ret;
5271 }
5272
5273 static int check_pkt(AVFormatContext *s, AVPacket *pkt)
5274 {
5275     MOVMuxContext *mov = s->priv_data;
5276     MOVTrack *trk = &mov->tracks[pkt->stream_index];
5277     int64_t ref;
5278     uint64_t duration;
5279
5280     if (trk->entry) {
5281         ref = trk->cluster[trk->entry - 1].dts;
5282     } else if (   trk->start_dts != AV_NOPTS_VALUE
5283                && !trk->frag_discont) {
5284         ref = trk->start_dts + trk->track_duration;
5285     } else
5286         ref = pkt->dts; // Skip tests for the first packet
5287
5288     if (trk->dts_shift != AV_NOPTS_VALUE) {
5289         /* With negative CTS offsets we have set an offset to the DTS,
5290          * reverse this for the check. */
5291         ref -= trk->dts_shift;
5292     }
5293
5294     duration = pkt->dts - ref;
5295     if (pkt->dts < ref || duration >= INT_MAX) {
5296         av_log(s, AV_LOG_ERROR, "Application provided duration: %"PRId64" / timestamp: %"PRId64" is out of range for mov/mp4 format\n",
5297             duration, pkt->dts
5298         );
5299
5300         pkt->dts = ref + 1;
5301         pkt->pts = AV_NOPTS_VALUE;
5302     }
5303
5304     if (pkt->duration < 0 || pkt->duration > INT_MAX) {
5305         av_log(s, AV_LOG_ERROR, "Application provided duration: %"PRId64" is invalid\n", pkt->duration);
5306         return AVERROR(EINVAL);
5307     }
5308     return 0;
5309 }
5310
5311 int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
5312 {
5313     MOVMuxContext *mov = s->priv_data;
5314     AVIOContext *pb = s->pb;
5315     MOVTrack *trk = &mov->tracks[pkt->stream_index];
5316     AVCodecParameters *par = trk->par;
5317     unsigned int samples_in_chunk = 0;
5318     int size = pkt->size, ret = 0;
5319     uint8_t *reformatted_data = NULL;
5320
5321     ret = check_pkt(s, pkt);
5322     if (ret < 0)
5323         return ret;
5324
5325     if (mov->flags & FF_MOV_FLAG_FRAGMENT) {
5326         int ret;
5327         if (mov->moov_written || mov->flags & FF_MOV_FLAG_EMPTY_MOOV) {
5328             if (mov->frag_interleave && mov->fragments > 0) {
5329                 if (trk->entry - trk->entries_flushed >= mov->frag_interleave) {
5330                     if ((ret = mov_flush_fragment_interleaving(s, trk)) < 0)
5331                         return ret;
5332                 }
5333             }
5334
5335             if (!trk->mdat_buf) {
5336                 if ((ret = avio_open_dyn_buf(&trk->mdat_buf)) < 0)
5337                     return ret;
5338             }
5339             pb = trk->mdat_buf;
5340         } else {
5341             if (!mov->mdat_buf) {
5342                 if ((ret = avio_open_dyn_buf(&mov->mdat_buf)) < 0)
5343                     return ret;
5344             }
5345             pb = mov->mdat_buf;
5346         }
5347     }
5348
5349     if (par->codec_id == AV_CODEC_ID_AMR_NB) {
5350         /* We must find out how many AMR blocks there are in one packet */
5351         static const uint16_t packed_size[16] =
5352             {13, 14, 16, 18, 20, 21, 27, 32, 6, 0, 0, 0, 0, 0, 0, 1};
5353         int len = 0;
5354
5355         while (len < size && samples_in_chunk < 100) {
5356             len += packed_size[(pkt->data[len] >> 3) & 0x0F];
5357             samples_in_chunk++;
5358         }
5359         if (samples_in_chunk > 1) {
5360             av_log(s, AV_LOG_ERROR, "fatal error, input is not a single packet, implement a AVParser for it\n");
5361             return -1;
5362         }
5363     } else if (par->codec_id == AV_CODEC_ID_ADPCM_MS ||
5364                par->codec_id == AV_CODEC_ID_ADPCM_IMA_WAV) {
5365         samples_in_chunk = trk->par->frame_size;
5366     } else if (trk->sample_size)
5367         samples_in_chunk = size / trk->sample_size;
5368     else
5369         samples_in_chunk = 1;
5370
5371     if (samples_in_chunk < 1) {
5372         av_log(s, AV_LOG_ERROR, "fatal error, input packet contains no samples\n");
5373         return AVERROR_PATCHWELCOME;
5374     }
5375
5376     /* copy extradata if it exists */
5377     if (trk->vos_len == 0 && par->extradata_size > 0 &&
5378         !TAG_IS_AVCI(trk->tag) &&
5379         (par->codec_id != AV_CODEC_ID_DNXHD)) {
5380         trk->vos_len  = par->extradata_size;
5381         trk->vos_data = av_malloc(trk->vos_len + AV_INPUT_BUFFER_PADDING_SIZE);
5382         if (!trk->vos_data) {
5383             ret = AVERROR(ENOMEM);
5384             goto err;
5385         }
5386         memcpy(trk->vos_data, par->extradata, trk->vos_len);
5387         memset(trk->vos_data + trk->vos_len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
5388     }
5389
5390     if (par->codec_id == AV_CODEC_ID_AAC && pkt->size > 2 &&
5391         (AV_RB16(pkt->data) & 0xfff0) == 0xfff0) {
5392         if (!s->streams[pkt->stream_index]->nb_frames) {
5393             av_log(s, AV_LOG_ERROR, "Malformed AAC bitstream detected: "
5394                    "use the audio bitstream filter 'aac_adtstoasc' to fix it "
5395                    "('-bsf:a aac_adtstoasc' option with ffmpeg)\n");
5396             return -1;
5397         }
5398         av_log(s, AV_LOG_WARNING, "aac bitstream error\n");
5399     }
5400     if (par->codec_id == AV_CODEC_ID_H264 && trk->vos_len > 0 && *(uint8_t *)trk->vos_data != 1 && !TAG_IS_AVCI(trk->tag)) {
5401         /* from x264 or from bytestream H.264 */
5402         /* NAL reformatting needed */
5403         if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams) {
5404             ff_avc_parse_nal_units_buf(pkt->data, &reformatted_data,
5405                                        &size);
5406             avio_write(pb, reformatted_data, size);
5407         } else {
5408             if (trk->cenc.aes_ctr) {
5409                 size = ff_mov_cenc_avc_parse_nal_units(&trk->cenc, pb, pkt->data, size);
5410                 if (size < 0) {
5411                     ret = size;
5412                     goto err;
5413                 }
5414             } else {
5415                 size = ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
5416             }
5417         }
5418     } else if (par->codec_id == AV_CODEC_ID_HEVC && trk->vos_len > 6 &&
5419                (AV_RB24(trk->vos_data) == 1 || AV_RB32(trk->vos_data) == 1)) {
5420         /* extradata is Annex B, assume the bitstream is too and convert it */
5421         if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams) {
5422             ff_hevc_annexb2mp4_buf(pkt->data, &reformatted_data, &size, 0, NULL);
5423             avio_write(pb, reformatted_data, size);
5424         } else {
5425             size = ff_hevc_annexb2mp4(pb, pkt->data, pkt->size, 0, NULL);
5426         }
5427     } else if (par->codec_id == AV_CODEC_ID_AV1) {
5428         if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams) {
5429             ff_av1_filter_obus_buf(pkt->data, &reformatted_data, &size);
5430             avio_write(pb, reformatted_data, size);
5431         } else {
5432             size = ff_av1_filter_obus(pb, pkt->data, pkt->size);
5433         }
5434 #if CONFIG_AC3_PARSER
5435     } else if (par->codec_id == AV_CODEC_ID_EAC3) {
5436         size = handle_eac3(mov, pkt, trk);
5437         if (size < 0)
5438             return size;
5439         else if (!size)
5440             goto end;
5441         avio_write(pb, pkt->data, size);
5442 #endif
5443     } else {
5444         if (trk->cenc.aes_ctr) {
5445             if (par->codec_id == AV_CODEC_ID_H264 && par->extradata_size > 4) {
5446                 int nal_size_length = (par->extradata[4] & 0x3) + 1;
5447                 ret = ff_mov_cenc_avc_write_nal_units(s, &trk->cenc, nal_size_length, pb, pkt->data, size);
5448             } else {
5449                 ret = ff_mov_cenc_write_packet(&trk->cenc, pb, pkt->data, size);
5450             }
5451
5452             if (ret) {
5453                 goto err;
5454             }
5455         } else {
5456             avio_write(pb, pkt->data, size);
5457         }
5458     }
5459
5460     if ((par->codec_id == AV_CODEC_ID_DNXHD ||
5461          par->codec_id == AV_CODEC_ID_TRUEHD ||
5462          par->codec_id == AV_CODEC_ID_AC3) && !trk->vos_len) {
5463         /* copy frame to create needed atoms */
5464         trk->vos_len  = size;
5465         trk->vos_data = av_malloc(size + AV_INPUT_BUFFER_PADDING_SIZE);
5466         if (!trk->vos_data) {
5467             ret = AVERROR(ENOMEM);
5468             goto err;
5469         }
5470         memcpy(trk->vos_data, pkt->data, size);
5471         memset(trk->vos_data + size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
5472     }
5473
5474     if (trk->entry >= trk->cluster_capacity) {
5475         unsigned new_capacity = 2 * (trk->entry + MOV_INDEX_CLUSTER_SIZE);
5476         if (av_reallocp_array(&trk->cluster, new_capacity,
5477                               sizeof(*trk->cluster))) {
5478             ret = AVERROR(ENOMEM);
5479             goto err;
5480         }
5481         trk->cluster_capacity = new_capacity;
5482     }
5483
5484     trk->cluster[trk->entry].pos              = avio_tell(pb) - size;
5485     trk->cluster[trk->entry].samples_in_chunk = samples_in_chunk;
5486     trk->cluster[trk->entry].chunkNum         = 0;
5487     trk->cluster[trk->entry].size             = size;
5488     trk->cluster[trk->entry].entries          = samples_in_chunk;
5489     trk->cluster[trk->entry].dts              = pkt->dts;
5490     trk->cluster[trk->entry].pts              = pkt->pts;
5491     if (!trk->entry && trk->start_dts != AV_NOPTS_VALUE) {
5492         if (!trk->frag_discont) {
5493             /* First packet of a new fragment. We already wrote the duration
5494              * of the last packet of the previous fragment based on track_duration,
5495              * which might not exactly match our dts. Therefore adjust the dts
5496              * of this packet to be what the previous packets duration implies. */
5497             trk->cluster[trk->entry].dts = trk->start_dts + trk->track_duration;
5498             /* We also may have written the pts and the corresponding duration
5499              * in sidx/tfrf/tfxd tags; make sure the sidx pts and duration match up with
5500              * the next fragment. This means the cts of the first sample must
5501              * be the same in all fragments, unless end_pts was updated by
5502              * the packet causing the fragment to be written. */
5503             if ((mov->flags & FF_MOV_FLAG_DASH &&
5504                 !(mov->flags & (FF_MOV_FLAG_GLOBAL_SIDX | FF_MOV_FLAG_SKIP_SIDX))) ||
5505                 mov->mode == MODE_ISM)
5506                 pkt->pts = pkt->dts + trk->end_pts - trk->cluster[trk->entry].dts;
5507         } else {
5508             /* New fragment, but discontinuous from previous fragments.
5509              * Pretend the duration sum of the earlier fragments is
5510              * pkt->dts - trk->start_dts. */
5511             trk->frag_start = pkt->dts - trk->start_dts;
5512             trk->end_pts = AV_NOPTS_VALUE;
5513             trk->frag_discont = 0;
5514         }
5515     }
5516
5517     if (!trk->entry && trk->start_dts == AV_NOPTS_VALUE && !mov->use_editlist &&
5518         s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO) {
5519         /* Not using edit lists and shifting the first track to start from zero.
5520          * If the other streams start from a later timestamp, we won't be able
5521          * to signal the difference in starting time without an edit list.
5522          * Thus move the timestamp for this first sample to 0, increasing
5523          * its duration instead. */
5524         trk->cluster[trk->entry].dts = trk->start_dts = 0;
5525     }
5526     if (trk->start_dts == AV_NOPTS_VALUE) {
5527         trk->start_dts = pkt->dts;
5528         if (trk->frag_discont) {
5529             if (mov->use_editlist) {
5530                 /* Pretend the whole stream started at pts=0, with earlier fragments
5531                  * already written. If the stream started at pts=0, the duration sum
5532                  * of earlier fragments would have been pkt->pts. */
5533                 trk->frag_start = pkt->pts;
5534                 trk->start_dts  = pkt->dts - pkt->pts;
5535             } else {
5536                 /* Pretend the whole stream started at dts=0, with earlier fragments
5537                  * already written, with a duration summing up to pkt->dts. */
5538                 trk->frag_start = pkt->dts;
5539                 trk->start_dts  = 0;
5540             }
5541             trk->frag_discont = 0;
5542         } else if (pkt->dts && mov->moov_written)
5543             av_log(s, AV_LOG_WARNING,
5544                    "Track %d starts with a nonzero dts %"PRId64", while the moov "
5545                    "already has been written. Set the delay_moov flag to handle "
5546                    "this case.\n",
5547                    pkt->stream_index, pkt->dts);
5548     }
5549     trk->track_duration = pkt->dts - trk->start_dts + pkt->duration;
5550     trk->last_sample_is_subtitle_end = 0;
5551
5552     if (pkt->pts == AV_NOPTS_VALUE) {
5553         av_log(s, AV_LOG_WARNING, "pts has no value\n");
5554         pkt->pts = pkt->dts;
5555     }
5556     if (pkt->dts != pkt->pts)
5557         trk->flags |= MOV_TRACK_CTTS;
5558     trk->cluster[trk->entry].cts   = pkt->pts - pkt->dts;
5559     trk->cluster[trk->entry].flags = 0;
5560     if (trk->start_cts == AV_NOPTS_VALUE)
5561         trk->start_cts = pkt->pts - pkt->dts;
5562     if (trk->end_pts == AV_NOPTS_VALUE)
5563         trk->end_pts = trk->cluster[trk->entry].dts +
5564                        trk->cluster[trk->entry].cts + pkt->duration;
5565     else
5566         trk->end_pts = FFMAX(trk->end_pts, trk->cluster[trk->entry].dts +
5567                                            trk->cluster[trk->entry].cts +
5568                                            pkt->duration);
5569
5570     if (par->codec_id == AV_CODEC_ID_VC1) {
5571         mov_parse_vc1_frame(pkt, trk);
5572     } else if (par->codec_id == AV_CODEC_ID_TRUEHD) {
5573         mov_parse_truehd_frame(pkt, trk);
5574     } else if (pkt->flags & AV_PKT_FLAG_KEY) {
5575         if (mov->mode == MODE_MOV && par->codec_id == AV_CODEC_ID_MPEG2VIDEO &&
5576             trk->entry > 0) { // force sync sample for the first key frame
5577             mov_parse_mpeg2_frame(pkt, &trk->cluster[trk->entry].flags);
5578             if (trk->cluster[trk->entry].flags & MOV_PARTIAL_SYNC_SAMPLE)
5579                 trk->flags |= MOV_TRACK_STPS;
5580         } else {
5581             trk->cluster[trk->entry].flags = MOV_SYNC_SAMPLE;
5582         }
5583         if (trk->cluster[trk->entry].flags & MOV_SYNC_SAMPLE)
5584             trk->has_keyframes++;
5585     }
5586     if (pkt->flags & AV_PKT_FLAG_DISPOSABLE) {
5587         trk->cluster[trk->entry].flags |= MOV_DISPOSABLE_SAMPLE;
5588         trk->has_disposable++;
5589     }
5590     trk->entry++;
5591     trk->sample_count += samples_in_chunk;
5592     mov->mdat_size    += size;
5593
5594     if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams)
5595         ff_mov_add_hinted_packet(s, pkt, trk->hint_track, trk->entry,
5596                                  reformatted_data, size);
5597
5598 end:
5599 err:
5600
5601     av_free(reformatted_data);
5602     return ret;
5603 }
5604
5605 static int mov_write_single_packet(AVFormatContext *s, AVPacket *pkt)
5606 {
5607         MOVMuxContext *mov = s->priv_data;
5608         MOVTrack *trk = &mov->tracks[pkt->stream_index];
5609         AVCodecParameters *par = trk->par;
5610         int64_t frag_duration = 0;
5611         int size = pkt->size;
5612
5613         int ret = check_pkt(s, pkt);
5614         if (ret < 0)
5615             return ret;
5616
5617         if (mov->flags & FF_MOV_FLAG_FRAG_DISCONT) {
5618             int i;
5619             for (i = 0; i < s->nb_streams; i++)
5620                 mov->tracks[i].frag_discont = 1;
5621             mov->flags &= ~FF_MOV_FLAG_FRAG_DISCONT;
5622         }
5623
5624         if (mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS) {
5625             if (trk->dts_shift == AV_NOPTS_VALUE)
5626                 trk->dts_shift = pkt->pts - pkt->dts;
5627             pkt->dts += trk->dts_shift;
5628         }
5629
5630         if (trk->par->codec_id == AV_CODEC_ID_MP4ALS ||
5631             trk->par->codec_id == AV_CODEC_ID_AAC ||
5632             trk->par->codec_id == AV_CODEC_ID_AV1 ||
5633             trk->par->codec_id == AV_CODEC_ID_FLAC) {
5634             int side_size = 0;
5635             uint8_t *side = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, &side_size);
5636             if (side && side_size > 0 && (side_size != par->extradata_size || memcmp(side, par->extradata, side_size))) {
5637                 void *newextra = av_mallocz(side_size + AV_INPUT_BUFFER_PADDING_SIZE);
5638                 if (!newextra)
5639                     return AVERROR(ENOMEM);
5640                 av_free(par->extradata);
5641                 par->extradata = newextra;
5642                 memcpy(par->extradata, side, side_size);
5643                 par->extradata_size = side_size;
5644                 if (!pkt->size) // Flush packet
5645                     mov->need_rewrite_extradata = 1;
5646             }
5647         }
5648
5649         if (!pkt->size) {
5650             if (trk->start_dts == AV_NOPTS_VALUE && trk->frag_discont) {
5651                 trk->start_dts = pkt->dts;
5652                 if (pkt->pts != AV_NOPTS_VALUE)
5653                     trk->start_cts = pkt->pts - pkt->dts;
5654                 else
5655                     trk->start_cts = 0;
5656             }
5657
5658             return 0;             /* Discard 0 sized packets */
5659         }
5660
5661         if (trk->entry && pkt->stream_index < s->nb_streams)
5662             frag_duration = av_rescale_q(pkt->dts - trk->cluster[0].dts,
5663                                          s->streams[pkt->stream_index]->time_base,
5664                                          AV_TIME_BASE_Q);
5665         if ((mov->max_fragment_duration &&
5666              frag_duration >= mov->max_fragment_duration) ||
5667              (mov->max_fragment_size && mov->mdat_size + size >= mov->max_fragment_size) ||
5668              (mov->flags & FF_MOV_FLAG_FRAG_KEYFRAME &&
5669               par->codec_type == AVMEDIA_TYPE_VIDEO &&
5670               trk->entry && pkt->flags & AV_PKT_FLAG_KEY) ||
5671               (mov->flags & FF_MOV_FLAG_FRAG_EVERY_FRAME)) {
5672             if (frag_duration >= mov->min_fragment_duration) {
5673                 // Set the duration of this track to line up with the next
5674                 // sample in this track. This avoids relying on AVPacket
5675                 // duration, but only helps for this particular track, not
5676                 // for the other ones that are flushed at the same time.
5677                 trk->track_duration = pkt->dts - trk->start_dts;
5678                 if (pkt->pts != AV_NOPTS_VALUE)
5679                     trk->end_pts = pkt->pts;
5680                 else
5681                     trk->end_pts = pkt->dts;
5682                 trk->end_reliable = 1;
5683                 mov_auto_flush_fragment(s, 0);
5684             }
5685         }
5686
5687         return ff_mov_write_packet(s, pkt);
5688 }
5689
5690 static int mov_write_subtitle_end_packet(AVFormatContext *s,
5691                                          int stream_index,
5692                                          int64_t dts) {
5693     AVPacket end;
5694     uint8_t data[2] = {0};
5695     int ret;
5696
5697     av_init_packet(&end);
5698     end.size = sizeof(data);
5699     end.data = data;
5700     end.pts = dts;
5701     end.dts = dts;
5702     end.duration = 0;
5703     end.stream_index = stream_index;
5704
5705     ret = mov_write_single_packet(s, &end);
5706     av_packet_unref(&end);
5707
5708     return ret;
5709 }
5710
5711 static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
5712 {
5713     MOVMuxContext *mov = s->priv_data;
5714     MOVTrack *trk;
5715
5716     if (!pkt) {
5717         mov_flush_fragment(s, 1);
5718         return 1;
5719     }
5720
5721     trk = &mov->tracks[pkt->stream_index];
5722
5723     if (is_cover_image(trk->st)) {
5724         int ret;
5725
5726         if (trk->st->nb_frames >= 1) {
5727             if (trk->st->nb_frames == 1)
5728                 av_log(s, AV_LOG_WARNING, "Got more than one picture in stream %d,"
5729                        " ignoring.\n", pkt->stream_index);
5730             return 0;
5731         }
5732
5733         if ((ret = av_packet_ref(&trk->cover_image, pkt)) < 0)
5734             return ret;
5735
5736         return 0;
5737     } else {
5738         int i;
5739
5740         if (!pkt->size)
5741             return mov_write_single_packet(s, pkt); /* Passthrough. */
5742
5743         /*
5744          * Subtitles require special handling.
5745          *
5746          * 1) For full complaince, every track must have a sample at
5747          * dts == 0, which is rarely true for subtitles. So, as soon
5748          * as we see any packet with dts > 0, write an empty subtitle
5749          * at dts == 0 for any subtitle track with no samples in it.
5750          *
5751          * 2) For each subtitle track, check if the current packet's
5752          * dts is past the duration of the last subtitle sample. If
5753          * so, we now need to write an end sample for that subtitle.
5754          *
5755          * This must be done conditionally to allow for subtitles that
5756          * immediately replace each other, in which case an end sample
5757          * is not needed, and is, in fact, actively harmful.
5758          *
5759          * 3) See mov_write_trailer for how the final end sample is
5760          * handled.
5761          */
5762         for (i = 0; i < mov->nb_streams; i++) {
5763             MOVTrack *trk = &mov->tracks[i];
5764             int ret;
5765
5766             if (trk->par->codec_id == AV_CODEC_ID_MOV_TEXT &&
5767                 trk->track_duration < pkt->dts &&
5768                 (trk->entry == 0 || !trk->last_sample_is_subtitle_end)) {
5769                 ret = mov_write_subtitle_end_packet(s, i, trk->track_duration);
5770                 if (ret < 0) return ret;
5771                 trk->last_sample_is_subtitle_end = 1;
5772             }
5773         }
5774
5775         if (trk->mode == MODE_MOV && trk->par->codec_type == AVMEDIA_TYPE_VIDEO) {
5776             AVPacket *opkt = pkt;
5777             int reshuffle_ret, ret;
5778             if (trk->is_unaligned_qt_rgb) {
5779                 int64_t bpc = trk->par->bits_per_coded_sample != 15 ? trk->par->bits_per_coded_sample : 16;
5780                 int expected_stride = ((trk->par->width * bpc + 15) >> 4)*2;
5781                 reshuffle_ret = ff_reshuffle_raw_rgb(s, &pkt, trk->par, expected_stride);
5782                 if (reshuffle_ret < 0)
5783                     return reshuffle_ret;
5784             } else
5785                 reshuffle_ret = 0;
5786             if (trk->par->format == AV_PIX_FMT_PAL8 && !trk->pal_done) {
5787                 ret = ff_get_packet_palette(s, opkt, reshuffle_ret, trk->palette);
5788                 if (ret < 0)
5789                     goto fail;
5790                 if (ret)
5791                     trk->pal_done++;
5792             } else if (trk->par->codec_id == AV_CODEC_ID_RAWVIDEO &&
5793                        (trk->par->format == AV_PIX_FMT_GRAY8 ||
5794                        trk->par->format == AV_PIX_FMT_MONOBLACK)) {
5795                 for (i = 0; i < pkt->size; i++)
5796                     pkt->data[i] = ~pkt->data[i];
5797             }
5798             if (reshuffle_ret) {
5799                 ret = mov_write_single_packet(s, pkt);
5800 fail:
5801                 if (reshuffle_ret)
5802                     av_packet_free(&pkt);
5803                 return ret;
5804             }
5805         }
5806
5807         return mov_write_single_packet(s, pkt);
5808     }
5809 }
5810
5811 // QuickTime chapters involve an additional text track with the chapter names
5812 // as samples, and a tref pointing from the other tracks to the chapter one.
5813 static int mov_create_chapter_track(AVFormatContext *s, int tracknum)
5814 {
5815     AVIOContext *pb;
5816
5817     MOVMuxContext *mov = s->priv_data;
5818     MOVTrack *track = &mov->tracks[tracknum];
5819     AVPacket pkt = { .stream_index = tracknum, .flags = AV_PKT_FLAG_KEY };
5820     int i, len;
5821
5822     track->mode = mov->mode;
5823     track->tag = MKTAG('t','e','x','t');
5824     track->timescale = MOV_TIMESCALE;
5825     track->par = avcodec_parameters_alloc();
5826     if (!track->par)
5827         return AVERROR(ENOMEM);
5828     track->par->codec_type = AVMEDIA_TYPE_SUBTITLE;
5829 #if 0
5830     // These properties are required to make QT recognize the chapter track
5831     uint8_t chapter_properties[43] = { 0, 0, 0, 0, 0, 0, 0, 1, };
5832     if (ff_alloc_extradata(track->par, sizeof(chapter_properties)))
5833         return AVERROR(ENOMEM);
5834     memcpy(track->par->extradata, chapter_properties, sizeof(chapter_properties));
5835 #else
5836     if (avio_open_dyn_buf(&pb) >= 0) {
5837         int size;
5838         uint8_t *buf;
5839
5840         /* Stub header (usually for Quicktime chapter track) */
5841         // TextSampleEntry
5842         avio_wb32(pb, 0x01); // displayFlags
5843         avio_w8(pb, 0x00);   // horizontal justification
5844         avio_w8(pb, 0x00);   // vertical justification
5845         avio_w8(pb, 0x00);   // bgColourRed
5846         avio_w8(pb, 0x00);   // bgColourGreen
5847         avio_w8(pb, 0x00);   // bgColourBlue
5848         avio_w8(pb, 0x00);   // bgColourAlpha
5849         // BoxRecord
5850         avio_wb16(pb, 0x00); // defTextBoxTop
5851         avio_wb16(pb, 0x00); // defTextBoxLeft
5852         avio_wb16(pb, 0x00); // defTextBoxBottom
5853         avio_wb16(pb, 0x00); // defTextBoxRight
5854         // StyleRecord
5855         avio_wb16(pb, 0x00); // startChar
5856         avio_wb16(pb, 0x00); // endChar
5857         avio_wb16(pb, 0x01); // fontID
5858         avio_w8(pb, 0x00);   // fontStyleFlags
5859         avio_w8(pb, 0x00);   // fontSize
5860         avio_w8(pb, 0x00);   // fgColourRed
5861         avio_w8(pb, 0x00);   // fgColourGreen
5862         avio_w8(pb, 0x00);   // fgColourBlue
5863         avio_w8(pb, 0x00);   // fgColourAlpha
5864         // FontTableBox
5865         avio_wb32(pb, 0x0D); // box size
5866         ffio_wfourcc(pb, "ftab"); // box atom name
5867         avio_wb16(pb, 0x01); // entry count
5868         // FontRecord
5869         avio_wb16(pb, 0x01); // font ID
5870         avio_w8(pb, 0x00);   // font name length
5871
5872         if ((size = avio_close_dyn_buf(pb, &buf)) > 0) {
5873             track->par->extradata = buf;
5874             track->par->extradata_size = size;
5875         } else {
5876             av_freep(&buf);
5877         }
5878     }
5879 #endif
5880
5881     for (i = 0; i < s->nb_chapters; i++) {
5882         AVChapter *c = s->chapters[i];
5883         AVDictionaryEntry *t;
5884
5885         int64_t end = av_rescale_q(c->end, c->time_base, (AVRational){1,MOV_TIMESCALE});
5886         pkt.pts = pkt.dts = av_rescale_q(c->start, c->time_base, (AVRational){1,MOV_TIMESCALE});
5887         pkt.duration = end - pkt.dts;
5888
5889         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
5890             static const char encd[12] = {
5891                 0x00, 0x00, 0x00, 0x0C,
5892                 'e',  'n',  'c',  'd',
5893                 0x00, 0x00, 0x01, 0x00 };
5894             len      = strlen(t->value);
5895             pkt.size = len + 2 + 12;
5896             pkt.data = av_malloc(pkt.size);
5897             if (!pkt.data)
5898                 return AVERROR(ENOMEM);
5899             AV_WB16(pkt.data, len);
5900             memcpy(pkt.data + 2, t->value, len);
5901             memcpy(pkt.data + len + 2, encd, sizeof(encd));
5902             ff_mov_write_packet(s, &pkt);
5903             av_freep(&pkt.data);
5904         }
5905     }
5906
5907     return 0;
5908 }
5909
5910
5911 static int mov_check_timecode_track(AVFormatContext *s, AVTimecode *tc, int src_index, const char *tcstr)
5912 {
5913     int ret;
5914
5915     /* compute the frame number */
5916     ret = av_timecode_init_from_string(tc, find_fps(s,  s->streams[src_index]), tcstr, s);
5917     return ret;
5918 }
5919
5920 static int mov_create_timecode_track(AVFormatContext *s, int index, int src_index, AVTimecode tc)
5921 {
5922     int ret;
5923     MOVMuxContext *mov  = s->priv_data;
5924     MOVTrack *track     = &mov->tracks[index];
5925     AVStream *src_st    = s->streams[src_index];
5926     AVPacket pkt    = {.stream_index = index, .flags = AV_PKT_FLAG_KEY, .size = 4};
5927     AVRational rate = find_fps(s, src_st);
5928
5929     /* tmcd track based on video stream */
5930     track->mode      = mov->mode;
5931     track->tag       = MKTAG('t','m','c','d');
5932     track->src_track = src_index;
5933     track->timescale = mov->tracks[src_index].timescale;
5934     if (tc.flags & AV_TIMECODE_FLAG_DROPFRAME)
5935         track->timecode_flags |= MOV_TIMECODE_FLAG_DROPFRAME;
5936
5937     /* set st to src_st for metadata access*/
5938     track->st = src_st;
5939
5940     /* encode context: tmcd data stream */
5941     track->par = avcodec_parameters_alloc();
5942     if (!track->par)
5943         return AVERROR(ENOMEM);
5944     track->par->codec_type = AVMEDIA_TYPE_DATA;
5945     track->par->codec_tag  = track->tag;
5946     track->st->avg_frame_rate = av_inv_q(rate);
5947
5948     /* the tmcd track just contains one packet with the frame number */
5949     pkt.data = av_malloc(pkt.size);
5950     if (!pkt.data)
5951         return AVERROR(ENOMEM);
5952     AV_WB32(pkt.data, tc.start);
5953     ret = ff_mov_write_packet(s, &pkt);
5954     av_free(pkt.data);
5955     return ret;
5956 }
5957
5958 /*
5959  * st->disposition controls the "enabled" flag in the tkhd tag.
5960  * QuickTime will not play a track if it is not enabled.  So make sure
5961  * that one track of each type (audio, video, subtitle) is enabled.
5962  *
5963  * Subtitles are special.  For audio and video, setting "enabled" also
5964  * makes the track "default" (i.e. it is rendered when played). For
5965  * subtitles, an "enabled" subtitle is not rendered by default, but
5966  * if no subtitle is enabled, the subtitle menu in QuickTime will be
5967  * empty!
5968  */
5969 static void enable_tracks(AVFormatContext *s)
5970 {
5971     MOVMuxContext *mov = s->priv_data;
5972     int i;
5973     int enabled[AVMEDIA_TYPE_NB];
5974     int first[AVMEDIA_TYPE_NB];
5975
5976     for (i = 0; i < AVMEDIA_TYPE_NB; i++) {
5977         enabled[i] = 0;
5978         first[i] = -1;
5979     }
5980
5981     for (i = 0; i < s->nb_streams; i++) {
5982         AVStream *st = s->streams[i];
5983
5984         if (st->codecpar->codec_type <= AVMEDIA_TYPE_UNKNOWN ||
5985             st->codecpar->codec_type >= AVMEDIA_TYPE_NB ||
5986             is_cover_image(st))
5987             continue;
5988
5989         if (first[st->codecpar->codec_type] < 0)
5990             first[st->codecpar->codec_type] = i;
5991         if (st->disposition & AV_DISPOSITION_DEFAULT) {
5992             mov->tracks[i].flags |= MOV_TRACK_ENABLED;
5993             enabled[st->codecpar->codec_type]++;
5994         }
5995     }
5996
5997     for (i = 0; i < AVMEDIA_TYPE_NB; i++) {
5998         switch (i) {
5999         case AVMEDIA_TYPE_VIDEO:
6000         case AVMEDIA_TYPE_AUDIO:
6001         case AVMEDIA_TYPE_SUBTITLE:
6002             if (enabled[i] > 1)
6003                 mov->per_stream_grouping = 1;
6004             if (!enabled[i] && first[i] >= 0)
6005                 mov->tracks[first[i]].flags |= MOV_TRACK_ENABLED;
6006             break;
6007         }
6008     }
6009 }
6010
6011 static void mov_free(AVFormatContext *s)
6012 {
6013     MOVMuxContext *mov = s->priv_data;
6014     int i;
6015
6016     if (mov->chapter_track) {
6017         if (mov->tracks[mov->chapter_track].par)
6018             av_freep(&mov->tracks[mov->chapter_track].par->extradata);
6019         av_freep(&mov->tracks[mov->chapter_track].par);
6020     }
6021
6022     for (i = 0; i < mov->nb_streams; i++) {
6023         if (mov->tracks[i].tag == MKTAG('r','t','p',' '))
6024             ff_mov_close_hinting(&mov->tracks[i]);
6025         else if (mov->tracks[i].tag == MKTAG('t','m','c','d') && mov->nb_meta_tmcd)
6026             av_freep(&mov->tracks[i].par);
6027         av_freep(&mov->tracks[i].cluster);
6028         av_freep(&mov->tracks[i].frag_info);
6029         av_packet_unref(&mov->tracks[i].cover_image);
6030
6031         if (mov->tracks[i].eac3_priv) {
6032             struct eac3_info *info = mov->tracks[i].eac3_priv;
6033             av_packet_unref(&info->pkt);
6034             av_freep(&mov->tracks[i].eac3_priv);
6035         }
6036         if (mov->tracks[i].vos_len)
6037             av_freep(&mov->tracks[i].vos_data);
6038
6039         ff_mov_cenc_free(&mov->tracks[i].cenc);
6040     }
6041
6042     av_freep(&mov->tracks);
6043 }
6044
6045 static uint32_t rgb_to_yuv(uint32_t rgb)
6046 {
6047     uint8_t r, g, b;
6048     int y, cb, cr;
6049
6050     r = (rgb >> 16) & 0xFF;
6051     g = (rgb >>  8) & 0xFF;
6052     b = (rgb      ) & 0xFF;
6053
6054     y  = av_clip_uint8(( 16000 +  257 * r + 504 * g +  98 * b)/1000);
6055     cb = av_clip_uint8((128000 -  148 * r - 291 * g + 439 * b)/1000);
6056     cr = av_clip_uint8((128000 +  439 * r - 368 * g -  71 * b)/1000);
6057
6058     return (y << 16) | (cr << 8) | cb;
6059 }
6060
6061 static int mov_create_dvd_sub_decoder_specific_info(MOVTrack *track,
6062                                                     AVStream *st)
6063 {
6064     int i, width = 720, height = 480;
6065     int have_palette = 0, have_size = 0;
6066     uint32_t palette[16];
6067     char *cur = st->codecpar->extradata;
6068
6069     while (cur && *cur) {
6070         if (strncmp("palette:", cur, 8) == 0) {
6071             int i, count;
6072             count = sscanf(cur + 8,
6073                 "%06"PRIx32", %06"PRIx32", %06"PRIx32", %06"PRIx32", "
6074                 "%06"PRIx32", %06"PRIx32", %06"PRIx32", %06"PRIx32", "
6075                 "%06"PRIx32", %06"PRIx32", %06"PRIx32", %06"PRIx32", "
6076                 "%06"PRIx32", %06"PRIx32", %06"PRIx32", %06"PRIx32"",
6077                 &palette[ 0], &palette[ 1], &palette[ 2], &palette[ 3],
6078                 &palette[ 4], &palette[ 5], &palette[ 6], &palette[ 7],
6079                 &palette[ 8], &palette[ 9], &palette[10], &palette[11],
6080                 &palette[12], &palette[13], &palette[14], &palette[15]);
6081
6082             for (i = 0; i < count; i++) {
6083                 palette[i] = rgb_to_yuv(palette[i]);
6084             }
6085             have_palette = 1;
6086         } else if (!strncmp("size:", cur, 5)) {
6087             sscanf(cur + 5, "%dx%d", &width, &height);
6088             have_size = 1;
6089         }
6090         if (have_palette && have_size)
6091             break;
6092         cur += strcspn(cur, "\n\r");
6093         cur += strspn(cur, "\n\r");
6094     }
6095     if (have_palette) {
6096         track->vos_data = av_malloc(16*4 + AV_INPUT_BUFFER_PADDING_SIZE);
6097         if (!track->vos_data)
6098             return AVERROR(ENOMEM);
6099         for (i = 0; i < 16; i++) {
6100             AV_WB32(track->vos_data + i * 4, palette[i]);
6101         }
6102         memset(track->vos_data + 16*4, 0, AV_INPUT_BUFFER_PADDING_SIZE);
6103         track->vos_len = 16 * 4;
6104     }
6105     st->codecpar->width = width;
6106     st->codecpar->height = track->height = height;
6107
6108     return 0;
6109 }
6110
6111 static int mov_init(AVFormatContext *s)
6112 {
6113     MOVMuxContext *mov = s->priv_data;
6114     AVDictionaryEntry *global_tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
6115     int i, ret;
6116
6117     mov->fc = s;
6118
6119     /* Default mode == MP4 */
6120     mov->mode = MODE_MP4;
6121
6122     if (s->oformat) {
6123         if (!strcmp("3gp", s->oformat->name)) mov->mode = MODE_3GP;
6124         else if (!strcmp("3g2", s->oformat->name)) mov->mode = MODE_3GP|MODE_3G2;
6125         else if (!strcmp("mov", s->oformat->name)) mov->mode = MODE_MOV;
6126         else if (!strcmp("psp", s->oformat->name)) mov->mode = MODE_PSP;
6127         else if (!strcmp("ipod",s->oformat->name)) mov->mode = MODE_IPOD;
6128         else if (!strcmp("ismv",s->oformat->name)) mov->mode = MODE_ISM;
6129         else if (!strcmp("f4v", s->oformat->name)) mov->mode = MODE_F4V;
6130     }
6131
6132     if (mov->flags & FF_MOV_FLAG_DELAY_MOOV)
6133         mov->flags |= FF_MOV_FLAG_EMPTY_MOOV;
6134
6135     /* Set the FRAGMENT flag if any of the fragmentation methods are
6136      * enabled. */
6137     if (mov->max_fragment_duration || mov->max_fragment_size ||
6138         mov->flags & (FF_MOV_FLAG_EMPTY_MOOV |
6139                       FF_MOV_FLAG_FRAG_KEYFRAME |
6140                       FF_MOV_FLAG_FRAG_CUSTOM |
6141                       FF_MOV_FLAG_FRAG_EVERY_FRAME))
6142         mov->flags |= FF_MOV_FLAG_FRAGMENT;
6143
6144     /* Set other implicit flags immediately */
6145     if (mov->mode == MODE_ISM)
6146         mov->flags |= FF_MOV_FLAG_EMPTY_MOOV | FF_MOV_FLAG_SEPARATE_MOOF |
6147                       FF_MOV_FLAG_FRAGMENT | FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS;
6148     if (mov->flags & FF_MOV_FLAG_DASH)
6149         mov->flags |= FF_MOV_FLAG_FRAGMENT | FF_MOV_FLAG_EMPTY_MOOV |
6150                       FF_MOV_FLAG_DEFAULT_BASE_MOOF;
6151
6152     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV && s->flags & AVFMT_FLAG_AUTO_BSF) {
6153         av_log(s, AV_LOG_VERBOSE, "Empty MOOV enabled; disabling automatic bitstream filtering\n");
6154         s->flags &= ~AVFMT_FLAG_AUTO_BSF;
6155     }
6156
6157     if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX && mov->flags & FF_MOV_FLAG_SKIP_SIDX) {
6158         av_log(s, AV_LOG_WARNING, "Global SIDX enabled; Ignoring skip_sidx option\n");
6159         mov->flags &= ~FF_MOV_FLAG_SKIP_SIDX;
6160     }
6161
6162     if (mov->flags & FF_MOV_FLAG_FASTSTART) {
6163         mov->reserved_moov_size = -1;
6164     }
6165
6166     if (mov->use_editlist < 0) {
6167         mov->use_editlist = 1;
6168         if (mov->flags & FF_MOV_FLAG_FRAGMENT &&
6169             !(mov->flags & FF_MOV_FLAG_DELAY_MOOV)) {
6170             // If we can avoid needing an edit list by shifting the
6171             // tracks, prefer that over (trying to) write edit lists
6172             // in fragmented output.
6173             if (s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO ||
6174                 s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO)
6175                 mov->use_editlist = 0;
6176         }
6177     }
6178     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV &&
6179         !(mov->flags & FF_MOV_FLAG_DELAY_MOOV) && mov->use_editlist)
6180         av_log(s, AV_LOG_WARNING, "No meaningful edit list will be written when using empty_moov without delay_moov\n");
6181
6182     if (!mov->use_editlist && s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO)
6183         s->avoid_negative_ts = AVFMT_AVOID_NEG_TS_MAKE_ZERO;
6184
6185     /* Clear the omit_tfhd_offset flag if default_base_moof is set;
6186      * if the latter is set that's enough and omit_tfhd_offset doesn't
6187      * add anything extra on top of that. */
6188     if (mov->flags & FF_MOV_FLAG_OMIT_TFHD_OFFSET &&
6189         mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)
6190         mov->flags &= ~FF_MOV_FLAG_OMIT_TFHD_OFFSET;
6191
6192     if (mov->frag_interleave &&
6193         mov->flags & (FF_MOV_FLAG_OMIT_TFHD_OFFSET | FF_MOV_FLAG_SEPARATE_MOOF)) {
6194         av_log(s, AV_LOG_ERROR,
6195                "Sample interleaving in fragments is mutually exclusive with "
6196                "omit_tfhd_offset and separate_moof\n");
6197         return AVERROR(EINVAL);
6198     }
6199
6200     /* Non-seekable output is ok if using fragmentation. If ism_lookahead
6201      * is enabled, we don't support non-seekable output at all. */
6202     if (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL) &&
6203         (!(mov->flags & FF_MOV_FLAG_FRAGMENT) || mov->ism_lookahead)) {
6204         av_log(s, AV_LOG_ERROR, "muxer does not support non seekable output\n");
6205         return AVERROR(EINVAL);
6206     }
6207
6208     mov->nb_streams = s->nb_streams;
6209     if (mov->mode & (MODE_MP4|MODE_MOV|MODE_IPOD) && s->nb_chapters)
6210         mov->chapter_track = mov->nb_streams++;
6211
6212     if (mov->flags & FF_MOV_FLAG_RTP_HINT) {
6213         for (i = 0; i < s->nb_streams; i++)
6214             if (rtp_hinting_needed(s->streams[i]))
6215                 mov->nb_streams++;
6216     }
6217
6218     if (   mov->write_tmcd == -1 && (mov->mode == MODE_MOV || mov->mode == MODE_MP4)
6219         || mov->write_tmcd == 1) {
6220         /* +1 tmcd track for each video stream with a timecode */
6221         for (i = 0; i < s->nb_streams; i++) {
6222             AVStream *st = s->streams[i];
6223             AVDictionaryEntry *t = global_tcr;
6224             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
6225                 (t || (t=av_dict_get(st->metadata, "timecode", NULL, 0)))) {
6226                 AVTimecode tc;
6227                 ret = mov_check_timecode_track(s, &tc, i, t->value);
6228                 if (ret >= 0)
6229                     mov->nb_meta_tmcd++;
6230             }
6231         }
6232
6233         /* check if there is already a tmcd track to remux */
6234         if (mov->nb_meta_tmcd) {
6235             for (i = 0; i < s->nb_streams; i++) {
6236                 AVStream *st = s->streams[i];
6237                 if (st->codecpar->codec_tag == MKTAG('t','m','c','d')) {
6238                     av_log(s, AV_LOG_WARNING, "You requested a copy of the original timecode track "
6239                            "so timecode metadata are now ignored\n");
6240                     mov->nb_meta_tmcd = 0;
6241                 }
6242             }
6243         }
6244
6245         mov->nb_streams += mov->nb_meta_tmcd;
6246     }
6247
6248     // Reserve an extra stream for chapters for the case where chapters
6249     // are written in the trailer
6250     mov->tracks = av_mallocz_array((mov->nb_streams + 1), sizeof(*mov->tracks));
6251     if (!mov->tracks)
6252         return AVERROR(ENOMEM);
6253
6254     if (mov->encryption_scheme_str != NULL && strcmp(mov->encryption_scheme_str, "none") != 0) {
6255         if (strcmp(mov->encryption_scheme_str, "cenc-aes-ctr") == 0) {
6256             mov->encryption_scheme = MOV_ENC_CENC_AES_CTR;
6257
6258             if (mov->encryption_key_len != AES_CTR_KEY_SIZE) {
6259                 av_log(s, AV_LOG_ERROR, "Invalid encryption key len %d expected %d\n",
6260                     mov->encryption_key_len, AES_CTR_KEY_SIZE);
6261                 return AVERROR(EINVAL);
6262             }
6263
6264             if (mov->encryption_kid_len != CENC_KID_SIZE) {
6265                 av_log(s, AV_LOG_ERROR, "Invalid encryption kid len %d expected %d\n",
6266                     mov->encryption_kid_len, CENC_KID_SIZE);
6267                 return AVERROR(EINVAL);
6268             }
6269         } else {
6270             av_log(s, AV_LOG_ERROR, "unsupported encryption scheme %s\n",
6271                 mov->encryption_scheme_str);
6272             return AVERROR(EINVAL);
6273         }
6274     }
6275
6276     for (i = 0; i < s->nb_streams; i++) {
6277         AVStream *st= s->streams[i];
6278         MOVTrack *track= &mov->tracks[i];
6279         AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL,0);
6280
6281         track->st  = st;
6282         track->par = st->codecpar;
6283         track->language = ff_mov_iso639_to_lang(lang?lang->value:"und", mov->mode!=MODE_MOV);
6284         if (track->language < 0)
6285             track->language = 32767;  // Unspecified Macintosh language code
6286         track->mode = mov->mode;
6287         track->tag  = mov_find_codec_tag(s, track);
6288         if (!track->tag) {
6289             av_log(s, AV_LOG_ERROR, "Could not find tag for codec %s in stream #%d, "
6290                    "codec not currently supported in container\n",
6291                    avcodec_get_name(st->codecpar->codec_id), i);
6292             return AVERROR(EINVAL);
6293         }
6294         /* If hinting of this track is enabled by a later hint track,
6295          * this is updated. */
6296         track->hint_track = -1;
6297         track->start_dts  = AV_NOPTS_VALUE;
6298         track->start_cts  = AV_NOPTS_VALUE;
6299         track->end_pts    = AV_NOPTS_VALUE;
6300         track->dts_shift  = AV_NOPTS_VALUE;
6301         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
6302             if (track->tag == MKTAG('m','x','3','p') || track->tag == MKTAG('m','x','3','n') ||
6303                 track->tag == MKTAG('m','x','4','p') || track->tag == MKTAG('m','x','4','n') ||
6304                 track->tag == MKTAG('m','x','5','p') || track->tag == MKTAG('m','x','5','n')) {
6305                 if (st->codecpar->width != 720 || (st->codecpar->height != 608 && st->codecpar->height != 512)) {
6306                     av_log(s, AV_LOG_ERROR, "D-10/IMX must use 720x608 or 720x512 video resolution\n");
6307                     return AVERROR(EINVAL);
6308                 }
6309                 track->height = track->tag >> 24 == 'n' ? 486 : 576;
6310             }
6311             if (mov->video_track_timescale) {
6312                 track->timescale = mov->video_track_timescale;
6313             } else {
6314                 track->timescale = st->time_base.den;
6315                 while(track->timescale < 10000)
6316                     track->timescale *= 2;
6317             }
6318             if (st->codecpar->width > 65535 || st->codecpar->height > 65535) {
6319                 av_log(s, AV_LOG_ERROR, "Resolution %dx%d too large for mov/mp4\n", st->codecpar->width, st->codecpar->height);
6320                 return AVERROR(EINVAL);
6321             }
6322             if (track->mode == MODE_MOV && track->timescale > 100000)
6323                 av_log(s, AV_LOG_WARNING,
6324                        "WARNING codec timebase is very high. If duration is too long,\n"
6325                        "file may not be playable by quicktime. Specify a shorter timebase\n"
6326                        "or choose different container.\n");
6327             if (track->mode == MODE_MOV &&
6328                 track->par->codec_id == AV_CODEC_ID_RAWVIDEO &&
6329                 track->tag == MKTAG('r','a','w',' ')) {
6330                 enum AVPixelFormat pix_fmt = track->par->format;
6331                 if (pix_fmt == AV_PIX_FMT_NONE && track->par->bits_per_coded_sample == 1)
6332                     pix_fmt = AV_PIX_FMT_MONOWHITE;
6333                 track->is_unaligned_qt_rgb =
6334                         pix_fmt == AV_PIX_FMT_RGB24 ||
6335                         pix_fmt == AV_PIX_FMT_BGR24 ||
6336                         pix_fmt == AV_PIX_FMT_PAL8 ||
6337                         pix_fmt == AV_PIX_FMT_GRAY8 ||
6338                         pix_fmt == AV_PIX_FMT_MONOWHITE ||
6339                         pix_fmt == AV_PIX_FMT_MONOBLACK;
6340             }
6341             if (track->par->codec_id == AV_CODEC_ID_VP9 ||
6342                 track->par->codec_id == AV_CODEC_ID_AV1) {
6343                 if (track->mode != MODE_MP4) {
6344                     av_log(s, AV_LOG_ERROR, "%s only supported in MP4.\n", avcodec_get_name(track->par->codec_id));
6345                     return AVERROR(EINVAL);
6346                 }
6347             } else if (track->par->codec_id == AV_CODEC_ID_VP8) {
6348                 /* altref frames handling is not defined in the spec as of version v1.0,
6349                  * so just forbid muxing VP8 streams altogether until a new version does */
6350                 av_log(s, AV_LOG_ERROR, "VP8 muxing is currently not supported.\n");
6351                 return AVERROR_PATCHWELCOME;
6352             }
6353         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
6354             track->timescale = st->codecpar->sample_rate;
6355             if (!st->codecpar->frame_size && !av_get_bits_per_sample(st->codecpar->codec_id)) {
6356                 av_log(s, AV_LOG_WARNING, "track %d: codec frame size is not set\n", i);
6357                 track->audio_vbr = 1;
6358             }else if (st->codecpar->codec_id == AV_CODEC_ID_ADPCM_MS ||
6359                      st->codecpar->codec_id == AV_CODEC_ID_ADPCM_IMA_WAV ||
6360                      st->codecpar->codec_id == AV_CODEC_ID_ILBC){
6361                 if (!st->codecpar->block_align) {
6362                     av_log(s, AV_LOG_ERROR, "track %d: codec block align is not set for adpcm\n", i);
6363                     return AVERROR(EINVAL);
6364                 }
6365                 track->sample_size = st->codecpar->block_align;
6366             }else if (st->codecpar->frame_size > 1){ /* assume compressed audio */
6367                 track->audio_vbr = 1;
6368             }else{
6369                 track->sample_size = (av_get_bits_per_sample(st->codecpar->codec_id) >> 3) * st->codecpar->channels;
6370             }
6371             if (st->codecpar->codec_id == AV_CODEC_ID_ILBC ||
6372                 st->codecpar->codec_id == AV_CODEC_ID_ADPCM_IMA_QT) {
6373                 track->audio_vbr = 1;
6374             }
6375             if (track->mode != MODE_MOV &&
6376                 track->par->codec_id == AV_CODEC_ID_MP3 && track->timescale < 16000) {
6377                 if (s->strict_std_compliance >= FF_COMPLIANCE_NORMAL) {
6378                     av_log(s, AV_LOG_ERROR, "track %d: muxing mp3 at %dhz is not standard, to mux anyway set strict to -1\n",
6379                         i, track->par->sample_rate);
6380                     return AVERROR(EINVAL);
6381                 } else {
6382                     av_log(s, AV_LOG_WARNING, "track %d: muxing mp3 at %dhz is not standard in MP4\n",
6383                            i, track->par->sample_rate);
6384                 }
6385             }
6386             if (track->par->codec_id == AV_CODEC_ID_FLAC ||
6387                 track->par->codec_id == AV_CODEC_ID_TRUEHD ||
6388                 track->par->codec_id == AV_CODEC_ID_OPUS) {
6389                 if (track->mode != MODE_MP4) {
6390                     av_log(s, AV_LOG_ERROR, "%s only supported in MP4.\n", avcodec_get_name(track->par->codec_id));
6391                     return AVERROR(EINVAL);
6392                 }
6393                 if (s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
6394                     av_log(s, AV_LOG_ERROR,
6395                            "%s in MP4 support is experimental, add "
6396                            "'-strict %d' if you want to use it.\n",
6397                            avcodec_get_name(track->par->codec_id), FF_COMPLIANCE_EXPERIMENTAL);
6398                     return AVERROR_EXPERIMENTAL;
6399                 }
6400             }
6401         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE) {
6402             track->timescale = st->time_base.den;
6403         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_DATA) {
6404             track->timescale = st->time_base.den;
6405         } else {
6406             track->timescale = MOV_TIMESCALE;
6407         }
6408         if (!track->height)
6409             track->height = st->codecpar->height;
6410         /* The ism specific timescale isn't mandatory, but is assumed by
6411          * some tools, such as mp4split. */
6412         if (mov->mode == MODE_ISM)
6413             track->timescale = 10000000;
6414
6415         avpriv_set_pts_info(st, 64, 1, track->timescale);
6416
6417         if (mov->encryption_scheme == MOV_ENC_CENC_AES_CTR) {
6418             ret = ff_mov_cenc_init(&track->cenc, mov->encryption_key,
6419                 track->par->codec_id == AV_CODEC_ID_H264, s->flags & AVFMT_FLAG_BITEXACT);
6420             if (ret)
6421                 return ret;
6422         }
6423     }
6424
6425     enable_tracks(s);
6426     return 0;
6427 }
6428
6429 static int mov_write_header(AVFormatContext *s)
6430 {
6431     AVIOContext *pb = s->pb;
6432     MOVMuxContext *mov = s->priv_data;
6433     AVDictionaryEntry *t, *global_tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
6434     int i, ret, hint_track = 0, tmcd_track = 0, nb_tracks = s->nb_streams;
6435
6436     if (mov->mode & (MODE_MP4|MODE_MOV|MODE_IPOD) && s->nb_chapters)
6437         nb_tracks++;
6438
6439     if (mov->flags & FF_MOV_FLAG_RTP_HINT) {
6440         hint_track = nb_tracks;
6441         for (i = 0; i < s->nb_streams; i++)
6442             if (rtp_hinting_needed(s->streams[i]))
6443                 nb_tracks++;
6444     }
6445
6446     if (mov->nb_meta_tmcd)
6447         tmcd_track = nb_tracks;
6448
6449     for (i = 0; i < s->nb_streams; i++) {
6450         int j;
6451         AVStream *st= s->streams[i];
6452         MOVTrack *track= &mov->tracks[i];
6453
6454         /* copy extradata if it exists */
6455         if (st->codecpar->extradata_size) {
6456             if (st->codecpar->codec_id == AV_CODEC_ID_DVD_SUBTITLE)
6457                 mov_create_dvd_sub_decoder_specific_info(track, st);
6458             else if (!TAG_IS_AVCI(track->tag) && st->codecpar->codec_id != AV_CODEC_ID_DNXHD) {
6459                 track->vos_len  = st->codecpar->extradata_size;
6460                 track->vos_data = av_malloc(track->vos_len + AV_INPUT_BUFFER_PADDING_SIZE);
6461                 if (!track->vos_data) {
6462                     return AVERROR(ENOMEM);
6463                 }
6464                 memcpy(track->vos_data, st->codecpar->extradata, track->vos_len);
6465                 memset(track->vos_data + track->vos_len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
6466             }
6467         }
6468
6469         if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO ||
6470             track->par->channel_layout != AV_CH_LAYOUT_MONO)
6471             continue;
6472
6473         for (j = 0; j < s->nb_streams; j++) {
6474             AVStream *stj= s->streams[j];
6475             MOVTrack *trackj= &mov->tracks[j];
6476             if (j == i)
6477                 continue;
6478
6479             if (stj->codecpar->codec_type != AVMEDIA_TYPE_AUDIO ||
6480                 trackj->par->channel_layout != AV_CH_LAYOUT_MONO ||
6481                 trackj->language != track->language ||
6482                 trackj->tag != track->tag
6483             )
6484                 continue;
6485             track->multichannel_as_mono++;
6486         }
6487     }
6488
6489     if (!(mov->flags & FF_MOV_FLAG_DELAY_MOOV)) {
6490         if ((ret = mov_write_identification(pb, s)) < 0)
6491             return ret;
6492     }
6493
6494     if (mov->reserved_moov_size){
6495         mov->reserved_header_pos = avio_tell(pb);
6496         if (mov->reserved_moov_size > 0)
6497             avio_skip(pb, mov->reserved_moov_size);
6498     }
6499
6500     if (mov->flags & FF_MOV_FLAG_FRAGMENT) {
6501         /* If no fragmentation options have been set, set a default. */
6502         if (!(mov->flags & (FF_MOV_FLAG_FRAG_KEYFRAME |
6503                             FF_MOV_FLAG_FRAG_CUSTOM |
6504                             FF_MOV_FLAG_FRAG_EVERY_FRAME)) &&
6505             !mov->max_fragment_duration && !mov->max_fragment_size)
6506             mov->flags |= FF_MOV_FLAG_FRAG_KEYFRAME;
6507     } else {
6508         if (mov->flags & FF_MOV_FLAG_FASTSTART)
6509             mov->reserved_header_pos = avio_tell(pb);
6510         mov_write_mdat_tag(pb, mov);
6511     }
6512
6513     ff_parse_creation_time_metadata(s, &mov->time, 1);
6514     if (mov->time)
6515         mov->time += 0x7C25B080; // 1970 based -> 1904 based
6516
6517     if (mov->chapter_track)
6518         if ((ret = mov_create_chapter_track(s, mov->chapter_track)) < 0)
6519             return ret;
6520
6521     if (mov->flags & FF_MOV_FLAG_RTP_HINT) {
6522         for (i = 0; i < s->nb_streams; i++) {
6523             if (rtp_hinting_needed(s->streams[i])) {
6524                 if ((ret = ff_mov_init_hinting(s, hint_track, i)) < 0)
6525                     return ret;
6526                 hint_track++;
6527             }
6528         }
6529     }
6530
6531     if (mov->nb_meta_tmcd) {
6532         /* Initialize the tmcd tracks */
6533         for (i = 0; i < s->nb_streams; i++) {
6534             AVStream *st = s->streams[i];
6535             t = global_tcr;
6536
6537             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
6538                 AVTimecode tc;
6539                 if (!t)
6540                     t = av_dict_get(st->metadata, "timecode", NULL, 0);
6541                 if (!t)
6542                     continue;
6543                 if (mov_check_timecode_track(s, &tc, i, t->value) < 0)
6544                     continue;
6545                 if ((ret = mov_create_timecode_track(s, tmcd_track, i, tc)) < 0)
6546                     return ret;
6547                 tmcd_track++;
6548             }
6549         }
6550     }
6551
6552     avio_flush(pb);
6553
6554     if (mov->flags & FF_MOV_FLAG_ISML)
6555         mov_write_isml_manifest(pb, mov, s);
6556
6557     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV &&
6558         !(mov->flags & FF_MOV_FLAG_DELAY_MOOV)) {
6559         if ((ret = mov_write_moov_tag(pb, mov, s)) < 0)
6560             return ret;
6561         avio_flush(pb);
6562         mov->moov_written = 1;
6563         if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX)
6564             mov->reserved_header_pos = avio_tell(pb);
6565     }
6566
6567     return 0;
6568 }
6569
6570 static int get_moov_size(AVFormatContext *s)
6571 {
6572     int ret;
6573     AVIOContext *moov_buf;
6574     MOVMuxContext *mov = s->priv_data;
6575
6576     if ((ret = ffio_open_null_buf(&moov_buf)) < 0)
6577         return ret;
6578     if ((ret = mov_write_moov_tag(moov_buf, mov, s)) < 0)
6579         return ret;
6580     return ffio_close_null_buf(moov_buf);
6581 }
6582
6583 static int get_sidx_size(AVFormatContext *s)
6584 {
6585     int ret;
6586     AVIOContext *buf;
6587     MOVMuxContext *mov = s->priv_data;
6588
6589     if ((ret = ffio_open_null_buf(&buf)) < 0)
6590         return ret;
6591     mov_write_sidx_tags(buf, mov, -1, 0);
6592     return ffio_close_null_buf(buf);
6593 }
6594
6595 /*
6596  * This function gets the moov size if moved to the top of the file: the chunk
6597  * offset table can switch between stco (32-bit entries) to co64 (64-bit
6598  * entries) when the moov is moved to the beginning, so the size of the moov
6599  * would change. It also updates the chunk offset tables.
6600  */
6601 static int compute_moov_size(AVFormatContext *s)
6602 {
6603     int i, moov_size, moov_size2;
6604     MOVMuxContext *mov = s->priv_data;
6605
6606     moov_size = get_moov_size(s);
6607     if (moov_size < 0)
6608         return moov_size;
6609
6610     for (i = 0; i < mov->nb_streams; i++)
6611         mov->tracks[i].data_offset += moov_size;
6612
6613     moov_size2 = get_moov_size(s);
6614     if (moov_size2 < 0)
6615         return moov_size2;
6616
6617     /* if the size changed, we just switched from stco to co64 and need to
6618      * update the offsets */
6619     if (moov_size2 != moov_size)
6620         for (i = 0; i < mov->nb_streams; i++)
6621             mov->tracks[i].data_offset += moov_size2 - moov_size;
6622
6623     return moov_size2;
6624 }
6625
6626 static int compute_sidx_size(AVFormatContext *s)
6627 {
6628     int i, sidx_size;
6629     MOVMuxContext *mov = s->priv_data;
6630
6631     sidx_size = get_sidx_size(s);
6632     if (sidx_size < 0)
6633         return sidx_size;
6634
6635     for (i = 0; i < mov->nb_streams; i++)
6636         mov->tracks[i].data_offset += sidx_size;
6637
6638     return sidx_size;
6639 }
6640
6641 static int shift_data(AVFormatContext *s)
6642 {
6643     int ret = 0, moov_size;
6644     MOVMuxContext *mov = s->priv_data;
6645     int64_t pos, pos_end = avio_tell(s->pb);
6646     uint8_t *buf, *read_buf[2];
6647     int read_buf_id = 0;
6648     int read_size[2];
6649     AVIOContext *read_pb;
6650
6651     if (mov->flags & FF_MOV_FLAG_FRAGMENT)
6652         moov_size = compute_sidx_size(s);
6653     else
6654         moov_size = compute_moov_size(s);
6655     if (moov_size < 0)
6656         return moov_size;
6657
6658     buf = av_malloc(moov_size * 2);
6659     if (!buf)
6660         return AVERROR(ENOMEM);
6661     read_buf[0] = buf;
6662     read_buf[1] = buf + moov_size;
6663
6664     /* Shift the data: the AVIO context of the output can only be used for
6665      * writing, so we re-open the same output, but for reading. It also avoids
6666      * a read/seek/write/seek back and forth. */
6667     avio_flush(s->pb);
6668     ret = s->io_open(s, &read_pb, s->url, AVIO_FLAG_READ, NULL);
6669     if (ret < 0) {
6670         av_log(s, AV_LOG_ERROR, "Unable to re-open %s output file for "
6671                "the second pass (faststart)\n", s->url);
6672         goto end;
6673     }
6674
6675     /* mark the end of the shift to up to the last data we wrote, and get ready
6676      * for writing */
6677     pos_end = avio_tell(s->pb);
6678     avio_seek(s->pb, mov->reserved_header_pos + moov_size, SEEK_SET);
6679
6680     /* start reading at where the new moov will be placed */
6681     avio_seek(read_pb, mov->reserved_header_pos, SEEK_SET);
6682     pos = avio_tell(read_pb);
6683
6684 #define READ_BLOCK do {                                                             \
6685     read_size[read_buf_id] = avio_read(read_pb, read_buf[read_buf_id], moov_size);  \
6686     read_buf_id ^= 1;                                                               \
6687 } while (0)
6688
6689     /* shift data by chunk of at most moov_size */
6690     READ_BLOCK;
6691     do {
6692         int n;
6693         READ_BLOCK;
6694         n = read_size[read_buf_id];
6695         if (n <= 0)
6696             break;
6697         avio_write(s->pb, read_buf[read_buf_id], n);
6698         pos += n;
6699     } while (pos < pos_end);
6700     ff_format_io_close(s, &read_pb);
6701
6702 end:
6703     av_free(buf);
6704     return ret;
6705 }
6706
6707 static int mov_write_trailer(AVFormatContext *s)
6708 {
6709     MOVMuxContext *mov = s->priv_data;
6710     AVIOContext *pb = s->pb;
6711     int res = 0;
6712     int i;
6713     int64_t moov_pos;
6714
6715     if (mov->need_rewrite_extradata) {
6716         for (i = 0; i < s->nb_streams; i++) {
6717             MOVTrack *track = &mov->tracks[i];
6718             AVCodecParameters *par = track->par;
6719
6720             track->vos_len  = par->extradata_size;
6721             track->vos_data = av_malloc(track->vos_len + AV_INPUT_BUFFER_PADDING_SIZE);
6722             if (!track->vos_data)
6723                 return AVERROR(ENOMEM);
6724             memcpy(track->vos_data, par->extradata, track->vos_len);
6725             memset(track->vos_data + track->vos_len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
6726         }
6727         mov->need_rewrite_extradata = 0;
6728     }
6729
6730     /*
6731      * Before actually writing the trailer, make sure that there are no
6732      * dangling subtitles, that need a terminating sample.
6733      */
6734     for (i = 0; i < mov->nb_streams; i++) {
6735         MOVTrack *trk = &mov->tracks[i];
6736         if (trk->par->codec_id == AV_CODEC_ID_MOV_TEXT &&
6737             !trk->last_sample_is_subtitle_end) {
6738             mov_write_subtitle_end_packet(s, i, trk->track_duration);
6739             trk->last_sample_is_subtitle_end = 1;
6740         }
6741     }
6742
6743     // If there were no chapters when the header was written, but there
6744     // are chapters now, write them in the trailer.  This only works
6745     // when we are not doing fragments.
6746     if (!mov->chapter_track && !(mov->flags & FF_MOV_FLAG_FRAGMENT)) {
6747         if (mov->mode & (MODE_MP4|MODE_MOV|MODE_IPOD) && s->nb_chapters) {
6748             mov->chapter_track = mov->nb_streams++;
6749             if ((res = mov_create_chapter_track(s, mov->chapter_track)) < 0)
6750                 return res;
6751         }
6752     }
6753
6754     if (!(mov->flags & FF_MOV_FLAG_FRAGMENT)) {
6755         moov_pos = avio_tell(pb);
6756
6757         /* Write size of mdat tag */
6758         if (mov->mdat_size + 8 <= UINT32_MAX) {
6759             avio_seek(pb, mov->mdat_pos, SEEK_SET);
6760             avio_wb32(pb, mov->mdat_size + 8);
6761         } else {
6762             /* overwrite 'wide' placeholder atom */
6763             avio_seek(pb, mov->mdat_pos - 8, SEEK_SET);
6764             /* special value: real atom size will be 64 bit value after
6765              * tag field */
6766             avio_wb32(pb, 1);
6767             ffio_wfourcc(pb, "mdat");
6768             avio_wb64(pb, mov->mdat_size + 16);
6769         }
6770         avio_seek(pb, mov->reserved_moov_size > 0 ? mov->reserved_header_pos : moov_pos, SEEK_SET);
6771
6772         if (mov->flags & FF_MOV_FLAG_FASTSTART) {
6773             av_log(s, AV_LOG_INFO, "Starting second pass: moving the moov atom to the beginning of the file\n");
6774             res = shift_data(s);
6775             if (res < 0)
6776                 return res;
6777             avio_seek(pb, mov->reserved_header_pos, SEEK_SET);
6778             if ((res = mov_write_moov_tag(pb, mov, s)) < 0)
6779                 return res;
6780         } else if (mov->reserved_moov_size > 0) {
6781             int64_t size;
6782             if ((res = mov_write_moov_tag(pb, mov, s)) < 0)
6783                 return res;
6784             size = mov->reserved_moov_size - (avio_tell(pb) - mov->reserved_header_pos);
6785             if (size < 8){
6786                 av_log(s, AV_LOG_ERROR, "reserved_moov_size is too small, needed %"PRId64" additional\n", 8-size);
6787                 return AVERROR(EINVAL);
6788             }
6789             avio_wb32(pb, size);
6790             ffio_wfourcc(pb, "free");
6791             ffio_fill(pb, 0, size - 8);
6792             avio_seek(pb, moov_pos, SEEK_SET);
6793         } else {
6794             if ((res = mov_write_moov_tag(pb, mov, s)) < 0)
6795                 return res;
6796         }
6797         res = 0;
6798     } else {
6799         mov_auto_flush_fragment(s, 1);
6800         for (i = 0; i < mov->nb_streams; i++)
6801            mov->tracks[i].data_offset = 0;
6802         if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX) {
6803             int64_t end;
6804             av_log(s, AV_LOG_INFO, "Starting second pass: inserting sidx atoms\n");
6805             res = shift_data(s);
6806             if (res < 0)
6807                 return res;
6808             end = avio_tell(pb);
6809             avio_seek(pb, mov->reserved_header_pos, SEEK_SET);
6810             mov_write_sidx_tags(pb, mov, -1, 0);
6811             avio_seek(pb, end, SEEK_SET);
6812         }
6813         if (!(mov->flags & FF_MOV_FLAG_SKIP_TRAILER)) {
6814             avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_TRAILER);
6815             mov_write_mfra_tag(pb, mov);
6816         }
6817     }
6818
6819     return res;
6820 }
6821
6822 static int mov_check_bitstream(struct AVFormatContext *s, const AVPacket *pkt)
6823 {
6824     int ret = 1;
6825     AVStream *st = s->streams[pkt->stream_index];
6826
6827     if (st->codecpar->codec_id == AV_CODEC_ID_AAC) {
6828         if (pkt->size > 2 && (AV_RB16(pkt->data) & 0xfff0) == 0xfff0)
6829             ret = ff_stream_add_bitstream_filter(st, "aac_adtstoasc", NULL);
6830     } else if (st->codecpar->codec_id == AV_CODEC_ID_VP9) {
6831         ret = ff_stream_add_bitstream_filter(st, "vp9_superframe", NULL);
6832     }
6833
6834     return ret;
6835 }
6836
6837 static const AVCodecTag codec_3gp_tags[] = {
6838     { AV_CODEC_ID_H263,     MKTAG('s','2','6','3') },
6839     { AV_CODEC_ID_H264,     MKTAG('a','v','c','1') },
6840     { AV_CODEC_ID_MPEG4,    MKTAG('m','p','4','v') },
6841     { AV_CODEC_ID_AAC,      MKTAG('m','p','4','a') },
6842     { AV_CODEC_ID_AMR_NB,   MKTAG('s','a','m','r') },
6843     { AV_CODEC_ID_AMR_WB,   MKTAG('s','a','w','b') },
6844     { AV_CODEC_ID_MOV_TEXT, MKTAG('t','x','3','g') },
6845     { AV_CODEC_ID_NONE, 0 },
6846 };
6847
6848 const AVCodecTag codec_mp4_tags[] = {
6849     { AV_CODEC_ID_MPEG4       , MKTAG('m', 'p', '4', 'v') },
6850     { AV_CODEC_ID_H264        , MKTAG('a', 'v', 'c', '1') },
6851     { AV_CODEC_ID_H264        , MKTAG('a', 'v', 'c', '3') },
6852     { AV_CODEC_ID_HEVC        , MKTAG('h', 'e', 'v', '1') },
6853     { AV_CODEC_ID_HEVC        , MKTAG('h', 'v', 'c', '1') },
6854     { AV_CODEC_ID_MPEG2VIDEO  , MKTAG('m', 'p', '4', 'v') },
6855     { AV_CODEC_ID_MPEG1VIDEO  , MKTAG('m', 'p', '4', 'v') },
6856     { AV_CODEC_ID_MJPEG       , MKTAG('m', 'p', '4', 'v') },
6857     { AV_CODEC_ID_PNG         , MKTAG('m', 'p', '4', 'v') },
6858     { AV_CODEC_ID_JPEG2000    , MKTAG('m', 'p', '4', 'v') },
6859     { AV_CODEC_ID_VC1         , MKTAG('v', 'c', '-', '1') },
6860     { AV_CODEC_ID_DIRAC       , MKTAG('d', 'r', 'a', 'c') },
6861     { AV_CODEC_ID_TSCC2       , MKTAG('m', 'p', '4', 'v') },
6862     { AV_CODEC_ID_VP9         , MKTAG('v', 'p', '0', '9') },
6863     { AV_CODEC_ID_AV1         , MKTAG('a', 'v', '0', '1') },
6864     { AV_CODEC_ID_AAC         , MKTAG('m', 'p', '4', 'a') },
6865     { AV_CODEC_ID_MP4ALS      , MKTAG('m', 'p', '4', 'a') },
6866     { AV_CODEC_ID_MP3         , MKTAG('m', 'p', '4', 'a') },
6867     { AV_CODEC_ID_MP2         , MKTAG('m', 'p', '4', 'a') },
6868     { AV_CODEC_ID_AC3         , MKTAG('a', 'c', '-', '3') },
6869     { AV_CODEC_ID_EAC3        , MKTAG('e', 'c', '-', '3') },
6870     { AV_CODEC_ID_DTS         , MKTAG('m', 'p', '4', 'a') },
6871     { AV_CODEC_ID_TRUEHD      , MKTAG('m', 'l', 'p', 'a') },
6872     { AV_CODEC_ID_FLAC        , MKTAG('f', 'L', 'a', 'C') },
6873     { AV_CODEC_ID_OPUS        , MKTAG('O', 'p', 'u', 's') },
6874     { AV_CODEC_ID_VORBIS      , MKTAG('m', 'p', '4', 'a') },
6875     { AV_CODEC_ID_QCELP       , MKTAG('m', 'p', '4', 'a') },
6876     { AV_CODEC_ID_EVRC        , MKTAG('m', 'p', '4', 'a') },
6877     { AV_CODEC_ID_DVD_SUBTITLE, MKTAG('m', 'p', '4', 's') },
6878     { AV_CODEC_ID_MOV_TEXT    , MKTAG('t', 'x', '3', 'g') },
6879     { AV_CODEC_ID_BIN_DATA    , MKTAG('g', 'p', 'm', 'd') },
6880     { AV_CODEC_ID_NONE        ,    0 },
6881 };
6882
6883 const AVCodecTag codec_ism_tags[] = {
6884     { AV_CODEC_ID_WMAPRO      , MKTAG('w', 'm', 'a', ' ') },
6885     { AV_CODEC_ID_NONE        ,    0 },
6886 };
6887
6888 static const AVCodecTag codec_ipod_tags[] = {
6889     { AV_CODEC_ID_H264,     MKTAG('a','v','c','1') },
6890     { AV_CODEC_ID_MPEG4,    MKTAG('m','p','4','v') },
6891     { AV_CODEC_ID_AAC,      MKTAG('m','p','4','a') },
6892     { AV_CODEC_ID_ALAC,     MKTAG('a','l','a','c') },
6893     { AV_CODEC_ID_AC3,      MKTAG('a','c','-','3') },
6894     { AV_CODEC_ID_MOV_TEXT, MKTAG('t','x','3','g') },
6895     { AV_CODEC_ID_MOV_TEXT, MKTAG('t','e','x','t') },
6896     { AV_CODEC_ID_NONE, 0 },
6897 };
6898
6899 static const AVCodecTag codec_f4v_tags[] = {
6900     { AV_CODEC_ID_MP3,    MKTAG('.','m','p','3') },
6901     { AV_CODEC_ID_AAC,    MKTAG('m','p','4','a') },
6902     { AV_CODEC_ID_H264,   MKTAG('a','v','c','1') },
6903     { AV_CODEC_ID_VP6A,   MKTAG('V','P','6','A') },
6904     { AV_CODEC_ID_VP6F,   MKTAG('V','P','6','F') },
6905     { AV_CODEC_ID_NONE, 0 },
6906 };
6907
6908 #if CONFIG_MOV_MUXER
6909 MOV_CLASS(mov)
6910 AVOutputFormat ff_mov_muxer = {
6911     .name              = "mov",
6912     .long_name         = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
6913     .extensions        = "mov",
6914     .priv_data_size    = sizeof(MOVMuxContext),
6915     .audio_codec       = AV_CODEC_ID_AAC,
6916     .video_codec       = CONFIG_LIBX264_ENCODER ?
6917                          AV_CODEC_ID_H264 : AV_CODEC_ID_MPEG4,
6918     .init              = mov_init,
6919     .write_header      = mov_write_header,
6920     .write_packet      = mov_write_packet,
6921     .write_trailer     = mov_write_trailer,
6922     .deinit            = mov_free,
6923     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
6924     .codec_tag         = (const AVCodecTag* const []){
6925         ff_codec_movvideo_tags, ff_codec_movaudio_tags, ff_codec_movsubtitle_tags, 0
6926     },
6927     .check_bitstream   = mov_check_bitstream,
6928     .priv_class        = &mov_muxer_class,
6929 };
6930 #endif
6931 #if CONFIG_TGP_MUXER
6932 MOV_CLASS(tgp)
6933 AVOutputFormat ff_tgp_muxer = {
6934     .name              = "3gp",
6935     .long_name         = NULL_IF_CONFIG_SMALL("3GP (3GPP file format)"),
6936     .extensions        = "3gp",
6937     .priv_data_size    = sizeof(MOVMuxContext),
6938     .audio_codec       = AV_CODEC_ID_AMR_NB,
6939     .video_codec       = AV_CODEC_ID_H263,
6940     .init              = mov_init,
6941     .write_header      = mov_write_header,
6942     .write_packet      = mov_write_packet,
6943     .write_trailer     = mov_write_trailer,
6944     .deinit            = mov_free,
6945     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
6946     .codec_tag         = (const AVCodecTag* const []){ codec_3gp_tags, 0 },
6947     .check_bitstream   = mov_check_bitstream,
6948     .priv_class        = &tgp_muxer_class,
6949 };
6950 #endif
6951 #if CONFIG_MP4_MUXER
6952 MOV_CLASS(mp4)
6953 AVOutputFormat ff_mp4_muxer = {
6954     .name              = "mp4",
6955     .long_name         = NULL_IF_CONFIG_SMALL("MP4 (MPEG-4 Part 14)"),
6956     .mime_type         = "video/mp4",
6957     .extensions        = "mp4",
6958     .priv_data_size    = sizeof(MOVMuxContext),
6959     .audio_codec       = AV_CODEC_ID_AAC,
6960     .video_codec       = CONFIG_LIBX264_ENCODER ?
6961                          AV_CODEC_ID_H264 : AV_CODEC_ID_MPEG4,
6962     .init              = mov_init,
6963     .write_header      = mov_write_header,
6964     .write_packet      = mov_write_packet,
6965     .write_trailer     = mov_write_trailer,
6966     .deinit            = mov_free,
6967     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
6968     .codec_tag         = (const AVCodecTag* const []){ codec_mp4_tags, 0 },
6969     .check_bitstream   = mov_check_bitstream,
6970     .priv_class        = &mp4_muxer_class,
6971 };
6972 #endif
6973 #if CONFIG_PSP_MUXER
6974 MOV_CLASS(psp)
6975 AVOutputFormat ff_psp_muxer = {
6976     .name              = "psp",
6977     .long_name         = NULL_IF_CONFIG_SMALL("PSP MP4 (MPEG-4 Part 14)"),
6978     .extensions        = "mp4,psp",
6979     .priv_data_size    = sizeof(MOVMuxContext),
6980     .audio_codec       = AV_CODEC_ID_AAC,
6981     .video_codec       = CONFIG_LIBX264_ENCODER ?
6982                          AV_CODEC_ID_H264 : AV_CODEC_ID_MPEG4,
6983     .init              = mov_init,
6984     .write_header      = mov_write_header,
6985     .write_packet      = mov_write_packet,
6986     .write_trailer     = mov_write_trailer,
6987     .deinit            = mov_free,
6988     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
6989     .codec_tag         = (const AVCodecTag* const []){ codec_mp4_tags, 0 },
6990     .check_bitstream   = mov_check_bitstream,
6991     .priv_class        = &psp_muxer_class,
6992 };
6993 #endif
6994 #if CONFIG_TG2_MUXER
6995 MOV_CLASS(tg2)
6996 AVOutputFormat ff_tg2_muxer = {
6997     .name              = "3g2",
6998     .long_name         = NULL_IF_CONFIG_SMALL("3GP2 (3GPP2 file format)"),
6999     .extensions        = "3g2",
7000     .priv_data_size    = sizeof(MOVMuxContext),
7001     .audio_codec       = AV_CODEC_ID_AMR_NB,
7002     .video_codec       = AV_CODEC_ID_H263,
7003     .init              = mov_init,
7004     .write_header      = mov_write_header,
7005     .write_packet      = mov_write_packet,
7006     .write_trailer     = mov_write_trailer,
7007     .deinit            = mov_free,
7008     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7009     .codec_tag         = (const AVCodecTag* const []){ codec_3gp_tags, 0 },
7010     .check_bitstream   = mov_check_bitstream,
7011     .priv_class        = &tg2_muxer_class,
7012 };
7013 #endif
7014 #if CONFIG_IPOD_MUXER
7015 MOV_CLASS(ipod)
7016 AVOutputFormat ff_ipod_muxer = {
7017     .name              = "ipod",
7018     .long_name         = NULL_IF_CONFIG_SMALL("iPod H.264 MP4 (MPEG-4 Part 14)"),
7019     .mime_type         = "video/mp4",
7020     .extensions        = "m4v,m4a,m4b",
7021     .priv_data_size    = sizeof(MOVMuxContext),
7022     .audio_codec       = AV_CODEC_ID_AAC,
7023     .video_codec       = AV_CODEC_ID_H264,
7024     .init              = mov_init,
7025     .write_header      = mov_write_header,
7026     .write_packet      = mov_write_packet,
7027     .write_trailer     = mov_write_trailer,
7028     .deinit            = mov_free,
7029     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7030     .codec_tag         = (const AVCodecTag* const []){ codec_ipod_tags, 0 },
7031     .check_bitstream   = mov_check_bitstream,
7032     .priv_class        = &ipod_muxer_class,
7033 };
7034 #endif
7035 #if CONFIG_ISMV_MUXER
7036 MOV_CLASS(ismv)
7037 AVOutputFormat ff_ismv_muxer = {
7038     .name              = "ismv",
7039     .long_name         = NULL_IF_CONFIG_SMALL("ISMV/ISMA (Smooth Streaming)"),
7040     .mime_type         = "video/mp4",
7041     .extensions        = "ismv,isma",
7042     .priv_data_size    = sizeof(MOVMuxContext),
7043     .audio_codec       = AV_CODEC_ID_AAC,
7044     .video_codec       = AV_CODEC_ID_H264,
7045     .init              = mov_init,
7046     .write_header      = mov_write_header,
7047     .write_packet      = mov_write_packet,
7048     .write_trailer     = mov_write_trailer,
7049     .deinit            = mov_free,
7050     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7051     .codec_tag         = (const AVCodecTag* const []){
7052         codec_mp4_tags, codec_ism_tags, 0 },
7053     .check_bitstream   = mov_check_bitstream,
7054     .priv_class        = &ismv_muxer_class,
7055 };
7056 #endif
7057 #if CONFIG_F4V_MUXER
7058 MOV_CLASS(f4v)
7059 AVOutputFormat ff_f4v_muxer = {
7060     .name              = "f4v",
7061     .long_name         = NULL_IF_CONFIG_SMALL("F4V Adobe Flash Video"),
7062     .mime_type         = "application/f4v",
7063     .extensions        = "f4v",
7064     .priv_data_size    = sizeof(MOVMuxContext),
7065     .audio_codec       = AV_CODEC_ID_AAC,
7066     .video_codec       = AV_CODEC_ID_H264,
7067     .init              = mov_init,
7068     .write_header      = mov_write_header,
7069     .write_packet      = mov_write_packet,
7070     .write_trailer     = mov_write_trailer,
7071     .deinit            = mov_free,
7072     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH,
7073     .codec_tag         = (const AVCodecTag* const []){ codec_f4v_tags, 0 },
7074     .check_bitstream   = mov_check_bitstream,
7075     .priv_class        = &f4v_muxer_class,
7076 };
7077 #endif