]> git.sesse.net Git - ffmpeg/blob - libavformat/movenc.c
b2996dc22f0f7cdc1b7010d2b45b0110cabb319f
[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_id == AV_CODEC_ID_MPEGH_3D_AUDIO ||
2497          track->par->codec_tag == MKTAG('r','t','p',' ')) &&
2498         track->has_keyframes && track->has_keyframes < track->entry)
2499         mov_write_stss_tag(pb, track, MOV_SYNC_SAMPLE);
2500     if (track->par->codec_type == AVMEDIA_TYPE_VIDEO && track->has_disposable)
2501         mov_write_sdtp_tag(pb, track);
2502     if (track->mode == MODE_MOV && track->flags & MOV_TRACK_STPS)
2503         mov_write_stss_tag(pb, track, MOV_PARTIAL_SYNC_SAMPLE);
2504     if (track->par->codec_type == AVMEDIA_TYPE_VIDEO &&
2505         track->flags & MOV_TRACK_CTTS && track->entry) {
2506
2507         if ((ret = mov_write_ctts_tag(s, pb, track)) < 0)
2508             return ret;
2509     }
2510     mov_write_stsc_tag(pb, track);
2511     mov_write_stsz_tag(pb, track);
2512     mov_write_stco_tag(pb, track);
2513     if (track->cenc.aes_ctr) {
2514         ff_mov_cenc_write_stbl_atoms(&track->cenc, pb);
2515     }
2516     if (track->par->codec_id == AV_CODEC_ID_OPUS || track->par->codec_id == AV_CODEC_ID_AAC) {
2517         mov_preroll_write_stbl_atoms(pb, track);
2518     }
2519     return update_size(pb, pos);
2520 }
2521
2522 static int mov_write_dinf_tag(AVIOContext *pb)
2523 {
2524     int64_t pos = avio_tell(pb);
2525     avio_wb32(pb, 0); /* size */
2526     ffio_wfourcc(pb, "dinf");
2527     mov_write_dref_tag(pb);
2528     return update_size(pb, pos);
2529 }
2530
2531 static int mov_write_nmhd_tag(AVIOContext *pb)
2532 {
2533     avio_wb32(pb, 12);
2534     ffio_wfourcc(pb, "nmhd");
2535     avio_wb32(pb, 0);
2536     return 12;
2537 }
2538
2539 static int mov_write_tcmi_tag(AVIOContext *pb, MOVTrack *track)
2540 {
2541     int64_t pos = avio_tell(pb);
2542     const char *font = "Lucida Grande";
2543     avio_wb32(pb, 0);                   /* size */
2544     ffio_wfourcc(pb, "tcmi");           /* timecode media information atom */
2545     avio_wb32(pb, 0);                   /* version & flags */
2546     avio_wb16(pb, 0);                   /* text font */
2547     avio_wb16(pb, 0);                   /* text face */
2548     avio_wb16(pb, 12);                  /* text size */
2549     avio_wb16(pb, 0);                   /* (unknown, not in the QT specs...) */
2550     avio_wb16(pb, 0x0000);              /* text color (red) */
2551     avio_wb16(pb, 0x0000);              /* text color (green) */
2552     avio_wb16(pb, 0x0000);              /* text color (blue) */
2553     avio_wb16(pb, 0xffff);              /* background color (red) */
2554     avio_wb16(pb, 0xffff);              /* background color (green) */
2555     avio_wb16(pb, 0xffff);              /* background color (blue) */
2556     avio_w8(pb, strlen(font));          /* font len (part of the pascal string) */
2557     avio_write(pb, font, strlen(font)); /* font name */
2558     return update_size(pb, pos);
2559 }
2560
2561 static int mov_write_gmhd_tag(AVIOContext *pb, MOVTrack *track)
2562 {
2563     int64_t pos = avio_tell(pb);
2564     avio_wb32(pb, 0);      /* size */
2565     ffio_wfourcc(pb, "gmhd");
2566     avio_wb32(pb, 0x18);   /* gmin size */
2567     ffio_wfourcc(pb, "gmin");/* generic media info */
2568     avio_wb32(pb, 0);      /* version & flags */
2569     avio_wb16(pb, 0x40);   /* graphics mode = */
2570     avio_wb16(pb, 0x8000); /* opColor (r?) */
2571     avio_wb16(pb, 0x8000); /* opColor (g?) */
2572     avio_wb16(pb, 0x8000); /* opColor (b?) */
2573     avio_wb16(pb, 0);      /* balance */
2574     avio_wb16(pb, 0);      /* reserved */
2575
2576     /*
2577      * This special text atom is required for
2578      * Apple Quicktime chapters. The contents
2579      * don't appear to be documented, so the
2580      * bytes are copied verbatim.
2581      */
2582     if (track->tag != MKTAG('c','6','0','8')) {
2583     avio_wb32(pb, 0x2C);   /* size */
2584     ffio_wfourcc(pb, "text");
2585     avio_wb16(pb, 0x01);
2586     avio_wb32(pb, 0x00);
2587     avio_wb32(pb, 0x00);
2588     avio_wb32(pb, 0x00);
2589     avio_wb32(pb, 0x01);
2590     avio_wb32(pb, 0x00);
2591     avio_wb32(pb, 0x00);
2592     avio_wb32(pb, 0x00);
2593     avio_wb32(pb, 0x00004000);
2594     avio_wb16(pb, 0x0000);
2595     }
2596
2597     if (track->par->codec_tag == MKTAG('t','m','c','d')) {
2598         int64_t tmcd_pos = avio_tell(pb);
2599         avio_wb32(pb, 0); /* size */
2600         ffio_wfourcc(pb, "tmcd");
2601         mov_write_tcmi_tag(pb, track);
2602         update_size(pb, tmcd_pos);
2603     } else if (track->par->codec_tag == MKTAG('g','p','m','d')) {
2604         int64_t gpmd_pos = avio_tell(pb);
2605         avio_wb32(pb, 0); /* size */
2606         ffio_wfourcc(pb, "gpmd");
2607         avio_wb32(pb, 0); /* version */
2608         update_size(pb, gpmd_pos);
2609     }
2610     return update_size(pb, pos);
2611 }
2612
2613 static int mov_write_smhd_tag(AVIOContext *pb)
2614 {
2615     avio_wb32(pb, 16); /* size */
2616     ffio_wfourcc(pb, "smhd");
2617     avio_wb32(pb, 0); /* version & flags */
2618     avio_wb16(pb, 0); /* reserved (balance, normally = 0) */
2619     avio_wb16(pb, 0); /* reserved */
2620     return 16;
2621 }
2622
2623 static int mov_write_vmhd_tag(AVIOContext *pb)
2624 {
2625     avio_wb32(pb, 0x14); /* size (always 0x14) */
2626     ffio_wfourcc(pb, "vmhd");
2627     avio_wb32(pb, 0x01); /* version & flags */
2628     avio_wb64(pb, 0); /* reserved (graphics mode = copy) */
2629     return 0x14;
2630 }
2631
2632 static int is_clcp_track(MOVTrack *track)
2633 {
2634     return track->tag == MKTAG('c','7','0','8') ||
2635            track->tag == MKTAG('c','6','0','8');
2636 }
2637
2638 static int mov_write_hdlr_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
2639 {
2640     MOVMuxContext *mov = s->priv_data;
2641     const char *hdlr, *descr = NULL, *hdlr_type = NULL;
2642     int64_t pos = avio_tell(pb);
2643
2644     hdlr      = "dhlr";
2645     hdlr_type = "url ";
2646     descr     = "DataHandler";
2647
2648     if (track) {
2649         hdlr = (track->mode == MODE_MOV) ? "mhlr" : "\0\0\0\0";
2650         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
2651             hdlr_type = "vide";
2652             descr     = "VideoHandler";
2653         } else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO) {
2654             hdlr_type = "soun";
2655             descr     = "SoundHandler";
2656         } else if (track->par->codec_type == AVMEDIA_TYPE_SUBTITLE) {
2657             if (is_clcp_track(track)) {
2658                 hdlr_type = "clcp";
2659                 descr = "ClosedCaptionHandler";
2660             } else {
2661                 if (track->tag == MKTAG('t','x','3','g')) {
2662                     hdlr_type = "sbtl";
2663                 } else if (track->tag == MKTAG('m','p','4','s')) {
2664                     hdlr_type = "subp";
2665                 } else {
2666                     hdlr_type = "text";
2667                 }
2668             descr = "SubtitleHandler";
2669             }
2670         } else if (track->par->codec_tag == MKTAG('r','t','p',' ')) {
2671             hdlr_type = "hint";
2672             descr     = "HintHandler";
2673         } else if (track->par->codec_tag == MKTAG('t','m','c','d')) {
2674             hdlr_type = "tmcd";
2675             descr = "TimeCodeHandler";
2676         } else if (track->par->codec_tag == MKTAG('g','p','m','d')) {
2677             hdlr_type = "meta";
2678             descr = "GoPro MET"; // GoPro Metadata
2679         } else {
2680             av_log(s, AV_LOG_WARNING,
2681                    "Unknown hldr_type for %s, writing dummy values\n",
2682                    av_fourcc2str(track->par->codec_tag));
2683         }
2684         if (track->st) {
2685             // hdlr.name is used by some players to identify the content title
2686             // of the track. So if an alternate handler description is
2687             // specified, use it.
2688             AVDictionaryEntry *t;
2689             t = av_dict_get(track->st->metadata, "handler_name", NULL, 0);
2690             if (t && utf8len(t->value))
2691                 descr = t->value;
2692         }
2693     }
2694
2695     if (mov->empty_hdlr_name) /* expressly allowed by QTFF and not prohibited in ISO 14496-12 8.4.3.3 */
2696         descr = "";
2697
2698     avio_wb32(pb, 0); /* size */
2699     ffio_wfourcc(pb, "hdlr");
2700     avio_wb32(pb, 0); /* Version & flags */
2701     avio_write(pb, hdlr, 4); /* handler */
2702     ffio_wfourcc(pb, hdlr_type); /* handler type */
2703     avio_wb32(pb, 0); /* reserved */
2704     avio_wb32(pb, 0); /* reserved */
2705     avio_wb32(pb, 0); /* reserved */
2706     if (!track || track->mode == MODE_MOV)
2707         avio_w8(pb, strlen(descr)); /* pascal string */
2708     avio_write(pb, descr, strlen(descr)); /* handler description */
2709     if (track && track->mode != MODE_MOV)
2710         avio_w8(pb, 0); /* c string */
2711     return update_size(pb, pos);
2712 }
2713
2714 static int mov_write_hmhd_tag(AVIOContext *pb)
2715 {
2716     /* This atom must be present, but leaving the values at zero
2717      * seems harmless. */
2718     avio_wb32(pb, 28); /* size */
2719     ffio_wfourcc(pb, "hmhd");
2720     avio_wb32(pb, 0); /* version, flags */
2721     avio_wb16(pb, 0); /* maxPDUsize */
2722     avio_wb16(pb, 0); /* avgPDUsize */
2723     avio_wb32(pb, 0); /* maxbitrate */
2724     avio_wb32(pb, 0); /* avgbitrate */
2725     avio_wb32(pb, 0); /* reserved */
2726     return 28;
2727 }
2728
2729 static int mov_write_minf_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext *mov, MOVTrack *track)
2730 {
2731     int64_t pos = avio_tell(pb);
2732     int ret;
2733
2734     avio_wb32(pb, 0); /* size */
2735     ffio_wfourcc(pb, "minf");
2736     if (track->par->codec_type == AVMEDIA_TYPE_VIDEO)
2737         mov_write_vmhd_tag(pb);
2738     else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO)
2739         mov_write_smhd_tag(pb);
2740     else if (track->par->codec_type == AVMEDIA_TYPE_SUBTITLE) {
2741         if (track->tag == MKTAG('t','e','x','t') || is_clcp_track(track)) {
2742             mov_write_gmhd_tag(pb, track);
2743         } else {
2744             mov_write_nmhd_tag(pb);
2745         }
2746     } else if (track->tag == MKTAG('r','t','p',' ')) {
2747         mov_write_hmhd_tag(pb);
2748     } else if (track->tag == MKTAG('t','m','c','d')) {
2749         if (track->mode != MODE_MOV)
2750             mov_write_nmhd_tag(pb);
2751         else
2752             mov_write_gmhd_tag(pb, track);
2753     } else if (track->tag == MKTAG('g','p','m','d')) {
2754         mov_write_gmhd_tag(pb, track);
2755     }
2756     if (track->mode == MODE_MOV) /* ISO 14496-12 8.4.3.1 specifies hdlr only within mdia or meta boxes */
2757         mov_write_hdlr_tag(s, pb, NULL);
2758     mov_write_dinf_tag(pb);
2759     if ((ret = mov_write_stbl_tag(s, pb, mov, track)) < 0)
2760         return ret;
2761     return update_size(pb, pos);
2762 }
2763
2764 static int64_t calc_pts_duration(MOVMuxContext *mov, MOVTrack *track)
2765 {
2766     if (track->tag == MKTAG('t','m','c','d')) {
2767         // tmcd tracks gets track_duration set in mov_write_moov_tag from
2768         // another track's duration, while the end_pts may be left at zero.
2769         // Calculate the pts duration for that track instead.
2770         return av_rescale(calc_pts_duration(mov, &mov->tracks[track->src_track]),
2771                           track->timescale, mov->tracks[track->src_track].timescale);
2772     }
2773     if (track->end_pts != AV_NOPTS_VALUE &&
2774         track->start_dts != AV_NOPTS_VALUE &&
2775         track->start_cts != AV_NOPTS_VALUE) {
2776         return track->end_pts - (track->start_dts + track->start_cts);
2777     }
2778     return track->track_duration;
2779 }
2780
2781 static int mov_write_mdhd_tag(AVIOContext *pb, MOVMuxContext *mov,
2782                               MOVTrack *track)
2783 {
2784     int64_t duration = calc_pts_duration(mov, track);
2785     int version = duration < INT32_MAX ? 0 : 1;
2786
2787     if (track->mode == MODE_ISM)
2788         version = 1;
2789
2790     (version == 1) ? avio_wb32(pb, 44) : avio_wb32(pb, 32); /* size */
2791     ffio_wfourcc(pb, "mdhd");
2792     avio_w8(pb, version);
2793     avio_wb24(pb, 0); /* flags */
2794     if (version == 1) {
2795         avio_wb64(pb, track->time);
2796         avio_wb64(pb, track->time);
2797     } else {
2798         avio_wb32(pb, track->time); /* creation time */
2799         avio_wb32(pb, track->time); /* modification time */
2800     }
2801     avio_wb32(pb, track->timescale); /* time scale (sample rate for audio) */
2802     if (!track->entry && mov->mode == MODE_ISM)
2803         (version == 1) ? avio_wb64(pb, UINT64_C(0xffffffffffffffff)) : avio_wb32(pb, 0xffffffff);
2804     else if (!track->entry)
2805         (version == 1) ? avio_wb64(pb, 0) : avio_wb32(pb, 0);
2806     else
2807         (version == 1) ? avio_wb64(pb, duration) : avio_wb32(pb, duration); /* duration */
2808     avio_wb16(pb, track->language); /* language */
2809     avio_wb16(pb, 0); /* reserved (quality) */
2810
2811     if (version != 0 && track->mode == MODE_MOV) {
2812         av_log(NULL, AV_LOG_ERROR,
2813                "FATAL error, file duration too long for timebase, this file will not be\n"
2814                "playable with QuickTime. Choose a different timebase with "
2815                "-video_track_timescale or a different container format\n");
2816     }
2817
2818     return 32;
2819 }
2820
2821 static int mov_write_mdia_tag(AVFormatContext *s, AVIOContext *pb,
2822                               MOVMuxContext *mov, MOVTrack *track)
2823 {
2824     int64_t pos = avio_tell(pb);
2825     int ret;
2826
2827     avio_wb32(pb, 0); /* size */
2828     ffio_wfourcc(pb, "mdia");
2829     mov_write_mdhd_tag(pb, mov, track);
2830     mov_write_hdlr_tag(s, pb, track);
2831     if ((ret = mov_write_minf_tag(s, pb, mov, track)) < 0)
2832         return ret;
2833     return update_size(pb, pos);
2834 }
2835
2836 /* transformation matrix
2837      |a  b  u|
2838      |c  d  v|
2839      |tx ty w| */
2840 static void write_matrix(AVIOContext *pb, int16_t a, int16_t b, int16_t c,
2841                          int16_t d, int16_t tx, int16_t ty)
2842 {
2843     avio_wb32(pb, a << 16);  /* 16.16 format */
2844     avio_wb32(pb, b << 16);  /* 16.16 format */
2845     avio_wb32(pb, 0);        /* u in 2.30 format */
2846     avio_wb32(pb, c << 16);  /* 16.16 format */
2847     avio_wb32(pb, d << 16);  /* 16.16 format */
2848     avio_wb32(pb, 0);        /* v in 2.30 format */
2849     avio_wb32(pb, tx << 16); /* 16.16 format */
2850     avio_wb32(pb, ty << 16); /* 16.16 format */
2851     avio_wb32(pb, 1 << 30);  /* w in 2.30 format */
2852 }
2853
2854 static int mov_write_tkhd_tag(AVIOContext *pb, MOVMuxContext *mov,
2855                               MOVTrack *track, AVStream *st)
2856 {
2857     int64_t duration = av_rescale_rnd(calc_pts_duration(mov, track),
2858                                       MOV_TIMESCALE, track->timescale,
2859                                       AV_ROUND_UP);
2860     int version = duration < INT32_MAX ? 0 : 1;
2861     int flags   = MOV_TKHD_FLAG_IN_MOVIE;
2862     int rotation = 0;
2863     int group   = 0;
2864
2865     uint32_t *display_matrix = NULL;
2866     int      display_matrix_size, i;
2867
2868     if (st) {
2869         if (mov->per_stream_grouping)
2870             group = st->index;
2871         else
2872             group = st->codecpar->codec_type;
2873
2874         display_matrix = (uint32_t*)av_stream_get_side_data(st, AV_PKT_DATA_DISPLAYMATRIX,
2875                                                             &display_matrix_size);
2876         if (display_matrix && display_matrix_size < 9 * sizeof(*display_matrix))
2877             display_matrix = NULL;
2878     }
2879
2880     if (track->flags & MOV_TRACK_ENABLED)
2881         flags |= MOV_TKHD_FLAG_ENABLED;
2882
2883     if (track->mode == MODE_ISM)
2884         version = 1;
2885
2886     (version == 1) ? avio_wb32(pb, 104) : avio_wb32(pb, 92); /* size */
2887     ffio_wfourcc(pb, "tkhd");
2888     avio_w8(pb, version);
2889     avio_wb24(pb, flags);
2890     if (version == 1) {
2891         avio_wb64(pb, track->time);
2892         avio_wb64(pb, track->time);
2893     } else {
2894         avio_wb32(pb, track->time); /* creation time */
2895         avio_wb32(pb, track->time); /* modification time */
2896     }
2897     avio_wb32(pb, track->track_id); /* track-id */
2898     avio_wb32(pb, 0); /* reserved */
2899     if (!track->entry && mov->mode == MODE_ISM)
2900         (version == 1) ? avio_wb64(pb, UINT64_C(0xffffffffffffffff)) : avio_wb32(pb, 0xffffffff);
2901     else if (!track->entry)
2902         (version == 1) ? avio_wb64(pb, 0) : avio_wb32(pb, 0);
2903     else
2904         (version == 1) ? avio_wb64(pb, duration) : avio_wb32(pb, duration);
2905
2906     avio_wb32(pb, 0); /* reserved */
2907     avio_wb32(pb, 0); /* reserved */
2908     avio_wb16(pb, 0); /* layer */
2909     avio_wb16(pb, group); /* alternate group) */
2910     /* Volume, only for audio */
2911     if (track->par->codec_type == AVMEDIA_TYPE_AUDIO)
2912         avio_wb16(pb, 0x0100);
2913     else
2914         avio_wb16(pb, 0);
2915     avio_wb16(pb, 0); /* reserved */
2916
2917     /* Matrix structure */
2918 #if FF_API_OLD_ROTATE_API
2919     if (st && st->metadata) {
2920         AVDictionaryEntry *rot = av_dict_get(st->metadata, "rotate", NULL, 0);
2921         rotation = (rot && rot->value) ? atoi(rot->value) : 0;
2922     }
2923 #endif
2924     if (display_matrix) {
2925         for (i = 0; i < 9; i++)
2926             avio_wb32(pb, display_matrix[i]);
2927 #if FF_API_OLD_ROTATE_API
2928     } else if (rotation == 90) {
2929         write_matrix(pb,  0,  1, -1,  0, track->par->height, 0);
2930     } else if (rotation == 180) {
2931         write_matrix(pb, -1,  0,  0, -1, track->par->width, track->par->height);
2932     } else if (rotation == 270) {
2933         write_matrix(pb,  0, -1,  1,  0, 0, track->par->width);
2934 #endif
2935     } else {
2936         write_matrix(pb,  1,  0,  0,  1, 0, 0);
2937     }
2938     /* Track width and height, for visual only */
2939     if (st && (track->par->codec_type == AVMEDIA_TYPE_VIDEO ||
2940                track->par->codec_type == AVMEDIA_TYPE_SUBTITLE)) {
2941         int64_t track_width_1616;
2942         if (track->mode == MODE_MOV) {
2943             track_width_1616 = track->par->width * 0x10000ULL;
2944         } else {
2945             track_width_1616 = av_rescale(st->sample_aspect_ratio.num,
2946                                                   track->par->width * 0x10000LL,
2947                                                   st->sample_aspect_ratio.den);
2948             if (!track_width_1616 ||
2949                 track->height != track->par->height ||
2950                 track_width_1616 > UINT32_MAX)
2951                 track_width_1616 = track->par->width * 0x10000ULL;
2952         }
2953         if (track_width_1616 > UINT32_MAX) {
2954             av_log(mov->fc, AV_LOG_WARNING, "track width is too large\n");
2955             track_width_1616 = 0;
2956         }
2957         avio_wb32(pb, track_width_1616);
2958         if (track->height > 0xFFFF) {
2959             av_log(mov->fc, AV_LOG_WARNING, "track height is too large\n");
2960             avio_wb32(pb, 0);
2961         } else
2962             avio_wb32(pb, track->height * 0x10000U);
2963     } else {
2964         avio_wb32(pb, 0);
2965         avio_wb32(pb, 0);
2966     }
2967     return 0x5c;
2968 }
2969
2970 static int mov_write_tapt_tag(AVIOContext *pb, MOVTrack *track)
2971 {
2972     int32_t width = av_rescale(track->par->sample_aspect_ratio.num, track->par->width,
2973                                track->par->sample_aspect_ratio.den);
2974
2975     int64_t pos = avio_tell(pb);
2976
2977     avio_wb32(pb, 0); /* size */
2978     ffio_wfourcc(pb, "tapt");
2979
2980     avio_wb32(pb, 20);
2981     ffio_wfourcc(pb, "clef");
2982     avio_wb32(pb, 0);
2983     avio_wb32(pb, width << 16);
2984     avio_wb32(pb, track->par->height << 16);
2985
2986     avio_wb32(pb, 20);
2987     ffio_wfourcc(pb, "prof");
2988     avio_wb32(pb, 0);
2989     avio_wb32(pb, width << 16);
2990     avio_wb32(pb, track->par->height << 16);
2991
2992     avio_wb32(pb, 20);
2993     ffio_wfourcc(pb, "enof");
2994     avio_wb32(pb, 0);
2995     avio_wb32(pb, track->par->width << 16);
2996     avio_wb32(pb, track->par->height << 16);
2997
2998     return update_size(pb, pos);
2999 }
3000
3001 // This box seems important for the psp playback ... without it the movie seems to hang
3002 static int mov_write_edts_tag(AVIOContext *pb, MOVMuxContext *mov,
3003                               MOVTrack *track)
3004 {
3005     int64_t duration = av_rescale_rnd(calc_pts_duration(mov, track),
3006                                       MOV_TIMESCALE, track->timescale,
3007                                       AV_ROUND_UP);
3008     int version = duration < INT32_MAX ? 0 : 1;
3009     int entry_size, entry_count, size;
3010     int64_t delay, start_ct = track->start_cts;
3011     int64_t start_dts = track->start_dts;
3012
3013     if (track->entry) {
3014         if (start_dts != track->cluster[0].dts || start_ct != track->cluster[0].cts) {
3015
3016             av_log(mov->fc, AV_LOG_DEBUG,
3017                    "EDTS using dts:%"PRId64" cts:%d instead of dts:%"PRId64" cts:%"PRId64" tid:%d\n",
3018                    track->cluster[0].dts, track->cluster[0].cts,
3019                    start_dts, start_ct, track->track_id);
3020             start_dts = track->cluster[0].dts;
3021             start_ct  = track->cluster[0].cts;
3022         }
3023     }
3024
3025     delay = av_rescale_rnd(start_dts + start_ct, MOV_TIMESCALE,
3026                            track->timescale, AV_ROUND_DOWN);
3027     version |= delay < INT32_MAX ? 0 : 1;
3028
3029     entry_size = (version == 1) ? 20 : 12;
3030     entry_count = 1 + (delay > 0);
3031     size = 24 + entry_count * entry_size;
3032
3033     /* write the atom data */
3034     avio_wb32(pb, size);
3035     ffio_wfourcc(pb, "edts");
3036     avio_wb32(pb, size - 8);
3037     ffio_wfourcc(pb, "elst");
3038     avio_w8(pb, version);
3039     avio_wb24(pb, 0); /* flags */
3040
3041     avio_wb32(pb, entry_count);
3042     if (delay > 0) { /* add an empty edit to delay presentation */
3043         /* In the positive delay case, the delay includes the cts
3044          * offset, and the second edit list entry below trims out
3045          * the same amount from the actual content. This makes sure
3046          * that the offset last sample is included in the edit
3047          * list duration as well. */
3048         if (version == 1) {
3049             avio_wb64(pb, delay);
3050             avio_wb64(pb, -1);
3051         } else {
3052             avio_wb32(pb, delay);
3053             avio_wb32(pb, -1);
3054         }
3055         avio_wb32(pb, 0x00010000);
3056     } else {
3057         /* Avoid accidentally ending up with start_ct = -1 which has got a
3058          * special meaning. Normally start_ct should end up positive or zero
3059          * here, but use FFMIN in case dts is a small positive integer
3060          * rounded to 0 when represented in MOV_TIMESCALE units. */
3061         av_assert0(av_rescale_rnd(start_dts, MOV_TIMESCALE, track->timescale, AV_ROUND_DOWN) <= 0);
3062         start_ct  = -FFMIN(start_dts, 0);
3063         /* Note, this delay is calculated from the pts of the first sample,
3064          * ensuring that we don't reduce the duration for cases with
3065          * dts<0 pts=0. */
3066         duration += delay;
3067     }
3068
3069     /* For fragmented files, we don't know the full length yet. Setting
3070      * duration to 0 allows us to only specify the offset, including
3071      * the rest of the content (from all future fragments) without specifying
3072      * an explicit duration. */
3073     if (mov->flags & FF_MOV_FLAG_FRAGMENT)
3074         duration = 0;
3075
3076     /* duration */
3077     if (version == 1) {
3078         avio_wb64(pb, duration);
3079         avio_wb64(pb, start_ct);
3080     } else {
3081         avio_wb32(pb, duration);
3082         avio_wb32(pb, start_ct);
3083     }
3084     avio_wb32(pb, 0x00010000);
3085     return size;
3086 }
3087
3088 static int mov_write_tref_tag(AVIOContext *pb, MOVTrack *track)
3089 {
3090     avio_wb32(pb, 20);   // size
3091     ffio_wfourcc(pb, "tref");
3092     avio_wb32(pb, 12);   // size (subatom)
3093     avio_wl32(pb, track->tref_tag);
3094     avio_wb32(pb, track->tref_id);
3095     return 20;
3096 }
3097
3098 // goes at the end of each track!  ... Critical for PSP playback ("Incompatible data" without it)
3099 static int mov_write_uuid_tag_psp(AVIOContext *pb, MOVTrack *mov)
3100 {
3101     avio_wb32(pb, 0x34); /* size ... reports as 28 in mp4box! */
3102     ffio_wfourcc(pb, "uuid");
3103     ffio_wfourcc(pb, "USMT");
3104     avio_wb32(pb, 0x21d24fce);
3105     avio_wb32(pb, 0xbb88695c);
3106     avio_wb32(pb, 0xfac9c740);
3107     avio_wb32(pb, 0x1c);     // another size here!
3108     ffio_wfourcc(pb, "MTDT");
3109     avio_wb32(pb, 0x00010012);
3110     avio_wb32(pb, 0x0a);
3111     avio_wb32(pb, 0x55c40000);
3112     avio_wb32(pb, 0x1);
3113     avio_wb32(pb, 0x0);
3114     return 0x34;
3115 }
3116
3117 static int mov_write_udta_sdp(AVIOContext *pb, MOVTrack *track)
3118 {
3119     AVFormatContext *ctx = track->rtp_ctx;
3120     char buf[1000] = "";
3121     int len;
3122
3123     ff_sdp_write_media(buf, sizeof(buf), ctx->streams[0], track->src_track,
3124                        NULL, NULL, 0, 0, ctx);
3125     av_strlcatf(buf, sizeof(buf), "a=control:streamid=%d\r\n", track->track_id);
3126     len = strlen(buf);
3127
3128     avio_wb32(pb, len + 24);
3129     ffio_wfourcc(pb, "udta");
3130     avio_wb32(pb, len + 16);
3131     ffio_wfourcc(pb, "hnti");
3132     avio_wb32(pb, len + 8);
3133     ffio_wfourcc(pb, "sdp ");
3134     avio_write(pb, buf, len);
3135     return len + 24;
3136 }
3137
3138 static int mov_write_track_metadata(AVIOContext *pb, AVStream *st,
3139                                     const char *tag, const char *str)
3140 {
3141     int64_t pos = avio_tell(pb);
3142     AVDictionaryEntry *t = av_dict_get(st->metadata, str, NULL, 0);
3143     if (!t || !utf8len(t->value))
3144         return 0;
3145
3146     avio_wb32(pb, 0);   /* size */
3147     ffio_wfourcc(pb, tag); /* type */
3148     avio_write(pb, t->value, strlen(t->value)); /* UTF8 string value */
3149     return update_size(pb, pos);
3150 }
3151
3152 static int mov_write_track_udta_tag(AVIOContext *pb, MOVMuxContext *mov,
3153                                     AVStream *st)
3154 {
3155     AVIOContext *pb_buf;
3156     int ret, size;
3157     uint8_t *buf;
3158
3159     if (!st)
3160         return 0;
3161
3162     ret = avio_open_dyn_buf(&pb_buf);
3163     if (ret < 0)
3164         return ret;
3165
3166     if (mov->mode & (MODE_MP4|MODE_MOV))
3167         mov_write_track_metadata(pb_buf, st, "name", "title");
3168
3169     if ((size = avio_get_dyn_buf(pb_buf, &buf)) > 0) {
3170         avio_wb32(pb, size + 8);
3171         ffio_wfourcc(pb, "udta");
3172         avio_write(pb, buf, size);
3173     }
3174     ffio_free_dyn_buf(&pb_buf);
3175
3176     return 0;
3177 }
3178
3179 static int mov_write_trak_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContext *mov,
3180                               MOVTrack *track, AVStream *st)
3181 {
3182     int64_t pos = avio_tell(pb);
3183     int entry_backup = track->entry;
3184     int chunk_backup = track->chunkCount;
3185     int ret;
3186
3187     /* If we want to have an empty moov, but some samples already have been
3188      * buffered (delay_moov), pretend that no samples have been written yet. */
3189     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV)
3190         track->chunkCount = track->entry = 0;
3191
3192     avio_wb32(pb, 0); /* size */
3193     ffio_wfourcc(pb, "trak");
3194     mov_write_tkhd_tag(pb, mov, track, st);
3195
3196     av_assert2(mov->use_editlist >= 0);
3197
3198     if (track->start_dts != AV_NOPTS_VALUE) {
3199         if (mov->use_editlist)
3200             mov_write_edts_tag(pb, mov, track);  // PSP Movies and several other cases require edts box
3201         else if ((track->entry && track->cluster[0].dts) || track->mode == MODE_PSP || is_clcp_track(track))
3202             av_log(mov->fc, AV_LOG_WARNING,
3203                    "Not writing any edit list even though one would have been required\n");
3204     }
3205
3206     if (track->tref_tag)
3207         mov_write_tref_tag(pb, track);
3208
3209     if ((ret = mov_write_mdia_tag(s, pb, mov, track)) < 0)
3210         return ret;
3211     if (track->mode == MODE_PSP)
3212         mov_write_uuid_tag_psp(pb, track); // PSP Movies require this uuid box
3213     if (track->tag == MKTAG('r','t','p',' '))
3214         mov_write_udta_sdp(pb, track);
3215     if (track->mode == MODE_MOV) {
3216         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
3217             double sample_aspect_ratio = av_q2d(st->sample_aspect_ratio);
3218             if (st->sample_aspect_ratio.num && 1.0 != sample_aspect_ratio) {
3219                 mov_write_tapt_tag(pb, track);
3220             }
3221         }
3222         if (is_clcp_track(track) && st->sample_aspect_ratio.num) {
3223             mov_write_tapt_tag(pb, track);
3224         }
3225     }
3226     mov_write_track_udta_tag(pb, mov, st);
3227     track->entry = entry_backup;
3228     track->chunkCount = chunk_backup;
3229     return update_size(pb, pos);
3230 }
3231
3232 static int mov_write_iods_tag(AVIOContext *pb, MOVMuxContext *mov)
3233 {
3234     int i, has_audio = 0, has_video = 0;
3235     int64_t pos = avio_tell(pb);
3236     int audio_profile = mov->iods_audio_profile;
3237     int video_profile = mov->iods_video_profile;
3238     for (i = 0; i < mov->nb_streams; i++) {
3239         if (mov->tracks[i].entry > 0 || mov->flags & FF_MOV_FLAG_EMPTY_MOOV) {
3240             has_audio |= mov->tracks[i].par->codec_type == AVMEDIA_TYPE_AUDIO;
3241             has_video |= mov->tracks[i].par->codec_type == AVMEDIA_TYPE_VIDEO;
3242         }
3243     }
3244     if (audio_profile < 0)
3245         audio_profile = 0xFF - has_audio;
3246     if (video_profile < 0)
3247         video_profile = 0xFF - has_video;
3248     avio_wb32(pb, 0x0); /* size */
3249     ffio_wfourcc(pb, "iods");
3250     avio_wb32(pb, 0);    /* version & flags */
3251     put_descr(pb, 0x10, 7);
3252     avio_wb16(pb, 0x004f);
3253     avio_w8(pb, 0xff);
3254     avio_w8(pb, 0xff);
3255     avio_w8(pb, audio_profile);
3256     avio_w8(pb, video_profile);
3257     avio_w8(pb, 0xff);
3258     return update_size(pb, pos);
3259 }
3260
3261 static int mov_write_trex_tag(AVIOContext *pb, MOVTrack *track)
3262 {
3263     avio_wb32(pb, 0x20); /* size */
3264     ffio_wfourcc(pb, "trex");
3265     avio_wb32(pb, 0);   /* version & flags */
3266     avio_wb32(pb, track->track_id); /* track ID */
3267     avio_wb32(pb, 1);   /* default sample description index */
3268     avio_wb32(pb, 0);   /* default sample duration */
3269     avio_wb32(pb, 0);   /* default sample size */
3270     avio_wb32(pb, 0);   /* default sample flags */
3271     return 0;
3272 }
3273
3274 static int mov_write_mvex_tag(AVIOContext *pb, MOVMuxContext *mov)
3275 {
3276     int64_t pos = avio_tell(pb);
3277     int i;
3278     avio_wb32(pb, 0x0); /* size */
3279     ffio_wfourcc(pb, "mvex");
3280     for (i = 0; i < mov->nb_streams; i++)
3281         mov_write_trex_tag(pb, &mov->tracks[i]);
3282     return update_size(pb, pos);
3283 }
3284
3285 static int mov_write_mvhd_tag(AVIOContext *pb, MOVMuxContext *mov)
3286 {
3287     int max_track_id = 1, i;
3288     int64_t max_track_len = 0;
3289     int version;
3290
3291     for (i = 0; i < mov->nb_streams; i++) {
3292         if (mov->tracks[i].entry > 0 && mov->tracks[i].timescale) {
3293             int64_t max_track_len_temp = av_rescale_rnd(
3294                                                 calc_pts_duration(mov, &mov->tracks[i]),
3295                                                 MOV_TIMESCALE,
3296                                                 mov->tracks[i].timescale,
3297                                                 AV_ROUND_UP);
3298             if (max_track_len < max_track_len_temp)
3299                 max_track_len = max_track_len_temp;
3300             if (max_track_id < mov->tracks[i].track_id)
3301                 max_track_id = mov->tracks[i].track_id;
3302         }
3303     }
3304     /* If using delay_moov, make sure the output is the same as if no
3305      * samples had been written yet. */
3306     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV) {
3307         max_track_len = 0;
3308         max_track_id  = 1;
3309     }
3310
3311     version = max_track_len < UINT32_MAX ? 0 : 1;
3312     avio_wb32(pb, version == 1 ? 120 : 108); /* size */
3313
3314     ffio_wfourcc(pb, "mvhd");
3315     avio_w8(pb, version);
3316     avio_wb24(pb, 0); /* flags */
3317     if (version == 1) {
3318         avio_wb64(pb, mov->time);
3319         avio_wb64(pb, mov->time);
3320     } else {
3321         avio_wb32(pb, mov->time); /* creation time */
3322         avio_wb32(pb, mov->time); /* modification time */
3323     }
3324     avio_wb32(pb, MOV_TIMESCALE);
3325     (version == 1) ? avio_wb64(pb, max_track_len) : avio_wb32(pb, max_track_len); /* duration of longest track */
3326
3327     avio_wb32(pb, 0x00010000); /* reserved (preferred rate) 1.0 = normal */
3328     avio_wb16(pb, 0x0100); /* reserved (preferred volume) 1.0 = normal */
3329     avio_wb16(pb, 0); /* reserved */
3330     avio_wb32(pb, 0); /* reserved */
3331     avio_wb32(pb, 0); /* reserved */
3332
3333     /* Matrix structure */
3334     write_matrix(pb, 1, 0, 0, 1, 0, 0);
3335
3336     avio_wb32(pb, 0); /* reserved (preview time) */
3337     avio_wb32(pb, 0); /* reserved (preview duration) */
3338     avio_wb32(pb, 0); /* reserved (poster time) */
3339     avio_wb32(pb, 0); /* reserved (selection time) */
3340     avio_wb32(pb, 0); /* reserved (selection duration) */
3341     avio_wb32(pb, 0); /* reserved (current time) */
3342     avio_wb32(pb, max_track_id + 1); /* Next track id */
3343     return 0x6c;
3344 }
3345
3346 static int mov_write_itunes_hdlr_tag(AVIOContext *pb, MOVMuxContext *mov,
3347                                      AVFormatContext *s)
3348 {
3349     avio_wb32(pb, 33); /* size */
3350     ffio_wfourcc(pb, "hdlr");
3351     avio_wb32(pb, 0);
3352     avio_wb32(pb, 0);
3353     ffio_wfourcc(pb, "mdir");
3354     ffio_wfourcc(pb, "appl");
3355     avio_wb32(pb, 0);
3356     avio_wb32(pb, 0);
3357     avio_w8(pb, 0);
3358     return 33;
3359 }
3360
3361 /* helper function to write a data tag with the specified string as data */
3362 static int mov_write_string_data_tag(AVIOContext *pb, const char *data, int lang, int long_style)
3363 {
3364     if (long_style) {
3365         int size = 16 + strlen(data);
3366         avio_wb32(pb, size); /* size */
3367         ffio_wfourcc(pb, "data");
3368         avio_wb32(pb, 1);
3369         avio_wb32(pb, 0);
3370         avio_write(pb, data, strlen(data));
3371         return size;
3372     } else {
3373         if (!lang)
3374             lang = ff_mov_iso639_to_lang("und", 1);
3375         avio_wb16(pb, strlen(data)); /* string length */
3376         avio_wb16(pb, lang);
3377         avio_write(pb, data, strlen(data));
3378         return strlen(data) + 4;
3379     }
3380 }
3381
3382 static int mov_write_string_tag(AVIOContext *pb, const char *name,
3383                                 const char *value, int lang, int long_style)
3384 {
3385     int size = 0;
3386     if (value && value[0]) {
3387         int64_t pos = avio_tell(pb);
3388         avio_wb32(pb, 0); /* size */
3389         ffio_wfourcc(pb, name);
3390         mov_write_string_data_tag(pb, value, lang, long_style);
3391         size = update_size(pb, pos);
3392     }
3393     return size;
3394 }
3395
3396 static AVDictionaryEntry *get_metadata_lang(AVFormatContext *s,
3397                                             const char *tag, int *lang)
3398 {
3399     int l, len, len2;
3400     AVDictionaryEntry *t, *t2 = NULL;
3401     char tag2[16];
3402
3403     *lang = 0;
3404
3405     if (!(t = av_dict_get(s->metadata, tag, NULL, 0)))
3406         return NULL;
3407
3408     len = strlen(t->key);
3409     snprintf(tag2, sizeof(tag2), "%s-", tag);
3410     while ((t2 = av_dict_get(s->metadata, tag2, t2, AV_DICT_IGNORE_SUFFIX))) {
3411         len2 = strlen(t2->key);
3412         if (len2 == len + 4 && !strcmp(t->value, t2->value)
3413             && (l = ff_mov_iso639_to_lang(&t2->key[len2 - 3], 1)) >= 0) {
3414             *lang = l;
3415             return t;
3416         }
3417     }
3418     return t;
3419 }
3420
3421 static int mov_write_string_metadata(AVFormatContext *s, AVIOContext *pb,
3422                                      const char *name, const char *tag,
3423                                      int long_style)
3424 {
3425     int lang;
3426     AVDictionaryEntry *t = get_metadata_lang(s, tag, &lang);
3427     if (!t)
3428         return 0;
3429     return mov_write_string_tag(pb, name, t->value, lang, long_style);
3430 }
3431
3432 /* iTunes bpm number */
3433 static int mov_write_tmpo_tag(AVIOContext *pb, AVFormatContext *s)
3434 {
3435     AVDictionaryEntry *t = av_dict_get(s->metadata, "tmpo", NULL, 0);
3436     int size = 0, tmpo = t ? atoi(t->value) : 0;
3437     if (tmpo) {
3438         size = 26;
3439         avio_wb32(pb, size);
3440         ffio_wfourcc(pb, "tmpo");
3441         avio_wb32(pb, size-8); /* size */
3442         ffio_wfourcc(pb, "data");
3443         avio_wb32(pb, 0x15);  //type specifier
3444         avio_wb32(pb, 0);
3445         avio_wb16(pb, tmpo);        // data
3446     }
3447     return size;
3448 }
3449
3450 /* 3GPP TS 26.244 */
3451 static int mov_write_loci_tag(AVFormatContext *s, AVIOContext *pb)
3452 {
3453     int lang;
3454     int64_t pos = avio_tell(pb);
3455     double latitude, longitude, altitude;
3456     int32_t latitude_fix, longitude_fix, altitude_fix;
3457     AVDictionaryEntry *t = get_metadata_lang(s, "location", &lang);
3458     const char *ptr, *place = "";
3459     char *end;
3460     static const char *astronomical_body = "earth";
3461     if (!t)
3462         return 0;
3463
3464     ptr = t->value;
3465     longitude = strtod(ptr, &end);
3466     if (end == ptr) {
3467         av_log(s, AV_LOG_WARNING, "malformed location metadata\n");
3468         return 0;
3469     }
3470     ptr = end;
3471     latitude = strtod(ptr, &end);
3472     if (end == ptr) {
3473         av_log(s, AV_LOG_WARNING, "malformed location metadata\n");
3474         return 0;
3475     }
3476     ptr = end;
3477     altitude = strtod(ptr, &end);
3478     /* If no altitude was present, the default 0 should be fine */
3479     if (*end == '/')
3480         place = end + 1;
3481
3482     latitude_fix  = (int32_t) ((1 << 16) * latitude);
3483     longitude_fix = (int32_t) ((1 << 16) * longitude);
3484     altitude_fix  = (int32_t) ((1 << 16) * altitude);
3485
3486     avio_wb32(pb, 0);         /* size */
3487     ffio_wfourcc(pb, "loci"); /* type */
3488     avio_wb32(pb, 0);         /* version + flags */
3489     avio_wb16(pb, lang);
3490     avio_write(pb, place, strlen(place) + 1);
3491     avio_w8(pb, 0);           /* role of place (0 == shooting location, 1 == real location, 2 == fictional location) */
3492     avio_wb32(pb, latitude_fix);
3493     avio_wb32(pb, longitude_fix);
3494     avio_wb32(pb, altitude_fix);
3495     avio_write(pb, astronomical_body, strlen(astronomical_body) + 1);
3496     avio_w8(pb, 0);           /* additional notes, null terminated string */
3497
3498     return update_size(pb, pos);
3499 }
3500
3501 /* iTunes track or disc number */
3502 static int mov_write_trkn_tag(AVIOContext *pb, MOVMuxContext *mov,
3503                               AVFormatContext *s, int disc)
3504 {
3505     AVDictionaryEntry *t = av_dict_get(s->metadata,
3506                                        disc ? "disc" : "track",
3507                                        NULL, 0);
3508     int size = 0, track = t ? atoi(t->value) : 0;
3509     if (track) {
3510         int tracks = 0;
3511         char *slash = strchr(t->value, '/');
3512         if (slash)
3513             tracks = atoi(slash + 1);
3514         avio_wb32(pb, 32); /* size */
3515         ffio_wfourcc(pb, disc ? "disk" : "trkn");
3516         avio_wb32(pb, 24); /* size */
3517         ffio_wfourcc(pb, "data");
3518         avio_wb32(pb, 0);        // 8 bytes empty
3519         avio_wb32(pb, 0);
3520         avio_wb16(pb, 0);        // empty
3521         avio_wb16(pb, track);    // track / disc number
3522         avio_wb16(pb, tracks);   // total track / disc number
3523         avio_wb16(pb, 0);        // empty
3524         size = 32;
3525     }
3526     return size;
3527 }
3528
3529 static int mov_write_int8_metadata(AVFormatContext *s, AVIOContext *pb,
3530                                    const char *name, const char *tag,
3531                                    int len)
3532 {
3533     AVDictionaryEntry *t = NULL;
3534     uint8_t num;
3535     int size = 24 + len;
3536
3537     if (len != 1 && len != 4)
3538         return -1;
3539
3540     if (!(t = av_dict_get(s->metadata, tag, NULL, 0)))
3541         return 0;
3542     num = atoi(t->value);
3543
3544     avio_wb32(pb, size);
3545     ffio_wfourcc(pb, name);
3546     avio_wb32(pb, size - 8);
3547     ffio_wfourcc(pb, "data");
3548     avio_wb32(pb, 0x15);
3549     avio_wb32(pb, 0);
3550     if (len==4) avio_wb32(pb, num);
3551     else        avio_w8 (pb, num);
3552
3553     return size;
3554 }
3555
3556 static int mov_write_covr(AVIOContext *pb, AVFormatContext *s)
3557 {
3558     MOVMuxContext *mov = s->priv_data;
3559     int64_t pos = 0;
3560     int i;
3561
3562     for (i = 0; i < s->nb_streams; i++) {
3563         MOVTrack *trk = &mov->tracks[i];
3564
3565         if (!is_cover_image(trk->st) || trk->cover_image.size <= 0)
3566             continue;
3567
3568         if (!pos) {
3569             pos = avio_tell(pb);
3570             avio_wb32(pb, 0);
3571             ffio_wfourcc(pb, "covr");
3572         }
3573         avio_wb32(pb, 16 + trk->cover_image.size);
3574         ffio_wfourcc(pb, "data");
3575         avio_wb32(pb, trk->tag);
3576         avio_wb32(pb , 0);
3577         avio_write(pb, trk->cover_image.data, trk->cover_image.size);
3578     }
3579
3580     return pos ? update_size(pb, pos) : 0;
3581 }
3582
3583 /* iTunes meta data list */
3584 static int mov_write_ilst_tag(AVIOContext *pb, MOVMuxContext *mov,
3585                               AVFormatContext *s)
3586 {
3587     int64_t pos = avio_tell(pb);
3588     avio_wb32(pb, 0); /* size */
3589     ffio_wfourcc(pb, "ilst");
3590     mov_write_string_metadata(s, pb, "\251nam", "title"    , 1);
3591     mov_write_string_metadata(s, pb, "\251ART", "artist"   , 1);
3592     mov_write_string_metadata(s, pb, "aART", "album_artist", 1);
3593     mov_write_string_metadata(s, pb, "\251wrt", "composer" , 1);
3594     mov_write_string_metadata(s, pb, "\251alb", "album"    , 1);
3595     mov_write_string_metadata(s, pb, "\251day", "date"     , 1);
3596     if (!mov_write_string_metadata(s, pb, "\251too", "encoding_tool", 1)) {
3597         if (!(s->flags & AVFMT_FLAG_BITEXACT))
3598             mov_write_string_tag(pb, "\251too", LIBAVFORMAT_IDENT, 0, 1);
3599     }
3600     mov_write_string_metadata(s, pb, "\251cmt", "comment"  , 1);
3601     mov_write_string_metadata(s, pb, "\251gen", "genre"    , 1);
3602     mov_write_string_metadata(s, pb, "cprt",    "copyright", 1);
3603     mov_write_string_metadata(s, pb, "\251grp", "grouping" , 1);
3604     mov_write_string_metadata(s, pb, "\251lyr", "lyrics"   , 1);
3605     mov_write_string_metadata(s, pb, "desc",    "description",1);
3606     mov_write_string_metadata(s, pb, "ldes",    "synopsis" , 1);
3607     mov_write_string_metadata(s, pb, "tvsh",    "show"     , 1);
3608     mov_write_string_metadata(s, pb, "tven",    "episode_id",1);
3609     mov_write_string_metadata(s, pb, "tvnn",    "network"  , 1);
3610     mov_write_string_metadata(s, pb, "keyw",    "keywords"  , 1);
3611     mov_write_int8_metadata  (s, pb, "tves",    "episode_sort",4);
3612     mov_write_int8_metadata  (s, pb, "tvsn",    "season_number",4);
3613     mov_write_int8_metadata  (s, pb, "stik",    "media_type",1);
3614     mov_write_int8_metadata  (s, pb, "hdvd",    "hd_video",  1);
3615     mov_write_int8_metadata  (s, pb, "pgap",    "gapless_playback",1);
3616     mov_write_int8_metadata  (s, pb, "cpil",    "compilation", 1);
3617     mov_write_covr(pb, s);
3618     mov_write_trkn_tag(pb, mov, s, 0); // track number
3619     mov_write_trkn_tag(pb, mov, s, 1); // disc number
3620     mov_write_tmpo_tag(pb, s);
3621     return update_size(pb, pos);
3622 }
3623
3624 static int mov_write_mdta_hdlr_tag(AVIOContext *pb, MOVMuxContext *mov,
3625                                    AVFormatContext *s)
3626 {
3627     avio_wb32(pb, 33); /* size */
3628     ffio_wfourcc(pb, "hdlr");
3629     avio_wb32(pb, 0);
3630     avio_wb32(pb, 0);
3631     ffio_wfourcc(pb, "mdta");
3632     avio_wb32(pb, 0);
3633     avio_wb32(pb, 0);
3634     avio_wb32(pb, 0);
3635     avio_w8(pb, 0);
3636     return 33;
3637 }
3638
3639 static int mov_write_mdta_keys_tag(AVIOContext *pb, MOVMuxContext *mov,
3640                                    AVFormatContext *s)
3641 {
3642     AVDictionaryEntry *t = NULL;
3643     int64_t pos = avio_tell(pb);
3644     int64_t curpos, entry_pos;
3645     int count = 0;
3646
3647     avio_wb32(pb, 0); /* size */
3648     ffio_wfourcc(pb, "keys");
3649     avio_wb32(pb, 0);
3650     entry_pos = avio_tell(pb);
3651     avio_wb32(pb, 0); /* entry count */
3652
3653     while (t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX)) {
3654         avio_wb32(pb, strlen(t->key) + 8);
3655         ffio_wfourcc(pb, "mdta");
3656         avio_write(pb, t->key, strlen(t->key));
3657         count += 1;
3658     }
3659     curpos = avio_tell(pb);
3660     avio_seek(pb, entry_pos, SEEK_SET);
3661     avio_wb32(pb, count); // rewrite entry count
3662     avio_seek(pb, curpos, SEEK_SET);
3663
3664     return update_size(pb, pos);
3665 }
3666
3667 static int mov_write_mdta_ilst_tag(AVIOContext *pb, MOVMuxContext *mov,
3668                                    AVFormatContext *s)
3669 {
3670     AVDictionaryEntry *t = NULL;
3671     int64_t pos = avio_tell(pb);
3672     int count = 1; /* keys are 1-index based */
3673
3674     avio_wb32(pb, 0); /* size */
3675     ffio_wfourcc(pb, "ilst");
3676
3677     while (t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX)) {
3678         int64_t entry_pos = avio_tell(pb);
3679         avio_wb32(pb, 0); /* size */
3680         avio_wb32(pb, count); /* key */
3681         mov_write_string_data_tag(pb, t->value, 0, 1);
3682         update_size(pb, entry_pos);
3683         count += 1;
3684     }
3685     return update_size(pb, pos);
3686 }
3687
3688 /* meta data tags */
3689 static int mov_write_meta_tag(AVIOContext *pb, MOVMuxContext *mov,
3690                               AVFormatContext *s)
3691 {
3692     int size = 0;
3693     int64_t pos = avio_tell(pb);
3694     avio_wb32(pb, 0); /* size */
3695     ffio_wfourcc(pb, "meta");
3696     avio_wb32(pb, 0);
3697     if (mov->flags & FF_MOV_FLAG_USE_MDTA) {
3698         mov_write_mdta_hdlr_tag(pb, mov, s);
3699         mov_write_mdta_keys_tag(pb, mov, s);
3700         mov_write_mdta_ilst_tag(pb, mov, s);
3701     }
3702     else {
3703         /* iTunes metadata tag */
3704         mov_write_itunes_hdlr_tag(pb, mov, s);
3705         mov_write_ilst_tag(pb, mov, s);
3706     }
3707     size = update_size(pb, pos);
3708     return size;
3709 }
3710
3711 static int mov_write_raw_metadata_tag(AVFormatContext *s, AVIOContext *pb,
3712                                       const char *name, const char *key)
3713 {
3714     int len;
3715     AVDictionaryEntry *t;
3716
3717     if (!(t = av_dict_get(s->metadata, key, NULL, 0)))
3718         return 0;
3719
3720     len = strlen(t->value);
3721     if (len > 0) {
3722         int size = len + 8;
3723         avio_wb32(pb, size);
3724         ffio_wfourcc(pb, name);
3725         avio_write(pb, t->value, len);
3726         return size;
3727     }
3728     return 0;
3729 }
3730
3731 static int ascii_to_wc(AVIOContext *pb, const uint8_t *b)
3732 {
3733     int val;
3734     while (*b) {
3735         GET_UTF8(val, *b++, return -1;)
3736         avio_wb16(pb, val);
3737     }
3738     avio_wb16(pb, 0x00);
3739     return 0;
3740 }
3741
3742 static uint16_t language_code(const char *str)
3743 {
3744     return (((str[0] - 0x60) & 0x1F) << 10) +
3745            (((str[1] - 0x60) & 0x1F) <<  5) +
3746            (( str[2] - 0x60) & 0x1F);
3747 }
3748
3749 static int mov_write_3gp_udta_tag(AVIOContext *pb, AVFormatContext *s,
3750                                   const char *tag, const char *str)
3751 {
3752     int64_t pos = avio_tell(pb);
3753     AVDictionaryEntry *t = av_dict_get(s->metadata, str, NULL, 0);
3754     if (!t || !utf8len(t->value))
3755         return 0;
3756     avio_wb32(pb, 0);   /* size */
3757     ffio_wfourcc(pb, tag); /* type */
3758     avio_wb32(pb, 0);   /* version + flags */
3759     if (!strcmp(tag, "yrrc"))
3760         avio_wb16(pb, atoi(t->value));
3761     else {
3762         avio_wb16(pb, language_code("eng")); /* language */
3763         avio_write(pb, t->value, strlen(t->value) + 1); /* UTF8 string value */
3764         if (!strcmp(tag, "albm") &&
3765             (t = av_dict_get(s->metadata, "track", NULL, 0)))
3766             avio_w8(pb, atoi(t->value));
3767     }
3768     return update_size(pb, pos);
3769 }
3770
3771 static int mov_write_chpl_tag(AVIOContext *pb, AVFormatContext *s)
3772 {
3773     int64_t pos = avio_tell(pb);
3774     int i, nb_chapters = FFMIN(s->nb_chapters, 255);
3775
3776     avio_wb32(pb, 0);            // size
3777     ffio_wfourcc(pb, "chpl");
3778     avio_wb32(pb, 0x01000000);   // version + flags
3779     avio_wb32(pb, 0);            // unknown
3780     avio_w8(pb, nb_chapters);
3781
3782     for (i = 0; i < nb_chapters; i++) {
3783         AVChapter *c = s->chapters[i];
3784         AVDictionaryEntry *t;
3785         avio_wb64(pb, av_rescale_q(c->start, c->time_base, (AVRational){1,10000000}));
3786
3787         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
3788             int len = FFMIN(strlen(t->value), 255);
3789             avio_w8(pb, len);
3790             avio_write(pb, t->value, len);
3791         } else
3792             avio_w8(pb, 0);
3793     }
3794     return update_size(pb, pos);
3795 }
3796
3797 static int mov_write_udta_tag(AVIOContext *pb, MOVMuxContext *mov,
3798                               AVFormatContext *s)
3799 {
3800     AVIOContext *pb_buf;
3801     int ret, size;
3802     uint8_t *buf;
3803
3804     ret = avio_open_dyn_buf(&pb_buf);
3805     if (ret < 0)
3806         return ret;
3807
3808     if (mov->mode & MODE_3GP) {
3809         mov_write_3gp_udta_tag(pb_buf, s, "perf", "artist");
3810         mov_write_3gp_udta_tag(pb_buf, s, "titl", "title");
3811         mov_write_3gp_udta_tag(pb_buf, s, "auth", "author");
3812         mov_write_3gp_udta_tag(pb_buf, s, "gnre", "genre");
3813         mov_write_3gp_udta_tag(pb_buf, s, "dscp", "comment");
3814         mov_write_3gp_udta_tag(pb_buf, s, "albm", "album");
3815         mov_write_3gp_udta_tag(pb_buf, s, "cprt", "copyright");
3816         mov_write_3gp_udta_tag(pb_buf, s, "yrrc", "date");
3817         mov_write_loci_tag(s, pb_buf);
3818     } 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
3819         mov_write_string_metadata(s, pb_buf, "\251ART", "artist",      0);
3820         mov_write_string_metadata(s, pb_buf, "\251nam", "title",       0);
3821         mov_write_string_metadata(s, pb_buf, "\251aut", "author",      0);
3822         mov_write_string_metadata(s, pb_buf, "\251alb", "album",       0);
3823         mov_write_string_metadata(s, pb_buf, "\251day", "date",        0);
3824         mov_write_string_metadata(s, pb_buf, "\251swr", "encoder",     0);
3825         // currently ignored by mov.c
3826         mov_write_string_metadata(s, pb_buf, "\251des", "comment",     0);
3827         // add support for libquicktime, this atom is also actually read by mov.c
3828         mov_write_string_metadata(s, pb_buf, "\251cmt", "comment",     0);
3829         mov_write_string_metadata(s, pb_buf, "\251gen", "genre",       0);
3830         mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright",   0);
3831         mov_write_string_metadata(s, pb_buf, "\251mak", "make",        0);
3832         mov_write_string_metadata(s, pb_buf, "\251mod", "model",       0);
3833         mov_write_string_metadata(s, pb_buf, "\251xyz", "location",    0);
3834         mov_write_string_metadata(s, pb_buf, "\251key", "keywords",    0);
3835         mov_write_raw_metadata_tag(s, pb_buf, "XMP_", "xmp");
3836     } else {
3837         /* iTunes meta data */
3838         mov_write_meta_tag(pb_buf, mov, s);
3839         mov_write_loci_tag(s, pb_buf);
3840     }
3841
3842     if (s->nb_chapters && !(mov->flags & FF_MOV_FLAG_DISABLE_CHPL))
3843         mov_write_chpl_tag(pb_buf, s);
3844
3845     if ((size = avio_get_dyn_buf(pb_buf, &buf)) > 0) {
3846         avio_wb32(pb, size + 8);
3847         ffio_wfourcc(pb, "udta");
3848         avio_write(pb, buf, size);
3849     }
3850     ffio_free_dyn_buf(&pb_buf);
3851
3852     return 0;
3853 }
3854
3855 static void mov_write_psp_udta_tag(AVIOContext *pb,
3856                                    const char *str, const char *lang, int type)
3857 {
3858     int len = utf8len(str) + 1;
3859     if (len <= 0)
3860         return;
3861     avio_wb16(pb, len * 2 + 10);        /* size */
3862     avio_wb32(pb, type);                /* type */
3863     avio_wb16(pb, language_code(lang)); /* language */
3864     avio_wb16(pb, 0x01);                /* ? */
3865     ascii_to_wc(pb, str);
3866 }
3867
3868 static int mov_write_uuidusmt_tag(AVIOContext *pb, AVFormatContext *s)
3869 {
3870     AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
3871     int64_t pos, pos2;
3872
3873     if (title) {
3874         pos = avio_tell(pb);
3875         avio_wb32(pb, 0); /* size placeholder*/
3876         ffio_wfourcc(pb, "uuid");
3877         ffio_wfourcc(pb, "USMT");
3878         avio_wb32(pb, 0x21d24fce); /* 96 bit UUID */
3879         avio_wb32(pb, 0xbb88695c);
3880         avio_wb32(pb, 0xfac9c740);
3881
3882         pos2 = avio_tell(pb);
3883         avio_wb32(pb, 0); /* size placeholder*/
3884         ffio_wfourcc(pb, "MTDT");
3885         avio_wb16(pb, 4);
3886
3887         // ?
3888         avio_wb16(pb, 0x0C);                 /* size */
3889         avio_wb32(pb, 0x0B);                 /* type */
3890         avio_wb16(pb, language_code("und")); /* language */
3891         avio_wb16(pb, 0x0);                  /* ? */
3892         avio_wb16(pb, 0x021C);               /* data */
3893
3894         if (!(s->flags & AVFMT_FLAG_BITEXACT))
3895             mov_write_psp_udta_tag(pb, LIBAVCODEC_IDENT,      "eng", 0x04);
3896         mov_write_psp_udta_tag(pb, title->value,          "eng", 0x01);
3897         mov_write_psp_udta_tag(pb, "2006/04/01 11:11:11", "und", 0x03);
3898
3899         update_size(pb, pos2);
3900         return update_size(pb, pos);
3901     }
3902
3903     return 0;
3904 }
3905
3906 static void build_chunks(MOVTrack *trk)
3907 {
3908     int i;
3909     MOVIentry *chunk = &trk->cluster[0];
3910     uint64_t chunkSize = chunk->size;
3911     chunk->chunkNum = 1;
3912     if (trk->chunkCount)
3913         return;
3914     trk->chunkCount = 1;
3915     for (i = 1; i<trk->entry; i++){
3916         if (chunk->pos + chunkSize == trk->cluster[i].pos &&
3917             chunkSize + trk->cluster[i].size < (1<<20)){
3918             chunkSize             += trk->cluster[i].size;
3919             chunk->samples_in_chunk += trk->cluster[i].entries;
3920         } else {
3921             trk->cluster[i].chunkNum = chunk->chunkNum+1;
3922             chunk=&trk->cluster[i];
3923             chunkSize = chunk->size;
3924             trk->chunkCount++;
3925         }
3926     }
3927 }
3928
3929 /**
3930  * Assign track ids. If option "use_stream_ids_as_track_ids" is set,
3931  * the stream ids are used as track ids.
3932  *
3933  * This assumes mov->tracks and s->streams are in the same order and
3934  * there are no gaps in either of them (so mov->tracks[n] refers to
3935  * s->streams[n]).
3936  *
3937  * As an exception, there can be more entries in
3938  * s->streams than in mov->tracks, in which case new track ids are
3939  * generated (starting after the largest found stream id).
3940  */
3941 static int mov_setup_track_ids(MOVMuxContext *mov, AVFormatContext *s)
3942 {
3943     int i;
3944
3945     if (mov->track_ids_ok)
3946         return 0;
3947
3948     if (mov->use_stream_ids_as_track_ids) {
3949         int next_generated_track_id = 0;
3950         for (i = 0; i < s->nb_streams; i++) {
3951             if (s->streams[i]->id > next_generated_track_id)
3952                 next_generated_track_id = s->streams[i]->id;
3953         }
3954
3955         for (i = 0; i < mov->nb_streams; i++) {
3956             if (mov->tracks[i].entry <= 0 && !(mov->flags & FF_MOV_FLAG_FRAGMENT))
3957                 continue;
3958
3959             mov->tracks[i].track_id = i >= s->nb_streams ? ++next_generated_track_id : s->streams[i]->id;
3960         }
3961     } else {
3962         for (i = 0; i < mov->nb_streams; i++) {
3963             if (mov->tracks[i].entry <= 0 && !(mov->flags & FF_MOV_FLAG_FRAGMENT))
3964                 continue;
3965
3966             mov->tracks[i].track_id = i + 1;
3967         }
3968     }
3969
3970     mov->track_ids_ok = 1;
3971
3972     return 0;
3973 }
3974
3975 static int mov_write_moov_tag(AVIOContext *pb, MOVMuxContext *mov,
3976                               AVFormatContext *s)
3977 {
3978     int i;
3979     int64_t pos = avio_tell(pb);
3980     avio_wb32(pb, 0); /* size placeholder*/
3981     ffio_wfourcc(pb, "moov");
3982
3983     mov_setup_track_ids(mov, s);
3984
3985     for (i = 0; i < mov->nb_streams; i++) {
3986         if (mov->tracks[i].entry <= 0 && !(mov->flags & FF_MOV_FLAG_FRAGMENT))
3987             continue;
3988
3989         mov->tracks[i].time     = mov->time;
3990
3991         if (mov->tracks[i].entry)
3992             build_chunks(&mov->tracks[i]);
3993     }
3994
3995     if (mov->chapter_track)
3996         for (i = 0; i < s->nb_streams; i++) {
3997             mov->tracks[i].tref_tag = MKTAG('c','h','a','p');
3998             mov->tracks[i].tref_id  = mov->tracks[mov->chapter_track].track_id;
3999         }
4000     for (i = 0; i < mov->nb_streams; i++) {
4001         MOVTrack *track = &mov->tracks[i];
4002         if (track->tag == MKTAG('r','t','p',' ')) {
4003             track->tref_tag = MKTAG('h','i','n','t');
4004             track->tref_id = mov->tracks[track->src_track].track_id;
4005         } else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO) {
4006             int * fallback, size;
4007             fallback = (int*)av_stream_get_side_data(track->st,
4008                                                      AV_PKT_DATA_FALLBACK_TRACK,
4009                                                      &size);
4010             if (fallback != NULL && size == sizeof(int)) {
4011                 if (*fallback >= 0 && *fallback < mov->nb_streams) {
4012                     track->tref_tag = MKTAG('f','a','l','l');
4013                     track->tref_id = mov->tracks[*fallback].track_id;
4014                 }
4015             }
4016         }
4017     }
4018     for (i = 0; i < mov->nb_streams; i++) {
4019         if (mov->tracks[i].tag == MKTAG('t','m','c','d')) {
4020             int src_trk = mov->tracks[i].src_track;
4021             mov->tracks[src_trk].tref_tag = mov->tracks[i].tag;
4022             mov->tracks[src_trk].tref_id  = mov->tracks[i].track_id;
4023             //src_trk may have a different timescale than the tmcd track
4024             mov->tracks[i].track_duration = av_rescale(mov->tracks[src_trk].track_duration,
4025                                                        mov->tracks[i].timescale,
4026                                                        mov->tracks[src_trk].timescale);
4027         }
4028     }
4029
4030     mov_write_mvhd_tag(pb, mov);
4031     if (mov->mode != MODE_MOV && !mov->iods_skip)
4032         mov_write_iods_tag(pb, mov);
4033     for (i = 0; i < mov->nb_streams; i++) {
4034         if (mov->tracks[i].entry > 0 || mov->flags & FF_MOV_FLAG_FRAGMENT) {
4035             int ret = mov_write_trak_tag(s, pb, mov, &(mov->tracks[i]), i < s->nb_streams ? s->streams[i] : NULL);
4036             if (ret < 0)
4037                 return ret;
4038         }
4039     }
4040     if (mov->flags & FF_MOV_FLAG_FRAGMENT)
4041         mov_write_mvex_tag(pb, mov); /* QuickTime requires trak to precede this */
4042
4043     if (mov->mode == MODE_PSP)
4044         mov_write_uuidusmt_tag(pb, s);
4045     else
4046         mov_write_udta_tag(pb, mov, s);
4047
4048     return update_size(pb, pos);
4049 }
4050
4051 static void param_write_int(AVIOContext *pb, const char *name, int value)
4052 {
4053     avio_printf(pb, "<param name=\"%s\" value=\"%d\" valuetype=\"data\"/>\n", name, value);
4054 }
4055
4056 static void param_write_string(AVIOContext *pb, const char *name, const char *value)
4057 {
4058     avio_printf(pb, "<param name=\"%s\" value=\"%s\" valuetype=\"data\"/>\n", name, value);
4059 }
4060
4061 static void param_write_hex(AVIOContext *pb, const char *name, const uint8_t *value, int len)
4062 {
4063     char buf[150];
4064     len = FFMIN(sizeof(buf) / 2 - 1, len);
4065     ff_data_to_hex(buf, value, len, 0);
4066     buf[2 * len] = '\0';
4067     avio_printf(pb, "<param name=\"%s\" value=\"%s\" valuetype=\"data\"/>\n", name, buf);
4068 }
4069
4070 static int mov_write_isml_manifest(AVIOContext *pb, MOVMuxContext *mov, AVFormatContext *s)
4071 {
4072     int64_t pos = avio_tell(pb);
4073     int i;
4074     int64_t manifest_bit_rate = 0;
4075     AVCPBProperties *props = NULL;
4076
4077     static const uint8_t uuid[] = {
4078         0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd,
4079         0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66
4080     };
4081
4082     avio_wb32(pb, 0);
4083     ffio_wfourcc(pb, "uuid");
4084     avio_write(pb, uuid, sizeof(uuid));
4085     avio_wb32(pb, 0);
4086
4087     avio_printf(pb, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
4088     avio_printf(pb, "<smil xmlns=\"http://www.w3.org/2001/SMIL20/Language\">\n");
4089     avio_printf(pb, "<head>\n");
4090     if (!(mov->fc->flags & AVFMT_FLAG_BITEXACT))
4091         avio_printf(pb, "<meta name=\"creator\" content=\"%s\" />\n",
4092                     LIBAVFORMAT_IDENT);
4093     avio_printf(pb, "</head>\n");
4094     avio_printf(pb, "<body>\n");
4095     avio_printf(pb, "<switch>\n");
4096
4097     mov_setup_track_ids(mov, s);
4098
4099     for (i = 0; i < mov->nb_streams; i++) {
4100         MOVTrack *track = &mov->tracks[i];
4101         const char *type;
4102         int track_id = track->track_id;
4103         char track_name_buf[32] = { 0 };
4104
4105         AVStream *st = track->st;
4106         AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL,0);
4107
4108         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO && !is_cover_image(st)) {
4109             type = "video";
4110         } else if (track->par->codec_type == AVMEDIA_TYPE_AUDIO) {
4111             type = "audio";
4112         } else {
4113             continue;
4114         }
4115
4116         props = (AVCPBProperties*)av_stream_get_side_data(track->st, AV_PKT_DATA_CPB_PROPERTIES, NULL);
4117
4118         if (track->par->bit_rate) {
4119             manifest_bit_rate = track->par->bit_rate;
4120         } else if (props) {
4121             manifest_bit_rate = props->max_bitrate;
4122         }
4123
4124         avio_printf(pb, "<%s systemBitrate=\"%"PRId64"\">\n", type,
4125                     manifest_bit_rate);
4126         param_write_int(pb, "systemBitrate", manifest_bit_rate);
4127         param_write_int(pb, "trackID", track_id);
4128         param_write_string(pb, "systemLanguage", lang ? lang->value : "und");
4129
4130         /* Build track name piece by piece: */
4131         /* 1. track type */
4132         av_strlcat(track_name_buf, type, sizeof(track_name_buf));
4133         /* 2. track language, if available */
4134         if (lang)
4135             av_strlcatf(track_name_buf, sizeof(track_name_buf),
4136                         "_%s", lang->value);
4137         /* 3. special type suffix */
4138         /* "_cc" = closed captions, "_ad" = audio_description */
4139         if (st->disposition & AV_DISPOSITION_HEARING_IMPAIRED)
4140             av_strlcat(track_name_buf, "_cc", sizeof(track_name_buf));
4141         else if (st->disposition & AV_DISPOSITION_VISUAL_IMPAIRED)
4142             av_strlcat(track_name_buf, "_ad", sizeof(track_name_buf));
4143
4144         param_write_string(pb, "trackName", track_name_buf);
4145
4146         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
4147             if (track->par->codec_id == AV_CODEC_ID_H264) {
4148                 uint8_t *ptr;
4149                 int size = track->par->extradata_size;
4150                 if (!ff_avc_write_annexb_extradata(track->par->extradata, &ptr,
4151                                                    &size)) {
4152                     param_write_hex(pb, "CodecPrivateData",
4153                                     ptr ? ptr : track->par->extradata,
4154                                     size);
4155                     av_free(ptr);
4156                 }
4157                 param_write_string(pb, "FourCC", "H264");
4158             } else if (track->par->codec_id == AV_CODEC_ID_VC1) {
4159                 param_write_string(pb, "FourCC", "WVC1");
4160                 param_write_hex(pb, "CodecPrivateData", track->par->extradata,
4161                                 track->par->extradata_size);
4162             }
4163             param_write_int(pb, "MaxWidth", track->par->width);
4164             param_write_int(pb, "MaxHeight", track->par->height);
4165             param_write_int(pb, "DisplayWidth", track->par->width);
4166             param_write_int(pb, "DisplayHeight", track->par->height);
4167         } else {
4168             if (track->par->codec_id == AV_CODEC_ID_AAC) {
4169                 switch (track->par->profile)
4170                 {
4171                     case FF_PROFILE_AAC_HE_V2:
4172                         param_write_string(pb, "FourCC", "AACP");
4173                         break;
4174                     case FF_PROFILE_AAC_HE:
4175                         param_write_string(pb, "FourCC", "AACH");
4176                         break;
4177                     default:
4178                         param_write_string(pb, "FourCC", "AACL");
4179                 }
4180             } else if (track->par->codec_id == AV_CODEC_ID_WMAPRO) {
4181                 param_write_string(pb, "FourCC", "WMAP");
4182             }
4183             param_write_hex(pb, "CodecPrivateData", track->par->extradata,
4184                             track->par->extradata_size);
4185             param_write_int(pb, "AudioTag", ff_codec_get_tag(ff_codec_wav_tags,
4186                                                              track->par->codec_id));
4187             param_write_int(pb, "Channels", track->par->channels);
4188             param_write_int(pb, "SamplingRate", track->par->sample_rate);
4189             param_write_int(pb, "BitsPerSample", 16);
4190             param_write_int(pb, "PacketSize", track->par->block_align ?
4191                                               track->par->block_align : 4);
4192         }
4193         avio_printf(pb, "</%s>\n", type);
4194     }
4195     avio_printf(pb, "</switch>\n");
4196     avio_printf(pb, "</body>\n");
4197     avio_printf(pb, "</smil>\n");
4198
4199     return update_size(pb, pos);
4200 }
4201
4202 static int mov_write_mfhd_tag(AVIOContext *pb, MOVMuxContext *mov)
4203 {
4204     avio_wb32(pb, 16);
4205     ffio_wfourcc(pb, "mfhd");
4206     avio_wb32(pb, 0);
4207     avio_wb32(pb, mov->fragments);
4208     return 0;
4209 }
4210
4211 static uint32_t get_sample_flags(MOVTrack *track, MOVIentry *entry)
4212 {
4213     return entry->flags & MOV_SYNC_SAMPLE ? MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO :
4214            (MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES | MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC);
4215 }
4216
4217 static int mov_write_tfhd_tag(AVIOContext *pb, MOVMuxContext *mov,
4218                               MOVTrack *track, int64_t moof_offset)
4219 {
4220     int64_t pos = avio_tell(pb);
4221     uint32_t flags = MOV_TFHD_DEFAULT_SIZE | MOV_TFHD_DEFAULT_DURATION |
4222                      MOV_TFHD_BASE_DATA_OFFSET;
4223     if (!track->entry) {
4224         flags |= MOV_TFHD_DURATION_IS_EMPTY;
4225     } else {
4226         flags |= MOV_TFHD_DEFAULT_FLAGS;
4227     }
4228     if (mov->flags & FF_MOV_FLAG_OMIT_TFHD_OFFSET)
4229         flags &= ~MOV_TFHD_BASE_DATA_OFFSET;
4230     if (mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF) {
4231         flags &= ~MOV_TFHD_BASE_DATA_OFFSET;
4232         flags |= MOV_TFHD_DEFAULT_BASE_IS_MOOF;
4233     }
4234
4235     /* Don't set a default sample size, the silverlight player refuses
4236      * to play files with that set. Don't set a default sample duration,
4237      * WMP freaks out if it is set. Don't set a base data offset, PIFF
4238      * file format says it MUST NOT be set. */
4239     if (track->mode == MODE_ISM)
4240         flags &= ~(MOV_TFHD_DEFAULT_SIZE | MOV_TFHD_DEFAULT_DURATION |
4241                    MOV_TFHD_BASE_DATA_OFFSET);
4242
4243     avio_wb32(pb, 0); /* size placeholder */
4244     ffio_wfourcc(pb, "tfhd");
4245     avio_w8(pb, 0); /* version */
4246     avio_wb24(pb, flags);
4247
4248     avio_wb32(pb, track->track_id); /* track-id */
4249     if (flags & MOV_TFHD_BASE_DATA_OFFSET)
4250         avio_wb64(pb, moof_offset);
4251     if (flags & MOV_TFHD_DEFAULT_DURATION) {
4252         track->default_duration = get_cluster_duration(track, 0);
4253         avio_wb32(pb, track->default_duration);
4254     }
4255     if (flags & MOV_TFHD_DEFAULT_SIZE) {
4256         track->default_size = track->entry ? track->cluster[0].size : 1;
4257         avio_wb32(pb, track->default_size);
4258     } else
4259         track->default_size = -1;
4260
4261     if (flags & MOV_TFHD_DEFAULT_FLAGS) {
4262         /* Set the default flags based on the second sample, if available.
4263          * If the first sample is different, that can be signaled via a separate field. */
4264         if (track->entry > 1)
4265             track->default_sample_flags = get_sample_flags(track, &track->cluster[1]);
4266         else
4267             track->default_sample_flags =
4268                 track->par->codec_type == AVMEDIA_TYPE_VIDEO ?
4269                 (MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES | MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC) :
4270                 MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO;
4271         avio_wb32(pb, track->default_sample_flags);
4272     }
4273
4274     return update_size(pb, pos);
4275 }
4276
4277 static int mov_write_trun_tag(AVIOContext *pb, MOVMuxContext *mov,
4278                               MOVTrack *track, int moof_size,
4279                               int first, int end)
4280 {
4281     int64_t pos = avio_tell(pb);
4282     uint32_t flags = MOV_TRUN_DATA_OFFSET;
4283     int i;
4284
4285     for (i = first; i < end; i++) {
4286         if (get_cluster_duration(track, i) != track->default_duration)
4287             flags |= MOV_TRUN_SAMPLE_DURATION;
4288         if (track->cluster[i].size != track->default_size)
4289             flags |= MOV_TRUN_SAMPLE_SIZE;
4290         if (i > first && get_sample_flags(track, &track->cluster[i]) != track->default_sample_flags)
4291             flags |= MOV_TRUN_SAMPLE_FLAGS;
4292     }
4293     if (!(flags & MOV_TRUN_SAMPLE_FLAGS) && track->entry > 0 &&
4294          get_sample_flags(track, &track->cluster[0]) != track->default_sample_flags)
4295         flags |= MOV_TRUN_FIRST_SAMPLE_FLAGS;
4296     if (track->flags & MOV_TRACK_CTTS)
4297         flags |= MOV_TRUN_SAMPLE_CTS;
4298
4299     avio_wb32(pb, 0); /* size placeholder */
4300     ffio_wfourcc(pb, "trun");
4301     if (mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS)
4302         avio_w8(pb, 1); /* version */
4303     else
4304         avio_w8(pb, 0); /* version */
4305     avio_wb24(pb, flags);
4306
4307     avio_wb32(pb, end - first); /* sample count */
4308     if (mov->flags & FF_MOV_FLAG_OMIT_TFHD_OFFSET &&
4309         !(mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF) &&
4310         !mov->first_trun)
4311         avio_wb32(pb, 0); /* Later tracks follow immediately after the previous one */
4312     else
4313         avio_wb32(pb, moof_size + 8 + track->data_offset +
4314                       track->cluster[first].pos); /* data offset */
4315     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS)
4316         avio_wb32(pb, get_sample_flags(track, &track->cluster[first]));
4317
4318     for (i = first; i < end; i++) {
4319         if (flags & MOV_TRUN_SAMPLE_DURATION)
4320             avio_wb32(pb, get_cluster_duration(track, i));
4321         if (flags & MOV_TRUN_SAMPLE_SIZE)
4322             avio_wb32(pb, track->cluster[i].size);
4323         if (flags & MOV_TRUN_SAMPLE_FLAGS)
4324             avio_wb32(pb, get_sample_flags(track, &track->cluster[i]));
4325         if (flags & MOV_TRUN_SAMPLE_CTS)
4326             avio_wb32(pb, track->cluster[i].cts);
4327     }
4328
4329     mov->first_trun = 0;
4330     return update_size(pb, pos);
4331 }
4332
4333 static int mov_write_tfxd_tag(AVIOContext *pb, MOVTrack *track)
4334 {
4335     int64_t pos = avio_tell(pb);
4336     static const uint8_t uuid[] = {
4337         0x6d, 0x1d, 0x9b, 0x05, 0x42, 0xd5, 0x44, 0xe6,
4338         0x80, 0xe2, 0x14, 0x1d, 0xaf, 0xf7, 0x57, 0xb2
4339     };
4340
4341     avio_wb32(pb, 0); /* size placeholder */
4342     ffio_wfourcc(pb, "uuid");
4343     avio_write(pb, uuid, sizeof(uuid));
4344     avio_w8(pb, 1);
4345     avio_wb24(pb, 0);
4346     avio_wb64(pb, track->start_dts + track->frag_start +
4347                   track->cluster[0].cts);
4348     avio_wb64(pb, track->end_pts -
4349                   (track->cluster[0].dts + track->cluster[0].cts));
4350
4351     return update_size(pb, pos);
4352 }
4353
4354 static int mov_write_tfrf_tag(AVIOContext *pb, MOVMuxContext *mov,
4355                               MOVTrack *track, int entry)
4356 {
4357     int n = track->nb_frag_info - 1 - entry, i;
4358     int size = 8 + 16 + 4 + 1 + 16*n;
4359     static const uint8_t uuid[] = {
4360         0xd4, 0x80, 0x7e, 0xf2, 0xca, 0x39, 0x46, 0x95,
4361         0x8e, 0x54, 0x26, 0xcb, 0x9e, 0x46, 0xa7, 0x9f
4362     };
4363
4364     if (entry < 0)
4365         return 0;
4366
4367     avio_seek(pb, track->frag_info[entry].tfrf_offset, SEEK_SET);
4368     avio_wb32(pb, size);
4369     ffio_wfourcc(pb, "uuid");
4370     avio_write(pb, uuid, sizeof(uuid));
4371     avio_w8(pb, 1);
4372     avio_wb24(pb, 0);
4373     avio_w8(pb, n);
4374     for (i = 0; i < n; i++) {
4375         int index = entry + 1 + i;
4376         avio_wb64(pb, track->frag_info[index].time);
4377         avio_wb64(pb, track->frag_info[index].duration);
4378     }
4379     if (n < mov->ism_lookahead) {
4380         int free_size = 16 * (mov->ism_lookahead - n);
4381         avio_wb32(pb, free_size);
4382         ffio_wfourcc(pb, "free");
4383         ffio_fill(pb, 0, free_size - 8);
4384     }
4385
4386     return 0;
4387 }
4388
4389 static int mov_write_tfrf_tags(AVIOContext *pb, MOVMuxContext *mov,
4390                                MOVTrack *track)
4391 {
4392     int64_t pos = avio_tell(pb);
4393     int i;
4394     for (i = 0; i < mov->ism_lookahead; i++) {
4395         /* Update the tfrf tag for the last ism_lookahead fragments,
4396          * nb_frag_info - 1 is the next fragment to be written. */
4397         mov_write_tfrf_tag(pb, mov, track, track->nb_frag_info - 2 - i);
4398     }
4399     avio_seek(pb, pos, SEEK_SET);
4400     return 0;
4401 }
4402
4403 static int mov_add_tfra_entries(AVIOContext *pb, MOVMuxContext *mov, int tracks,
4404                                 int size)
4405 {
4406     int i;
4407     for (i = 0; i < mov->nb_streams; i++) {
4408         MOVTrack *track = &mov->tracks[i];
4409         MOVFragmentInfo *info;
4410         if ((tracks >= 0 && i != tracks) || !track->entry)
4411             continue;
4412         track->nb_frag_info++;
4413         if (track->nb_frag_info >= track->frag_info_capacity) {
4414             unsigned new_capacity = track->nb_frag_info + MOV_FRAG_INFO_ALLOC_INCREMENT;
4415             if (av_reallocp_array(&track->frag_info,
4416                                   new_capacity,
4417                                   sizeof(*track->frag_info)))
4418                 return AVERROR(ENOMEM);
4419             track->frag_info_capacity = new_capacity;
4420         }
4421         info = &track->frag_info[track->nb_frag_info - 1];
4422         info->offset   = avio_tell(pb);
4423         info->size     = size;
4424         // Try to recreate the original pts for the first packet
4425         // from the fields we have stored
4426         info->time     = track->start_dts + track->frag_start +
4427                          track->cluster[0].cts;
4428         info->duration = track->end_pts -
4429                          (track->cluster[0].dts + track->cluster[0].cts);
4430         // If the pts is less than zero, we will have trimmed
4431         // away parts of the media track using an edit list,
4432         // and the corresponding start presentation time is zero.
4433         if (info->time < 0) {
4434             info->duration += info->time;
4435             info->time = 0;
4436         }
4437         info->tfrf_offset = 0;
4438         mov_write_tfrf_tags(pb, mov, track);
4439     }
4440     return 0;
4441 }
4442
4443 static void mov_prune_frag_info(MOVMuxContext *mov, int tracks, int max)
4444 {
4445     int i;
4446     for (i = 0; i < mov->nb_streams; i++) {
4447         MOVTrack *track = &mov->tracks[i];
4448         if ((tracks >= 0 && i != tracks) || !track->entry)
4449             continue;
4450         if (track->nb_frag_info > max) {
4451             memmove(track->frag_info, track->frag_info + (track->nb_frag_info - max), max * sizeof(*track->frag_info));
4452             track->nb_frag_info = max;
4453         }
4454     }
4455 }
4456
4457 static int mov_write_tfdt_tag(AVIOContext *pb, MOVTrack *track)
4458 {
4459     int64_t pos = avio_tell(pb);
4460
4461     avio_wb32(pb, 0); /* size */
4462     ffio_wfourcc(pb, "tfdt");
4463     avio_w8(pb, 1); /* version */
4464     avio_wb24(pb, 0);
4465     avio_wb64(pb, track->frag_start);
4466     return update_size(pb, pos);
4467 }
4468
4469 static int mov_write_traf_tag(AVIOContext *pb, MOVMuxContext *mov,
4470                               MOVTrack *track, int64_t moof_offset,
4471                               int moof_size)
4472 {
4473     int64_t pos = avio_tell(pb);
4474     int i, start = 0;
4475     avio_wb32(pb, 0); /* size placeholder */
4476     ffio_wfourcc(pb, "traf");
4477
4478     mov_write_tfhd_tag(pb, mov, track, moof_offset);
4479     if (mov->mode != MODE_ISM)
4480         mov_write_tfdt_tag(pb, track);
4481     for (i = 1; i < track->entry; i++) {
4482         if (track->cluster[i].pos != track->cluster[i - 1].pos + track->cluster[i - 1].size) {
4483             mov_write_trun_tag(pb, mov, track, moof_size, start, i);
4484             start = i;
4485         }
4486     }
4487     mov_write_trun_tag(pb, mov, track, moof_size, start, track->entry);
4488     if (mov->mode == MODE_ISM) {
4489         mov_write_tfxd_tag(pb, track);
4490
4491         if (mov->ism_lookahead) {
4492             int i, size = 16 + 4 + 1 + 16 * mov->ism_lookahead;
4493
4494             if (track->nb_frag_info > 0) {
4495                 MOVFragmentInfo *info = &track->frag_info[track->nb_frag_info - 1];
4496                 if (!info->tfrf_offset)
4497                     info->tfrf_offset = avio_tell(pb);
4498             }
4499             avio_wb32(pb, 8 + size);
4500             ffio_wfourcc(pb, "free");
4501             for (i = 0; i < size; i++)
4502                 avio_w8(pb, 0);
4503         }
4504     }
4505
4506     return update_size(pb, pos);
4507 }
4508
4509 static int mov_write_moof_tag_internal(AVIOContext *pb, MOVMuxContext *mov,
4510                                        int tracks, int moof_size)
4511 {
4512     int64_t pos = avio_tell(pb);
4513     int i;
4514
4515     avio_wb32(pb, 0); /* size placeholder */
4516     ffio_wfourcc(pb, "moof");
4517     mov->first_trun = 1;
4518
4519     mov_write_mfhd_tag(pb, mov);
4520     for (i = 0; i < mov->nb_streams; i++) {
4521         MOVTrack *track = &mov->tracks[i];
4522         if (tracks >= 0 && i != tracks)
4523             continue;
4524         if (!track->entry)
4525             continue;
4526         mov_write_traf_tag(pb, mov, track, pos, moof_size);
4527     }
4528
4529     return update_size(pb, pos);
4530 }
4531
4532 static int mov_write_sidx_tag(AVIOContext *pb,
4533                               MOVTrack *track, int ref_size, int total_sidx_size)
4534 {
4535     int64_t pos = avio_tell(pb), offset_pos, end_pos;
4536     int64_t presentation_time, duration, offset;
4537     unsigned starts_with_SAP;
4538     int i, entries;
4539
4540     if (track->entry) {
4541         entries = 1;
4542         presentation_time = track->start_dts + track->frag_start +
4543                             track->cluster[0].cts;
4544         duration = track->end_pts -
4545                    (track->cluster[0].dts + track->cluster[0].cts);
4546         starts_with_SAP = track->cluster[0].flags & MOV_SYNC_SAMPLE;
4547
4548         // pts<0 should be cut away using edts
4549         if (presentation_time < 0) {
4550             duration += presentation_time;
4551             presentation_time = 0;
4552         }
4553     } else {
4554         entries = track->nb_frag_info;
4555         if (entries <= 0)
4556             return 0;
4557         presentation_time = track->frag_info[0].time;
4558     }
4559
4560     avio_wb32(pb, 0); /* size */
4561     ffio_wfourcc(pb, "sidx");
4562     avio_w8(pb, 1); /* version */
4563     avio_wb24(pb, 0);
4564     avio_wb32(pb, track->track_id); /* reference_ID */
4565     avio_wb32(pb, track->timescale); /* timescale */
4566     avio_wb64(pb, presentation_time); /* earliest_presentation_time */
4567     offset_pos = avio_tell(pb);
4568     avio_wb64(pb, 0); /* first_offset (offset to referenced moof) */
4569     avio_wb16(pb, 0); /* reserved */
4570
4571     avio_wb16(pb, entries); /* reference_count */
4572     for (i = 0; i < entries; i++) {
4573         if (!track->entry) {
4574             if (i > 1 && track->frag_info[i].offset != track->frag_info[i - 1].offset + track->frag_info[i - 1].size) {
4575                av_log(NULL, AV_LOG_ERROR, "Non-consecutive fragments, writing incorrect sidx\n");
4576             }
4577             duration = track->frag_info[i].duration;
4578             ref_size = track->frag_info[i].size;
4579             starts_with_SAP = 1;
4580         }
4581         avio_wb32(pb, (0 << 31) | (ref_size & 0x7fffffff)); /* reference_type (0 = media) | referenced_size */
4582         avio_wb32(pb, duration); /* subsegment_duration */
4583         avio_wb32(pb, (starts_with_SAP << 31) | (0 << 28) | 0); /* starts_with_SAP | SAP_type | SAP_delta_time */
4584     }
4585
4586     end_pos = avio_tell(pb);
4587     offset = pos + total_sidx_size - end_pos;
4588     avio_seek(pb, offset_pos, SEEK_SET);
4589     avio_wb64(pb, offset);
4590     avio_seek(pb, end_pos, SEEK_SET);
4591     return update_size(pb, pos);
4592 }
4593
4594 static int mov_write_sidx_tags(AVIOContext *pb, MOVMuxContext *mov,
4595                                int tracks, int ref_size)
4596 {
4597     int i, round, ret;
4598     AVIOContext *avio_buf;
4599     int total_size = 0;
4600     for (round = 0; round < 2; round++) {
4601         // First run one round to calculate the total size of all
4602         // sidx atoms.
4603         // This would be much simpler if we'd only write one sidx
4604         // atom, for the first track in the moof.
4605         if (round == 0) {
4606             if ((ret = ffio_open_null_buf(&avio_buf)) < 0)
4607                 return ret;
4608         } else {
4609             avio_buf = pb;
4610         }
4611         for (i = 0; i < mov->nb_streams; i++) {
4612             MOVTrack *track = &mov->tracks[i];
4613             if (tracks >= 0 && i != tracks)
4614                 continue;
4615             // When writing a sidx for the full file, entry is 0, but
4616             // we want to include all tracks. ref_size is 0 in this case,
4617             // since we read it from frag_info instead.
4618             if (!track->entry && ref_size > 0)
4619                 continue;
4620             total_size -= mov_write_sidx_tag(avio_buf, track, ref_size,
4621                                              total_size);
4622         }
4623         if (round == 0)
4624             total_size = ffio_close_null_buf(avio_buf);
4625     }
4626     return 0;
4627 }
4628
4629 static int mov_write_prft_tag(AVIOContext *pb, MOVMuxContext *mov, int tracks)
4630 {
4631     int64_t pos = avio_tell(pb), pts_us, ntp_ts;
4632     MOVTrack *first_track;
4633     int flags = 24;
4634
4635     /* PRFT should be associated with at most one track. So, choosing only the
4636      * first track. */
4637     if (tracks > 0)
4638         return 0;
4639     first_track = &(mov->tracks[0]);
4640
4641     if (!first_track->entry) {
4642         av_log(mov->fc, AV_LOG_WARNING, "Unable to write PRFT, no entries in the track\n");
4643         return 0;
4644     }
4645
4646     if (first_track->cluster[0].pts == AV_NOPTS_VALUE) {
4647         av_log(mov->fc, AV_LOG_WARNING, "Unable to write PRFT, first PTS is invalid\n");
4648         return 0;
4649     }
4650
4651     if (mov->write_prft == MOV_PRFT_SRC_WALLCLOCK) {
4652         if (first_track->cluster[0].prft.wallclock) {
4653             ntp_ts = ff_get_formatted_ntp_time(ff_ntp_time(first_track->cluster[0].prft.wallclock));
4654             flags = first_track->cluster[0].prft.flags;
4655         } else
4656             ntp_ts = ff_get_formatted_ntp_time(ff_ntp_time(av_gettime()));
4657     } else if (mov->write_prft == MOV_PRFT_SRC_PTS) {
4658         pts_us = av_rescale_q(first_track->cluster[0].pts,
4659                               first_track->st->time_base, AV_TIME_BASE_Q);
4660         ntp_ts = ff_get_formatted_ntp_time(pts_us + NTP_OFFSET_US);
4661     } else {
4662         av_log(mov->fc, AV_LOG_WARNING, "Unsupported PRFT box configuration: %d\n",
4663                mov->write_prft);
4664         return 0;
4665     }
4666
4667     avio_wb32(pb, 0);                           // Size place holder
4668     ffio_wfourcc(pb, "prft");                   // Type
4669     avio_w8(pb, 1);                             // Version
4670     avio_wb24(pb, flags);                       // Flags
4671     avio_wb32(pb, first_track->track_id);       // reference track ID
4672     avio_wb64(pb, ntp_ts);                      // NTP time stamp
4673     avio_wb64(pb, first_track->cluster[0].pts); //media time
4674     return update_size(pb, pos);
4675 }
4676
4677 static int mov_write_moof_tag(AVIOContext *pb, MOVMuxContext *mov, int tracks,
4678                               int64_t mdat_size)
4679 {
4680     AVIOContext *avio_buf;
4681     int ret, moof_size;
4682
4683     if ((ret = ffio_open_null_buf(&avio_buf)) < 0)
4684         return ret;
4685     mov_write_moof_tag_internal(avio_buf, mov, tracks, 0);
4686     moof_size = ffio_close_null_buf(avio_buf);
4687
4688     if (mov->flags & FF_MOV_FLAG_DASH &&
4689         !(mov->flags & (FF_MOV_FLAG_GLOBAL_SIDX | FF_MOV_FLAG_SKIP_SIDX)))
4690         mov_write_sidx_tags(pb, mov, tracks, moof_size + 8 + mdat_size);
4691
4692     if (mov->write_prft > MOV_PRFT_NONE && mov->write_prft < MOV_PRFT_NB)
4693         mov_write_prft_tag(pb, mov, tracks);
4694
4695     if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX ||
4696         !(mov->flags & FF_MOV_FLAG_SKIP_TRAILER) ||
4697         mov->ism_lookahead) {
4698         if ((ret = mov_add_tfra_entries(pb, mov, tracks, moof_size + 8 + mdat_size)) < 0)
4699             return ret;
4700         if (!(mov->flags & FF_MOV_FLAG_GLOBAL_SIDX) &&
4701             mov->flags & FF_MOV_FLAG_SKIP_TRAILER) {
4702             mov_prune_frag_info(mov, tracks, mov->ism_lookahead + 1);
4703         }
4704     }
4705
4706     return mov_write_moof_tag_internal(pb, mov, tracks, moof_size);
4707 }
4708
4709 static int mov_write_tfra_tag(AVIOContext *pb, MOVTrack *track)
4710 {
4711     int64_t pos = avio_tell(pb);
4712     int i;
4713
4714     avio_wb32(pb, 0); /* size placeholder */
4715     ffio_wfourcc(pb, "tfra");
4716     avio_w8(pb, 1); /* version */
4717     avio_wb24(pb, 0);
4718
4719     avio_wb32(pb, track->track_id);
4720     avio_wb32(pb, 0); /* length of traf/trun/sample num */
4721     avio_wb32(pb, track->nb_frag_info);
4722     for (i = 0; i < track->nb_frag_info; i++) {
4723         avio_wb64(pb, track->frag_info[i].time);
4724         avio_wb64(pb, track->frag_info[i].offset + track->data_offset);
4725         avio_w8(pb, 1); /* traf number */
4726         avio_w8(pb, 1); /* trun number */
4727         avio_w8(pb, 1); /* sample number */
4728     }
4729
4730     return update_size(pb, pos);
4731 }
4732
4733 static int mov_write_mfra_tag(AVIOContext *pb, MOVMuxContext *mov)
4734 {
4735     int64_t pos = avio_tell(pb);
4736     int i;
4737
4738     avio_wb32(pb, 0); /* size placeholder */
4739     ffio_wfourcc(pb, "mfra");
4740     /* An empty mfra atom is enough to indicate to the publishing point that
4741      * the stream has ended. */
4742     if (mov->flags & FF_MOV_FLAG_ISML)
4743         return update_size(pb, pos);
4744
4745     for (i = 0; i < mov->nb_streams; i++) {
4746         MOVTrack *track = &mov->tracks[i];
4747         if (track->nb_frag_info)
4748             mov_write_tfra_tag(pb, track);
4749     }
4750
4751     avio_wb32(pb, 16);
4752     ffio_wfourcc(pb, "mfro");
4753     avio_wb32(pb, 0); /* version + flags */
4754     avio_wb32(pb, avio_tell(pb) + 4 - pos);
4755
4756     return update_size(pb, pos);
4757 }
4758
4759 static int mov_write_mdat_tag(AVIOContext *pb, MOVMuxContext *mov)
4760 {
4761     avio_wb32(pb, 8);    // placeholder for extended size field (64 bit)
4762     ffio_wfourcc(pb, mov->mode == MODE_MOV ? "wide" : "free");
4763
4764     mov->mdat_pos = avio_tell(pb);
4765     avio_wb32(pb, 0); /* size placeholder*/
4766     ffio_wfourcc(pb, "mdat");
4767     return 0;
4768 }
4769
4770 static void mov_write_ftyp_tag_internal(AVIOContext *pb, AVFormatContext *s,
4771                                         int has_h264, int has_video, int write_minor)
4772 {
4773     MOVMuxContext *mov = s->priv_data;
4774     int minor = 0x200;
4775
4776     if (mov->major_brand && strlen(mov->major_brand) >= 4)
4777         ffio_wfourcc(pb, mov->major_brand);
4778     else if (mov->mode == MODE_3GP) {
4779         ffio_wfourcc(pb, has_h264 ? "3gp6"  : "3gp4");
4780         minor =     has_h264 ?   0x100 :   0x200;
4781     } else if (mov->mode & MODE_3G2) {
4782         ffio_wfourcc(pb, has_h264 ? "3g2b"  : "3g2a");
4783         minor =     has_h264 ? 0x20000 : 0x10000;
4784     } else if (mov->mode == MODE_PSP)
4785         ffio_wfourcc(pb, "MSNV");
4786     else if (mov->mode == MODE_MP4 && mov->flags & FF_MOV_FLAG_FRAGMENT &&
4787                                       mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS)
4788         ffio_wfourcc(pb, "iso6"); // Required when using signed CTS offsets in trun boxes
4789     else if (mov->mode == MODE_MP4 && mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)
4790         ffio_wfourcc(pb, "iso5"); // Required when using default-base-is-moof
4791     else if (mov->mode == MODE_MP4 && mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS)
4792         ffio_wfourcc(pb, "iso4");
4793     else if (mov->mode == MODE_MP4)
4794         ffio_wfourcc(pb, "isom");
4795     else if (mov->mode == MODE_IPOD)
4796         ffio_wfourcc(pb, has_video ? "M4V ":"M4A ");
4797     else if (mov->mode == MODE_ISM)
4798         ffio_wfourcc(pb, "isml");
4799     else if (mov->mode == MODE_F4V)
4800         ffio_wfourcc(pb, "f4v ");
4801     else
4802         ffio_wfourcc(pb, "qt  ");
4803
4804     if (write_minor)
4805         avio_wb32(pb, minor);
4806 }
4807
4808 static int mov_write_ftyp_tag(AVIOContext *pb, AVFormatContext *s)
4809 {
4810     MOVMuxContext *mov = s->priv_data;
4811     int64_t pos = avio_tell(pb);
4812     int has_h264 = 0, has_video = 0;
4813     int i;
4814
4815     for (i = 0; i < s->nb_streams; i++) {
4816         AVStream *st = s->streams[i];
4817         if (is_cover_image(st))
4818             continue;
4819         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
4820             has_video = 1;
4821         if (st->codecpar->codec_id == AV_CODEC_ID_H264)
4822             has_h264 = 1;
4823     }
4824
4825     avio_wb32(pb, 0); /* size */
4826     ffio_wfourcc(pb, "ftyp");
4827
4828     // Write major brand
4829     mov_write_ftyp_tag_internal(pb, s, has_h264, has_video, 1);
4830     // Write the major brand as the first compatible brand as well
4831     mov_write_ftyp_tag_internal(pb, s, has_h264, has_video, 0);
4832
4833     // Write compatible brands, ensuring that we don't write the major brand as a
4834     // compatible brand a second time.
4835     if (mov->mode == MODE_ISM) {
4836         ffio_wfourcc(pb, "piff");
4837     } else if (mov->mode != MODE_MOV) {
4838         // We add tfdt atoms when fragmenting, signal this with the iso6 compatible
4839         // brand, if not already the major brand. This is compatible with users that
4840         // don't understand tfdt.
4841         if (mov->mode == MODE_MP4) {
4842             if (mov->flags & FF_MOV_FLAG_FRAGMENT && !(mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS))
4843                 ffio_wfourcc(pb, "iso6");
4844         } else {
4845             if (mov->flags & FF_MOV_FLAG_FRAGMENT)
4846                 ffio_wfourcc(pb, "iso6");
4847             if (mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)
4848                 ffio_wfourcc(pb, "iso5");
4849             else if (mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS)
4850                 ffio_wfourcc(pb, "iso4");
4851         }
4852         // Brands prior to iso5 can't be signaled when using default-base-is-moof
4853         if (!(mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)) {
4854             // write isom for mp4 only if it it's not the major brand already.
4855             if (mov->mode != MODE_MP4 || mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS)
4856                 ffio_wfourcc(pb, "isom");
4857             ffio_wfourcc(pb, "iso2");
4858             if (has_h264)
4859                 ffio_wfourcc(pb, "avc1");
4860         }
4861     }
4862
4863     if (mov->mode == MODE_MP4)
4864         ffio_wfourcc(pb, "mp41");
4865
4866     if (mov->flags & FF_MOV_FLAG_DASH && mov->flags & FF_MOV_FLAG_GLOBAL_SIDX)
4867         ffio_wfourcc(pb, "dash");
4868
4869     return update_size(pb, pos);
4870 }
4871
4872 static int mov_write_uuidprof_tag(AVIOContext *pb, AVFormatContext *s)
4873 {
4874     AVStream       *video_st    = s->streams[0];
4875     AVCodecParameters *video_par = s->streams[0]->codecpar;
4876     AVCodecParameters *audio_par = s->streams[1]->codecpar;
4877     int audio_rate = audio_par->sample_rate;
4878     int64_t frame_rate = video_st->avg_frame_rate.den ?
4879                         (video_st->avg_frame_rate.num * 0x10000LL) / video_st->avg_frame_rate.den :
4880                         0;
4881     int audio_kbitrate = audio_par->bit_rate / 1000;
4882     int video_kbitrate = FFMIN(video_par->bit_rate / 1000, 800 - audio_kbitrate);
4883
4884     if (frame_rate < 0 || frame_rate > INT32_MAX) {
4885         av_log(s, AV_LOG_ERROR, "Frame rate %f outside supported range\n", frame_rate / (double)0x10000);
4886         return AVERROR(EINVAL);
4887     }
4888
4889     avio_wb32(pb, 0x94); /* size */
4890     ffio_wfourcc(pb, "uuid");
4891     ffio_wfourcc(pb, "PROF");
4892
4893     avio_wb32(pb, 0x21d24fce); /* 96 bit UUID */
4894     avio_wb32(pb, 0xbb88695c);
4895     avio_wb32(pb, 0xfac9c740);
4896
4897     avio_wb32(pb, 0x0);  /* ? */
4898     avio_wb32(pb, 0x3);  /* 3 sections ? */
4899
4900     avio_wb32(pb, 0x14); /* size */
4901     ffio_wfourcc(pb, "FPRF");
4902     avio_wb32(pb, 0x0);  /* ? */
4903     avio_wb32(pb, 0x0);  /* ? */
4904     avio_wb32(pb, 0x0);  /* ? */
4905
4906     avio_wb32(pb, 0x2c);  /* size */
4907     ffio_wfourcc(pb, "APRF"); /* audio */
4908     avio_wb32(pb, 0x0);
4909     avio_wb32(pb, 0x2);   /* TrackID */
4910     ffio_wfourcc(pb, "mp4a");
4911     avio_wb32(pb, 0x20f);
4912     avio_wb32(pb, 0x0);
4913     avio_wb32(pb, audio_kbitrate);
4914     avio_wb32(pb, audio_kbitrate);
4915     avio_wb32(pb, audio_rate);
4916     avio_wb32(pb, audio_par->channels);
4917
4918     avio_wb32(pb, 0x34);  /* size */
4919     ffio_wfourcc(pb, "VPRF");   /* video */
4920     avio_wb32(pb, 0x0);
4921     avio_wb32(pb, 0x1);    /* TrackID */
4922     if (video_par->codec_id == AV_CODEC_ID_H264) {
4923         ffio_wfourcc(pb, "avc1");
4924         avio_wb16(pb, 0x014D);
4925         avio_wb16(pb, 0x0015);
4926     } else {
4927         ffio_wfourcc(pb, "mp4v");
4928         avio_wb16(pb, 0x0000);
4929         avio_wb16(pb, 0x0103);
4930     }
4931     avio_wb32(pb, 0x0);
4932     avio_wb32(pb, video_kbitrate);
4933     avio_wb32(pb, video_kbitrate);
4934     avio_wb32(pb, frame_rate);
4935     avio_wb32(pb, frame_rate);
4936     avio_wb16(pb, video_par->width);
4937     avio_wb16(pb, video_par->height);
4938     avio_wb32(pb, 0x010001); /* ? */
4939
4940     return 0;
4941 }
4942
4943 static int mov_write_identification(AVIOContext *pb, AVFormatContext *s)
4944 {
4945     MOVMuxContext *mov = s->priv_data;
4946     int i;
4947
4948     mov_write_ftyp_tag(pb,s);
4949     if (mov->mode == MODE_PSP) {
4950         int video_streams_nb = 0, audio_streams_nb = 0, other_streams_nb = 0;
4951         for (i = 0; i < s->nb_streams; i++) {
4952             AVStream *st = s->streams[i];
4953             if (is_cover_image(st))
4954                 continue;
4955             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO)
4956                 video_streams_nb++;
4957             else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO)
4958                 audio_streams_nb++;
4959             else
4960                 other_streams_nb++;
4961             }
4962
4963         if (video_streams_nb != 1 || audio_streams_nb != 1 || other_streams_nb) {
4964             av_log(s, AV_LOG_ERROR, "PSP mode need one video and one audio stream\n");
4965             return AVERROR(EINVAL);
4966         }
4967         return mov_write_uuidprof_tag(pb, s);
4968     }
4969     return 0;
4970 }
4971
4972 static int mov_parse_mpeg2_frame(AVPacket *pkt, uint32_t *flags)
4973 {
4974     uint32_t c = -1;
4975     int i, closed_gop = 0;
4976
4977     for (i = 0; i < pkt->size - 4; i++) {
4978         c = (c << 8) + pkt->data[i];
4979         if (c == 0x1b8) { // gop
4980             closed_gop = pkt->data[i + 4] >> 6 & 0x01;
4981         } else if (c == 0x100) { // pic
4982             int temp_ref = (pkt->data[i + 1] << 2) | (pkt->data[i + 2] >> 6);
4983             if (!temp_ref || closed_gop) // I picture is not reordered
4984                 *flags = MOV_SYNC_SAMPLE;
4985             else
4986                 *flags = MOV_PARTIAL_SYNC_SAMPLE;
4987             break;
4988         }
4989     }
4990     return 0;
4991 }
4992
4993 static void mov_parse_vc1_frame(AVPacket *pkt, MOVTrack *trk)
4994 {
4995     const uint8_t *start, *next, *end = pkt->data + pkt->size;
4996     int seq = 0, entry = 0;
4997     int key = pkt->flags & AV_PKT_FLAG_KEY;
4998     start = find_next_marker(pkt->data, end);
4999     for (next = start; next < end; start = next) {
5000         next = find_next_marker(start + 4, end);
5001         switch (AV_RB32(start)) {
5002         case VC1_CODE_SEQHDR:
5003             seq = 1;
5004             break;
5005         case VC1_CODE_ENTRYPOINT:
5006             entry = 1;
5007             break;
5008         case VC1_CODE_SLICE:
5009             trk->vc1_info.slices = 1;
5010             break;
5011         }
5012     }
5013     if (!trk->entry && trk->vc1_info.first_packet_seen)
5014         trk->vc1_info.first_frag_written = 1;
5015     if (!trk->entry && !trk->vc1_info.first_frag_written) {
5016         /* First packet in first fragment */
5017         trk->vc1_info.first_packet_seq   = seq;
5018         trk->vc1_info.first_packet_entry = entry;
5019         trk->vc1_info.first_packet_seen  = 1;
5020     } else if ((seq && !trk->vc1_info.packet_seq) ||
5021                (entry && !trk->vc1_info.packet_entry)) {
5022         int i;
5023         for (i = 0; i < trk->entry; i++)
5024             trk->cluster[i].flags &= ~MOV_SYNC_SAMPLE;
5025         trk->has_keyframes = 0;
5026         if (seq)
5027             trk->vc1_info.packet_seq = 1;
5028         if (entry)
5029             trk->vc1_info.packet_entry = 1;
5030         if (!trk->vc1_info.first_frag_written) {
5031             /* First fragment */
5032             if ((!seq   || trk->vc1_info.first_packet_seq) &&
5033                 (!entry || trk->vc1_info.first_packet_entry)) {
5034                 /* First packet had the same headers as this one, readd the
5035                  * sync sample flag. */
5036                 trk->cluster[0].flags |= MOV_SYNC_SAMPLE;
5037                 trk->has_keyframes = 1;
5038             }
5039         }
5040     }
5041     if (trk->vc1_info.packet_seq && trk->vc1_info.packet_entry)
5042         key = seq && entry;
5043     else if (trk->vc1_info.packet_seq)
5044         key = seq;
5045     else if (trk->vc1_info.packet_entry)
5046         key = entry;
5047     if (key) {
5048         trk->cluster[trk->entry].flags |= MOV_SYNC_SAMPLE;
5049         trk->has_keyframes++;
5050     }
5051 }
5052
5053 static void mov_parse_truehd_frame(AVPacket *pkt, MOVTrack *trk)
5054 {
5055     int length;
5056
5057     if (pkt->size < 8)
5058         return;
5059
5060     length = (AV_RB16(pkt->data) & 0xFFF) * 2;
5061     if (length < 8 || length > pkt->size)
5062         return;
5063
5064     if (AV_RB32(pkt->data + 4) == 0xF8726FBA) {
5065         trk->cluster[trk->entry].flags |= MOV_SYNC_SAMPLE;
5066         trk->has_keyframes++;
5067     }
5068
5069     return;
5070 }
5071
5072 static int mov_flush_fragment_interleaving(AVFormatContext *s, MOVTrack *track)
5073 {
5074     MOVMuxContext *mov = s->priv_data;
5075     int ret, buf_size;
5076     uint8_t *buf;
5077     int i, offset;
5078
5079     if (!track->mdat_buf)
5080         return 0;
5081     if (!mov->mdat_buf) {
5082         if ((ret = avio_open_dyn_buf(&mov->mdat_buf)) < 0)
5083             return ret;
5084     }
5085     buf_size = avio_get_dyn_buf(track->mdat_buf, &buf);
5086
5087     offset = avio_tell(mov->mdat_buf);
5088     avio_write(mov->mdat_buf, buf, buf_size);
5089     ffio_free_dyn_buf(&track->mdat_buf);
5090
5091     for (i = track->entries_flushed; i < track->entry; i++)
5092         track->cluster[i].pos += offset;
5093     track->entries_flushed = track->entry;
5094     return 0;
5095 }
5096
5097 static int mov_flush_fragment(AVFormatContext *s, int force)
5098 {
5099     MOVMuxContext *mov = s->priv_data;
5100     int i, first_track = -1;
5101     int64_t mdat_size = 0;
5102     int ret;
5103     int has_video = 0, starts_with_key = 0, first_video_track = 1;
5104
5105     if (!(mov->flags & FF_MOV_FLAG_FRAGMENT))
5106         return 0;
5107
5108     // Try to fill in the duration of the last packet in each stream
5109     // from queued packets in the interleave queues. If the flushing
5110     // of fragments was triggered automatically by an AVPacket, we
5111     // already have reliable info for the end of that track, but other
5112     // tracks may need to be filled in.
5113     for (i = 0; i < s->nb_streams; i++) {
5114         MOVTrack *track = &mov->tracks[i];
5115         if (!track->end_reliable) {
5116             AVPacket pkt;
5117             if (!ff_interleaved_peek(s, i, &pkt, 1)) {
5118                 if (track->dts_shift != AV_NOPTS_VALUE)
5119                     pkt.dts += track->dts_shift;
5120                 track->track_duration = pkt.dts - track->start_dts;
5121                 if (pkt.pts != AV_NOPTS_VALUE)
5122                     track->end_pts = pkt.pts;
5123                 else
5124                     track->end_pts = pkt.dts;
5125             }
5126         }
5127     }
5128
5129     for (i = 0; i < mov->nb_streams; i++) {
5130         MOVTrack *track = &mov->tracks[i];
5131         if (track->entry <= 1)
5132             continue;
5133         // Sample durations are calculated as the diff of dts values,
5134         // but for the last sample in a fragment, we don't know the dts
5135         // of the first sample in the next fragment, so we have to rely
5136         // on what was set as duration in the AVPacket. Not all callers
5137         // set this though, so we might want to replace it with an
5138         // estimate if it currently is zero.
5139         if (get_cluster_duration(track, track->entry - 1) != 0)
5140             continue;
5141         // Use the duration (i.e. dts diff) of the second last sample for
5142         // the last one. This is a wild guess (and fatal if it turns out
5143         // to be too long), but probably the best we can do - having a zero
5144         // duration is bad as well.
5145         track->track_duration += get_cluster_duration(track, track->entry - 2);
5146         track->end_pts        += get_cluster_duration(track, track->entry - 2);
5147         if (!mov->missing_duration_warned) {
5148             av_log(s, AV_LOG_WARNING,
5149                    "Estimating the duration of the last packet in a "
5150                    "fragment, consider setting the duration field in "
5151                    "AVPacket instead.\n");
5152             mov->missing_duration_warned = 1;
5153         }
5154     }
5155
5156     if (!mov->moov_written) {
5157         int64_t pos = avio_tell(s->pb);
5158         uint8_t *buf;
5159         int buf_size, moov_size;
5160
5161         for (i = 0; i < mov->nb_streams; i++)
5162             if (!mov->tracks[i].entry && !is_cover_image(mov->tracks[i].st))
5163                 break;
5164         /* Don't write the initial moov unless all tracks have data */
5165         if (i < mov->nb_streams && !force)
5166             return 0;
5167
5168         moov_size = get_moov_size(s);
5169         for (i = 0; i < mov->nb_streams; i++)
5170             mov->tracks[i].data_offset = pos + moov_size + 8;
5171
5172         avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_HEADER);
5173         if (mov->flags & FF_MOV_FLAG_DELAY_MOOV)
5174             mov_write_identification(s->pb, s);
5175         if ((ret = mov_write_moov_tag(s->pb, mov, s)) < 0)
5176             return ret;
5177
5178         if (mov->flags & FF_MOV_FLAG_DELAY_MOOV) {
5179             if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX)
5180                 mov->reserved_header_pos = avio_tell(s->pb);
5181             avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_FLUSH_POINT);
5182             mov->moov_written = 1;
5183             return 0;
5184         }
5185
5186         buf_size = avio_get_dyn_buf(mov->mdat_buf, &buf);
5187         avio_wb32(s->pb, buf_size + 8);
5188         ffio_wfourcc(s->pb, "mdat");
5189         avio_write(s->pb, buf, buf_size);
5190         ffio_free_dyn_buf(&mov->mdat_buf);
5191
5192         if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX)
5193             mov->reserved_header_pos = avio_tell(s->pb);
5194
5195         mov->moov_written = 1;
5196         mov->mdat_size = 0;
5197         for (i = 0; i < mov->nb_streams; i++) {
5198             if (mov->tracks[i].entry)
5199                 mov->tracks[i].frag_start += mov->tracks[i].start_dts +
5200                                              mov->tracks[i].track_duration -
5201                                              mov->tracks[i].cluster[0].dts;
5202             mov->tracks[i].entry = 0;
5203             mov->tracks[i].end_reliable = 0;
5204         }
5205         avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_FLUSH_POINT);
5206         return 0;
5207     }
5208
5209     if (mov->frag_interleave) {
5210         for (i = 0; i < mov->nb_streams; i++) {
5211             MOVTrack *track = &mov->tracks[i];
5212             int ret;
5213             if ((ret = mov_flush_fragment_interleaving(s, track)) < 0)
5214                 return ret;
5215         }
5216
5217         if (!mov->mdat_buf)
5218             return 0;
5219         mdat_size = avio_tell(mov->mdat_buf);
5220     }
5221
5222     for (i = 0; i < mov->nb_streams; i++) {
5223         MOVTrack *track = &mov->tracks[i];
5224         if (mov->flags & FF_MOV_FLAG_SEPARATE_MOOF || mov->frag_interleave)
5225             track->data_offset = 0;
5226         else
5227             track->data_offset = mdat_size;
5228         if (track->par->codec_type == AVMEDIA_TYPE_VIDEO) {
5229             has_video = 1;
5230             if (first_video_track) {
5231                 if (track->entry)
5232                     starts_with_key = track->cluster[0].flags & MOV_SYNC_SAMPLE;
5233                 first_video_track = 0;
5234             }
5235         }
5236         if (!track->entry)
5237             continue;
5238         if (track->mdat_buf)
5239             mdat_size += avio_tell(track->mdat_buf);
5240         if (first_track < 0)
5241             first_track = i;
5242     }
5243
5244     if (!mdat_size)
5245         return 0;
5246
5247     avio_write_marker(s->pb,
5248                       av_rescale(mov->tracks[first_track].cluster[0].dts, AV_TIME_BASE, mov->tracks[first_track].timescale),
5249                       (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);
5250
5251     for (i = 0; i < mov->nb_streams; i++) {
5252         MOVTrack *track = &mov->tracks[i];
5253         int buf_size, write_moof = 1, moof_tracks = -1;
5254         uint8_t *buf;
5255         int64_t duration = 0;
5256
5257         if (track->entry)
5258             duration = track->start_dts + track->track_duration -
5259                        track->cluster[0].dts;
5260         if (mov->flags & FF_MOV_FLAG_SEPARATE_MOOF) {
5261             if (!track->mdat_buf)
5262                 continue;
5263             mdat_size = avio_tell(track->mdat_buf);
5264             moof_tracks = i;
5265         } else {
5266             write_moof = i == first_track;
5267         }
5268
5269         if (write_moof) {
5270             avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_FLUSH_POINT);
5271
5272             mov_write_moof_tag(s->pb, mov, moof_tracks, mdat_size);
5273             mov->fragments++;
5274
5275             avio_wb32(s->pb, mdat_size + 8);
5276             ffio_wfourcc(s->pb, "mdat");
5277         }
5278
5279         if (track->entry)
5280             track->frag_start += duration;
5281         track->entry = 0;
5282         track->entries_flushed = 0;
5283         track->end_reliable = 0;
5284         if (!mov->frag_interleave) {
5285             if (!track->mdat_buf)
5286                 continue;
5287             buf_size = avio_close_dyn_buf(track->mdat_buf, &buf);
5288             track->mdat_buf = NULL;
5289         } else {
5290             if (!mov->mdat_buf)
5291                 continue;
5292             buf_size = avio_close_dyn_buf(mov->mdat_buf, &buf);
5293             mov->mdat_buf = NULL;
5294         }
5295
5296         avio_write(s->pb, buf, buf_size);
5297         av_free(buf);
5298     }
5299
5300     mov->mdat_size = 0;
5301
5302     avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_FLUSH_POINT);
5303     return 0;
5304 }
5305
5306 static int mov_auto_flush_fragment(AVFormatContext *s, int force)
5307 {
5308     MOVMuxContext *mov = s->priv_data;
5309     int had_moov = mov->moov_written;
5310     int ret = mov_flush_fragment(s, force);
5311     if (ret < 0)
5312         return ret;
5313     // If using delay_moov, the first flush only wrote the moov,
5314     // not the actual moof+mdat pair, thus flush once again.
5315     if (!had_moov && mov->flags & FF_MOV_FLAG_DELAY_MOOV)
5316         ret = mov_flush_fragment(s, force);
5317     return ret;
5318 }
5319
5320 static int check_pkt(AVFormatContext *s, AVPacket *pkt)
5321 {
5322     MOVMuxContext *mov = s->priv_data;
5323     MOVTrack *trk = &mov->tracks[pkt->stream_index];
5324     int64_t ref;
5325     uint64_t duration;
5326
5327     if (trk->entry) {
5328         ref = trk->cluster[trk->entry - 1].dts;
5329     } else if (   trk->start_dts != AV_NOPTS_VALUE
5330                && !trk->frag_discont) {
5331         ref = trk->start_dts + trk->track_duration;
5332     } else
5333         ref = pkt->dts; // Skip tests for the first packet
5334
5335     if (trk->dts_shift != AV_NOPTS_VALUE) {
5336         /* With negative CTS offsets we have set an offset to the DTS,
5337          * reverse this for the check. */
5338         ref -= trk->dts_shift;
5339     }
5340
5341     duration = pkt->dts - ref;
5342     if (pkt->dts < ref || duration >= INT_MAX) {
5343         av_log(s, AV_LOG_ERROR, "Application provided duration: %"PRId64" / timestamp: %"PRId64" is out of range for mov/mp4 format\n",
5344             duration, pkt->dts
5345         );
5346
5347         pkt->dts = ref + 1;
5348         pkt->pts = AV_NOPTS_VALUE;
5349     }
5350
5351     if (pkt->duration < 0 || pkt->duration > INT_MAX) {
5352         av_log(s, AV_LOG_ERROR, "Application provided duration: %"PRId64" is invalid\n", pkt->duration);
5353         return AVERROR(EINVAL);
5354     }
5355     return 0;
5356 }
5357
5358 int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
5359 {
5360     MOVMuxContext *mov = s->priv_data;
5361     AVIOContext *pb = s->pb;
5362     MOVTrack *trk = &mov->tracks[pkt->stream_index];
5363     AVCodecParameters *par = trk->par;
5364     AVProducerReferenceTime *prft;
5365     unsigned int samples_in_chunk = 0;
5366     int size = pkt->size, ret = 0;
5367     int prft_size;
5368     uint8_t *reformatted_data = NULL;
5369
5370     ret = check_pkt(s, pkt);
5371     if (ret < 0)
5372         return ret;
5373
5374     if (mov->flags & FF_MOV_FLAG_FRAGMENT) {
5375         int ret;
5376         if (mov->moov_written || mov->flags & FF_MOV_FLAG_EMPTY_MOOV) {
5377             if (mov->frag_interleave && mov->fragments > 0) {
5378                 if (trk->entry - trk->entries_flushed >= mov->frag_interleave) {
5379                     if ((ret = mov_flush_fragment_interleaving(s, trk)) < 0)
5380                         return ret;
5381                 }
5382             }
5383
5384             if (!trk->mdat_buf) {
5385                 if ((ret = avio_open_dyn_buf(&trk->mdat_buf)) < 0)
5386                     return ret;
5387             }
5388             pb = trk->mdat_buf;
5389         } else {
5390             if (!mov->mdat_buf) {
5391                 if ((ret = avio_open_dyn_buf(&mov->mdat_buf)) < 0)
5392                     return ret;
5393             }
5394             pb = mov->mdat_buf;
5395         }
5396     }
5397
5398     if (par->codec_id == AV_CODEC_ID_AMR_NB) {
5399         /* We must find out how many AMR blocks there are in one packet */
5400         static const uint16_t packed_size[16] =
5401             {13, 14, 16, 18, 20, 21, 27, 32, 6, 0, 0, 0, 0, 0, 0, 1};
5402         int len = 0;
5403
5404         while (len < size && samples_in_chunk < 100) {
5405             len += packed_size[(pkt->data[len] >> 3) & 0x0F];
5406             samples_in_chunk++;
5407         }
5408         if (samples_in_chunk > 1) {
5409             av_log(s, AV_LOG_ERROR, "fatal error, input is not a single packet, implement a AVParser for it\n");
5410             return -1;
5411         }
5412     } else if (par->codec_id == AV_CODEC_ID_ADPCM_MS ||
5413                par->codec_id == AV_CODEC_ID_ADPCM_IMA_WAV) {
5414         samples_in_chunk = trk->par->frame_size;
5415     } else if (trk->sample_size)
5416         samples_in_chunk = size / trk->sample_size;
5417     else
5418         samples_in_chunk = 1;
5419
5420     if (samples_in_chunk < 1) {
5421         av_log(s, AV_LOG_ERROR, "fatal error, input packet contains no samples\n");
5422         return AVERROR_PATCHWELCOME;
5423     }
5424
5425     /* copy extradata if it exists */
5426     if (trk->vos_len == 0 && par->extradata_size > 0 &&
5427         !TAG_IS_AVCI(trk->tag) &&
5428         (par->codec_id != AV_CODEC_ID_DNXHD)) {
5429         trk->vos_len  = par->extradata_size;
5430         trk->vos_data = av_malloc(trk->vos_len + AV_INPUT_BUFFER_PADDING_SIZE);
5431         if (!trk->vos_data) {
5432             ret = AVERROR(ENOMEM);
5433             goto err;
5434         }
5435         memcpy(trk->vos_data, par->extradata, trk->vos_len);
5436         memset(trk->vos_data + trk->vos_len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
5437     }
5438
5439     if (par->codec_id == AV_CODEC_ID_AAC && pkt->size > 2 &&
5440         (AV_RB16(pkt->data) & 0xfff0) == 0xfff0) {
5441         if (!s->streams[pkt->stream_index]->nb_frames) {
5442             av_log(s, AV_LOG_ERROR, "Malformed AAC bitstream detected: "
5443                    "use the audio bitstream filter 'aac_adtstoasc' to fix it "
5444                    "('-bsf:a aac_adtstoasc' option with ffmpeg)\n");
5445             return -1;
5446         }
5447         av_log(s, AV_LOG_WARNING, "aac bitstream error\n");
5448     }
5449     if (par->codec_id == AV_CODEC_ID_H264 && trk->vos_len > 0 && *(uint8_t *)trk->vos_data != 1 && !TAG_IS_AVCI(trk->tag)) {
5450         /* from x264 or from bytestream H.264 */
5451         /* NAL reformatting needed */
5452         if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams) {
5453             ff_avc_parse_nal_units_buf(pkt->data, &reformatted_data,
5454                                        &size);
5455             avio_write(pb, reformatted_data, size);
5456         } else {
5457             if (trk->cenc.aes_ctr) {
5458                 size = ff_mov_cenc_avc_parse_nal_units(&trk->cenc, pb, pkt->data, size);
5459                 if (size < 0) {
5460                     ret = size;
5461                     goto err;
5462                 }
5463             } else {
5464                 size = ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
5465             }
5466         }
5467     } else if (par->codec_id == AV_CODEC_ID_HEVC && trk->vos_len > 6 &&
5468                (AV_RB24(trk->vos_data) == 1 || AV_RB32(trk->vos_data) == 1)) {
5469         /* extradata is Annex B, assume the bitstream is too and convert it */
5470         if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams) {
5471             ff_hevc_annexb2mp4_buf(pkt->data, &reformatted_data, &size, 0, NULL);
5472             avio_write(pb, reformatted_data, size);
5473         } else {
5474             size = ff_hevc_annexb2mp4(pb, pkt->data, pkt->size, 0, NULL);
5475         }
5476     } else if (par->codec_id == AV_CODEC_ID_AV1) {
5477         if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams) {
5478             ff_av1_filter_obus_buf(pkt->data, &reformatted_data, &size);
5479             avio_write(pb, reformatted_data, size);
5480         } else {
5481             size = ff_av1_filter_obus(pb, pkt->data, pkt->size);
5482         }
5483 #if CONFIG_AC3_PARSER
5484     } else if (par->codec_id == AV_CODEC_ID_EAC3) {
5485         size = handle_eac3(mov, pkt, trk);
5486         if (size < 0)
5487             return size;
5488         else if (!size)
5489             goto end;
5490         avio_write(pb, pkt->data, size);
5491 #endif
5492     } else {
5493         if (trk->cenc.aes_ctr) {
5494             if (par->codec_id == AV_CODEC_ID_H264 && par->extradata_size > 4) {
5495                 int nal_size_length = (par->extradata[4] & 0x3) + 1;
5496                 ret = ff_mov_cenc_avc_write_nal_units(s, &trk->cenc, nal_size_length, pb, pkt->data, size);
5497             } else {
5498                 ret = ff_mov_cenc_write_packet(&trk->cenc, pb, pkt->data, size);
5499             }
5500
5501             if (ret) {
5502                 goto err;
5503             }
5504         } else {
5505             avio_write(pb, pkt->data, size);
5506         }
5507     }
5508
5509     if ((par->codec_id == AV_CODEC_ID_DNXHD ||
5510          par->codec_id == AV_CODEC_ID_TRUEHD ||
5511          par->codec_id == AV_CODEC_ID_AC3) && !trk->vos_len) {
5512         /* copy frame to create needed atoms */
5513         trk->vos_len  = size;
5514         trk->vos_data = av_malloc(size + AV_INPUT_BUFFER_PADDING_SIZE);
5515         if (!trk->vos_data) {
5516             ret = AVERROR(ENOMEM);
5517             goto err;
5518         }
5519         memcpy(trk->vos_data, pkt->data, size);
5520         memset(trk->vos_data + size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
5521     }
5522
5523     if (trk->entry >= trk->cluster_capacity) {
5524         unsigned new_capacity = 2 * (trk->entry + MOV_INDEX_CLUSTER_SIZE);
5525         if (av_reallocp_array(&trk->cluster, new_capacity,
5526                               sizeof(*trk->cluster))) {
5527             ret = AVERROR(ENOMEM);
5528             goto err;
5529         }
5530         trk->cluster_capacity = new_capacity;
5531     }
5532
5533     trk->cluster[trk->entry].pos              = avio_tell(pb) - size;
5534     trk->cluster[trk->entry].samples_in_chunk = samples_in_chunk;
5535     trk->cluster[trk->entry].chunkNum         = 0;
5536     trk->cluster[trk->entry].size             = size;
5537     trk->cluster[trk->entry].entries          = samples_in_chunk;
5538     trk->cluster[trk->entry].dts              = pkt->dts;
5539     trk->cluster[trk->entry].pts              = pkt->pts;
5540     if (!trk->entry && trk->start_dts != AV_NOPTS_VALUE) {
5541         if (!trk->frag_discont) {
5542             /* First packet of a new fragment. We already wrote the duration
5543              * of the last packet of the previous fragment based on track_duration,
5544              * which might not exactly match our dts. Therefore adjust the dts
5545              * of this packet to be what the previous packets duration implies. */
5546             trk->cluster[trk->entry].dts = trk->start_dts + trk->track_duration;
5547             /* We also may have written the pts and the corresponding duration
5548              * in sidx/tfrf/tfxd tags; make sure the sidx pts and duration match up with
5549              * the next fragment. This means the cts of the first sample must
5550              * be the same in all fragments, unless end_pts was updated by
5551              * the packet causing the fragment to be written. */
5552             if ((mov->flags & FF_MOV_FLAG_DASH &&
5553                 !(mov->flags & (FF_MOV_FLAG_GLOBAL_SIDX | FF_MOV_FLAG_SKIP_SIDX))) ||
5554                 mov->mode == MODE_ISM)
5555                 pkt->pts = pkt->dts + trk->end_pts - trk->cluster[trk->entry].dts;
5556         } else {
5557             /* New fragment, but discontinuous from previous fragments.
5558              * Pretend the duration sum of the earlier fragments is
5559              * pkt->dts - trk->start_dts. */
5560             trk->frag_start = pkt->dts - trk->start_dts;
5561             trk->end_pts = AV_NOPTS_VALUE;
5562             trk->frag_discont = 0;
5563         }
5564     }
5565
5566     if (!trk->entry && trk->start_dts == AV_NOPTS_VALUE && !mov->use_editlist &&
5567         s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO) {
5568         /* Not using edit lists and shifting the first track to start from zero.
5569          * If the other streams start from a later timestamp, we won't be able
5570          * to signal the difference in starting time without an edit list.
5571          * Thus move the timestamp for this first sample to 0, increasing
5572          * its duration instead. */
5573         trk->cluster[trk->entry].dts = trk->start_dts = 0;
5574     }
5575     if (trk->start_dts == AV_NOPTS_VALUE) {
5576         trk->start_dts = pkt->dts;
5577         if (trk->frag_discont) {
5578             if (mov->use_editlist) {
5579                 /* Pretend the whole stream started at pts=0, with earlier fragments
5580                  * already written. If the stream started at pts=0, the duration sum
5581                  * of earlier fragments would have been pkt->pts. */
5582                 trk->frag_start = pkt->pts;
5583                 trk->start_dts  = pkt->dts - pkt->pts;
5584             } else {
5585                 /* Pretend the whole stream started at dts=0, with earlier fragments
5586                  * already written, with a duration summing up to pkt->dts. */
5587                 trk->frag_start = pkt->dts;
5588                 trk->start_dts  = 0;
5589             }
5590             trk->frag_discont = 0;
5591         } else if (pkt->dts && mov->moov_written)
5592             av_log(s, AV_LOG_WARNING,
5593                    "Track %d starts with a nonzero dts %"PRId64", while the moov "
5594                    "already has been written. Set the delay_moov flag to handle "
5595                    "this case.\n",
5596                    pkt->stream_index, pkt->dts);
5597     }
5598     trk->track_duration = pkt->dts - trk->start_dts + pkt->duration;
5599     trk->last_sample_is_subtitle_end = 0;
5600
5601     if (pkt->pts == AV_NOPTS_VALUE) {
5602         av_log(s, AV_LOG_WARNING, "pts has no value\n");
5603         pkt->pts = pkt->dts;
5604     }
5605     if (pkt->dts != pkt->pts)
5606         trk->flags |= MOV_TRACK_CTTS;
5607     trk->cluster[trk->entry].cts   = pkt->pts - pkt->dts;
5608     trk->cluster[trk->entry].flags = 0;
5609     if (trk->start_cts == AV_NOPTS_VALUE)
5610         trk->start_cts = pkt->pts - pkt->dts;
5611     if (trk->end_pts == AV_NOPTS_VALUE)
5612         trk->end_pts = trk->cluster[trk->entry].dts +
5613                        trk->cluster[trk->entry].cts + pkt->duration;
5614     else
5615         trk->end_pts = FFMAX(trk->end_pts, trk->cluster[trk->entry].dts +
5616                                            trk->cluster[trk->entry].cts +
5617                                            pkt->duration);
5618
5619     if (par->codec_id == AV_CODEC_ID_VC1) {
5620         mov_parse_vc1_frame(pkt, trk);
5621     } else if (par->codec_id == AV_CODEC_ID_TRUEHD) {
5622         mov_parse_truehd_frame(pkt, trk);
5623     } else if (pkt->flags & AV_PKT_FLAG_KEY) {
5624         if (mov->mode == MODE_MOV && par->codec_id == AV_CODEC_ID_MPEG2VIDEO &&
5625             trk->entry > 0) { // force sync sample for the first key frame
5626             mov_parse_mpeg2_frame(pkt, &trk->cluster[trk->entry].flags);
5627             if (trk->cluster[trk->entry].flags & MOV_PARTIAL_SYNC_SAMPLE)
5628                 trk->flags |= MOV_TRACK_STPS;
5629         } else {
5630             trk->cluster[trk->entry].flags = MOV_SYNC_SAMPLE;
5631         }
5632         if (trk->cluster[trk->entry].flags & MOV_SYNC_SAMPLE)
5633             trk->has_keyframes++;
5634     }
5635     if (pkt->flags & AV_PKT_FLAG_DISPOSABLE) {
5636         trk->cluster[trk->entry].flags |= MOV_DISPOSABLE_SAMPLE;
5637         trk->has_disposable++;
5638     }
5639
5640     prft = (AVProducerReferenceTime *)av_packet_get_side_data(pkt, AV_PKT_DATA_PRFT, &prft_size);
5641     if (prft && prft_size == sizeof(AVProducerReferenceTime))
5642         memcpy(&trk->cluster[trk->entry].prft, prft, prft_size);
5643     else
5644         memset(&trk->cluster[trk->entry].prft, 0, sizeof(AVProducerReferenceTime));
5645
5646     trk->entry++;
5647     trk->sample_count += samples_in_chunk;
5648     mov->mdat_size    += size;
5649
5650     if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams)
5651         ff_mov_add_hinted_packet(s, pkt, trk->hint_track, trk->entry,
5652                                  reformatted_data, size);
5653
5654 end:
5655 err:
5656
5657     av_free(reformatted_data);
5658     return ret;
5659 }
5660
5661 static int mov_write_single_packet(AVFormatContext *s, AVPacket *pkt)
5662 {
5663         MOVMuxContext *mov = s->priv_data;
5664         MOVTrack *trk = &mov->tracks[pkt->stream_index];
5665         AVCodecParameters *par = trk->par;
5666         int64_t frag_duration = 0;
5667         int size = pkt->size;
5668
5669         int ret = check_pkt(s, pkt);
5670         if (ret < 0)
5671             return ret;
5672
5673         if (mov->flags & FF_MOV_FLAG_FRAG_DISCONT) {
5674             int i;
5675             for (i = 0; i < s->nb_streams; i++)
5676                 mov->tracks[i].frag_discont = 1;
5677             mov->flags &= ~FF_MOV_FLAG_FRAG_DISCONT;
5678         }
5679
5680         if (mov->flags & FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS) {
5681             if (trk->dts_shift == AV_NOPTS_VALUE)
5682                 trk->dts_shift = pkt->pts - pkt->dts;
5683             pkt->dts += trk->dts_shift;
5684         }
5685
5686         if (trk->par->codec_id == AV_CODEC_ID_MP4ALS ||
5687             trk->par->codec_id == AV_CODEC_ID_AAC ||
5688             trk->par->codec_id == AV_CODEC_ID_AV1 ||
5689             trk->par->codec_id == AV_CODEC_ID_FLAC) {
5690             int side_size = 0;
5691             uint8_t *side = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, &side_size);
5692             if (side && side_size > 0 && (side_size != par->extradata_size || memcmp(side, par->extradata, side_size))) {
5693                 void *newextra = av_mallocz(side_size + AV_INPUT_BUFFER_PADDING_SIZE);
5694                 if (!newextra)
5695                     return AVERROR(ENOMEM);
5696                 av_free(par->extradata);
5697                 par->extradata = newextra;
5698                 memcpy(par->extradata, side, side_size);
5699                 par->extradata_size = side_size;
5700                 if (!pkt->size) // Flush packet
5701                     mov->need_rewrite_extradata = 1;
5702             }
5703         }
5704
5705         if (!pkt->size) {
5706             if (trk->start_dts == AV_NOPTS_VALUE && trk->frag_discont) {
5707                 trk->start_dts = pkt->dts;
5708                 if (pkt->pts != AV_NOPTS_VALUE)
5709                     trk->start_cts = pkt->pts - pkt->dts;
5710                 else
5711                     trk->start_cts = 0;
5712             }
5713
5714             return 0;             /* Discard 0 sized packets */
5715         }
5716
5717         if (trk->entry && pkt->stream_index < s->nb_streams)
5718             frag_duration = av_rescale_q(pkt->dts - trk->cluster[0].dts,
5719                                          s->streams[pkt->stream_index]->time_base,
5720                                          AV_TIME_BASE_Q);
5721         if ((mov->max_fragment_duration &&
5722              frag_duration >= mov->max_fragment_duration) ||
5723              (mov->max_fragment_size && mov->mdat_size + size >= mov->max_fragment_size) ||
5724              (mov->flags & FF_MOV_FLAG_FRAG_KEYFRAME &&
5725               par->codec_type == AVMEDIA_TYPE_VIDEO &&
5726               trk->entry && pkt->flags & AV_PKT_FLAG_KEY) ||
5727               (mov->flags & FF_MOV_FLAG_FRAG_EVERY_FRAME)) {
5728             if (frag_duration >= mov->min_fragment_duration) {
5729                 // Set the duration of this track to line up with the next
5730                 // sample in this track. This avoids relying on AVPacket
5731                 // duration, but only helps for this particular track, not
5732                 // for the other ones that are flushed at the same time.
5733                 trk->track_duration = pkt->dts - trk->start_dts;
5734                 if (pkt->pts != AV_NOPTS_VALUE)
5735                     trk->end_pts = pkt->pts;
5736                 else
5737                     trk->end_pts = pkt->dts;
5738                 trk->end_reliable = 1;
5739                 mov_auto_flush_fragment(s, 0);
5740             }
5741         }
5742
5743         return ff_mov_write_packet(s, pkt);
5744 }
5745
5746 static int mov_write_subtitle_end_packet(AVFormatContext *s,
5747                                          int stream_index,
5748                                          int64_t dts) {
5749     AVPacket end;
5750     uint8_t data[2] = {0};
5751     int ret;
5752
5753     av_init_packet(&end);
5754     end.size = sizeof(data);
5755     end.data = data;
5756     end.pts = dts;
5757     end.dts = dts;
5758     end.duration = 0;
5759     end.stream_index = stream_index;
5760
5761     ret = mov_write_single_packet(s, &end);
5762     av_packet_unref(&end);
5763
5764     return ret;
5765 }
5766
5767 static int mov_write_packet(AVFormatContext *s, AVPacket *pkt)
5768 {
5769     MOVMuxContext *mov = s->priv_data;
5770     MOVTrack *trk;
5771
5772     if (!pkt) {
5773         mov_flush_fragment(s, 1);
5774         return 1;
5775     }
5776
5777     trk = &mov->tracks[pkt->stream_index];
5778
5779     if (is_cover_image(trk->st)) {
5780         int ret;
5781
5782         if (trk->st->nb_frames >= 1) {
5783             if (trk->st->nb_frames == 1)
5784                 av_log(s, AV_LOG_WARNING, "Got more than one picture in stream %d,"
5785                        " ignoring.\n", pkt->stream_index);
5786             return 0;
5787         }
5788
5789         if ((ret = av_packet_ref(&trk->cover_image, pkt)) < 0)
5790             return ret;
5791
5792         return 0;
5793     } else {
5794         int i;
5795
5796         if (!pkt->size)
5797             return mov_write_single_packet(s, pkt); /* Passthrough. */
5798
5799         /*
5800          * Subtitles require special handling.
5801          *
5802          * 1) For full complaince, every track must have a sample at
5803          * dts == 0, which is rarely true for subtitles. So, as soon
5804          * as we see any packet with dts > 0, write an empty subtitle
5805          * at dts == 0 for any subtitle track with no samples in it.
5806          *
5807          * 2) For each subtitle track, check if the current packet's
5808          * dts is past the duration of the last subtitle sample. If
5809          * so, we now need to write an end sample for that subtitle.
5810          *
5811          * This must be done conditionally to allow for subtitles that
5812          * immediately replace each other, in which case an end sample
5813          * is not needed, and is, in fact, actively harmful.
5814          *
5815          * 3) See mov_write_trailer for how the final end sample is
5816          * handled.
5817          */
5818         for (i = 0; i < mov->nb_streams; i++) {
5819             MOVTrack *trk = &mov->tracks[i];
5820             int ret;
5821
5822             if (trk->par->codec_id == AV_CODEC_ID_MOV_TEXT &&
5823                 trk->track_duration < pkt->dts &&
5824                 (trk->entry == 0 || !trk->last_sample_is_subtitle_end)) {
5825                 ret = mov_write_subtitle_end_packet(s, i, trk->track_duration);
5826                 if (ret < 0) return ret;
5827                 trk->last_sample_is_subtitle_end = 1;
5828             }
5829         }
5830
5831         if (trk->mode == MODE_MOV && trk->par->codec_type == AVMEDIA_TYPE_VIDEO) {
5832             AVPacket *opkt = pkt;
5833             int reshuffle_ret, ret;
5834             if (trk->is_unaligned_qt_rgb) {
5835                 int64_t bpc = trk->par->bits_per_coded_sample != 15 ? trk->par->bits_per_coded_sample : 16;
5836                 int expected_stride = ((trk->par->width * bpc + 15) >> 4)*2;
5837                 reshuffle_ret = ff_reshuffle_raw_rgb(s, &pkt, trk->par, expected_stride);
5838                 if (reshuffle_ret < 0)
5839                     return reshuffle_ret;
5840             } else
5841                 reshuffle_ret = 0;
5842             if (trk->par->format == AV_PIX_FMT_PAL8 && !trk->pal_done) {
5843                 ret = ff_get_packet_palette(s, opkt, reshuffle_ret, trk->palette);
5844                 if (ret < 0)
5845                     goto fail;
5846                 if (ret)
5847                     trk->pal_done++;
5848             } else if (trk->par->codec_id == AV_CODEC_ID_RAWVIDEO &&
5849                        (trk->par->format == AV_PIX_FMT_GRAY8 ||
5850                        trk->par->format == AV_PIX_FMT_MONOBLACK)) {
5851                 for (i = 0; i < pkt->size; i++)
5852                     pkt->data[i] = ~pkt->data[i];
5853             }
5854             if (reshuffle_ret) {
5855                 ret = mov_write_single_packet(s, pkt);
5856 fail:
5857                 if (reshuffle_ret)
5858                     av_packet_free(&pkt);
5859                 return ret;
5860             }
5861         }
5862
5863         return mov_write_single_packet(s, pkt);
5864     }
5865 }
5866
5867 // QuickTime chapters involve an additional text track with the chapter names
5868 // as samples, and a tref pointing from the other tracks to the chapter one.
5869 static int mov_create_chapter_track(AVFormatContext *s, int tracknum)
5870 {
5871     AVIOContext *pb;
5872
5873     MOVMuxContext *mov = s->priv_data;
5874     MOVTrack *track = &mov->tracks[tracknum];
5875     AVPacket pkt = { .stream_index = tracknum, .flags = AV_PKT_FLAG_KEY };
5876     int i, len;
5877
5878     track->mode = mov->mode;
5879     track->tag = MKTAG('t','e','x','t');
5880     track->timescale = MOV_TIMESCALE;
5881     track->par = avcodec_parameters_alloc();
5882     if (!track->par)
5883         return AVERROR(ENOMEM);
5884     track->par->codec_type = AVMEDIA_TYPE_SUBTITLE;
5885 #if 0
5886     // These properties are required to make QT recognize the chapter track
5887     uint8_t chapter_properties[43] = { 0, 0, 0, 0, 0, 0, 0, 1, };
5888     if (ff_alloc_extradata(track->par, sizeof(chapter_properties)))
5889         return AVERROR(ENOMEM);
5890     memcpy(track->par->extradata, chapter_properties, sizeof(chapter_properties));
5891 #else
5892     if (avio_open_dyn_buf(&pb) >= 0) {
5893         int size;
5894         uint8_t *buf;
5895
5896         /* Stub header (usually for Quicktime chapter track) */
5897         // TextSampleEntry
5898         avio_wb32(pb, 0x01); // displayFlags
5899         avio_w8(pb, 0x00);   // horizontal justification
5900         avio_w8(pb, 0x00);   // vertical justification
5901         avio_w8(pb, 0x00);   // bgColourRed
5902         avio_w8(pb, 0x00);   // bgColourGreen
5903         avio_w8(pb, 0x00);   // bgColourBlue
5904         avio_w8(pb, 0x00);   // bgColourAlpha
5905         // BoxRecord
5906         avio_wb16(pb, 0x00); // defTextBoxTop
5907         avio_wb16(pb, 0x00); // defTextBoxLeft
5908         avio_wb16(pb, 0x00); // defTextBoxBottom
5909         avio_wb16(pb, 0x00); // defTextBoxRight
5910         // StyleRecord
5911         avio_wb16(pb, 0x00); // startChar
5912         avio_wb16(pb, 0x00); // endChar
5913         avio_wb16(pb, 0x01); // fontID
5914         avio_w8(pb, 0x00);   // fontStyleFlags
5915         avio_w8(pb, 0x00);   // fontSize
5916         avio_w8(pb, 0x00);   // fgColourRed
5917         avio_w8(pb, 0x00);   // fgColourGreen
5918         avio_w8(pb, 0x00);   // fgColourBlue
5919         avio_w8(pb, 0x00);   // fgColourAlpha
5920         // FontTableBox
5921         avio_wb32(pb, 0x0D); // box size
5922         ffio_wfourcc(pb, "ftab"); // box atom name
5923         avio_wb16(pb, 0x01); // entry count
5924         // FontRecord
5925         avio_wb16(pb, 0x01); // font ID
5926         avio_w8(pb, 0x00);   // font name length
5927
5928         if ((size = avio_close_dyn_buf(pb, &buf)) > 0) {
5929             track->par->extradata = buf;
5930             track->par->extradata_size = size;
5931         } else {
5932             av_freep(&buf);
5933         }
5934     }
5935 #endif
5936
5937     for (i = 0; i < s->nb_chapters; i++) {
5938         AVChapter *c = s->chapters[i];
5939         AVDictionaryEntry *t;
5940
5941         int64_t end = av_rescale_q(c->end, c->time_base, (AVRational){1,MOV_TIMESCALE});
5942         pkt.pts = pkt.dts = av_rescale_q(c->start, c->time_base, (AVRational){1,MOV_TIMESCALE});
5943         pkt.duration = end - pkt.dts;
5944
5945         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
5946             static const char encd[12] = {
5947                 0x00, 0x00, 0x00, 0x0C,
5948                 'e',  'n',  'c',  'd',
5949                 0x00, 0x00, 0x01, 0x00 };
5950             len      = strlen(t->value);
5951             pkt.size = len + 2 + 12;
5952             pkt.data = av_malloc(pkt.size);
5953             if (!pkt.data)
5954                 return AVERROR(ENOMEM);
5955             AV_WB16(pkt.data, len);
5956             memcpy(pkt.data + 2, t->value, len);
5957             memcpy(pkt.data + len + 2, encd, sizeof(encd));
5958             ff_mov_write_packet(s, &pkt);
5959             av_freep(&pkt.data);
5960         }
5961     }
5962
5963     return 0;
5964 }
5965
5966
5967 static int mov_check_timecode_track(AVFormatContext *s, AVTimecode *tc, int src_index, const char *tcstr)
5968 {
5969     int ret;
5970
5971     /* compute the frame number */
5972     ret = av_timecode_init_from_string(tc, find_fps(s,  s->streams[src_index]), tcstr, s);
5973     return ret;
5974 }
5975
5976 static int mov_create_timecode_track(AVFormatContext *s, int index, int src_index, AVTimecode tc)
5977 {
5978     int ret;
5979     MOVMuxContext *mov  = s->priv_data;
5980     MOVTrack *track     = &mov->tracks[index];
5981     AVStream *src_st    = s->streams[src_index];
5982     AVPacket pkt    = {.stream_index = index, .flags = AV_PKT_FLAG_KEY, .size = 4};
5983     AVRational rate = find_fps(s, src_st);
5984
5985     /* tmcd track based on video stream */
5986     track->mode      = mov->mode;
5987     track->tag       = MKTAG('t','m','c','d');
5988     track->src_track = src_index;
5989     track->timescale = mov->tracks[src_index].timescale;
5990     if (tc.flags & AV_TIMECODE_FLAG_DROPFRAME)
5991         track->timecode_flags |= MOV_TIMECODE_FLAG_DROPFRAME;
5992
5993     /* set st to src_st for metadata access*/
5994     track->st = src_st;
5995
5996     /* encode context: tmcd data stream */
5997     track->par = avcodec_parameters_alloc();
5998     if (!track->par)
5999         return AVERROR(ENOMEM);
6000     track->par->codec_type = AVMEDIA_TYPE_DATA;
6001     track->par->codec_tag  = track->tag;
6002     track->st->avg_frame_rate = av_inv_q(rate);
6003
6004     /* the tmcd track just contains one packet with the frame number */
6005     pkt.data = av_malloc(pkt.size);
6006     if (!pkt.data)
6007         return AVERROR(ENOMEM);
6008     AV_WB32(pkt.data, tc.start);
6009     ret = ff_mov_write_packet(s, &pkt);
6010     av_free(pkt.data);
6011     return ret;
6012 }
6013
6014 /*
6015  * st->disposition controls the "enabled" flag in the tkhd tag.
6016  * QuickTime will not play a track if it is not enabled.  So make sure
6017  * that one track of each type (audio, video, subtitle) is enabled.
6018  *
6019  * Subtitles are special.  For audio and video, setting "enabled" also
6020  * makes the track "default" (i.e. it is rendered when played). For
6021  * subtitles, an "enabled" subtitle is not rendered by default, but
6022  * if no subtitle is enabled, the subtitle menu in QuickTime will be
6023  * empty!
6024  */
6025 static void enable_tracks(AVFormatContext *s)
6026 {
6027     MOVMuxContext *mov = s->priv_data;
6028     int i;
6029     int enabled[AVMEDIA_TYPE_NB];
6030     int first[AVMEDIA_TYPE_NB];
6031
6032     for (i = 0; i < AVMEDIA_TYPE_NB; i++) {
6033         enabled[i] = 0;
6034         first[i] = -1;
6035     }
6036
6037     for (i = 0; i < s->nb_streams; i++) {
6038         AVStream *st = s->streams[i];
6039
6040         if (st->codecpar->codec_type <= AVMEDIA_TYPE_UNKNOWN ||
6041             st->codecpar->codec_type >= AVMEDIA_TYPE_NB ||
6042             is_cover_image(st))
6043             continue;
6044
6045         if (first[st->codecpar->codec_type] < 0)
6046             first[st->codecpar->codec_type] = i;
6047         if (st->disposition & AV_DISPOSITION_DEFAULT) {
6048             mov->tracks[i].flags |= MOV_TRACK_ENABLED;
6049             enabled[st->codecpar->codec_type]++;
6050         }
6051     }
6052
6053     for (i = 0; i < AVMEDIA_TYPE_NB; i++) {
6054         switch (i) {
6055         case AVMEDIA_TYPE_VIDEO:
6056         case AVMEDIA_TYPE_AUDIO:
6057         case AVMEDIA_TYPE_SUBTITLE:
6058             if (enabled[i] > 1)
6059                 mov->per_stream_grouping = 1;
6060             if (!enabled[i] && first[i] >= 0)
6061                 mov->tracks[first[i]].flags |= MOV_TRACK_ENABLED;
6062             break;
6063         }
6064     }
6065 }
6066
6067 static void mov_free(AVFormatContext *s)
6068 {
6069     MOVMuxContext *mov = s->priv_data;
6070     int i;
6071
6072     if (mov->chapter_track) {
6073         if (mov->tracks[mov->chapter_track].par)
6074             av_freep(&mov->tracks[mov->chapter_track].par->extradata);
6075         av_freep(&mov->tracks[mov->chapter_track].par);
6076     }
6077
6078     for (i = 0; i < mov->nb_streams; i++) {
6079         if (mov->tracks[i].tag == MKTAG('r','t','p',' '))
6080             ff_mov_close_hinting(&mov->tracks[i]);
6081         else if (mov->tracks[i].tag == MKTAG('t','m','c','d') && mov->nb_meta_tmcd)
6082             av_freep(&mov->tracks[i].par);
6083         av_freep(&mov->tracks[i].cluster);
6084         av_freep(&mov->tracks[i].frag_info);
6085         av_packet_unref(&mov->tracks[i].cover_image);
6086
6087         if (mov->tracks[i].eac3_priv) {
6088             struct eac3_info *info = mov->tracks[i].eac3_priv;
6089             av_packet_unref(&info->pkt);
6090             av_freep(&mov->tracks[i].eac3_priv);
6091         }
6092         if (mov->tracks[i].vos_len)
6093             av_freep(&mov->tracks[i].vos_data);
6094
6095         ff_mov_cenc_free(&mov->tracks[i].cenc);
6096     }
6097
6098     av_freep(&mov->tracks);
6099 }
6100
6101 static uint32_t rgb_to_yuv(uint32_t rgb)
6102 {
6103     uint8_t r, g, b;
6104     int y, cb, cr;
6105
6106     r = (rgb >> 16) & 0xFF;
6107     g = (rgb >>  8) & 0xFF;
6108     b = (rgb      ) & 0xFF;
6109
6110     y  = av_clip_uint8(( 16000 +  257 * r + 504 * g +  98 * b)/1000);
6111     cb = av_clip_uint8((128000 -  148 * r - 291 * g + 439 * b)/1000);
6112     cr = av_clip_uint8((128000 +  439 * r - 368 * g -  71 * b)/1000);
6113
6114     return (y << 16) | (cr << 8) | cb;
6115 }
6116
6117 static int mov_create_dvd_sub_decoder_specific_info(MOVTrack *track,
6118                                                     AVStream *st)
6119 {
6120     int i, width = 720, height = 480;
6121     int have_palette = 0, have_size = 0;
6122     uint32_t palette[16];
6123     char *cur = st->codecpar->extradata;
6124
6125     while (cur && *cur) {
6126         if (strncmp("palette:", cur, 8) == 0) {
6127             int i, count;
6128             count = sscanf(cur + 8,
6129                 "%06"PRIx32", %06"PRIx32", %06"PRIx32", %06"PRIx32", "
6130                 "%06"PRIx32", %06"PRIx32", %06"PRIx32", %06"PRIx32", "
6131                 "%06"PRIx32", %06"PRIx32", %06"PRIx32", %06"PRIx32", "
6132                 "%06"PRIx32", %06"PRIx32", %06"PRIx32", %06"PRIx32"",
6133                 &palette[ 0], &palette[ 1], &palette[ 2], &palette[ 3],
6134                 &palette[ 4], &palette[ 5], &palette[ 6], &palette[ 7],
6135                 &palette[ 8], &palette[ 9], &palette[10], &palette[11],
6136                 &palette[12], &palette[13], &palette[14], &palette[15]);
6137
6138             for (i = 0; i < count; i++) {
6139                 palette[i] = rgb_to_yuv(palette[i]);
6140             }
6141             have_palette = 1;
6142         } else if (!strncmp("size:", cur, 5)) {
6143             sscanf(cur + 5, "%dx%d", &width, &height);
6144             have_size = 1;
6145         }
6146         if (have_palette && have_size)
6147             break;
6148         cur += strcspn(cur, "\n\r");
6149         cur += strspn(cur, "\n\r");
6150     }
6151     if (have_palette) {
6152         track->vos_data = av_malloc(16*4 + AV_INPUT_BUFFER_PADDING_SIZE);
6153         if (!track->vos_data)
6154             return AVERROR(ENOMEM);
6155         for (i = 0; i < 16; i++) {
6156             AV_WB32(track->vos_data + i * 4, palette[i]);
6157         }
6158         memset(track->vos_data + 16*4, 0, AV_INPUT_BUFFER_PADDING_SIZE);
6159         track->vos_len = 16 * 4;
6160     }
6161     st->codecpar->width = width;
6162     st->codecpar->height = track->height = height;
6163
6164     return 0;
6165 }
6166
6167 static int mov_init(AVFormatContext *s)
6168 {
6169     MOVMuxContext *mov = s->priv_data;
6170     AVDictionaryEntry *global_tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
6171     int i, ret;
6172
6173     mov->fc = s;
6174
6175     /* Default mode == MP4 */
6176     mov->mode = MODE_MP4;
6177
6178     if (s->oformat) {
6179         if (!strcmp("3gp", s->oformat->name)) mov->mode = MODE_3GP;
6180         else if (!strcmp("3g2", s->oformat->name)) mov->mode = MODE_3GP|MODE_3G2;
6181         else if (!strcmp("mov", s->oformat->name)) mov->mode = MODE_MOV;
6182         else if (!strcmp("psp", s->oformat->name)) mov->mode = MODE_PSP;
6183         else if (!strcmp("ipod",s->oformat->name)) mov->mode = MODE_IPOD;
6184         else if (!strcmp("ismv",s->oformat->name)) mov->mode = MODE_ISM;
6185         else if (!strcmp("f4v", s->oformat->name)) mov->mode = MODE_F4V;
6186     }
6187
6188     if (mov->flags & FF_MOV_FLAG_DELAY_MOOV)
6189         mov->flags |= FF_MOV_FLAG_EMPTY_MOOV;
6190
6191     /* Set the FRAGMENT flag if any of the fragmentation methods are
6192      * enabled. */
6193     if (mov->max_fragment_duration || mov->max_fragment_size ||
6194         mov->flags & (FF_MOV_FLAG_EMPTY_MOOV |
6195                       FF_MOV_FLAG_FRAG_KEYFRAME |
6196                       FF_MOV_FLAG_FRAG_CUSTOM |
6197                       FF_MOV_FLAG_FRAG_EVERY_FRAME))
6198         mov->flags |= FF_MOV_FLAG_FRAGMENT;
6199
6200     /* Set other implicit flags immediately */
6201     if (mov->mode == MODE_ISM)
6202         mov->flags |= FF_MOV_FLAG_EMPTY_MOOV | FF_MOV_FLAG_SEPARATE_MOOF |
6203                       FF_MOV_FLAG_FRAGMENT | FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS;
6204     if (mov->flags & FF_MOV_FLAG_DASH)
6205         mov->flags |= FF_MOV_FLAG_FRAGMENT | FF_MOV_FLAG_EMPTY_MOOV |
6206                       FF_MOV_FLAG_DEFAULT_BASE_MOOF;
6207
6208     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV && s->flags & AVFMT_FLAG_AUTO_BSF) {
6209         av_log(s, AV_LOG_VERBOSE, "Empty MOOV enabled; disabling automatic bitstream filtering\n");
6210         s->flags &= ~AVFMT_FLAG_AUTO_BSF;
6211     }
6212
6213     if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX && mov->flags & FF_MOV_FLAG_SKIP_SIDX) {
6214         av_log(s, AV_LOG_WARNING, "Global SIDX enabled; Ignoring skip_sidx option\n");
6215         mov->flags &= ~FF_MOV_FLAG_SKIP_SIDX;
6216     }
6217
6218     if (mov->flags & FF_MOV_FLAG_FASTSTART) {
6219         mov->reserved_moov_size = -1;
6220     }
6221
6222     if (mov->use_editlist < 0) {
6223         mov->use_editlist = 1;
6224         if (mov->flags & FF_MOV_FLAG_FRAGMENT &&
6225             !(mov->flags & FF_MOV_FLAG_DELAY_MOOV)) {
6226             // If we can avoid needing an edit list by shifting the
6227             // tracks, prefer that over (trying to) write edit lists
6228             // in fragmented output.
6229             if (s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO ||
6230                 s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_MAKE_ZERO)
6231                 mov->use_editlist = 0;
6232         }
6233     }
6234     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV &&
6235         !(mov->flags & FF_MOV_FLAG_DELAY_MOOV) && mov->use_editlist)
6236         av_log(s, AV_LOG_WARNING, "No meaningful edit list will be written when using empty_moov without delay_moov\n");
6237
6238     if (!mov->use_editlist && s->avoid_negative_ts == AVFMT_AVOID_NEG_TS_AUTO)
6239         s->avoid_negative_ts = AVFMT_AVOID_NEG_TS_MAKE_ZERO;
6240
6241     /* Clear the omit_tfhd_offset flag if default_base_moof is set;
6242      * if the latter is set that's enough and omit_tfhd_offset doesn't
6243      * add anything extra on top of that. */
6244     if (mov->flags & FF_MOV_FLAG_OMIT_TFHD_OFFSET &&
6245         mov->flags & FF_MOV_FLAG_DEFAULT_BASE_MOOF)
6246         mov->flags &= ~FF_MOV_FLAG_OMIT_TFHD_OFFSET;
6247
6248     if (mov->frag_interleave &&
6249         mov->flags & (FF_MOV_FLAG_OMIT_TFHD_OFFSET | FF_MOV_FLAG_SEPARATE_MOOF)) {
6250         av_log(s, AV_LOG_ERROR,
6251                "Sample interleaving in fragments is mutually exclusive with "
6252                "omit_tfhd_offset and separate_moof\n");
6253         return AVERROR(EINVAL);
6254     }
6255
6256     /* Non-seekable output is ok if using fragmentation. If ism_lookahead
6257      * is enabled, we don't support non-seekable output at all. */
6258     if (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL) &&
6259         (!(mov->flags & FF_MOV_FLAG_FRAGMENT) || mov->ism_lookahead)) {
6260         av_log(s, AV_LOG_ERROR, "muxer does not support non seekable output\n");
6261         return AVERROR(EINVAL);
6262     }
6263
6264     mov->nb_streams = s->nb_streams;
6265     if (mov->mode & (MODE_MP4|MODE_MOV|MODE_IPOD) && s->nb_chapters)
6266         mov->chapter_track = mov->nb_streams++;
6267
6268     if (mov->flags & FF_MOV_FLAG_RTP_HINT) {
6269         for (i = 0; i < s->nb_streams; i++)
6270             if (rtp_hinting_needed(s->streams[i]))
6271                 mov->nb_streams++;
6272     }
6273
6274     if (   mov->write_tmcd == -1 && (mov->mode == MODE_MOV || mov->mode == MODE_MP4)
6275         || mov->write_tmcd == 1) {
6276         /* +1 tmcd track for each video stream with a timecode */
6277         for (i = 0; i < s->nb_streams; i++) {
6278             AVStream *st = s->streams[i];
6279             AVDictionaryEntry *t = global_tcr;
6280             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO &&
6281                 (t || (t=av_dict_get(st->metadata, "timecode", NULL, 0)))) {
6282                 AVTimecode tc;
6283                 ret = mov_check_timecode_track(s, &tc, i, t->value);
6284                 if (ret >= 0)
6285                     mov->nb_meta_tmcd++;
6286             }
6287         }
6288
6289         /* check if there is already a tmcd track to remux */
6290         if (mov->nb_meta_tmcd) {
6291             for (i = 0; i < s->nb_streams; i++) {
6292                 AVStream *st = s->streams[i];
6293                 if (st->codecpar->codec_tag == MKTAG('t','m','c','d')) {
6294                     av_log(s, AV_LOG_WARNING, "You requested a copy of the original timecode track "
6295                            "so timecode metadata are now ignored\n");
6296                     mov->nb_meta_tmcd = 0;
6297                 }
6298             }
6299         }
6300
6301         mov->nb_streams += mov->nb_meta_tmcd;
6302     }
6303
6304     // Reserve an extra stream for chapters for the case where chapters
6305     // are written in the trailer
6306     mov->tracks = av_mallocz_array((mov->nb_streams + 1), sizeof(*mov->tracks));
6307     if (!mov->tracks)
6308         return AVERROR(ENOMEM);
6309
6310     if (mov->encryption_scheme_str != NULL && strcmp(mov->encryption_scheme_str, "none") != 0) {
6311         if (strcmp(mov->encryption_scheme_str, "cenc-aes-ctr") == 0) {
6312             mov->encryption_scheme = MOV_ENC_CENC_AES_CTR;
6313
6314             if (mov->encryption_key_len != AES_CTR_KEY_SIZE) {
6315                 av_log(s, AV_LOG_ERROR, "Invalid encryption key len %d expected %d\n",
6316                     mov->encryption_key_len, AES_CTR_KEY_SIZE);
6317                 return AVERROR(EINVAL);
6318             }
6319
6320             if (mov->encryption_kid_len != CENC_KID_SIZE) {
6321                 av_log(s, AV_LOG_ERROR, "Invalid encryption kid len %d expected %d\n",
6322                     mov->encryption_kid_len, CENC_KID_SIZE);
6323                 return AVERROR(EINVAL);
6324             }
6325         } else {
6326             av_log(s, AV_LOG_ERROR, "unsupported encryption scheme %s\n",
6327                 mov->encryption_scheme_str);
6328             return AVERROR(EINVAL);
6329         }
6330     }
6331
6332     for (i = 0; i < s->nb_streams; i++) {
6333         AVStream *st= s->streams[i];
6334         MOVTrack *track= &mov->tracks[i];
6335         AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL,0);
6336
6337         track->st  = st;
6338         track->par = st->codecpar;
6339         track->language = ff_mov_iso639_to_lang(lang?lang->value:"und", mov->mode!=MODE_MOV);
6340         if (track->language < 0)
6341             track->language = 32767;  // Unspecified Macintosh language code
6342         track->mode = mov->mode;
6343         track->tag  = mov_find_codec_tag(s, track);
6344         if (!track->tag) {
6345             av_log(s, AV_LOG_ERROR, "Could not find tag for codec %s in stream #%d, "
6346                    "codec not currently supported in container\n",
6347                    avcodec_get_name(st->codecpar->codec_id), i);
6348             return AVERROR(EINVAL);
6349         }
6350         /* If hinting of this track is enabled by a later hint track,
6351          * this is updated. */
6352         track->hint_track = -1;
6353         track->start_dts  = AV_NOPTS_VALUE;
6354         track->start_cts  = AV_NOPTS_VALUE;
6355         track->end_pts    = AV_NOPTS_VALUE;
6356         track->dts_shift  = AV_NOPTS_VALUE;
6357         if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
6358             if (track->tag == MKTAG('m','x','3','p') || track->tag == MKTAG('m','x','3','n') ||
6359                 track->tag == MKTAG('m','x','4','p') || track->tag == MKTAG('m','x','4','n') ||
6360                 track->tag == MKTAG('m','x','5','p') || track->tag == MKTAG('m','x','5','n')) {
6361                 if (st->codecpar->width != 720 || (st->codecpar->height != 608 && st->codecpar->height != 512)) {
6362                     av_log(s, AV_LOG_ERROR, "D-10/IMX must use 720x608 or 720x512 video resolution\n");
6363                     return AVERROR(EINVAL);
6364                 }
6365                 track->height = track->tag >> 24 == 'n' ? 486 : 576;
6366             }
6367             if (mov->video_track_timescale) {
6368                 track->timescale = mov->video_track_timescale;
6369             } else {
6370                 track->timescale = st->time_base.den;
6371                 while(track->timescale < 10000)
6372                     track->timescale *= 2;
6373             }
6374             if (st->codecpar->width > 65535 || st->codecpar->height > 65535) {
6375                 av_log(s, AV_LOG_ERROR, "Resolution %dx%d too large for mov/mp4\n", st->codecpar->width, st->codecpar->height);
6376                 return AVERROR(EINVAL);
6377             }
6378             if (track->mode == MODE_MOV && track->timescale > 100000)
6379                 av_log(s, AV_LOG_WARNING,
6380                        "WARNING codec timebase is very high. If duration is too long,\n"
6381                        "file may not be playable by quicktime. Specify a shorter timebase\n"
6382                        "or choose different container.\n");
6383             if (track->mode == MODE_MOV &&
6384                 track->par->codec_id == AV_CODEC_ID_RAWVIDEO &&
6385                 track->tag == MKTAG('r','a','w',' ')) {
6386                 enum AVPixelFormat pix_fmt = track->par->format;
6387                 if (pix_fmt == AV_PIX_FMT_NONE && track->par->bits_per_coded_sample == 1)
6388                     pix_fmt = AV_PIX_FMT_MONOWHITE;
6389                 track->is_unaligned_qt_rgb =
6390                         pix_fmt == AV_PIX_FMT_RGB24 ||
6391                         pix_fmt == AV_PIX_FMT_BGR24 ||
6392                         pix_fmt == AV_PIX_FMT_PAL8 ||
6393                         pix_fmt == AV_PIX_FMT_GRAY8 ||
6394                         pix_fmt == AV_PIX_FMT_MONOWHITE ||
6395                         pix_fmt == AV_PIX_FMT_MONOBLACK;
6396             }
6397             if (track->par->codec_id == AV_CODEC_ID_VP9 ||
6398                 track->par->codec_id == AV_CODEC_ID_AV1) {
6399                 if (track->mode != MODE_MP4) {
6400                     av_log(s, AV_LOG_ERROR, "%s only supported in MP4.\n", avcodec_get_name(track->par->codec_id));
6401                     return AVERROR(EINVAL);
6402                 }
6403             } else if (track->par->codec_id == AV_CODEC_ID_VP8) {
6404                 /* altref frames handling is not defined in the spec as of version v1.0,
6405                  * so just forbid muxing VP8 streams altogether until a new version does */
6406                 av_log(s, AV_LOG_ERROR, "VP8 muxing is currently not supported.\n");
6407                 return AVERROR_PATCHWELCOME;
6408             }
6409         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
6410             track->timescale = st->codecpar->sample_rate;
6411             if (!st->codecpar->frame_size && !av_get_bits_per_sample(st->codecpar->codec_id)) {
6412                 av_log(s, AV_LOG_WARNING, "track %d: codec frame size is not set\n", i);
6413                 track->audio_vbr = 1;
6414             }else if (st->codecpar->codec_id == AV_CODEC_ID_ADPCM_MS ||
6415                      st->codecpar->codec_id == AV_CODEC_ID_ADPCM_IMA_WAV ||
6416                      st->codecpar->codec_id == AV_CODEC_ID_ILBC){
6417                 if (!st->codecpar->block_align) {
6418                     av_log(s, AV_LOG_ERROR, "track %d: codec block align is not set for adpcm\n", i);
6419                     return AVERROR(EINVAL);
6420                 }
6421                 track->sample_size = st->codecpar->block_align;
6422             }else if (st->codecpar->frame_size > 1){ /* assume compressed audio */
6423                 track->audio_vbr = 1;
6424             }else{
6425                 track->sample_size = (av_get_bits_per_sample(st->codecpar->codec_id) >> 3) * st->codecpar->channels;
6426             }
6427             if (st->codecpar->codec_id == AV_CODEC_ID_ILBC ||
6428                 st->codecpar->codec_id == AV_CODEC_ID_ADPCM_IMA_QT) {
6429                 track->audio_vbr = 1;
6430             }
6431             if (track->mode != MODE_MOV &&
6432                 track->par->codec_id == AV_CODEC_ID_MP3 && track->timescale < 16000) {
6433                 if (s->strict_std_compliance >= FF_COMPLIANCE_NORMAL) {
6434                     av_log(s, AV_LOG_ERROR, "track %d: muxing mp3 at %dhz is not standard, to mux anyway set strict to -1\n",
6435                         i, track->par->sample_rate);
6436                     return AVERROR(EINVAL);
6437                 } else {
6438                     av_log(s, AV_LOG_WARNING, "track %d: muxing mp3 at %dhz is not standard in MP4\n",
6439                            i, track->par->sample_rate);
6440                 }
6441             }
6442             if (track->par->codec_id == AV_CODEC_ID_FLAC ||
6443                 track->par->codec_id == AV_CODEC_ID_TRUEHD ||
6444                 track->par->codec_id == AV_CODEC_ID_OPUS) {
6445                 if (track->mode != MODE_MP4) {
6446                     av_log(s, AV_LOG_ERROR, "%s only supported in MP4.\n", avcodec_get_name(track->par->codec_id));
6447                     return AVERROR(EINVAL);
6448                 }
6449                 if (s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
6450                     av_log(s, AV_LOG_ERROR,
6451                            "%s in MP4 support is experimental, add "
6452                            "'-strict %d' if you want to use it.\n",
6453                            avcodec_get_name(track->par->codec_id), FF_COMPLIANCE_EXPERIMENTAL);
6454                     return AVERROR_EXPERIMENTAL;
6455                 }
6456             }
6457         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE) {
6458             track->timescale = st->time_base.den;
6459         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_DATA) {
6460             track->timescale = st->time_base.den;
6461         } else {
6462             track->timescale = MOV_TIMESCALE;
6463         }
6464         if (!track->height)
6465             track->height = st->codecpar->height;
6466         /* The ism specific timescale isn't mandatory, but is assumed by
6467          * some tools, such as mp4split. */
6468         if (mov->mode == MODE_ISM)
6469             track->timescale = 10000000;
6470
6471         avpriv_set_pts_info(st, 64, 1, track->timescale);
6472
6473         if (mov->encryption_scheme == MOV_ENC_CENC_AES_CTR) {
6474             ret = ff_mov_cenc_init(&track->cenc, mov->encryption_key,
6475                 track->par->codec_id == AV_CODEC_ID_H264, s->flags & AVFMT_FLAG_BITEXACT);
6476             if (ret)
6477                 return ret;
6478         }
6479     }
6480
6481     enable_tracks(s);
6482     return 0;
6483 }
6484
6485 static int mov_write_header(AVFormatContext *s)
6486 {
6487     AVIOContext *pb = s->pb;
6488     MOVMuxContext *mov = s->priv_data;
6489     AVDictionaryEntry *t, *global_tcr = av_dict_get(s->metadata, "timecode", NULL, 0);
6490     int i, ret, hint_track = 0, tmcd_track = 0, nb_tracks = s->nb_streams;
6491
6492     if (mov->mode & (MODE_MP4|MODE_MOV|MODE_IPOD) && s->nb_chapters)
6493         nb_tracks++;
6494
6495     if (mov->flags & FF_MOV_FLAG_RTP_HINT) {
6496         hint_track = nb_tracks;
6497         for (i = 0; i < s->nb_streams; i++)
6498             if (rtp_hinting_needed(s->streams[i]))
6499                 nb_tracks++;
6500     }
6501
6502     if (mov->nb_meta_tmcd)
6503         tmcd_track = nb_tracks;
6504
6505     for (i = 0; i < s->nb_streams; i++) {
6506         int j;
6507         AVStream *st= s->streams[i];
6508         MOVTrack *track= &mov->tracks[i];
6509
6510         /* copy extradata if it exists */
6511         if (st->codecpar->extradata_size) {
6512             if (st->codecpar->codec_id == AV_CODEC_ID_DVD_SUBTITLE)
6513                 mov_create_dvd_sub_decoder_specific_info(track, st);
6514             else if (!TAG_IS_AVCI(track->tag) && st->codecpar->codec_id != AV_CODEC_ID_DNXHD) {
6515                 track->vos_len  = st->codecpar->extradata_size;
6516                 track->vos_data = av_malloc(track->vos_len + AV_INPUT_BUFFER_PADDING_SIZE);
6517                 if (!track->vos_data) {
6518                     return AVERROR(ENOMEM);
6519                 }
6520                 memcpy(track->vos_data, st->codecpar->extradata, track->vos_len);
6521                 memset(track->vos_data + track->vos_len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
6522             }
6523         }
6524
6525         if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO ||
6526             track->par->channel_layout != AV_CH_LAYOUT_MONO)
6527             continue;
6528
6529         for (j = 0; j < s->nb_streams; j++) {
6530             AVStream *stj= s->streams[j];
6531             MOVTrack *trackj= &mov->tracks[j];
6532             if (j == i)
6533                 continue;
6534
6535             if (stj->codecpar->codec_type != AVMEDIA_TYPE_AUDIO ||
6536                 trackj->par->channel_layout != AV_CH_LAYOUT_MONO ||
6537                 trackj->language != track->language ||
6538                 trackj->tag != track->tag
6539             )
6540                 continue;
6541             track->multichannel_as_mono++;
6542         }
6543     }
6544
6545     if (!(mov->flags & FF_MOV_FLAG_DELAY_MOOV)) {
6546         if ((ret = mov_write_identification(pb, s)) < 0)
6547             return ret;
6548     }
6549
6550     if (mov->reserved_moov_size){
6551         mov->reserved_header_pos = avio_tell(pb);
6552         if (mov->reserved_moov_size > 0)
6553             avio_skip(pb, mov->reserved_moov_size);
6554     }
6555
6556     if (mov->flags & FF_MOV_FLAG_FRAGMENT) {
6557         /* If no fragmentation options have been set, set a default. */
6558         if (!(mov->flags & (FF_MOV_FLAG_FRAG_KEYFRAME |
6559                             FF_MOV_FLAG_FRAG_CUSTOM |
6560                             FF_MOV_FLAG_FRAG_EVERY_FRAME)) &&
6561             !mov->max_fragment_duration && !mov->max_fragment_size)
6562             mov->flags |= FF_MOV_FLAG_FRAG_KEYFRAME;
6563     } else {
6564         if (mov->flags & FF_MOV_FLAG_FASTSTART)
6565             mov->reserved_header_pos = avio_tell(pb);
6566         mov_write_mdat_tag(pb, mov);
6567     }
6568
6569     ff_parse_creation_time_metadata(s, &mov->time, 1);
6570     if (mov->time)
6571         mov->time += 0x7C25B080; // 1970 based -> 1904 based
6572
6573     if (mov->chapter_track)
6574         if ((ret = mov_create_chapter_track(s, mov->chapter_track)) < 0)
6575             return ret;
6576
6577     if (mov->flags & FF_MOV_FLAG_RTP_HINT) {
6578         for (i = 0; i < s->nb_streams; i++) {
6579             if (rtp_hinting_needed(s->streams[i])) {
6580                 if ((ret = ff_mov_init_hinting(s, hint_track, i)) < 0)
6581                     return ret;
6582                 hint_track++;
6583             }
6584         }
6585     }
6586
6587     if (mov->nb_meta_tmcd) {
6588         /* Initialize the tmcd tracks */
6589         for (i = 0; i < s->nb_streams; i++) {
6590             AVStream *st = s->streams[i];
6591             t = global_tcr;
6592
6593             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
6594                 AVTimecode tc;
6595                 if (!t)
6596                     t = av_dict_get(st->metadata, "timecode", NULL, 0);
6597                 if (!t)
6598                     continue;
6599                 if (mov_check_timecode_track(s, &tc, i, t->value) < 0)
6600                     continue;
6601                 if ((ret = mov_create_timecode_track(s, tmcd_track, i, tc)) < 0)
6602                     return ret;
6603                 tmcd_track++;
6604             }
6605         }
6606     }
6607
6608     avio_flush(pb);
6609
6610     if (mov->flags & FF_MOV_FLAG_ISML)
6611         mov_write_isml_manifest(pb, mov, s);
6612
6613     if (mov->flags & FF_MOV_FLAG_EMPTY_MOOV &&
6614         !(mov->flags & FF_MOV_FLAG_DELAY_MOOV)) {
6615         if ((ret = mov_write_moov_tag(pb, mov, s)) < 0)
6616             return ret;
6617         mov->moov_written = 1;
6618         if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX)
6619             mov->reserved_header_pos = avio_tell(pb);
6620     }
6621
6622     return 0;
6623 }
6624
6625 static int get_moov_size(AVFormatContext *s)
6626 {
6627     int ret;
6628     AVIOContext *moov_buf;
6629     MOVMuxContext *mov = s->priv_data;
6630
6631     if ((ret = ffio_open_null_buf(&moov_buf)) < 0)
6632         return ret;
6633     if ((ret = mov_write_moov_tag(moov_buf, mov, s)) < 0)
6634         return ret;
6635     return ffio_close_null_buf(moov_buf);
6636 }
6637
6638 static int get_sidx_size(AVFormatContext *s)
6639 {
6640     int ret;
6641     AVIOContext *buf;
6642     MOVMuxContext *mov = s->priv_data;
6643
6644     if ((ret = ffio_open_null_buf(&buf)) < 0)
6645         return ret;
6646     mov_write_sidx_tags(buf, mov, -1, 0);
6647     return ffio_close_null_buf(buf);
6648 }
6649
6650 /*
6651  * This function gets the moov size if moved to the top of the file: the chunk
6652  * offset table can switch between stco (32-bit entries) to co64 (64-bit
6653  * entries) when the moov is moved to the beginning, so the size of the moov
6654  * would change. It also updates the chunk offset tables.
6655  */
6656 static int compute_moov_size(AVFormatContext *s)
6657 {
6658     int i, moov_size, moov_size2;
6659     MOVMuxContext *mov = s->priv_data;
6660
6661     moov_size = get_moov_size(s);
6662     if (moov_size < 0)
6663         return moov_size;
6664
6665     for (i = 0; i < mov->nb_streams; i++)
6666         mov->tracks[i].data_offset += moov_size;
6667
6668     moov_size2 = get_moov_size(s);
6669     if (moov_size2 < 0)
6670         return moov_size2;
6671
6672     /* if the size changed, we just switched from stco to co64 and need to
6673      * update the offsets */
6674     if (moov_size2 != moov_size)
6675         for (i = 0; i < mov->nb_streams; i++)
6676             mov->tracks[i].data_offset += moov_size2 - moov_size;
6677
6678     return moov_size2;
6679 }
6680
6681 static int compute_sidx_size(AVFormatContext *s)
6682 {
6683     int i, sidx_size;
6684     MOVMuxContext *mov = s->priv_data;
6685
6686     sidx_size = get_sidx_size(s);
6687     if (sidx_size < 0)
6688         return sidx_size;
6689
6690     for (i = 0; i < mov->nb_streams; i++)
6691         mov->tracks[i].data_offset += sidx_size;
6692
6693     return sidx_size;
6694 }
6695
6696 static int shift_data(AVFormatContext *s)
6697 {
6698     int ret = 0, moov_size;
6699     MOVMuxContext *mov = s->priv_data;
6700     int64_t pos, pos_end = avio_tell(s->pb);
6701     uint8_t *buf, *read_buf[2];
6702     int read_buf_id = 0;
6703     int read_size[2];
6704     AVIOContext *read_pb;
6705
6706     if (mov->flags & FF_MOV_FLAG_FRAGMENT)
6707         moov_size = compute_sidx_size(s);
6708     else
6709         moov_size = compute_moov_size(s);
6710     if (moov_size < 0)
6711         return moov_size;
6712
6713     buf = av_malloc(moov_size * 2);
6714     if (!buf)
6715         return AVERROR(ENOMEM);
6716     read_buf[0] = buf;
6717     read_buf[1] = buf + moov_size;
6718
6719     /* Shift the data: the AVIO context of the output can only be used for
6720      * writing, so we re-open the same output, but for reading. It also avoids
6721      * a read/seek/write/seek back and forth. */
6722     avio_flush(s->pb);
6723     ret = s->io_open(s, &read_pb, s->url, AVIO_FLAG_READ, NULL);
6724     if (ret < 0) {
6725         av_log(s, AV_LOG_ERROR, "Unable to re-open %s output file for "
6726                "the second pass (faststart)\n", s->url);
6727         goto end;
6728     }
6729
6730     /* mark the end of the shift to up to the last data we wrote, and get ready
6731      * for writing */
6732     pos_end = avio_tell(s->pb);
6733     avio_seek(s->pb, mov->reserved_header_pos + moov_size, SEEK_SET);
6734
6735     /* start reading at where the new moov will be placed */
6736     avio_seek(read_pb, mov->reserved_header_pos, SEEK_SET);
6737     pos = avio_tell(read_pb);
6738
6739 #define READ_BLOCK do {                                                             \
6740     read_size[read_buf_id] = avio_read(read_pb, read_buf[read_buf_id], moov_size);  \
6741     read_buf_id ^= 1;                                                               \
6742 } while (0)
6743
6744     /* shift data by chunk of at most moov_size */
6745     READ_BLOCK;
6746     do {
6747         int n;
6748         READ_BLOCK;
6749         n = read_size[read_buf_id];
6750         if (n <= 0)
6751             break;
6752         avio_write(s->pb, read_buf[read_buf_id], n);
6753         pos += n;
6754     } while (pos < pos_end);
6755     ff_format_io_close(s, &read_pb);
6756
6757 end:
6758     av_free(buf);
6759     return ret;
6760 }
6761
6762 static int mov_write_trailer(AVFormatContext *s)
6763 {
6764     MOVMuxContext *mov = s->priv_data;
6765     AVIOContext *pb = s->pb;
6766     int res = 0;
6767     int i;
6768     int64_t moov_pos;
6769
6770     if (mov->need_rewrite_extradata) {
6771         for (i = 0; i < s->nb_streams; i++) {
6772             MOVTrack *track = &mov->tracks[i];
6773             AVCodecParameters *par = track->par;
6774
6775             track->vos_len  = par->extradata_size;
6776             track->vos_data = av_malloc(track->vos_len + AV_INPUT_BUFFER_PADDING_SIZE);
6777             if (!track->vos_data)
6778                 return AVERROR(ENOMEM);
6779             memcpy(track->vos_data, par->extradata, track->vos_len);
6780             memset(track->vos_data + track->vos_len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
6781         }
6782         mov->need_rewrite_extradata = 0;
6783     }
6784
6785     /*
6786      * Before actually writing the trailer, make sure that there are no
6787      * dangling subtitles, that need a terminating sample.
6788      */
6789     for (i = 0; i < mov->nb_streams; i++) {
6790         MOVTrack *trk = &mov->tracks[i];
6791         if (trk->par->codec_id == AV_CODEC_ID_MOV_TEXT &&
6792             !trk->last_sample_is_subtitle_end) {
6793             mov_write_subtitle_end_packet(s, i, trk->track_duration);
6794             trk->last_sample_is_subtitle_end = 1;
6795         }
6796     }
6797
6798     // If there were no chapters when the header was written, but there
6799     // are chapters now, write them in the trailer.  This only works
6800     // when we are not doing fragments.
6801     if (!mov->chapter_track && !(mov->flags & FF_MOV_FLAG_FRAGMENT)) {
6802         if (mov->mode & (MODE_MP4|MODE_MOV|MODE_IPOD) && s->nb_chapters) {
6803             mov->chapter_track = mov->nb_streams++;
6804             if ((res = mov_create_chapter_track(s, mov->chapter_track)) < 0)
6805                 return res;
6806         }
6807     }
6808
6809     if (!(mov->flags & FF_MOV_FLAG_FRAGMENT)) {
6810         moov_pos = avio_tell(pb);
6811
6812         /* Write size of mdat tag */
6813         if (mov->mdat_size + 8 <= UINT32_MAX) {
6814             avio_seek(pb, mov->mdat_pos, SEEK_SET);
6815             avio_wb32(pb, mov->mdat_size + 8);
6816         } else {
6817             /* overwrite 'wide' placeholder atom */
6818             avio_seek(pb, mov->mdat_pos - 8, SEEK_SET);
6819             /* special value: real atom size will be 64 bit value after
6820              * tag field */
6821             avio_wb32(pb, 1);
6822             ffio_wfourcc(pb, "mdat");
6823             avio_wb64(pb, mov->mdat_size + 16);
6824         }
6825         avio_seek(pb, mov->reserved_moov_size > 0 ? mov->reserved_header_pos : moov_pos, SEEK_SET);
6826
6827         if (mov->flags & FF_MOV_FLAG_FASTSTART) {
6828             av_log(s, AV_LOG_INFO, "Starting second pass: moving the moov atom to the beginning of the file\n");
6829             res = shift_data(s);
6830             if (res < 0)
6831                 return res;
6832             avio_seek(pb, mov->reserved_header_pos, SEEK_SET);
6833             if ((res = mov_write_moov_tag(pb, mov, s)) < 0)
6834                 return res;
6835         } else if (mov->reserved_moov_size > 0) {
6836             int64_t size;
6837             if ((res = mov_write_moov_tag(pb, mov, s)) < 0)
6838                 return res;
6839             size = mov->reserved_moov_size - (avio_tell(pb) - mov->reserved_header_pos);
6840             if (size < 8){
6841                 av_log(s, AV_LOG_ERROR, "reserved_moov_size is too small, needed %"PRId64" additional\n", 8-size);
6842                 return AVERROR(EINVAL);
6843             }
6844             avio_wb32(pb, size);
6845             ffio_wfourcc(pb, "free");
6846             ffio_fill(pb, 0, size - 8);
6847             avio_seek(pb, moov_pos, SEEK_SET);
6848         } else {
6849             if ((res = mov_write_moov_tag(pb, mov, s)) < 0)
6850                 return res;
6851         }
6852         res = 0;
6853     } else {
6854         mov_auto_flush_fragment(s, 1);
6855         for (i = 0; i < mov->nb_streams; i++)
6856            mov->tracks[i].data_offset = 0;
6857         if (mov->flags & FF_MOV_FLAG_GLOBAL_SIDX) {
6858             int64_t end;
6859             av_log(s, AV_LOG_INFO, "Starting second pass: inserting sidx atoms\n");
6860             res = shift_data(s);
6861             if (res < 0)
6862                 return res;
6863             end = avio_tell(pb);
6864             avio_seek(pb, mov->reserved_header_pos, SEEK_SET);
6865             mov_write_sidx_tags(pb, mov, -1, 0);
6866             avio_seek(pb, end, SEEK_SET);
6867         }
6868         if (!(mov->flags & FF_MOV_FLAG_SKIP_TRAILER)) {
6869             avio_write_marker(s->pb, AV_NOPTS_VALUE, AVIO_DATA_MARKER_TRAILER);
6870             mov_write_mfra_tag(pb, mov);
6871         }
6872     }
6873
6874     return res;
6875 }
6876
6877 static int mov_check_bitstream(struct AVFormatContext *s, const AVPacket *pkt)
6878 {
6879     int ret = 1;
6880     AVStream *st = s->streams[pkt->stream_index];
6881
6882     if (st->codecpar->codec_id == AV_CODEC_ID_AAC) {
6883         if (pkt->size > 2 && (AV_RB16(pkt->data) & 0xfff0) == 0xfff0)
6884             ret = ff_stream_add_bitstream_filter(st, "aac_adtstoasc", NULL);
6885     } else if (st->codecpar->codec_id == AV_CODEC_ID_VP9) {
6886         ret = ff_stream_add_bitstream_filter(st, "vp9_superframe", NULL);
6887     }
6888
6889     return ret;
6890 }
6891
6892 static const AVCodecTag codec_3gp_tags[] = {
6893     { AV_CODEC_ID_H263,     MKTAG('s','2','6','3') },
6894     { AV_CODEC_ID_H264,     MKTAG('a','v','c','1') },
6895     { AV_CODEC_ID_MPEG4,    MKTAG('m','p','4','v') },
6896     { AV_CODEC_ID_AAC,      MKTAG('m','p','4','a') },
6897     { AV_CODEC_ID_AMR_NB,   MKTAG('s','a','m','r') },
6898     { AV_CODEC_ID_AMR_WB,   MKTAG('s','a','w','b') },
6899     { AV_CODEC_ID_MOV_TEXT, MKTAG('t','x','3','g') },
6900     { AV_CODEC_ID_NONE, 0 },
6901 };
6902
6903 const AVCodecTag codec_mp4_tags[] = {
6904     { AV_CODEC_ID_MPEG4,           MKTAG('m', 'p', '4', 'v') },
6905     { AV_CODEC_ID_H264,            MKTAG('a', 'v', 'c', '1') },
6906     { AV_CODEC_ID_H264,            MKTAG('a', 'v', 'c', '3') },
6907     { AV_CODEC_ID_HEVC,            MKTAG('h', 'e', 'v', '1') },
6908     { AV_CODEC_ID_HEVC,            MKTAG('h', 'v', 'c', '1') },
6909     { AV_CODEC_ID_MPEG2VIDEO,      MKTAG('m', 'p', '4', 'v') },
6910     { AV_CODEC_ID_MPEG1VIDEO,      MKTAG('m', 'p', '4', 'v') },
6911     { AV_CODEC_ID_MJPEG,           MKTAG('m', 'p', '4', 'v') },
6912     { AV_CODEC_ID_PNG,             MKTAG('m', 'p', '4', 'v') },
6913     { AV_CODEC_ID_JPEG2000,        MKTAG('m', 'p', '4', 'v') },
6914     { AV_CODEC_ID_VC1,             MKTAG('v', 'c', '-', '1') },
6915     { AV_CODEC_ID_DIRAC,           MKTAG('d', 'r', 'a', 'c') },
6916     { AV_CODEC_ID_TSCC2,           MKTAG('m', 'p', '4', 'v') },
6917     { AV_CODEC_ID_VP9,             MKTAG('v', 'p', '0', '9') },
6918     { AV_CODEC_ID_AV1,             MKTAG('a', 'v', '0', '1') },
6919     { AV_CODEC_ID_AAC,             MKTAG('m', 'p', '4', 'a') },
6920     { AV_CODEC_ID_MP4ALS,          MKTAG('m', 'p', '4', 'a') },
6921     { AV_CODEC_ID_MP3,             MKTAG('m', 'p', '4', 'a') },
6922     { AV_CODEC_ID_MP2,             MKTAG('m', 'p', '4', 'a') },
6923     { AV_CODEC_ID_AC3,             MKTAG('a', 'c', '-', '3') },
6924     { AV_CODEC_ID_EAC3,            MKTAG('e', 'c', '-', '3') },
6925     { AV_CODEC_ID_DTS,             MKTAG('m', 'p', '4', 'a') },
6926     { AV_CODEC_ID_TRUEHD,          MKTAG('m', 'l', 'p', 'a') },
6927     { AV_CODEC_ID_FLAC,            MKTAG('f', 'L', 'a', 'C') },
6928     { AV_CODEC_ID_OPUS,            MKTAG('O', 'p', 'u', 's') },
6929     { AV_CODEC_ID_VORBIS,          MKTAG('m', 'p', '4', 'a') },
6930     { AV_CODEC_ID_QCELP,           MKTAG('m', 'p', '4', 'a') },
6931     { AV_CODEC_ID_EVRC,            MKTAG('m', 'p', '4', 'a') },
6932     { AV_CODEC_ID_DVD_SUBTITLE,    MKTAG('m', 'p', '4', 's') },
6933     { AV_CODEC_ID_MOV_TEXT,        MKTAG('t', 'x', '3', 'g') },
6934     { AV_CODEC_ID_BIN_DATA,        MKTAG('g', 'p', 'm', 'd') },
6935     { AV_CODEC_ID_MPEGH_3D_AUDIO,  MKTAG('m', 'h', 'm', '1') },
6936     { AV_CODEC_ID_NONE,               0 },
6937 };
6938
6939 const AVCodecTag codec_ism_tags[] = {
6940     { AV_CODEC_ID_WMAPRO      , MKTAG('w', 'm', 'a', ' ') },
6941     { AV_CODEC_ID_NONE        ,    0 },
6942 };
6943
6944 static const AVCodecTag codec_ipod_tags[] = {
6945     { AV_CODEC_ID_H264,     MKTAG('a','v','c','1') },
6946     { AV_CODEC_ID_MPEG4,    MKTAG('m','p','4','v') },
6947     { AV_CODEC_ID_AAC,      MKTAG('m','p','4','a') },
6948     { AV_CODEC_ID_ALAC,     MKTAG('a','l','a','c') },
6949     { AV_CODEC_ID_AC3,      MKTAG('a','c','-','3') },
6950     { AV_CODEC_ID_MOV_TEXT, MKTAG('t','x','3','g') },
6951     { AV_CODEC_ID_MOV_TEXT, MKTAG('t','e','x','t') },
6952     { AV_CODEC_ID_NONE, 0 },
6953 };
6954
6955 static const AVCodecTag codec_f4v_tags[] = {
6956     { AV_CODEC_ID_MP3,    MKTAG('.','m','p','3') },
6957     { AV_CODEC_ID_AAC,    MKTAG('m','p','4','a') },
6958     { AV_CODEC_ID_H264,   MKTAG('a','v','c','1') },
6959     { AV_CODEC_ID_VP6A,   MKTAG('V','P','6','A') },
6960     { AV_CODEC_ID_VP6F,   MKTAG('V','P','6','F') },
6961     { AV_CODEC_ID_NONE, 0 },
6962 };
6963
6964 #if CONFIG_MOV_MUXER
6965 MOV_CLASS(mov)
6966 AVOutputFormat ff_mov_muxer = {
6967     .name              = "mov",
6968     .long_name         = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
6969     .extensions        = "mov",
6970     .priv_data_size    = sizeof(MOVMuxContext),
6971     .audio_codec       = AV_CODEC_ID_AAC,
6972     .video_codec       = CONFIG_LIBX264_ENCODER ?
6973                          AV_CODEC_ID_H264 : AV_CODEC_ID_MPEG4,
6974     .init              = mov_init,
6975     .write_header      = mov_write_header,
6976     .write_packet      = mov_write_packet,
6977     .write_trailer     = mov_write_trailer,
6978     .deinit            = mov_free,
6979     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
6980     .codec_tag         = (const AVCodecTag* const []){
6981         ff_codec_movvideo_tags, ff_codec_movaudio_tags, ff_codec_movsubtitle_tags, 0
6982     },
6983     .check_bitstream   = mov_check_bitstream,
6984     .priv_class        = &mov_muxer_class,
6985 };
6986 #endif
6987 #if CONFIG_TGP_MUXER
6988 MOV_CLASS(tgp)
6989 AVOutputFormat ff_tgp_muxer = {
6990     .name              = "3gp",
6991     .long_name         = NULL_IF_CONFIG_SMALL("3GP (3GPP file format)"),
6992     .extensions        = "3gp",
6993     .priv_data_size    = sizeof(MOVMuxContext),
6994     .audio_codec       = AV_CODEC_ID_AMR_NB,
6995     .video_codec       = AV_CODEC_ID_H263,
6996     .init              = mov_init,
6997     .write_header      = mov_write_header,
6998     .write_packet      = mov_write_packet,
6999     .write_trailer     = mov_write_trailer,
7000     .deinit            = mov_free,
7001     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7002     .codec_tag         = (const AVCodecTag* const []){ codec_3gp_tags, 0 },
7003     .check_bitstream   = mov_check_bitstream,
7004     .priv_class        = &tgp_muxer_class,
7005 };
7006 #endif
7007 #if CONFIG_MP4_MUXER
7008 MOV_CLASS(mp4)
7009 AVOutputFormat ff_mp4_muxer = {
7010     .name              = "mp4",
7011     .long_name         = NULL_IF_CONFIG_SMALL("MP4 (MPEG-4 Part 14)"),
7012     .mime_type         = "video/mp4",
7013     .extensions        = "mp4",
7014     .priv_data_size    = sizeof(MOVMuxContext),
7015     .audio_codec       = AV_CODEC_ID_AAC,
7016     .video_codec       = CONFIG_LIBX264_ENCODER ?
7017                          AV_CODEC_ID_H264 : AV_CODEC_ID_MPEG4,
7018     .init              = mov_init,
7019     .write_header      = mov_write_header,
7020     .write_packet      = mov_write_packet,
7021     .write_trailer     = mov_write_trailer,
7022     .deinit            = mov_free,
7023     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7024     .codec_tag         = (const AVCodecTag* const []){ codec_mp4_tags, 0 },
7025     .check_bitstream   = mov_check_bitstream,
7026     .priv_class        = &mp4_muxer_class,
7027 };
7028 #endif
7029 #if CONFIG_PSP_MUXER
7030 MOV_CLASS(psp)
7031 AVOutputFormat ff_psp_muxer = {
7032     .name              = "psp",
7033     .long_name         = NULL_IF_CONFIG_SMALL("PSP MP4 (MPEG-4 Part 14)"),
7034     .extensions        = "mp4,psp",
7035     .priv_data_size    = sizeof(MOVMuxContext),
7036     .audio_codec       = AV_CODEC_ID_AAC,
7037     .video_codec       = CONFIG_LIBX264_ENCODER ?
7038                          AV_CODEC_ID_H264 : AV_CODEC_ID_MPEG4,
7039     .init              = mov_init,
7040     .write_header      = mov_write_header,
7041     .write_packet      = mov_write_packet,
7042     .write_trailer     = mov_write_trailer,
7043     .deinit            = mov_free,
7044     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7045     .codec_tag         = (const AVCodecTag* const []){ codec_mp4_tags, 0 },
7046     .check_bitstream   = mov_check_bitstream,
7047     .priv_class        = &psp_muxer_class,
7048 };
7049 #endif
7050 #if CONFIG_TG2_MUXER
7051 MOV_CLASS(tg2)
7052 AVOutputFormat ff_tg2_muxer = {
7053     .name              = "3g2",
7054     .long_name         = NULL_IF_CONFIG_SMALL("3GP2 (3GPP2 file format)"),
7055     .extensions        = "3g2",
7056     .priv_data_size    = sizeof(MOVMuxContext),
7057     .audio_codec       = AV_CODEC_ID_AMR_NB,
7058     .video_codec       = AV_CODEC_ID_H263,
7059     .init              = mov_init,
7060     .write_header      = mov_write_header,
7061     .write_packet      = mov_write_packet,
7062     .write_trailer     = mov_write_trailer,
7063     .deinit            = mov_free,
7064     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7065     .codec_tag         = (const AVCodecTag* const []){ codec_3gp_tags, 0 },
7066     .check_bitstream   = mov_check_bitstream,
7067     .priv_class        = &tg2_muxer_class,
7068 };
7069 #endif
7070 #if CONFIG_IPOD_MUXER
7071 MOV_CLASS(ipod)
7072 AVOutputFormat ff_ipod_muxer = {
7073     .name              = "ipod",
7074     .long_name         = NULL_IF_CONFIG_SMALL("iPod H.264 MP4 (MPEG-4 Part 14)"),
7075     .mime_type         = "video/mp4",
7076     .extensions        = "m4v,m4a,m4b",
7077     .priv_data_size    = sizeof(MOVMuxContext),
7078     .audio_codec       = AV_CODEC_ID_AAC,
7079     .video_codec       = AV_CODEC_ID_H264,
7080     .init              = mov_init,
7081     .write_header      = mov_write_header,
7082     .write_packet      = mov_write_packet,
7083     .write_trailer     = mov_write_trailer,
7084     .deinit            = mov_free,
7085     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7086     .codec_tag         = (const AVCodecTag* const []){ codec_ipod_tags, 0 },
7087     .check_bitstream   = mov_check_bitstream,
7088     .priv_class        = &ipod_muxer_class,
7089 };
7090 #endif
7091 #if CONFIG_ISMV_MUXER
7092 MOV_CLASS(ismv)
7093 AVOutputFormat ff_ismv_muxer = {
7094     .name              = "ismv",
7095     .long_name         = NULL_IF_CONFIG_SMALL("ISMV/ISMA (Smooth Streaming)"),
7096     .mime_type         = "video/mp4",
7097     .extensions        = "ismv,isma",
7098     .priv_data_size    = sizeof(MOVMuxContext),
7099     .audio_codec       = AV_CODEC_ID_AAC,
7100     .video_codec       = AV_CODEC_ID_H264,
7101     .init              = mov_init,
7102     .write_header      = mov_write_header,
7103     .write_packet      = mov_write_packet,
7104     .write_trailer     = mov_write_trailer,
7105     .deinit            = mov_free,
7106     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_TS_NEGATIVE,
7107     .codec_tag         = (const AVCodecTag* const []){
7108         codec_mp4_tags, codec_ism_tags, 0 },
7109     .check_bitstream   = mov_check_bitstream,
7110     .priv_class        = &ismv_muxer_class,
7111 };
7112 #endif
7113 #if CONFIG_F4V_MUXER
7114 MOV_CLASS(f4v)
7115 AVOutputFormat ff_f4v_muxer = {
7116     .name              = "f4v",
7117     .long_name         = NULL_IF_CONFIG_SMALL("F4V Adobe Flash Video"),
7118     .mime_type         = "application/f4v",
7119     .extensions        = "f4v",
7120     .priv_data_size    = sizeof(MOVMuxContext),
7121     .audio_codec       = AV_CODEC_ID_AAC,
7122     .video_codec       = AV_CODEC_ID_H264,
7123     .init              = mov_init,
7124     .write_header      = mov_write_header,
7125     .write_packet      = mov_write_packet,
7126     .write_trailer     = mov_write_trailer,
7127     .deinit            = mov_free,
7128     .flags             = AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH,
7129     .codec_tag         = (const AVCodecTag* const []){ codec_f4v_tags, 0 },
7130     .check_bitstream   = mov_check_bitstream,
7131     .priv_class        = &f4v_muxer_class,
7132 };
7133 #endif