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