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