libavformat/movenc.c
1cb5f7fd
 /*
7fbde343
  * MOV, 3GP, MP4 muxer
406792e7
  * Copyright (c) 2003 Thomas Raivio
  * Copyright (c) 2004 Gildas Bazin <gbazin at videolan dot org>
7c4502c8
  * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
1cb5f7fd
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
1cb5f7fd
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
1cb5f7fd
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
1cb5f7fd
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1cb5f7fd
  */
4909e517
 
f72dad41
 #include "movenc.h"
1cb5f7fd
 #include "avformat.h"
32442930
 #include "avio_internal.h"
9d9f4119
 #include "riff.h"
1cb5f7fd
 #include "avio.h"
e40ee6a2
 #include "isom.h"
1bd2d763
 #include "avc.h"
9106a698
 #include "libavcodec/get_bits.h"
b2755007
 #include "libavcodec/put_bits.h"
e977af6f
 #include "internal.h"
 #include "libavutil/avstring.h"
91e3a25e
 #include "libavutil/opt.h"
d2d67e42
 #include "libavutil/dict.h"
d16cccac
 #include "rtpenc.h"
1cb5f7fd
 
6e6d6dc0
 #undef NDEBUG
 #include <assert.h>
 
91e3a25e
 static const AVOption options[] = {
28734ac9
     { "movflags", "MOV muxer flags", offsetof(MOVMuxContext, flags), FF_OPT_TYPE_FLAGS, {.dbl = 0}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
     { "rtphint", "Add RTP hint tracks", 0, FF_OPT_TYPE_CONST, {.dbl = FF_MOV_FLAG_RTP_HINT}, INT_MIN, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, "movflags" },
d16cccac
     FF_RTP_FLAG_OPTS(MOVMuxContext, rtp_flags),
91e3a25e
     { NULL },
 };
 
 static const AVClass mov_muxer_class = {
     .class_name = "MOV/3GP/MP4/3G2 muxer",
     .item_name  = av_default_item_name,
     .option     = options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
90b5b51e
 //FIXME support 64 bit variant with wide placeholders
471fe57e
 static int64_t updateSize(AVIOContext *pb, int64_t pos)
1cb5f7fd
 {
384c9c2f
     int64_t curpos = avio_tell(pb);
f59d8ff8
     avio_seek(pb, pos, SEEK_SET);
e9eb8d0b
     avio_wb32(pb, curpos - pos); /* rewrite size */
f59d8ff8
     avio_seek(pb, curpos, SEEK_SET);
6e6d6dc0
 
     return curpos - pos;
1cb5f7fd
 }
 
e45ccf79
 /* Chunk offset atom */
471fe57e
 static int mov_write_stco_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
     int i;
ed06cf6d
     int mode64 = 0; //   use 32 bit size variant if possible
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
b29af723
     if (pos > UINT32_MAX) {
         mode64 = 1;
32442930
         ffio_wfourcc(pb, "co64");
b29af723
     } else
32442930
         ffio_wfourcc(pb, "stco");
e9eb8d0b
     avio_wb32(pb, 0); /* version & flags */
     avio_wb32(pb, track->entry); /* entry count */
1cb5f7fd
     for (i=0; i<track->entry; i++) {
b29af723
         if(mode64 == 1)
e9eb8d0b
             avio_wb64(pb, track->cluster[i].pos);
b29af723
         else
e9eb8d0b
             avio_wb32(pb, track->cluster[i].pos);
1cb5f7fd
     }
f7635edb
     return updateSize(pb, pos);
1cb5f7fd
 }
 
e45ccf79
 /* Sample size atom */
471fe57e
 static int mov_write_stsz_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
f578f938
     int equalChunks = 1;
e45ccf79
     int i, j, entries = 0, tst = -1, oldtst = -1;
1cb5f7fd
 
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "stsz");
e9eb8d0b
     avio_wb32(pb, 0); /* version & flags */
1cb5f7fd
 
f578f938
     for (i=0; i<track->entry; i++) {
0aec3c5c
         tst = track->cluster[i].size/track->cluster[i].entries;
e45ccf79
         if(oldtst != -1 && tst != oldtst) {
             equalChunks = 0;
f578f938
         }
         oldtst = tst;
0aec3c5c
         entries += track->cluster[i].entries;
f578f938
     }
e45ccf79
     if (equalChunks) {
0aec3c5c
         int sSize = track->cluster[0].size/track->cluster[0].entries;
65ad2c61
         sSize = FFMAX(1, sSize); // adpcm mono case could make sSize == 0
e9eb8d0b
         avio_wb32(pb, sSize); // sample size
         avio_wb32(pb, entries); // sample count
1cb5f7fd
     }
f578f938
     else {
e9eb8d0b
         avio_wb32(pb, 0); // sample size
         avio_wb32(pb, entries); // sample count
f578f938
         for (i=0; i<track->entry; i++) {
91208916
             for (j=0; j<track->cluster[i].entries; j++) {
e9eb8d0b
                 avio_wb32(pb, track->cluster[i].size /
0aec3c5c
                          track->cluster[i].entries);
e45ccf79
             }
1cb5f7fd
         }
     }
f7635edb
     return updateSize(pb, pos);
1cb5f7fd
 }
 
e45ccf79
 /* Sample to chunk atom */
471fe57e
 static int mov_write_stsc_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
b29af723
     int index = 0, oldval = -1, i;
bc5c918e
     int64_t entryPos, curpos;
f578f938
 
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "stsc");
e9eb8d0b
     avio_wb32(pb, 0); // version & flags
384c9c2f
     entryPos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, track->entry); // entry count
f578f938
     for (i=0; i<track->entry; i++) {
0aec3c5c
         if(oldval != track->cluster[i].samplesInChunk)
f578f938
         {
e9eb8d0b
             avio_wb32(pb, i+1); // first chunk
             avio_wb32(pb, track->cluster[i].samplesInChunk); // samples per chunk
             avio_wb32(pb, 0x1); // sample description index
0aec3c5c
             oldval = track->cluster[i].samplesInChunk;
f578f938
             index++;
1cb5f7fd
         }
     }
384c9c2f
     curpos = avio_tell(pb);
f59d8ff8
     avio_seek(pb, entryPos, SEEK_SET);
e9eb8d0b
     avio_wb32(pb, index); // rewrite size
f59d8ff8
     avio_seek(pb, curpos, SEEK_SET);
1cb5f7fd
 
f7635edb
     return updateSize(pb, pos);
1cb5f7fd
 }
 
e45ccf79
 /* Sync sample atom */
471fe57e
 static int mov_write_stss_tag(AVIOContext *pb, MOVTrack *track, uint32_t flag)
1cb5f7fd
 {
bc5c918e
     int64_t curpos, entryPos;
b29af723
     int i, index = 0;
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); // size
32442930
     ffio_wfourcc(pb, flag == MOV_SYNC_SAMPLE ? "stss" : "stps");
e9eb8d0b
     avio_wb32(pb, 0); // version & flags
384c9c2f
     entryPos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, track->entry); // entry count
f578f938
     for (i=0; i<track->entry; i++) {
e1316b19
         if (track->cluster[i].flags & flag) {
e9eb8d0b
             avio_wb32(pb, i+1);
f578f938
             index++;
         }
     }
384c9c2f
     curpos = avio_tell(pb);
f59d8ff8
     avio_seek(pb, entryPos, SEEK_SET);
e9eb8d0b
     avio_wb32(pb, index); // rewrite size
f59d8ff8
     avio_seek(pb, curpos, SEEK_SET);
f7635edb
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_amr_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
e9eb8d0b
     avio_wb32(pb, 0x11); /* size */
32442930
     if (track->mode == MODE_MOV) ffio_wfourcc(pb, "samr");
     else                         ffio_wfourcc(pb, "damr");
     ffio_wfourcc(pb, "FFMP");
e9eb8d0b
     avio_w8(pb, 0); /* decoder version */
3a72cbd9
 
e9eb8d0b
     avio_wb16(pb, 0x81FF); /* Mode set (all modes for AMR_NB) */
     avio_w8(pb, 0x00); /* Mode change period (no restriction) */
     avio_w8(pb, 0x01); /* Frames per sample */
3a72cbd9
     return 0x11;
 }
 
471fe57e
 static int mov_write_ac3_tag(AVIOContext *pb, MOVTrack *track)
d4a240cb
 {
     GetBitContext gbc;
     PutBitContext pbc;
     uint8_t buf[3];
     int fscod, bsid, bsmod, acmod, lfeon, frmsizecod;
 
     if (track->vosLen < 7)
         return -1;
 
e9eb8d0b
     avio_wb32(pb, 11);
32442930
     ffio_wfourcc(pb, "dac3");
d4a240cb
 
7181adab
     init_get_bits(&gbc, track->vosData+4, (track->vosLen-4) * 8);
d4a240cb
     fscod      = get_bits(&gbc, 2);
     frmsizecod = get_bits(&gbc, 6);
     bsid       = get_bits(&gbc, 5);
     bsmod      = get_bits(&gbc, 3);
     acmod      = get_bits(&gbc, 3);
     if (acmod == 2) {
         skip_bits(&gbc, 2); // dsurmod
     } else {
         if ((acmod & 1) && acmod != 1)
             skip_bits(&gbc, 2); // cmixlev
         if (acmod & 4)
             skip_bits(&gbc, 2); // surmixlev
     }
     lfeon = get_bits1(&gbc);
 
     init_put_bits(&pbc, buf, sizeof(buf));
     put_bits(&pbc, 2, fscod);
     put_bits(&pbc, 5, bsid);
     put_bits(&pbc, 3, bsmod);
     put_bits(&pbc, 3, acmod);
     put_bits(&pbc, 1, lfeon);
     put_bits(&pbc, 5, frmsizecod>>1); // bit_rate_code
     put_bits(&pbc, 5, 0); // reserved
 
     flush_put_bits(&pbc);
e9eb8d0b
     avio_write(pb, buf, sizeof(buf));
d4a240cb
 
     return 11;
 }
 
463e7afd
 /**
  * This function writes extradata "as is".
  * Extradata must be formated like a valid atom (with size and tag)
  */
471fe57e
 static int mov_write_extradata_tag(AVIOContext *pb, MOVTrack *track)
463e7afd
 {
e9eb8d0b
     avio_write(pb, track->enc->extradata, track->enc->extradata_size);
463e7afd
     return track->enc->extradata_size;
 }
 
471fe57e
 static int mov_write_enda_tag(AVIOContext *pb)
fcef991a
 {
e9eb8d0b
     avio_wb32(pb, 10);
32442930
     ffio_wfourcc(pb, "enda");
e9eb8d0b
     avio_wb16(pb, 1); /* little endian */
fcef991a
     return 10;
 }
 
471fe57e
 static void putDescr(AVIOContext *pb, int tag, unsigned int size)
039627cf
 {
93dfda88
     int i = 3;
e9eb8d0b
     avio_w8(pb, tag);
08db8f18
     for(; i>0; i--)
e9eb8d0b
         avio_w8(pb, (size>>(7*i)) | 0x80);
     avio_w8(pb, size & 0x7F);
039627cf
 }
 
0ba84856
 static unsigned compute_avg_bitrate(MOVTrack *track)
 {
     uint64_t size = 0;
     int i;
     for (i = 0; i < track->entry; i++)
         size += track->cluster[i].size;
     return size * 8 * track->timescale / track->trackDuration;
 }
 
471fe57e
 static int mov_write_esds_tag(AVIOContext *pb, MOVTrack *track) // Basic
039627cf
 {
384c9c2f
     int64_t pos = avio_tell(pb);
93dfda88
     int decoderSpecificInfoLen = track->vosLen ? 5+track->vosLen : 0;
0ba84856
     unsigned avg_bitrate;
039627cf
 
e9eb8d0b
     avio_wb32(pb, 0); // size
32442930
     ffio_wfourcc(pb, "esds");
e9eb8d0b
     avio_wb32(pb, 0); // Version
039627cf
 
     // ES descriptor
93dfda88
     putDescr(pb, 0x03, 3 + 5+13 + decoderSpecificInfoLen + 5+1);
e9eb8d0b
     avio_wb16(pb, track->trackID);
     avio_w8(pb, 0x00); // flags (= no flags)
039627cf
 
     // DecoderConfig descriptor
     putDescr(pb, 0x04, 13 + decoderSpecificInfoLen);
 
     // Object type indication
dfce888f
     if ((track->enc->codec_id == CODEC_ID_MP2 ||
          track->enc->codec_id == CODEC_ID_MP3) &&
c4e02d70
         track->enc->sample_rate > 24000)
e9eb8d0b
         avio_w8(pb, 0x6B); // 11172-3
dfce888f
     else
e9eb8d0b
         avio_w8(pb, ff_codec_get_tag(ff_mp4_obj_type, track->enc->codec_id));
039627cf
 
     // the following fields is made of 6 bits to identify the streamtype (4 for video, 5 for audio)
     // plus 1 bit to indicate upstream and 1 bit set to 1 (reserved)
72415b2a
     if(track->enc->codec_type == AVMEDIA_TYPE_AUDIO)
e9eb8d0b
         avio_w8(pb, 0x15); // flags (= Audiostream)
039627cf
     else
e9eb8d0b
         avio_w8(pb, 0x11); // flags (= Visualstream)
039627cf
 
e9eb8d0b
     avio_w8(pb,  track->enc->rc_buffer_size>>(3+16));      // Buffersize DB (24 bits)
     avio_wb16(pb, (track->enc->rc_buffer_size>>3)&0xFFFF); // Buffersize DB
039627cf
 
0ba84856
     avg_bitrate = compute_avg_bitrate(track);
     // maxbitrate (FIXME should be max rate in any 1 sec window)
     avio_wb32(pb, FFMAX3(track->enc->bit_rate, track->enc->rc_max_rate, avg_bitrate));
     avio_wb32(pb, avg_bitrate);
039627cf
 
287d6cfa
     if (track->vosLen) {
039627cf
         // DecoderSpecific info descriptor
         putDescr(pb, 0x05, track->vosLen);
e9eb8d0b
         avio_write(pb, track->vosData, track->vosLen);
039627cf
     }
 
     // SL descriptor
     putDescr(pb, 0x06, 1);
e9eb8d0b
     avio_w8(pb, 0x02);
f7635edb
     return updateSize(pb, pos);
039627cf
 }
 
7c4b7d0f
 static int mov_pcm_le_gt16(enum CodecID codec_id)
 {
     return codec_id == CODEC_ID_PCM_S24LE ||
            codec_id == CODEC_ID_PCM_S32LE ||
            codec_id == CODEC_ID_PCM_F32LE ||
            codec_id == CODEC_ID_PCM_F64LE;
 }
 
471fe57e
 static int mov_write_ms_tag(AVIOContext *pb, MOVTrack *track)
d4e0130e
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0);
     avio_wl32(pb, track->tag); // store it byteswapped
9653e754
     track->enc->codec_tag = av_bswap16(track->tag >> 16);
d4e0130e
     ff_put_wav_header(pb, track->enc);
     return updateSize(pb, pos);
 }
 
471fe57e
 static int mov_write_wave_tag(AVIOContext *pb, MOVTrack *track)
69dde1ad
 {
384c9c2f
     int64_t pos = avio_tell(pb);
69dde1ad
 
e9eb8d0b
     avio_wb32(pb, 0);     /* size */
32442930
     ffio_wfourcc(pb, "wave");
69dde1ad
 
e9eb8d0b
     avio_wb32(pb, 12);    /* size */
32442930
     ffio_wfourcc(pb, "frma");
e9eb8d0b
     avio_wl32(pb, track->tag);
69dde1ad
 
fcef991a
     if (track->enc->codec_id == CODEC_ID_AAC) {
aa1c1c61
         /* useless atom needed by mplayer, ipod, not needed by quicktime */
e9eb8d0b
         avio_wb32(pb, 12); /* size */
32442930
         ffio_wfourcc(pb, "mp4a");
e9eb8d0b
         avio_wb32(pb, 0);
fcef991a
         mov_write_esds_tag(pb, track);
7c4b7d0f
     } else if (mov_pcm_le_gt16(track->enc->codec_id)) {
fcef991a
         mov_write_enda_tag(pb);
3a72cbd9
     } else if (track->enc->codec_id == CODEC_ID_AMR_NB) {
b7d9da10
         mov_write_amr_tag(pb, track);
d4a240cb
     } else if (track->enc->codec_id == CODEC_ID_AC3) {
         mov_write_ac3_tag(pb, track);
463e7afd
     } else if (track->enc->codec_id == CODEC_ID_ALAC) {
         mov_write_extradata_tag(pb, track);
d4e0130e
     } else if (track->enc->codec_id == CODEC_ID_ADPCM_MS ||
                track->enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) {
         mov_write_ms_tag(pb, track);
fcef991a
     }
69dde1ad
 
e9eb8d0b
     avio_wb32(pb, 8);     /* size */
     avio_wb32(pb, 0);     /* null tag */
69dde1ad
 
f7635edb
     return updateSize(pb, pos);
69dde1ad
 }
 
471fe57e
 static int mov_write_glbl_tag(AVIOContext *pb, MOVTrack *track)
79e42311
 {
e9eb8d0b
     avio_wb32(pb, track->vosLen+8);
32442930
     ffio_wfourcc(pb, "glbl");
e9eb8d0b
     avio_write(pb, track->vosData, track->vosLen);
79e42311
     return 8+track->vosLen;
 }
 
feaa8d11
 /**
  * Compute flags for 'lpcm' tag.
  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
  */
 static int mov_get_lpcm_flags(enum CodecID codec_id)
 {
     switch (codec_id) {
     case CODEC_ID_PCM_F32BE:
     case CODEC_ID_PCM_F64BE:
         return 11;
     case CODEC_ID_PCM_F32LE:
     case CODEC_ID_PCM_F64LE:
         return 9;
     case CODEC_ID_PCM_U8:
         return 10;
     case CODEC_ID_PCM_S16BE:
     case CODEC_ID_PCM_S24BE:
     case CODEC_ID_PCM_S32BE:
         return 14;
     case CODEC_ID_PCM_S8:
     case CODEC_ID_PCM_S16LE:
     case CODEC_ID_PCM_S24LE:
     case CODEC_ID_PCM_S32LE:
         return 12;
     default:
         return 0;
     }
 }
 
471fe57e
 static int mov_write_audio_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
384c9c2f
     int64_t pos = avio_tell(pb);
feaa8d11
     int version = 0;
     uint32_t tag = track->tag;
 
     if (track->mode == MODE_MOV) {
         if (track->timescale > UINT16_MAX) {
             if (mov_get_lpcm_flags(track->enc->codec_id))
                 tag = AV_RL32("lpcm");
             version = 2;
d4e0130e
         } else if (track->audio_vbr || mov_pcm_le_gt16(track->enc->codec_id) ||
                    track->enc->codec_id == CODEC_ID_ADPCM_MS ||
                    track->enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) {
feaa8d11
             version = 1;
         }
     }
115329f1
 
e9eb8d0b
     avio_wb32(pb, 0); /* size */
     avio_wl32(pb, tag); // store it byteswapped
     avio_wb32(pb, 0); /* Reserved */
     avio_wb16(pb, 0); /* Reserved */
     avio_wb16(pb, 1); /* Data-reference index, XXX  == 1 */
69dde1ad
 
e45ccf79
     /* SoundDescription */
e9eb8d0b
     avio_wb16(pb, version); /* Version */
     avio_wb16(pb, 0); /* Revision level */
     avio_wb32(pb, 0); /* Reserved */
1cb5f7fd
 
feaa8d11
     if (version == 2) {
e9eb8d0b
         avio_wb16(pb, 3);
         avio_wb16(pb, 16);
         avio_wb16(pb, 0xfffe);
         avio_wb16(pb, 0);
         avio_wb32(pb, 0x00010000);
         avio_wb32(pb, 72);
         avio_wb64(pb, av_dbl2int(track->timescale));
         avio_wb32(pb, track->enc->channels);
         avio_wb32(pb, 0x7F000000);
         avio_wb32(pb, av_get_bits_per_sample(track->enc->codec_id));
         avio_wb32(pb, mov_get_lpcm_flags(track->enc->codec_id));
         avio_wb32(pb, track->sampleSize);
         avio_wb32(pb, track->enc->frame_size);
feaa8d11
     } else {
ba7c0ece
         if (track->mode == MODE_MOV) {
e9eb8d0b
             avio_wb16(pb, track->enc->channels);
ba7c0ece
             if (track->enc->codec_id == CODEC_ID_PCM_U8 ||
                 track->enc->codec_id == CODEC_ID_PCM_S8)
e9eb8d0b
                 avio_wb16(pb, 8); /* bits per sample */
ba7c0ece
             else
e9eb8d0b
                 avio_wb16(pb, 16);
             avio_wb16(pb, track->audio_vbr ? -2 : 0); /* compression ID */
ba7c0ece
         } else { /* reserved for mp4/3gp */
e9eb8d0b
             avio_wb16(pb, 2);
             avio_wb16(pb, 16);
             avio_wb16(pb, 0);
ba7c0ece
         }
ef19c7eb
 
e9eb8d0b
         avio_wb16(pb, 0); /* packet size (= 0) */
         avio_wb16(pb, track->timescale); /* Time scale */
         avio_wb16(pb, 0); /* Reserved */
feaa8d11
     }
1cb5f7fd
 
5cb49ca1
     if(version == 1) { /* SoundDescription V1 extended info */
e9eb8d0b
         avio_wb32(pb, track->enc->frame_size); /* Samples per packet */
         avio_wb32(pb, track->sampleSize / track->enc->channels); /* Bytes per packet */
         avio_wb32(pb, track->sampleSize); /* Bytes per frame */
         avio_wb32(pb, 2); /* Bytes per sample */
69dde1ad
     }
 
6dd19fff
     if(track->mode == MODE_MOV &&
        (track->enc->codec_id == CODEC_ID_AAC ||
4ed19420
         track->enc->codec_id == CODEC_ID_AC3 ||
6dd19fff
         track->enc->codec_id == CODEC_ID_AMR_NB ||
7c4b7d0f
         track->enc->codec_id == CODEC_ID_ALAC ||
d4e0130e
         track->enc->codec_id == CODEC_ID_ADPCM_MS ||
         track->enc->codec_id == CODEC_ID_ADPCM_IMA_WAV ||
7c4b7d0f
         mov_pcm_le_gt16(track->enc->codec_id)))
fcef991a
         mov_write_wave_tag(pb, track);
d0c0a29b
     else if(track->tag == MKTAG('m','p','4','a'))
3a72cbd9
         mov_write_esds_tag(pb, track);
     else if(track->enc->codec_id == CODEC_ID_AMR_NB)
b7d9da10
         mov_write_amr_tag(pb, track);
4ed19420
     else if(track->enc->codec_id == CODEC_ID_AC3)
         mov_write_ac3_tag(pb, track);
efa1fb39
     else if(track->enc->codec_id == CODEC_ID_ALAC)
709c9f8d
         mov_write_extradata_tag(pb, track);
79e42311
     else if(track->vosLen > 0)
         mov_write_glbl_tag(pb, track);
3a72cbd9
 
f7635edb
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_d263_tag(AVIOContext *pb)
1cb5f7fd
 {
e9eb8d0b
     avio_wb32(pb, 0xf); /* size */
32442930
     ffio_wfourcc(pb, "d263");
     ffio_wfourcc(pb, "FFMP");
e9eb8d0b
     avio_w8(pb, 0); /* decoder version */
87494ea0
     /* FIXME use AVCodecContext level/profile, when encoder will set values */
e9eb8d0b
     avio_w8(pb, 0xa); /* level */
     avio_w8(pb, 0); /* profile */
1cb5f7fd
     return 0xf;
 }
 
f578f938
 /* TODO: No idea about these values */
471fe57e
 static int mov_write_svq3_tag(AVIOContext *pb)
1cb5f7fd
 {
e9eb8d0b
     avio_wb32(pb, 0x15);
32442930
     ffio_wfourcc(pb, "SMI ");
     ffio_wfourcc(pb, "SEQH");
e9eb8d0b
     avio_wb32(pb, 0x5);
     avio_wb32(pb, 0xe2c0211d);
     avio_wb32(pb, 0xc0000000);
     avio_w8(pb, 0);
f578f938
     return 0x15;
1cb5f7fd
 }
 
471fe57e
 static int mov_write_avcc_tag(AVIOContext *pb, MOVTrack *track)
6e6eebf9
 {
384c9c2f
     int64_t pos = avio_tell(pb);
6e6eebf9
 
e9eb8d0b
     avio_wb32(pb, 0);
32442930
     ffio_wfourcc(pb, "avcC");
9ab3f71b
     ff_isom_write_avcc(pb, track->vosData, track->vosLen);
c1b8e6d8
     return updateSize(pb, pos);
 }
 
fc4cbc16
 /* also used by all avid codecs (dv, imx, meridien) and their variants */
471fe57e
 static int mov_write_avid_tag(AVIOContext *pb, MOVTrack *track)
fc4cbc16
 {
     int i;
e9eb8d0b
     avio_wb32(pb, 24); /* size */
32442930
     ffio_wfourcc(pb, "ACLR");
     ffio_wfourcc(pb, "ACLR");
     ffio_wfourcc(pb, "0001");
efdad9fb
     avio_wb32(pb, 2); /* yuv range: full 1 / normal 2 */
e9eb8d0b
     avio_wb32(pb, 0); /* unknown */
fc4cbc16
 
e9eb8d0b
     avio_wb32(pb, 24); /* size */
32442930
     ffio_wfourcc(pb, "APRG");
     ffio_wfourcc(pb, "APRG");
     ffio_wfourcc(pb, "0001");
e9eb8d0b
     avio_wb32(pb, 1); /* unknown */
     avio_wb32(pb, 0); /* unknown */
fc4cbc16
 
e9eb8d0b
     avio_wb32(pb, 120); /* size */
32442930
     ffio_wfourcc(pb, "ARES");
     ffio_wfourcc(pb, "ARES");
     ffio_wfourcc(pb, "0001");
e9eb8d0b
     avio_wb32(pb, AV_RB32(track->vosData + 0x28)); /* dnxhd cid, some id ? */
     avio_wb32(pb, track->enc->width);
fc4cbc16
     /* values below are based on samples created with quicktime and avid codecs */
     if (track->vosData[5] & 2) { // interlaced
e9eb8d0b
         avio_wb32(pb, track->enc->height/2);
         avio_wb32(pb, 2); /* unknown */
         avio_wb32(pb, 0); /* unknown */
         avio_wb32(pb, 4); /* unknown */
fc4cbc16
     } else {
e9eb8d0b
         avio_wb32(pb, track->enc->height);
         avio_wb32(pb, 1); /* unknown */
         avio_wb32(pb, 0); /* unknown */
44fb8ebb
         if (track->enc->height == 1080)
e9eb8d0b
             avio_wb32(pb, 5); /* unknown */
44fb8ebb
         else
e9eb8d0b
             avio_wb32(pb, 6); /* unknown */
fc4cbc16
     }
     /* padding */
     for (i = 0; i < 10; i++)
e9eb8d0b
         avio_wb64(pb, 0);
fc4cbc16
 
     /* extra padding for stsd needed */
e9eb8d0b
     avio_wb32(pb, 0);
fc4cbc16
     return 0;
 }
 
6b600285
 static int mp4_get_codec_tag(AVFormatContext *s, MOVTrack *track)
8e321619
 {
039627cf
     int tag = track->enc->codec_tag;
2ab57c04
 
1a40491e
     if (!ff_codec_get_tag(ff_mp4_obj_type, track->enc->codec_id))
2ab57c04
         return 0;
 
     if      (track->enc->codec_id == CODEC_ID_H264)      tag = MKTAG('a','v','c','1');
     else if (track->enc->codec_id == CODEC_ID_AC3)       tag = MKTAG('a','c','-','3');
     else if (track->enc->codec_id == CODEC_ID_DIRAC)     tag = MKTAG('d','r','a','c');
     else if (track->enc->codec_id == CODEC_ID_MOV_TEXT)  tag = MKTAG('t','x','3','g');
72415b2a
     else if (track->enc->codec_type == AVMEDIA_TYPE_VIDEO) tag = MKTAG('m','p','4','v');
     else if (track->enc->codec_type == AVMEDIA_TYPE_AUDIO) tag = MKTAG('m','p','4','a');
6b600285
 
     return tag;
 }
 
3c8d1447
 static const AVCodecTag codec_ipod_tags[] = {
     { CODEC_ID_H264,   MKTAG('a','v','c','1') },
     { CODEC_ID_MPEG4,  MKTAG('m','p','4','v') },
     { CODEC_ID_AAC,    MKTAG('m','p','4','a') },
     { CODEC_ID_ALAC,   MKTAG('a','l','a','c') },
     { CODEC_ID_AC3,    MKTAG('a','c','-','3') },
     { CODEC_ID_MOV_TEXT, MKTAG('t','x','3','g') },
     { CODEC_ID_MOV_TEXT, MKTAG('t','e','x','t') },
     { CODEC_ID_NONE, 0 },
 };
 
6b600285
 static int ipod_get_codec_tag(AVFormatContext *s, MOVTrack *track)
 {
     int tag = track->enc->codec_tag;
 
130ba4b1
     // keep original tag for subs, ipod supports both formats
72415b2a
     if (!(track->enc->codec_type == AVMEDIA_TYPE_SUBTITLE &&
2ab57c04
         (tag == MKTAG('t','x','3','g') ||
b6cb9946
          tag == MKTAG('t','e','x','t'))))
1a40491e
         tag = ff_codec_get_tag(codec_ipod_tags, track->enc->codec_id);
0872acc4
 
ade5b91d
     if (!av_match_ext(s->filename, "m4a") && !av_match_ext(s->filename, "m4v"))
2ab57c04
         av_log(s, AV_LOG_WARNING, "Warning, extension is not .m4a nor .m4v "
                "Quicktime/Ipod might not play the file\n");
6b600285
 
     return tag;
 }
 
 static int mov_get_dv_codec_tag(AVFormatContext *s, MOVTrack *track)
 {
     int tag;
 
cd37308b
     if (track->enc->width == 720) /* SD */
         if (track->enc->height == 480) /* NTSC */
             if  (track->enc->pix_fmt == PIX_FMT_YUV422P) tag = MKTAG('d','v','5','n');
             else                                         tag = MKTAG('d','v','c',' ');
         else if (track->enc->pix_fmt == PIX_FMT_YUV422P) tag = MKTAG('d','v','5','p');
         else if (track->enc->pix_fmt == PIX_FMT_YUV420P) tag = MKTAG('d','v','c','p');
         else                                             tag = MKTAG('d','v','p','p');
     else if (track->enc->height == 720) /* HD 720 line */
         if  (track->enc->time_base.den == 50)            tag = MKTAG('d','v','h','q');
         else                                             tag = MKTAG('d','v','h','p');
     else if (track->enc->height == 1080) /* HD 1080 line */
         if  (track->enc->time_base.den == 25)            tag = MKTAG('d','v','h','5');
         else                                             tag = MKTAG('d','v','h','6');
     else {
         av_log(s, AV_LOG_ERROR, "unsupported height for dv codec\n");
         return 0;
     }
6b600285
 
     return tag;
 }
 
3c8d1447
 static const struct {
     enum PixelFormat pix_fmt;
     uint32_t tag;
     unsigned bps;
 } mov_pix_fmt_tags[] = {
     { PIX_FMT_YUYV422, MKTAG('y','u','v','s'),  0 },
     { PIX_FMT_UYVY422, MKTAG('2','v','u','y'),  0 },
a7cc89e2
     { PIX_FMT_RGB555BE,MKTAG('r','a','w',' '), 16 },
f65aad95
     { PIX_FMT_RGB555LE,MKTAG('L','5','5','5'), 16 },
     { PIX_FMT_RGB565LE,MKTAG('L','5','6','5'), 16 },
     { PIX_FMT_RGB565BE,MKTAG('B','5','6','5'), 16 },
9a191b3a
     { PIX_FMT_GRAY16BE,MKTAG('b','1','6','g'), 16 },
3c8d1447
     { PIX_FMT_RGB24,   MKTAG('r','a','w',' '), 24 },
f65aad95
     { PIX_FMT_BGR24,   MKTAG('2','4','B','G'), 24 },
dfb0471f
     { PIX_FMT_ARGB,    MKTAG('r','a','w',' '), 32 },
5b50b8f5
     { PIX_FMT_BGRA,    MKTAG('B','G','R','A'), 32 },
ed88074a
     { PIX_FMT_RGBA,    MKTAG('R','G','B','A'), 32 },
a7cc89e2
     { PIX_FMT_ABGR,    MKTAG('A','B','G','R'), 32 },
9a191b3a
     { PIX_FMT_RGB48BE, MKTAG('b','4','8','r'), 48 },
3c8d1447
 };
 
6b600285
 static int mov_get_rawvideo_codec_tag(AVFormatContext *s, MOVTrack *track)
 {
     int tag = track->enc->codec_tag;
2ab57c04
     int i;
 
     for (i = 0; i < FF_ARRAY_ELEMS(mov_pix_fmt_tags); i++) {
         if (track->enc->pix_fmt == mov_pix_fmt_tags[i].pix_fmt) {
             tag = mov_pix_fmt_tags[i].tag;
             track->enc->bits_per_coded_sample = mov_pix_fmt_tags[i].bps;
             break;
         }
     }
6b600285
 
     return tag;
 }
 
 static int mov_get_codec_tag(AVFormatContext *s, MOVTrack *track)
 {
     int tag = track->enc->codec_tag;
 
     if (!tag || (track->enc->strict_std_compliance >= FF_COMPLIANCE_NORMAL &&
a2b7ed32
                  (track->enc->codec_id == CODEC_ID_DVVIDEO ||
6b600285
                   track->enc->codec_id == CODEC_ID_RAWVIDEO ||
10d8eac9
                   track->enc->codec_id == CODEC_ID_H263 ||
6b600285
                   av_get_bits_per_sample(track->enc->codec_id)))) { // pcm audio
0872acc4
         if (track->enc->codec_id == CODEC_ID_DVVIDEO)
6b600285
             tag = mov_get_dv_codec_tag(s, track);
0872acc4
         else if (track->enc->codec_id == CODEC_ID_RAWVIDEO)
6b600285
             tag = mov_get_rawvideo_codec_tag(s, track);
72415b2a
         else if (track->enc->codec_type == AVMEDIA_TYPE_VIDEO) {
1a40491e
             tag = ff_codec_get_tag(codec_movvideo_tags, track->enc->codec_id);
08680ab8
             if (!tag) { // if no mac fcc found, try with Microsoft tags
1a40491e
                 tag = ff_codec_get_tag(ff_codec_bmp_tags, track->enc->codec_id);
08680ab8
                 if (tag)
                     av_log(s, AV_LOG_INFO, "Warning, using MS style video codec tag, "
                            "the file may be unplayable!\n");
             }
72415b2a
         } else if (track->enc->codec_type == AVMEDIA_TYPE_AUDIO) {
1a40491e
             tag = ff_codec_get_tag(codec_movaudio_tags, track->enc->codec_id);
08680ab8
             if (!tag) { // if no mac fcc found, try with Microsoft tags
1a40491e
                 int ms_tag = ff_codec_get_tag(ff_codec_wav_tags, track->enc->codec_id);
08680ab8
                 if (ms_tag) {
                     tag = MKTAG('m', 's', ((ms_tag >> 8) & 0xff), (ms_tag & 0xff));
                     av_log(s, AV_LOG_INFO, "Warning, using MS style audio codec tag, "
                            "the file may be unplayable!\n");
d97f2144
                 }
08680ab8
             }
72415b2a
         } else if (track->enc->codec_type == AVMEDIA_TYPE_SUBTITLE)
1a40491e
             tag = ff_codec_get_tag(ff_codec_movsubtitle_tags, track->enc->codec_id);
a23c9c4a
     }
2ab57c04
 
8e321619
     return tag;
 }
 
3c8d1447
 static const AVCodecTag codec_3gp_tags[] = {
     { CODEC_ID_H263,   MKTAG('s','2','6','3') },
     { CODEC_ID_H264,   MKTAG('a','v','c','1') },
     { CODEC_ID_MPEG4,  MKTAG('m','p','4','v') },
     { CODEC_ID_AAC,    MKTAG('m','p','4','a') },
     { CODEC_ID_AMR_NB, MKTAG('s','a','m','r') },
     { CODEC_ID_AMR_WB, MKTAG('s','a','w','b') },
     { CODEC_ID_MOV_TEXT, MKTAG('t','x','3','g') },
     { CODEC_ID_NONE, 0 },
 };
 
6b600285
 static int mov_find_codec_tag(AVFormatContext *s, MOVTrack *track)
 {
     int tag = track->enc->codec_tag;
 
     if (track->mode == MODE_MP4 || track->mode == MODE_PSP)
         tag = mp4_get_codec_tag(s, track);
     else if (track->mode == MODE_IPOD)
         tag = ipod_get_codec_tag(s, track);
     else if (track->mode & MODE_3GP)
1a40491e
         tag = ff_codec_get_tag(codec_3gp_tags, track->enc->codec_id);
6b600285
     else
         tag = mov_get_codec_tag(s, track);
 
     return tag;
 }
 
aa9f4208
 /** Write uuid atom.
  * Needed to make file play in iPods running newest firmware
  * goes after avcC atom in moov.trak.mdia.minf.stbl.stsd.avc1
  */
471fe57e
 static int mov_write_uuid_tag_ipod(AVIOContext *pb)
aa9f4208
 {
e9eb8d0b
     avio_wb32(pb, 28);
32442930
     ffio_wfourcc(pb, "uuid");
e9eb8d0b
     avio_wb32(pb, 0x6b6840f2);
     avio_wb32(pb, 0x5f244fc5);
     avio_wb32(pb, 0xba39a51b);
     avio_wb32(pb, 0xcf0323f3);
     avio_wb32(pb, 0x0);
aa9f4208
     return 28;
 }
 
471fe57e
 static int mov_write_subtitle_tag(AVIOContext *pb, MOVTrack *track)
f6204886
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0);    /* size */
     avio_wl32(pb, track->tag); // store it byteswapped
     avio_wb32(pb, 0);    /* Reserved */
     avio_wb16(pb, 0);    /* Reserved */
     avio_wb16(pb, 1);    /* Data-reference index */
f6204886
 
     if (track->enc->extradata_size)
e9eb8d0b
         avio_write(pb, track->enc->extradata, track->enc->extradata_size);
f6204886
 
     return updateSize(pb, pos);
 }
 
471fe57e
 static int mov_write_pasp_tag(AVIOContext *pb, MOVTrack *track)
b015be21
 {
     AVRational sar;
     av_reduce(&sar.num, &sar.den, track->enc->sample_aspect_ratio.num,
               track->enc->sample_aspect_ratio.den, INT_MAX);
 
e9eb8d0b
     avio_wb32(pb, 16);
32442930
     ffio_wfourcc(pb, "pasp");
e9eb8d0b
     avio_wb32(pb, sar.num);
     avio_wb32(pb, sar.den);
b015be21
     return 16;
 }
 
471fe57e
 static int mov_write_video_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
384c9c2f
     int64_t pos = avio_tell(pb);
53ffdd14
     char compressor_name[32];
8cc7a34d
 
e9eb8d0b
     avio_wb32(pb, 0); /* size */
     avio_wl32(pb, track->tag); // store it byteswapped
     avio_wb32(pb, 0); /* Reserved */
     avio_wb16(pb, 0); /* Reserved */
     avio_wb16(pb, 1); /* Data-reference index */
f578f938
 
e9eb8d0b
     avio_wb16(pb, 0); /* Codec stream version */
     avio_wb16(pb, 0); /* Codec stream revision (=0) */
5997ed78
     if (track->mode == MODE_MOV) {
32442930
         ffio_wfourcc(pb, "FFMP"); /* Vendor */
915282e5
         if(track->enc->codec_id == CODEC_ID_RAWVIDEO) {
e9eb8d0b
             avio_wb32(pb, 0); /* Temporal Quality */
             avio_wb32(pb, 0x400); /* Spatial Quality = lossless*/
915282e5
         } else {
e9eb8d0b
             avio_wb32(pb, 0x200); /* Temporal Quality = normal */
             avio_wb32(pb, 0x200); /* Spatial Quality = normal */
915282e5
         }
5997ed78
     } else {
e9eb8d0b
         avio_wb32(pb, 0); /* Reserved */
         avio_wb32(pb, 0); /* Reserved */
         avio_wb32(pb, 0); /* Reserved */
5997ed78
     }
e9eb8d0b
     avio_wb16(pb, track->enc->width); /* Video width */
     avio_wb16(pb, track->height); /* Video height */
     avio_wb32(pb, 0x00480000); /* Horizontal resolution 72dpi */
     avio_wb32(pb, 0x00480000); /* Vertical resolution 72dpi */
     avio_wb32(pb, 0); /* Data size (= 0) */
     avio_wb16(pb, 1); /* Frame count (= 1) */
115329f1
 
53ffdd14
     memset(compressor_name,0,32);
5997ed78
     /* FIXME not sure, ISO 14496-1 draft where it shall be set to 0 */
     if (track->mode == MODE_MOV && track->enc->codec && track->enc->codec->name)
1a5e4fd8
         av_strlcpy(compressor_name,track->enc->codec->name,32);
e9eb8d0b
     avio_w8(pb, strlen(compressor_name));
     avio_write(pb, compressor_name, 31);
115329f1
 
dd1c8f3e
     if (track->mode == MODE_MOV && track->enc->bits_per_coded_sample)
e9eb8d0b
         avio_wb16(pb, track->enc->bits_per_coded_sample);
ccac8438
     else
e9eb8d0b
         avio_wb16(pb, 0x18); /* Reserved */
     avio_wb16(pb, 0xffff); /* Reserved */
d0c0a29b
     if(track->tag == MKTAG('m','p','4','v'))
f578f938
         mov_write_esds_tag(pb, track);
     else if(track->enc->codec_id == CODEC_ID_H263)
         mov_write_d263_tag(pb);
     else if(track->enc->codec_id == CODEC_ID_SVQ3)
115329f1
         mov_write_svq3_tag(pb);
7b0f4c9a
     else if(track->enc->codec_id == CODEC_ID_DNXHD)
         mov_write_avid_tag(pb, track);
aa9f4208
     else if(track->enc->codec_id == CODEC_ID_H264) {
c1b8e6d8
         mov_write_avcc_tag(pb, track);
aa9f4208
         if(track->mode == MODE_IPOD)
             mov_write_uuid_tag_ipod(pb);
b64518e9
     } else if(track->vosLen > 0)
79e42311
         mov_write_glbl_tag(pb, track);
f578f938
 
aaa71a3e
     if (track->enc->sample_aspect_ratio.den && track->enc->sample_aspect_ratio.num &&
b015be21
         track->enc->sample_aspect_ratio.den != track->enc->sample_aspect_ratio.num) {
         mov_write_pasp_tag(pb, track);
     }
 
f7635edb
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_rtp_tag(AVIOContext *pb, MOVTrack *track)
e977af6f
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "rtp ");
e9eb8d0b
     avio_wb32(pb, 0); /* Reserved */
     avio_wb16(pb, 0); /* Reserved */
     avio_wb16(pb, 1); /* Data-reference index */
e977af6f
 
e9eb8d0b
     avio_wb16(pb, 1); /* Hint track version */
     avio_wb16(pb, 1); /* Highest compatible version */
     avio_wb32(pb, track->max_packet_size); /* Max packet size */
e977af6f
 
e9eb8d0b
     avio_wb32(pb, 12); /* size */
32442930
     ffio_wfourcc(pb, "tims");
e9eb8d0b
     avio_wb32(pb, track->timescale);
e977af6f
 
     return updateSize(pb, pos);
 }
 
471fe57e
 static int mov_write_stsd_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "stsd");
e9eb8d0b
     avio_wb32(pb, 0); /* version & flags */
     avio_wb32(pb, 1); /* entry count */
72415b2a
     if (track->enc->codec_type == AVMEDIA_TYPE_VIDEO)
f578f938
         mov_write_video_tag(pb, track);
72415b2a
     else if (track->enc->codec_type == AVMEDIA_TYPE_AUDIO)
f578f938
         mov_write_audio_tag(pb, track);
72415b2a
     else if (track->enc->codec_type == AVMEDIA_TYPE_SUBTITLE)
f6204886
         mov_write_subtitle_tag(pb, track);
e977af6f
     else if (track->enc->codec_tag == MKTAG('r','t','p',' '))
         mov_write_rtp_tag(pb, track);
6e6d6dc0
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_ctts_tag(AVIOContext *pb, MOVTrack *track)
b4712e3c
 {
c3e92a6c
     MOVStts *ctts_entries;
b4712e3c
     uint32_t entries = 0;
     uint32_t atom_size;
     int i;
 
     ctts_entries = av_malloc((track->entry + 1) * sizeof(*ctts_entries)); /* worst case */
     ctts_entries[0].count = 1;
0aec3c5c
     ctts_entries[0].duration = track->cluster[0].cts;
b4712e3c
     for (i=1; i<track->entry; i++) {
0aec3c5c
         if (track->cluster[i].cts == ctts_entries[entries].duration) {
b4712e3c
             ctts_entries[entries].count++; /* compress */
         } else {
             entries++;
0aec3c5c
             ctts_entries[entries].duration = track->cluster[i].cts;
b4712e3c
             ctts_entries[entries].count = 1;
         }
     }
     entries++; /* last one */
     atom_size = 16 + (entries * 8);
e9eb8d0b
     avio_wb32(pb, atom_size); /* size */
32442930
     ffio_wfourcc(pb, "ctts");
e9eb8d0b
     avio_wb32(pb, 0); /* version & flags */
     avio_wb32(pb, entries); /* entry count */
b4712e3c
     for (i=0; i<entries; i++) {
e9eb8d0b
         avio_wb32(pb, ctts_entries[i].count);
         avio_wb32(pb, ctts_entries[i].duration);
b4712e3c
     }
     av_free(ctts_entries);
     return atom_size;
 }
 
e45ccf79
 /* Time to sample atom */
471fe57e
 static int mov_write_stts_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
c3e92a6c
     MOVStts *stts_entries;
aa90239f
     uint32_t entries = -1;
     uint32_t atom_size;
     int i;
 
72415b2a
     if (track->enc->codec_type == AVMEDIA_TYPE_AUDIO && !track->audio_vbr) {
aa90239f
         stts_entries = av_malloc(sizeof(*stts_entries)); /* one entry */
         stts_entries[0].count = track->sampleCount;
         stts_entries[0].duration = 1;
         entries = 1;
     } else {
         stts_entries = av_malloc(track->entry * sizeof(*stts_entries)); /* worst case */
         for (i=0; i<track->entry; i++) {
             int64_t duration = i + 1 == track->entry ?
                 track->trackDuration - track->cluster[i].dts + track->cluster[0].dts : /* readjusting */
                 track->cluster[i+1].dts - track->cluster[i].dts;
             if (i && duration == stts_entries[entries].duration) {
                 stts_entries[entries].count++; /* compress */
             } else {
                 entries++;
                 stts_entries[entries].duration = duration;
                 stts_entries[entries].count = 1;
             }
         }
         entries++; /* last one */
     }
     atom_size = 16 + (entries * 8);
e9eb8d0b
     avio_wb32(pb, atom_size); /* size */
32442930
     ffio_wfourcc(pb, "stts");
e9eb8d0b
     avio_wb32(pb, 0); /* version & flags */
     avio_wb32(pb, entries); /* entry count */
aa90239f
     for (i=0; i<entries; i++) {
e9eb8d0b
         avio_wb32(pb, stts_entries[i].count);
         avio_wb32(pb, stts_entries[i].duration);
aa90239f
     }
     av_free(stts_entries);
     return atom_size;
1cb5f7fd
 }
 
471fe57e
 static int mov_write_dref_tag(AVIOContext *pb)
1cb5f7fd
 {
e9eb8d0b
     avio_wb32(pb, 28); /* size */
32442930
     ffio_wfourcc(pb, "dref");
e9eb8d0b
     avio_wb32(pb, 0); /* version & flags */
     avio_wb32(pb, 1); /* entry count */
1cb5f7fd
 
e9eb8d0b
     avio_wb32(pb, 0xc); /* size */
32442930
     ffio_wfourcc(pb, "url ");
e9eb8d0b
     avio_wb32(pb, 1); /* version & flags */
1cb5f7fd
 
     return 28;
 }
 
471fe57e
 static int mov_write_stbl_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "stbl");
6e6d6dc0
     mov_write_stsd_tag(pb, track);
     mov_write_stts_tag(pb, track);
e977af6f
     if ((track->enc->codec_type == AVMEDIA_TYPE_VIDEO ||
          track->enc->codec_tag == MKTAG('r','t','p',' ')) &&
b371539a
         track->hasKeyframes && track->hasKeyframes < track->entry)
e1316b19
         mov_write_stss_tag(pb, track, MOV_SYNC_SAMPLE);
     if (track->mode == MODE_MOV && track->flags & MOV_TRACK_STPS)
         mov_write_stss_tag(pb, track, MOV_PARTIAL_SYNC_SAMPLE);
72415b2a
     if (track->enc->codec_type == AVMEDIA_TYPE_VIDEO &&
e1316b19
         track->flags & MOV_TRACK_CTTS)
b4712e3c
         mov_write_ctts_tag(pb, track);
6e6d6dc0
     mov_write_stsc_tag(pb, track);
     mov_write_stsz_tag(pb, track);
     mov_write_stco_tag(pb, track);
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_dinf_tag(AVIOContext *pb)
1cb5f7fd
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "dinf");
6e6d6dc0
     mov_write_dref_tag(pb);
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_nmhd_tag(AVIOContext *pb)
f6204886
 {
e9eb8d0b
     avio_wb32(pb, 12);
32442930
     ffio_wfourcc(pb, "nmhd");
e9eb8d0b
     avio_wb32(pb, 0);
f6204886
     return 12;
 }
 
471fe57e
 static int mov_write_gmhd_tag(AVIOContext *pb)
f6204886
 {
e9eb8d0b
     avio_wb32(pb, 0x20);   /* size */
32442930
     ffio_wfourcc(pb, "gmhd");
e9eb8d0b
     avio_wb32(pb, 0x18);   /* gmin size */
32442930
     ffio_wfourcc(pb, "gmin");/* generic media info */
e9eb8d0b
     avio_wb32(pb, 0);      /* version & flags */
     avio_wb16(pb, 0x40);   /* graphics mode = */
     avio_wb16(pb, 0x8000); /* opColor (r?) */
     avio_wb16(pb, 0x8000); /* opColor (g?) */
     avio_wb16(pb, 0x8000); /* opColor (b?) */
     avio_wb16(pb, 0);      /* balance */
     avio_wb16(pb, 0);      /* reserved */
f6204886
     return 0x20;
 }
 
471fe57e
 static int mov_write_smhd_tag(AVIOContext *pb)
1cb5f7fd
 {
e9eb8d0b
     avio_wb32(pb, 16); /* size */
32442930
     ffio_wfourcc(pb, "smhd");
e9eb8d0b
     avio_wb32(pb, 0); /* version & flags */
     avio_wb16(pb, 0); /* reserved (balance, normally = 0) */
     avio_wb16(pb, 0); /* reserved */
1cb5f7fd
     return 16;
 }
 
471fe57e
 static int mov_write_vmhd_tag(AVIOContext *pb)
1cb5f7fd
 {
e9eb8d0b
     avio_wb32(pb, 0x14); /* size (always 0x14) */
32442930
     ffio_wfourcc(pb, "vmhd");
e9eb8d0b
     avio_wb32(pb, 0x01); /* version & flags */
     avio_wb64(pb, 0); /* reserved (graphics mode = copy) */
1cb5f7fd
     return 0x14;
 }
 
471fe57e
 static int mov_write_hdlr_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
985688b8
     const char *hdlr, *descr = NULL, *hdlr_type = NULL;
384c9c2f
     int64_t pos = avio_tell(pb);
115329f1
 
9a4d9388
     if (!track) { /* no media --> data handler */
bb270c08
         hdlr = "dhlr";
         hdlr_type = "url ";
         descr = "DataHandler";
9a4d9388
     } else {
bb270c08
         hdlr = (track->mode == MODE_MOV) ? "mhlr" : "\0\0\0\0";
72415b2a
         if (track->enc->codec_type == AVMEDIA_TYPE_VIDEO) {
bb270c08
             hdlr_type = "vide";
             descr = "VideoHandler";
72415b2a
         } else if (track->enc->codec_type == AVMEDIA_TYPE_AUDIO) {
bb270c08
             hdlr_type = "soun";
             descr = "SoundHandler";
72415b2a
         } else if (track->enc->codec_type == AVMEDIA_TYPE_SUBTITLE) {
9f520554
             if (track->tag == MKTAG('t','x','3','g')) hdlr_type = "sbtl";
80357cfc
             else                                      hdlr_type = "text";
f6204886
             descr = "SubtitleHandler";
e977af6f
         } else if (track->enc->codec_tag == MKTAG('r','t','p',' ')) {
             hdlr_type = "hint";
             descr = "HintHandler";
bb270c08
         }
9a4d9388
     }
115329f1
 
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "hdlr");
e9eb8d0b
     avio_wb32(pb, 0); /* Version & flags */
     avio_write(pb, hdlr, 4); /* handler */
32442930
     ffio_wfourcc(pb, hdlr_type); /* handler type */
e9eb8d0b
     avio_wb32(pb ,0); /* reserved */
     avio_wb32(pb ,0); /* reserved */
     avio_wb32(pb ,0); /* reserved */
606d48ce
     if (!track || track->mode == MODE_MOV)
e9eb8d0b
         avio_w8(pb, strlen(descr)); /* pascal string */
     avio_write(pb, descr, strlen(descr)); /* handler description */
606d48ce
     if (track && track->mode != MODE_MOV)
e9eb8d0b
         avio_w8(pb, 0); /* c string */
9a4d9388
     return updateSize(pb, pos);
 }
 
471fe57e
 static int mov_write_hmhd_tag(AVIOContext *pb)
e977af6f
 {
     /* This atom must be present, but leaving the values at zero
      * seems harmless. */
e9eb8d0b
     avio_wb32(pb, 28); /* size */
32442930
     ffio_wfourcc(pb, "hmhd");
e9eb8d0b
     avio_wb32(pb, 0); /* version, flags */
     avio_wb16(pb, 0); /* maxPDUsize */
     avio_wb16(pb, 0); /* avgPDUsize */
     avio_wb32(pb, 0); /* maxbitrate */
     avio_wb32(pb, 0); /* avgbitrate */
     avio_wb32(pb, 0); /* reserved */
e977af6f
     return 28;
 }
 
471fe57e
 static int mov_write_minf_tag(AVIOContext *pb, MOVTrack *track)
9a4d9388
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "minf");
72415b2a
     if(track->enc->codec_type == AVMEDIA_TYPE_VIDEO)
9a4d9388
         mov_write_vmhd_tag(pb);
72415b2a
     else if (track->enc->codec_type == AVMEDIA_TYPE_AUDIO)
9a4d9388
         mov_write_smhd_tag(pb);
72415b2a
     else if (track->enc->codec_type == AVMEDIA_TYPE_SUBTITLE) {
9f520554
         if (track->tag == MKTAG('t','e','x','t')) mov_write_gmhd_tag(pb);
80357cfc
         else                                      mov_write_nmhd_tag(pb);
e977af6f
     } else if (track->tag == MKTAG('r','t','p',' ')) {
         mov_write_hmhd_tag(pb);
f6204886
     }
9a4d9388
     if (track->mode == MODE_MOV) /* FIXME: Why do it for MODE_MOV only ? */
         mov_write_hdlr_tag(pb, NULL);
     mov_write_dinf_tag(pb);
     mov_write_stbl_tag(pb, track);
f578f938
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_mdhd_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
a3a80ddc
     int version = track->trackDuration < INT32_MAX ? 0 : 1;
 
e9eb8d0b
     (version == 1) ? avio_wb32(pb, 44) : avio_wb32(pb, 32); /* size */
32442930
     ffio_wfourcc(pb, "mdhd");
e9eb8d0b
     avio_w8(pb, version);
     avio_wb24(pb, 0); /* flags */
a3a80ddc
     if (version == 1) {
e9eb8d0b
         avio_wb64(pb, track->time);
         avio_wb64(pb, track->time);
a3a80ddc
     } else {
e9eb8d0b
         avio_wb32(pb, track->time); /* creation time */
         avio_wb32(pb, track->time); /* modification time */
a3a80ddc
     }
e9eb8d0b
     avio_wb32(pb, track->timescale); /* time scale (sample rate for audio) */
     (version == 1) ? avio_wb64(pb, track->trackDuration) : avio_wb32(pb, track->trackDuration); /* duration */
     avio_wb16(pb, track->language); /* language */
     avio_wb16(pb, 0); /* reserved (quality) */
db8f4a92
 
     if(version!=0 && track->mode == MODE_MOV){
         av_log(NULL, AV_LOG_ERROR,
             "FATAL error, file duration too long for timebase, this file will not be\n"
b1b64c23
             "playable with quicktime. Choose a different timebase or a different\n"
db8f4a92
             "container format\n");
     }
 
1cb5f7fd
     return 32;
 }
 
471fe57e
 static int mov_write_mdia_tag(AVIOContext *pb, MOVTrack *track)
1cb5f7fd
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "mdia");
6e6d6dc0
     mov_write_mdhd_tag(pb, track);
     mov_write_hdlr_tag(pb, track);
     mov_write_minf_tag(pb, track);
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_tkhd_tag(AVIOContext *pb, MOVTrack *track, AVStream *st)
1cb5f7fd
 {
729ef3ba
     int64_t duration = av_rescale_rnd(track->trackDuration, MOV_TIMESCALE,
                                       track->timescale, AV_ROUND_UP);
a3a80ddc
     int version = duration < INT32_MAX ? 0 : 1;
 
e9eb8d0b
     (version == 1) ? avio_wb32(pb, 104) : avio_wb32(pb, 92); /* size */
32442930
     ffio_wfourcc(pb, "tkhd");
e9eb8d0b
     avio_w8(pb, version);
     avio_wb24(pb, 0xf); /* flags (track enabled) */
a3a80ddc
     if (version == 1) {
e9eb8d0b
         avio_wb64(pb, track->time);
         avio_wb64(pb, track->time);
a3a80ddc
     } else {
e9eb8d0b
         avio_wb32(pb, track->time); /* creation time */
         avio_wb32(pb, track->time); /* modification time */
a3a80ddc
     }
e9eb8d0b
     avio_wb32(pb, track->trackID); /* track-id */
     avio_wb32(pb, 0); /* reserved */
     (version == 1) ? avio_wb64(pb, duration) : avio_wb32(pb, duration);
1cb5f7fd
 
e9eb8d0b
     avio_wb32(pb, 0); /* reserved */
     avio_wb32(pb, 0); /* reserved */
ad47a5ec
     avio_wb16(pb, 0); /* layer */
9f9b731a
     avio_wb16(pb, st ? st->codec->codec_type : 0); /* alternate group) */
1cb5f7fd
     /* Volume, only for audio */
72415b2a
     if(track->enc->codec_type == AVMEDIA_TYPE_AUDIO)
e9eb8d0b
         avio_wb16(pb, 0x0100);
1cb5f7fd
     else
e9eb8d0b
         avio_wb16(pb, 0);
     avio_wb16(pb, 0); /* reserved */
1cb5f7fd
 
     /* Matrix structure */
e9eb8d0b
     avio_wb32(pb, 0x00010000); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x00010000); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x40000000); /* reserved */
1cb5f7fd
 
     /* Track width and height, for visual only */
ddb63017
     if(st && (track->enc->codec_type == AVMEDIA_TYPE_VIDEO ||
               track->enc->codec_type == AVMEDIA_TYPE_SUBTITLE)) {
3b2c4ce1
         if(track->mode == MODE_MOV) {
             avio_wb32(pb, track->enc->width << 16);
5bb50c71
             avio_wb32(pb, track->height << 16);
3b2c4ce1
         } else {
eea04021
             double sample_aspect_ratio = av_q2d(st->sample_aspect_ratio);
             if(!sample_aspect_ratio || track->height != track->enc->height)
                 sample_aspect_ratio = 1;
             avio_wb32(pb, sample_aspect_ratio * track->enc->width*0x10000);
             avio_wb32(pb, track->height*0x10000);
3b2c4ce1
         }
1cb5f7fd
     }
     else {
e9eb8d0b
         avio_wb32(pb, 0);
         avio_wb32(pb, 0);
1cb5f7fd
     }
     return 0x5c;
 }
 
4e815a8b
 static int mov_write_tapt_tag(AVIOContext *pb, MOVTrack *track)
3b2c4ce1
 {
     int32_t width = av_rescale(track->enc->sample_aspect_ratio.num, track->enc->width,
                                track->enc->sample_aspect_ratio.den);
 
384c9c2f
     int64_t pos = avio_tell(pb);
3b2c4ce1
 
     avio_wb32(pb, 0); /* size */
4e815a8b
     ffio_wfourcc(pb, "tapt");
3b2c4ce1
 
     avio_wb32(pb, 20);
4e815a8b
     ffio_wfourcc(pb, "clef");
3b2c4ce1
     avio_wb32(pb, 0);
     avio_wb32(pb, width << 16);
     avio_wb32(pb, track->enc->height << 16);
 
     avio_wb32(pb, 20);
4e815a8b
     ffio_wfourcc(pb, "enof");
3b2c4ce1
     avio_wb32(pb, 0);
     avio_wb32(pb, track->enc->width << 16);
     avio_wb32(pb, track->enc->height << 16);
 
     return updateSize(pb, pos);
 };
 
8af18154
 // This box seems important for the psp playback ... without it the movie seems to hang
471fe57e
 static int mov_write_edts_tag(AVIOContext *pb, MOVTrack *track)
8af18154
 {
c1691948
     int64_t duration = av_rescale_rnd(track->trackDuration, MOV_TIMESCALE,
                                       track->timescale, AV_ROUND_UP);
     int version = duration < INT32_MAX ? 0 : 1;
     int entry_size, entry_count, size;
     int64_t delay, start_ct = track->cluster[0].cts;
     delay = av_rescale_rnd(track->cluster[0].dts + start_ct, MOV_TIMESCALE,
                            track->timescale, AV_ROUND_DOWN);
     version |= delay < INT32_MAX ? 0 : 1;
 
     entry_size = (version == 1) ? 20 : 12;
     entry_count = 1 + (delay > 0);
     size = 24 + entry_count * entry_size;
 
     /* write the atom data */
     avio_wb32(pb, size);
32442930
     ffio_wfourcc(pb, "edts");
c1691948
     avio_wb32(pb, size - 8);
32442930
     ffio_wfourcc(pb, "elst");
c1691948
     avio_w8(pb, version);
     avio_wb24(pb, 0); /* flags */
8af18154
 
c1691948
     avio_wb32(pb, entry_count);
     if (delay > 0) { /* add an empty edit to delay presentation */
         if (version == 1) {
             avio_wb64(pb, delay);
             avio_wb64(pb, -1);
         } else {
             avio_wb32(pb, delay);
             avio_wb32(pb, -1);
         }
         avio_wb32(pb, 0x00010000);
     }
8af18154
 
c1691948
     /* duration */
     if (version == 1) {
         avio_wb64(pb, duration);
         avio_wb64(pb, start_ct);
     } else {
         avio_wb32(pb, duration);
         avio_wb32(pb, start_ct);
     }
e9eb8d0b
     avio_wb32(pb, 0x00010000);
c1691948
     return size;
8af18154
 }
 
471fe57e
 static int mov_write_tref_tag(AVIOContext *pb, MOVTrack *track)
ddb63017
 {
e9eb8d0b
     avio_wb32(pb, 20);   // size
32442930
     ffio_wfourcc(pb, "tref");
e9eb8d0b
     avio_wb32(pb, 12);   // size (subatom)
     avio_wl32(pb, track->tref_tag);
     avio_wb32(pb, track->tref_id);
ddb63017
     return 20;
 }
 
8af18154
 // goes at the end of each track!  ... Critical for PSP playback ("Incompatible data" without it)
471fe57e
 static int mov_write_uuid_tag_psp(AVIOContext *pb, MOVTrack *mov)
8af18154
 {
e9eb8d0b
     avio_wb32(pb, 0x34); /* size ... reports as 28 in mp4box! */
32442930
     ffio_wfourcc(pb, "uuid");
     ffio_wfourcc(pb, "USMT");
e9eb8d0b
     avio_wb32(pb, 0x21d24fce);
     avio_wb32(pb, 0xbb88695c);
     avio_wb32(pb, 0xfac9c740);
     avio_wb32(pb, 0x1c);     // another size here!
32442930
     ffio_wfourcc(pb, "MTDT");
e9eb8d0b
     avio_wb32(pb, 0x00010012);
     avio_wb32(pb, 0x0a);
     avio_wb32(pb, 0x55c40000);
     avio_wb32(pb, 0x1);
     avio_wb32(pb, 0x0);
8af18154
     return 0x34;
 }
 
bd61b2a1
 static int mov_write_udta_sdp(AVIOContext *pb, AVFormatContext *ctx, int index)
e977af6f
 {
     char buf[1000] = "";
     int len;
 
f3f82296
     ff_sdp_write_media(buf, sizeof(buf), ctx->streams[0]->codec, NULL, NULL, 0, 0, ctx);
e977af6f
     av_strlcatf(buf, sizeof(buf), "a=control:streamid=%d\r\n", index);
     len = strlen(buf);
 
e9eb8d0b
     avio_wb32(pb, len + 24);
32442930
     ffio_wfourcc(pb, "udta");
e9eb8d0b
     avio_wb32(pb, len + 16);
32442930
     ffio_wfourcc(pb, "hnti");
e9eb8d0b
     avio_wb32(pb, len + 8);
32442930
     ffio_wfourcc(pb, "sdp ");
e9eb8d0b
     avio_write(pb, buf, len);
e977af6f
     return len + 24;
 }
 
471fe57e
 static int mov_write_trak_tag(AVIOContext *pb, MOVTrack *track, AVStream *st)
1cb5f7fd
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "trak");
59729451
     mov_write_tkhd_tag(pb, track, st);
c1691948
     if (track->mode == MODE_PSP || track->flags & MOV_TRACK_CTTS || track->cluster[0].dts)
8af18154
         mov_write_edts_tag(pb, track);  // PSP Movies require edts box
ddb63017
     if (track->tref_tag)
         mov_write_tref_tag(pb, track);
6e6d6dc0
     mov_write_mdia_tag(pb, track);
115329f1
     if (track->mode == MODE_PSP)
8af18154
         mov_write_uuid_tag_psp(pb,track);  // PSP Movies require this uuid box
e977af6f
     if (track->tag == MKTAG('r','t','p',' '))
bd61b2a1
         mov_write_udta_sdp(pb, track->rtp_ctx, track->trackID);
3b2c4ce1
     if (track->enc->codec_type == AVMEDIA_TYPE_VIDEO && track->mode == MODE_MOV) {
         double sample_aspect_ratio = av_q2d(st->sample_aspect_ratio);
         if (0.0 != sample_aspect_ratio && 1.0 != sample_aspect_ratio)
             mov_write_tapt_tag(pb, track);
     };
6e6d6dc0
     return updateSize(pb, pos);
1cb5f7fd
 }
 
88730be6
 #if 0
1cb5f7fd
 /* TODO: Not sorted out, but not necessary either */
471fe57e
 static int mov_write_iods_tag(AVIOContext *pb, MOVMuxContext *mov)
1cb5f7fd
 {
e9eb8d0b
     avio_wb32(pb, 0x15); /* size */
32442930
     ffio_wfourcc(pb, "iods");
e9eb8d0b
     avio_wb32(pb, 0);    /* version & flags */
     avio_wb16(pb, 0x1007);
     avio_w8(pb, 0);
     avio_wb16(pb, 0x4fff);
     avio_wb16(pb, 0xfffe);
     avio_wb16(pb, 0x01ff);
1cb5f7fd
     return 0x15;
 }
88730be6
 #endif
1cb5f7fd
 
471fe57e
 static int mov_write_mvhd_tag(AVIOContext *pb, MOVMuxContext *mov)
1cb5f7fd
 {
b29af723
     int maxTrackID = 1, i;
     int64_t maxTrackLenTemp, maxTrackLen = 0;
a3a80ddc
     int version;
1cb5f7fd
 
42fb4148
     for (i=0; i<mov->nb_streams; i++) {
1cb5f7fd
         if(mov->tracks[i].entry > 0) {
729ef3ba
             maxTrackLenTemp = av_rescale_rnd(mov->tracks[i].trackDuration,
                                              MOV_TIMESCALE,
                                              mov->tracks[i].timescale,
                                              AV_ROUND_UP);
f578f938
             if(maxTrackLen < maxTrackLenTemp)
                 maxTrackLen = maxTrackLenTemp;
1cb5f7fd
             if(maxTrackID < mov->tracks[i].trackID)
                 maxTrackID = mov->tracks[i].trackID;
         }
     }
a3a80ddc
 
     version = maxTrackLen < UINT32_MAX ? 0 : 1;
e9eb8d0b
     (version == 1) ? avio_wb32(pb, 120) : avio_wb32(pb, 108); /* size */
32442930
     ffio_wfourcc(pb, "mvhd");
e9eb8d0b
     avio_w8(pb, version);
     avio_wb24(pb, 0); /* flags */
a3a80ddc
     if (version == 1) {
e9eb8d0b
         avio_wb64(pb, mov->time);
         avio_wb64(pb, mov->time);
a3a80ddc
     } else {
e9eb8d0b
         avio_wb32(pb, mov->time); /* creation time */
         avio_wb32(pb, mov->time); /* modification time */
a3a80ddc
     }
e9eb8d0b
     avio_wb32(pb, MOV_TIMESCALE);
     (version == 1) ? avio_wb64(pb, maxTrackLen) : avio_wb32(pb, maxTrackLen); /* duration of longest track */
1cb5f7fd
 
e9eb8d0b
     avio_wb32(pb, 0x00010000); /* reserved (preferred rate) 1.0 = normal */
     avio_wb16(pb, 0x0100); /* reserved (preferred volume) 1.0 = normal */
     avio_wb16(pb, 0); /* reserved */
     avio_wb32(pb, 0); /* reserved */
     avio_wb32(pb, 0); /* reserved */
1cb5f7fd
 
     /* Matrix structure */
e9eb8d0b
     avio_wb32(pb, 0x00010000); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x00010000); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x0); /* reserved */
     avio_wb32(pb, 0x40000000); /* reserved */
 
     avio_wb32(pb, 0); /* reserved (preview time) */
     avio_wb32(pb, 0); /* reserved (preview duration) */
     avio_wb32(pb, 0); /* reserved (poster time) */
     avio_wb32(pb, 0); /* reserved (selection time) */
     avio_wb32(pb, 0); /* reserved (selection duration) */
     avio_wb32(pb, 0); /* reserved (current time) */
     avio_wb32(pb, maxTrackID+1); /* Next track id */
1cb5f7fd
     return 0x6c;
 }
 
471fe57e
 static int mov_write_itunes_hdlr_tag(AVIOContext *pb, MOVMuxContext *mov,
b6c50eb1
                                      AVFormatContext *s)
 {
e9eb8d0b
     avio_wb32(pb, 33); /* size */
32442930
     ffio_wfourcc(pb, "hdlr");
e9eb8d0b
     avio_wb32(pb, 0);
     avio_wb32(pb, 0);
32442930
     ffio_wfourcc(pb, "mdir");
     ffio_wfourcc(pb, "appl");
e9eb8d0b
     avio_wb32(pb, 0);
     avio_wb32(pb, 0);
     avio_w8(pb, 0);
6b174197
     return 33;
b6c50eb1
 }
 
 /* helper function to write a data tag with the specified string as data */
471fe57e
 static int mov_write_string_data_tag(AVIOContext *pb, const char *data, int lang, int long_style)
b6c50eb1
 {
efda3395
     if(long_style){
6b174197
         int size = 16 + strlen(data);
e9eb8d0b
         avio_wb32(pb, size); /* size */
32442930
         ffio_wfourcc(pb, "data");
e9eb8d0b
         avio_wb32(pb, 1);
         avio_wb32(pb, 0);
         avio_write(pb, data, strlen(data));
6b174197
         return size;
efda3395
     }else{
fe3ab8ad
         if (!lang)
             lang = ff_mov_iso639_to_lang("und", 1);
e9eb8d0b
         avio_wb16(pb, strlen(data)); /* string length */
         avio_wb16(pb, lang);
         avio_write(pb, data, strlen(data));
efda3395
         return strlen(data) + 4;
b6c50eb1
     }
 }
 
471fe57e
 static int mov_write_string_tag(AVIOContext *pb, const char *name, const char *value, int lang, int long_style){
b6c50eb1
     int size = 0;
91208916
     if (value && value[0]) {
384c9c2f
         int64_t pos = avio_tell(pb);
e9eb8d0b
         avio_wb32(pb, 0); /* size */
32442930
         ffio_wfourcc(pb, name);
d9fc9ff3
         mov_write_string_data_tag(pb, value, lang, long_style);
efda3395
         size= updateSize(pb, pos);
b6c50eb1
     }
     return size;
 }
 
471fe57e
 static int mov_write_string_metadata(AVFormatContext *s, AVIOContext *pb,
1ee2d448
                                      const char *name, const char *tag,
                                      int long_style)
b6c50eb1
 {
d9fc9ff3
     int l, lang = 0, len, len2;
d2d67e42
     AVDictionaryEntry *t, *t2 = NULL;
d9fc9ff3
     char tag2[16];
1ee2d448
 
d2d67e42
     if (!(t = av_dict_get(s->metadata, tag, NULL, 0)))
efda3395
         return 0;
1ee2d448
 
d9fc9ff3
     len = strlen(t->key);
     snprintf(tag2, sizeof(tag2), "%s-", tag);
d2d67e42
     while ((t2 = av_dict_get(s->metadata, tag2, t2, AV_DICT_IGNORE_SUFFIX))) {
d9fc9ff3
         len2 = strlen(t2->key);
         if (len2 == len+4 && !strcmp(t->value, t2->value)
cc255afe
             && (l=ff_mov_iso639_to_lang(&t2->key[len2-3], 1)) >= 0) {
d9fc9ff3
             lang = l;
             break;
         }
     }
     return mov_write_string_tag(pb, name, t->value, lang, long_style);
b6c50eb1
 }
 
 /* iTunes track number */
471fe57e
 static int mov_write_trkn_tag(AVIOContext *pb, MOVMuxContext *mov,
b6c50eb1
                               AVFormatContext *s)
 {
d2d67e42
     AVDictionaryEntry *t = av_dict_get(s->metadata, "track", NULL, 0);
1ee2d448
     int size = 0, track = t ? atoi(t->value) : 0;
     if (track) {
e9eb8d0b
         avio_wb32(pb, 32); /* size */
32442930
         ffio_wfourcc(pb, "trkn");
e9eb8d0b
             avio_wb32(pb, 24); /* size */
32442930
             ffio_wfourcc(pb, "data");
e9eb8d0b
             avio_wb32(pb, 0);        // 8 bytes empty
             avio_wb32(pb, 0);
             avio_wb16(pb, 0);        // empty
             avio_wb16(pb, track);    // track number
             avio_wb16(pb, 0);        // total track number
             avio_wb16(pb, 0);        // empty
6b174197
         size = 32;
b6c50eb1
     }
     return size;
 }
 
 /* iTunes meta data list */
471fe57e
 static int mov_write_ilst_tag(AVIOContext *pb, MOVMuxContext *mov,
b6c50eb1
                               AVFormatContext *s)
 {
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "ilst");
1ee2d448
     mov_write_string_metadata(s, pb, "\251nam", "title"    , 1);
ea4c4d7f
     mov_write_string_metadata(s, pb, "\251ART", "artist"   , 1);
2cf9c7ef
     mov_write_string_metadata(s, pb, "aART", "album_artist", 1);
620af1a1
     mov_write_string_metadata(s, pb, "\251wrt", "composer" , 1);
1ee2d448
     mov_write_string_metadata(s, pb, "\251alb", "album"    , 1);
ca76a119
     mov_write_string_metadata(s, pb, "\251day", "date"     , 1);
d9fc9ff3
     mov_write_string_tag(pb, "\251too", LIBAVFORMAT_IDENT, 0, 1);
1ee2d448
     mov_write_string_metadata(s, pb, "\251cmt", "comment"  , 1);
     mov_write_string_metadata(s, pb, "\251gen", "genre"    , 1);
     mov_write_string_metadata(s, pb, "\251cpy", "copyright", 1);
2cf9c7ef
     mov_write_string_metadata(s, pb, "\251grp", "grouping" , 1);
     mov_write_string_metadata(s, pb, "\251lyr", "lyrics"   , 1);
7382902b
     mov_write_string_metadata(s, pb, "desc",    "description",1);
     mov_write_string_metadata(s, pb, "ldes",    "synopsis" , 1);
     mov_write_string_metadata(s, pb, "tvsh",    "show"     , 1);
     mov_write_string_metadata(s, pb, "tven",    "episode_id",1);
     mov_write_string_metadata(s, pb, "tvnn",    "network"  , 1);
b6c50eb1
     mov_write_trkn_tag(pb, mov, s);
     return updateSize(pb, pos);
 }
 
 /* iTunes meta data tag */
471fe57e
 static int mov_write_meta_tag(AVIOContext *pb, MOVMuxContext *mov,
b6c50eb1
                               AVFormatContext *s)
 {
     int size = 0;
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "meta");
e9eb8d0b
     avio_wb32(pb, 0);
b97fb809
     mov_write_itunes_hdlr_tag(pb, mov, s);
     mov_write_ilst_tag(pb, mov, s);
     size = updateSize(pb, pos);
b6c50eb1
     return size;
 }
115329f1
 
07b7b06d
 static int utf8len(const uint8_t *b)
 {
     int len=0;
     int val;
     while(*b){
         GET_UTF8(val, *b++, return -1;)
         len++;
     }
     return len;
 }
 
471fe57e
 static int ascii_to_wc(AVIOContext *pb, const uint8_t *b)
07b7b06d
 {
     int val;
     while(*b){
         GET_UTF8(val, *b++, return -1;)
e9eb8d0b
         avio_wb16(pb, val);
07b7b06d
     }
e9eb8d0b
     avio_wb16(pb, 0x00);
07b7b06d
     return 0;
 }
 
 static uint16_t language_code(const char *str)
 {
     return (((str[0]-0x60) & 0x1F) << 10) + (((str[1]-0x60) & 0x1F) << 5) + ((str[2]-0x60) & 0x1F);
 }
 
471fe57e
 static int mov_write_3gp_udta_tag(AVIOContext *pb, AVFormatContext *s,
c6e2c6c9
                                   const char *tag, const char *str)
 {
384c9c2f
     int64_t pos = avio_tell(pb);
d2d67e42
     AVDictionaryEntry *t = av_dict_get(s->metadata, str, NULL, 0);
1ee2d448
     if (!t || !utf8len(t->value))
c6e2c6c9
         return 0;
e9eb8d0b
     avio_wb32(pb, 0);   /* size */
32442930
     ffio_wfourcc(pb, tag); /* type */
e9eb8d0b
     avio_wb32(pb, 0);   /* version + flags */
c6e2c6c9
     if (!strcmp(tag, "yrrc"))
e9eb8d0b
         avio_wb16(pb, atoi(t->value));
c6e2c6c9
     else {
e9eb8d0b
         avio_wb16(pb, language_code("eng")); /* language */
         avio_write(pb, t->value, strlen(t->value)+1); /* UTF8 string value */
1ee2d448
         if (!strcmp(tag, "albm") &&
d2d67e42
             (t = av_dict_get(s->metadata, "track", NULL, 0)))
e9eb8d0b
             avio_w8(pb, atoi(t->value));
c6e2c6c9
     }
     return updateSize(pb, pos);
 }
 
471fe57e
 static int mov_write_chpl_tag(AVIOContext *pb, AVFormatContext *s)
dc75e4e3
 {
384c9c2f
     int64_t pos = avio_tell(pb);
dc75e4e3
     int i, nb_chapters = FFMIN(s->nb_chapters, 255);
 
e9eb8d0b
     avio_wb32(pb, 0);            // size
32442930
     ffio_wfourcc(pb, "chpl");
e9eb8d0b
     avio_wb32(pb, 0x01000000);   // version + flags
     avio_wb32(pb, 0);            // unknown
     avio_w8(pb, nb_chapters);
dc75e4e3
 
     for (i = 0; i < nb_chapters; i++) {
         AVChapter *c = s->chapters[i];
d2d67e42
         AVDictionaryEntry *t;
e9eb8d0b
         avio_wb64(pb, av_rescale_q(c->start, c->time_base, (AVRational){1,10000000}));
dc75e4e3
 
d2d67e42
         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
dc75e4e3
             int len = FFMIN(strlen(t->value), 255);
e9eb8d0b
             avio_w8(pb, len);
             avio_write(pb, t->value, len);
dc75e4e3
         } else
e9eb8d0b
             avio_w8(pb, 0);
dc75e4e3
     }
     return updateSize(pb, pos);
 }
 
471fe57e
 static int mov_write_udta_tag(AVIOContext *pb, MOVMuxContext *mov,
69dde1ad
                               AVFormatContext *s)
 {
471fe57e
     AVIOContext *pb_buf;
1ee2d448
     int i, ret, size;
     uint8_t *buf;
89a0d790
 
d1d87dfb
     for (i = 0; i < s->nb_streams; i++)
         if (mov->tracks[i].enc->flags & CODEC_FLAG_BITEXACT) {
1ee2d448
             return 0;
d1d87dfb
         }
 
b92c5452
     ret = avio_open_dyn_buf(&pb_buf);
1ee2d448
     if(ret < 0)
         return ret;
69dde1ad
 
a04aec6d
         if (mov->mode & MODE_3GP) {
a4de2b6e
             mov_write_3gp_udta_tag(pb_buf, s, "perf", "artist");
1ee2d448
             mov_write_3gp_udta_tag(pb_buf, s, "titl", "title");
             mov_write_3gp_udta_tag(pb_buf, s, "auth", "author");
             mov_write_3gp_udta_tag(pb_buf, s, "gnre", "genre");
             mov_write_3gp_udta_tag(pb_buf, s, "dscp", "comment");
             mov_write_3gp_udta_tag(pb_buf, s, "albm", "album");
             mov_write_3gp_udta_tag(pb_buf, s, "cprt", "copyright");
ca76a119
             mov_write_3gp_udta_tag(pb_buf, s, "yrrc", "date");
ce072b2d
         } else if (mov->mode == MODE_MOV) { // the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
96d1e75a
             mov_write_string_metadata(s, pb_buf, "\251ART", "artist"     , 0);
1ee2d448
             mov_write_string_metadata(s, pb_buf, "\251nam", "title"      , 0);
             mov_write_string_metadata(s, pb_buf, "\251aut", "author"     , 0);
             mov_write_string_metadata(s, pb_buf, "\251alb", "album"      , 0);
ca76a119
             mov_write_string_metadata(s, pb_buf, "\251day", "date"       , 0);
edd33cb6
             mov_write_string_metadata(s, pb_buf, "\251swr", "encoder"    , 0);
1ee2d448
             mov_write_string_metadata(s, pb_buf, "\251des", "comment"    , 0);
             mov_write_string_metadata(s, pb_buf, "\251gen", "genre"      , 0);
             mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright"  , 0);
c6e2c6c9
         } else {
283c9a8e
             /* iTunes meta data */
1ee2d448
             mov_write_meta_tag(pb_buf, mov, s);
c6e2c6c9
         }
1ee2d448
 
dc75e4e3
         if (s->nb_chapters)
             mov_write_chpl_tag(pb_buf, s);
 
6dc7d80d
     if ((size = avio_close_dyn_buf(pb_buf, &buf)) > 0) {
e9eb8d0b
         avio_wb32(pb, size+8);
32442930
         ffio_wfourcc(pb, "udta");
e9eb8d0b
         avio_write(pb, buf, size);
89a0d790
     }
8b6e0aec
     av_free(buf);
89a0d790
 
     return 0;
69dde1ad
 }
 
471fe57e
 static void mov_write_psp_udta_tag(AVIOContext *pb,
20e22af8
                                   const char *str, const char *lang, int type)
 {
     int len = utf8len(str)+1;
     if(len<=0)
d32d6def
         return;
e9eb8d0b
     avio_wb16(pb, len*2+10);            /* size */
     avio_wb32(pb, type);                /* type */
     avio_wb16(pb, language_code(lang)); /* language */
     avio_wb16(pb, 0x01);                /* ? */
20e22af8
     ascii_to_wc(pb, str);
 }
 
471fe57e
 static int mov_write_uuidusmt_tag(AVIOContext *pb, AVFormatContext *s)
dcfdb046
 {
d2d67e42
     AVDictionaryEntry *title = av_dict_get(s->metadata, "title", NULL, 0);
bc5c918e
     int64_t pos, pos2;
dcfdb046
 
1ee2d448
     if (title) {
384c9c2f
         pos = avio_tell(pb);
e9eb8d0b
         avio_wb32(pb, 0); /* size placeholder*/
32442930
         ffio_wfourcc(pb, "uuid");
         ffio_wfourcc(pb, "USMT");
e9eb8d0b
         avio_wb32(pb, 0x21d24fce); /* 96 bit UUID */
         avio_wb32(pb, 0xbb88695c);
         avio_wb32(pb, 0xfac9c740);
dcfdb046
 
384c9c2f
         pos2 = avio_tell(pb);
e9eb8d0b
         avio_wb32(pb, 0); /* size placeholder*/
32442930
         ffio_wfourcc(pb, "MTDT");
e9eb8d0b
         avio_wb16(pb, 4);
dcfdb046
 
7cf0e16f
         // ?
e9eb8d0b
         avio_wb16(pb, 0x0C);                 /* size */
         avio_wb32(pb, 0x0B);                 /* type */
         avio_wb16(pb, language_code("und")); /* language */
         avio_wb16(pb, 0x0);                  /* ? */
         avio_wb16(pb, 0x021C);               /* data */
7cf0e16f
 
d32d6def
         mov_write_psp_udta_tag(pb, LIBAVCODEC_IDENT,      "eng", 0x04);
1ee2d448
         mov_write_psp_udta_tag(pb, title->value,          "eng", 0x01);
7cf0e16f
 //        snprintf(dt,32,"%04d/%02d/%02d %02d:%02d:%02d",t_st->tm_year+1900,t_st->tm_mon+1,t_st->tm_mday,t_st->tm_hour,t_st->tm_min,t_st->tm_sec);
d32d6def
         mov_write_psp_udta_tag(pb, "2006/04/01 11:11:11", "und", 0x03);
 
         updateSize(pb, pos2);
         return updateSize(pb, pos);
dcfdb046
     }
 
d32d6def
     return 0;
dcfdb046
 }
 
471fe57e
 static int mov_write_moov_tag(AVIOContext *pb, MOVMuxContext *mov,
69dde1ad
                               AVFormatContext *s)
1cb5f7fd
 {
b29af723
     int i;
384c9c2f
     int64_t pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size placeholder*/
32442930
     ffio_wfourcc(pb, "moov");
1cb5f7fd
 
42fb4148
     for (i=0; i<mov->nb_streams; i++) {
e45ccf79
         if(mov->tracks[i].entry <= 0) continue;
 
         mov->tracks[i].time = mov->time;
         mov->tracks[i].trackID = i+1;
1cb5f7fd
     }
 
ddb63017
     if (mov->chapter_track)
         for (i=0; i<s->nb_streams; i++) {
             mov->tracks[i].tref_tag = MKTAG('c','h','a','p');
             mov->tracks[i].tref_id = mov->tracks[mov->chapter_track].trackID;
         }
e977af6f
     for (i = 0; i < mov->nb_streams; i++) {
         if (mov->tracks[i].tag == MKTAG('r','t','p',' ')) {
             mov->tracks[i].tref_tag = MKTAG('h','i','n','t');
             mov->tracks[i].tref_id =
                 mov->tracks[mov->tracks[i].src_track].trackID;
         }
     }
ddb63017
 
6e6d6dc0
     mov_write_mvhd_tag(pb, mov);
     //mov_write_iods_tag(pb, mov);
42fb4148
     for (i=0; i<mov->nb_streams; i++) {
1cb5f7fd
         if(mov->tracks[i].entry > 0) {
ddb63017
             mov_write_trak_tag(pb, &(mov->tracks[i]), i < s->nb_streams ? s->streams[i] : NULL);
1cb5f7fd
         }
     }
 
dcfdb046
     if (mov->mode == MODE_PSP)
         mov_write_uuidusmt_tag(pb, s);
c6e2c6c9
     else
e344c1ea
         mov_write_udta_tag(pb, mov, s);
69dde1ad
 
6e6d6dc0
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static int mov_write_mdat_tag(AVIOContext *pb, MOVMuxContext *mov)
1cb5f7fd
 {
e9eb8d0b
     avio_wb32(pb, 8);    // placeholder for extended size field (64 bit)
32442930
     ffio_wfourcc(pb, mov->mode == MODE_MOV ? "wide" : "free");
b29af723
 
384c9c2f
     mov->mdat_pos = avio_tell(pb);
e9eb8d0b
     avio_wb32(pb, 0); /* size placeholder*/
32442930
     ffio_wfourcc(pb, "mdat");
1cb5f7fd
     return 0;
 }
 
 /* TODO: This needs to be more general */
471fe57e
 static int mov_write_ftyp_tag(AVIOContext *pb, AVFormatContext *s)
1cb5f7fd
 {
2d243fb3
     MOVMuxContext *mov = s->priv_data;
384c9c2f
     int64_t pos = avio_tell(pb);
cd70d17f
     int has_h264 = 0, has_video = 0;
40f8675c
     int minor = 0x200;
c55cc074
     int i;
69dde1ad
 
83579084
     for (i = 0; i < s->nb_streams; i++) {
         AVStream *st = s->streams[i];
72415b2a
         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO)
cd70d17f
             has_video = 1;
83579084
         if (st->codec->codec_id == CODEC_ID_H264)
             has_h264 = 1;
     }
 
e9eb8d0b
     avio_wb32(pb, 0); /* size */
32442930
     ffio_wfourcc(pb, "ftyp");
e45ccf79
 
40f8675c
     if (mov->mode == MODE_3GP) {
32442930
         ffio_wfourcc(pb, has_h264 ? "3gp6"  : "3gp4");
40f8675c
         minor =     has_h264 ?   0x100 :   0x200;
     } else if (mov->mode & MODE_3G2) {
32442930
         ffio_wfourcc(pb, has_h264 ? "3g2b"  : "3g2a");
40f8675c
         minor =     has_h264 ? 0x20000 : 0x10000;
     }else if (mov->mode == MODE_PSP)
32442930
         ffio_wfourcc(pb, "MSNV");
c55cc074
     else if (mov->mode == MODE_MP4)
32442930
         ffio_wfourcc(pb, "isom");
cd70d17f
     else if (mov->mode == MODE_IPOD)
32442930
         ffio_wfourcc(pb, has_video ? "M4V ":"M4A ");
cd70d17f
     else
32442930
         ffio_wfourcc(pb, "qt  ");
e45ccf79
 
e9eb8d0b
     avio_wb32(pb, minor);
e45ccf79
 
6ba9ed95
     if(mov->mode == MODE_MOV)
32442930
         ffio_wfourcc(pb, "qt  ");
6ba9ed95
     else{
32442930
         ffio_wfourcc(pb, "isom");
         ffio_wfourcc(pb, "iso2");
83579084
         if(has_h264)
32442930
             ffio_wfourcc(pb, "avc1");
6ba9ed95
     }
ed6e47c2
 
91208916
     if (mov->mode == MODE_3GP)
32442930
         ffio_wfourcc(pb, has_h264 ? "3gp6":"3gp4");
a04aec6d
     else if (mov->mode & MODE_3G2)
32442930
         ffio_wfourcc(pb, has_h264 ? "3g2b":"3g2a");
91208916
     else if (mov->mode == MODE_PSP)
32442930
         ffio_wfourcc(pb, "MSNV");
c55cc074
     else if (mov->mode == MODE_MP4)
32442930
         ffio_wfourcc(pb, "mp41");
1560b667
     return updateSize(pb, pos);
1cb5f7fd
 }
 
471fe57e
 static void mov_write_uuidprof_tag(AVIOContext *pb, AVFormatContext *s)
8af18154
 {
dcfdb046
     AVCodecContext *VideoCodec = s->streams[0]->codec;
     AVCodecContext *AudioCodec = s->streams[1]->codec;
     int AudioRate = AudioCodec->sample_rate;
     int FrameRate = ((VideoCodec->time_base.den) * (0x10000))/ (VideoCodec->time_base.num);
9e282ba3
     int audio_kbitrate= AudioCodec->bit_rate / 1000;
     int video_kbitrate= FFMIN(VideoCodec->bit_rate / 1000, 800 - audio_kbitrate);
8af18154
 
e9eb8d0b
     avio_wb32(pb, 0x94); /* size */
32442930
     ffio_wfourcc(pb, "uuid");
     ffio_wfourcc(pb, "PROF");
8af18154
 
e9eb8d0b
     avio_wb32(pb, 0x21d24fce); /* 96 bit UUID */
     avio_wb32(pb, 0xbb88695c);
     avio_wb32(pb, 0xfac9c740);
8af18154
 
e9eb8d0b
     avio_wb32(pb, 0x0);  /* ? */
     avio_wb32(pb, 0x3);  /* 3 sections ? */
8af18154
 
e9eb8d0b
     avio_wb32(pb, 0x14); /* size */
32442930
     ffio_wfourcc(pb, "FPRF");
e9eb8d0b
     avio_wb32(pb, 0x0);  /* ? */
     avio_wb32(pb, 0x0);  /* ? */
     avio_wb32(pb, 0x0);  /* ? */
8af18154
 
e9eb8d0b
     avio_wb32(pb, 0x2c);  /* size */
32442930
     ffio_wfourcc(pb, "APRF");/* audio */
e9eb8d0b
     avio_wb32(pb, 0x0);
     avio_wb32(pb, 0x2);   /* TrackID */
32442930
     ffio_wfourcc(pb, "mp4a");
e9eb8d0b
     avio_wb32(pb, 0x20f);
     avio_wb32(pb, 0x0);
     avio_wb32(pb, audio_kbitrate);
     avio_wb32(pb, audio_kbitrate);
     avio_wb32(pb, AudioRate);
     avio_wb32(pb, AudioCodec->channels);
 
     avio_wb32(pb, 0x34);  /* size */
32442930
     ffio_wfourcc(pb, "VPRF");   /* video */
e9eb8d0b
     avio_wb32(pb, 0x0);
     avio_wb32(pb, 0x1);    /* TrackID */
87b041e0
     if (VideoCodec->codec_id == CODEC_ID_H264) {
32442930
         ffio_wfourcc(pb, "avc1");
e9eb8d0b
         avio_wb16(pb, 0x014D);
         avio_wb16(pb, 0x0015);
87b041e0
     } else {
32442930
         ffio_wfourcc(pb, "mp4v");
e9eb8d0b
         avio_wb16(pb, 0x0000);
         avio_wb16(pb, 0x0103);
87b041e0
     }
e9eb8d0b
     avio_wb32(pb, 0x0);
     avio_wb32(pb, video_kbitrate);
     avio_wb32(pb, video_kbitrate);
     avio_wb32(pb, FrameRate);
     avio_wb32(pb, FrameRate);
     avio_wb16(pb, VideoCodec->width);
     avio_wb16(pb, VideoCodec->height);
     avio_wb32(pb, 0x010001); /* ? */
8af18154
 }
 
e1316b19
 static int mov_parse_mpeg2_frame(AVPacket *pkt, uint32_t *flags)
 {
     uint32_t c = -1;
     int i, closed_gop = 0;
 
     for (i = 0; i < pkt->size - 4; i++) {
         c = (c<<8) + pkt->data[i];
         if (c == 0x1b8) { // gop
             closed_gop = pkt->data[i+4]>>6 & 0x01;
         } else if (c == 0x100) { // pic
             int temp_ref = (pkt->data[i+1]<<2) | (pkt->data[i+2]>>6);
             if (!temp_ref || closed_gop) // I picture is not reordered
                 *flags = MOV_SYNC_SAMPLE;
             else
                 *flags = MOV_PARTIAL_SYNC_SAMPLE;
             break;
         }
     }
     return 0;
 }
 
27a826c9
 int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
1cb5f7fd
 {
2d243fb3
     MOVMuxContext *mov = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
039627cf
     MOVTrack *trk = &mov->tracks[pkt->stream_index];
     AVCodecContext *enc = trk->enc;
e45ccf79
     unsigned int samplesInChunk = 0;
e928649b
     int size= pkt->size;
1cb5f7fd
 
8978feda
     if (!s->pb->seekable) return 0; /* Can't handle that */
e45ccf79
     if (!size) return 0; /* Discard 0 sized packets */
1cb5f7fd
 
06fcf56c
     if (enc->codec_id == CODEC_ID_AMR_NB) {
5cb49ca1
         /* We must find out how many AMR blocks there are in one packet */
         static uint16_t packed_size[16] =
             {13, 14, 16, 18, 20, 21, 27, 32, 6, 0, 0, 0, 0, 0, 0, 0};
         int len = 0;
 
         while (len < size && samplesInChunk < 100) {
             len += packed_size[(pkt->data[len] >> 3) & 0x0F];
             samplesInChunk++;
1cb5f7fd
         }
2111e3f9
         if(samplesInChunk > 1){
89938d29
             av_log(s, AV_LOG_ERROR, "fatal error, input is not a single packet, implement a AVParser for it\n");
2111e3f9
             return -1;
         }
d4e0130e
     } else if (enc->codec_id == CODEC_ID_ADPCM_MS ||
                enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) {
         samplesInChunk = enc->frame_size;
5cb49ca1
     } else if (trk->sampleSize)
         samplesInChunk = size/trk->sampleSize;
     else
5616f85d
         samplesInChunk = 1;
e45ccf79
 
5616f85d
     /* copy extradata if it exists */
     if (trk->vosLen == 0 && enc->extradata_size > 0) {
e45ccf79
         trk->vosLen = enc->extradata_size;
         trk->vosData = av_malloc(trk->vosLen);
         memcpy(trk->vosData, enc->extradata, trk->vosLen);
     }
 
5d2160a0
     if (enc->codec_id == CODEC_ID_H264 && trk->vosLen > 0 && *(uint8_t *)trk->vosData != 1) {
         /* from x264 or from bytestream h264 */
         /* nal reformating needed */
         size = ff_avc_parse_nal_units(pb, pkt->data, pkt->size);
c22f2527
     } else if (enc->codec_id == CODEC_ID_AAC && pkt->size > 2 &&
                (AV_RB16(pkt->data) & 0xfff0) == 0xfff0) {
         av_log(s, AV_LOG_ERROR, "malformated aac bitstream, use -absf aac_adtstoasc\n");
         return -1;
5d2160a0
     } else {
e9eb8d0b
         avio_write(pb, pkt->data, size);
5d2160a0
     }
 
0a63a676
     if ((enc->codec_id == CODEC_ID_DNXHD ||
1fbbedff
          enc->codec_id == CODEC_ID_AC3) && !trk->vosLen) {
db568c07
         /* copy frame to create needed atoms */
         trk->vosLen = size;
         trk->vosData = av_malloc(size);
e8c4df40
         if (!trk->vosData)
             return AVERROR(ENOMEM);
db568c07
         memcpy(trk->vosData, pkt->data, size);
c1b8e6d8
     }
 
0aec3c5c
     if (!(trk->entry % MOV_INDEX_CLUSTER_SIZE)) {
17b6abab
         trk->cluster = av_realloc_f(trk->cluster, sizeof(*trk->cluster), (trk->entry + MOV_INDEX_CLUSTER_SIZE));
e45ccf79
         if (!trk->cluster)
             return -1;
     }
 
384c9c2f
     trk->cluster[trk->entry].pos = avio_tell(pb) - size;
0aec3c5c
     trk->cluster[trk->entry].samplesInChunk = samplesInChunk;
     trk->cluster[trk->entry].size = size;
     trk->cluster[trk->entry].entries = samplesInChunk;
aa90239f
     trk->cluster[trk->entry].dts = pkt->dts;
     trk->trackDuration = pkt->dts - trk->cluster[0].dts + pkt->duration;
 
96f69e0d
     if (pkt->pts == AV_NOPTS_VALUE) {
         av_log(s, AV_LOG_WARNING, "pts has no value\n");
         pkt->pts = pkt->dts;
     }
c4f078ff
     if (pkt->dts != pkt->pts)
e1316b19
         trk->flags |= MOV_TRACK_CTTS;
c4f078ff
     trk->cluster[trk->entry].cts = pkt->pts - pkt->dts;
e1316b19
     trk->cluster[trk->entry].flags = 0;
cc947f04
     if (pkt->flags & AV_PKT_FLAG_KEY) {
62bacc4e
         if (mov->mode == MODE_MOV && enc->codec_id == CODEC_ID_MPEG2VIDEO &&
             trk->entry > 0) { // force sync sample for the first key frame
e1316b19
             mov_parse_mpeg2_frame(pkt, &trk->cluster[trk->entry].flags);
             if (trk->cluster[trk->entry].flags & MOV_PARTIAL_SYNC_SAMPLE)
                 trk->flags |= MOV_TRACK_STPS;
         } else {
             trk->cluster[trk->entry].flags = MOV_SYNC_SAMPLE;
         }
         if (trk->cluster[trk->entry].flags & MOV_SYNC_SAMPLE)
             trk->hasKeyframes++;
ab4752e3
     }
e45ccf79
     trk->entry++;
     trk->sampleCount += samplesInChunk;
039627cf
     mov->mdat_size += size;
e45ccf79
 
b7f2fdde
     avio_flush(pb);
e977af6f
 
     if (trk->hint_track >= 0 && trk->hint_track < mov->nb_streams)
         ff_mov_add_hinted_packet(s, pkt, trk->hint_track, trk->entry);
1cb5f7fd
     return 0;
 }
 
ddb63017
 // QuickTime chapters involve an additional text track with the chapter names
 // as samples, and a tref pointing from the other tracks to the chapter one.
 static void mov_create_chapter_track(AVFormatContext *s, int tracknum)
 {
     MOVMuxContext *mov = s->priv_data;
     MOVTrack *track = &mov->tracks[tracknum];
     AVPacket pkt = { .stream_index = tracknum, .flags = AV_PKT_FLAG_KEY };
     int i, len;
 
     track->mode = mov->mode;
     track->tag = MKTAG('t','e','x','t');
     track->timescale = MOV_TIMESCALE;
     track->enc = avcodec_alloc_context();
     track->enc->codec_type = AVMEDIA_TYPE_SUBTITLE;
 
     for (i = 0; i < s->nb_chapters; i++) {
         AVChapter *c = s->chapters[i];
d2d67e42
         AVDictionaryEntry *t;
ddb63017
 
         int64_t end = av_rescale_q(c->end, c->time_base, (AVRational){1,MOV_TIMESCALE});
         pkt.pts = pkt.dts = av_rescale_q(c->start, c->time_base, (AVRational){1,MOV_TIMESCALE});
         pkt.duration = end - pkt.dts;
 
d2d67e42
         if ((t = av_dict_get(c->metadata, "title", NULL, 0))) {
ddb63017
             len = strlen(t->value);
             pkt.size = len+2;
             pkt.data = av_malloc(pkt.size);
             AV_WB16(pkt.data, len);
             memcpy(pkt.data+2, t->value, len);
27a826c9
             ff_mov_write_packet(s, &pkt);
ddb63017
             av_freep(&pkt.data);
         }
     }
 }
 
1b206f62
 static int mov_write_header(AVFormatContext *s)
 {
471fe57e
     AVIOContext *pb = s->pb;
1b206f62
     MOVMuxContext *mov = s->priv_data;
e977af6f
     int i, hint_track = 0;
1b206f62
 
8978feda
     if (!s->pb->seekable) {
1b206f62
         av_log(s, AV_LOG_ERROR, "muxer does not support non seekable output\n");
         return -1;
     }
 
     /* Default mode == MP4 */
     mov->mode = MODE_MP4;
 
     if (s->oformat != NULL) {
         if (!strcmp("3gp", s->oformat->name)) mov->mode = MODE_3GP;
         else if (!strcmp("3g2", s->oformat->name)) mov->mode = MODE_3GP|MODE_3G2;
         else if (!strcmp("mov", s->oformat->name)) mov->mode = MODE_MOV;
         else if (!strcmp("psp", s->oformat->name)) mov->mode = MODE_PSP;
         else if (!strcmp("ipod",s->oformat->name)) mov->mode = MODE_IPOD;
 
         mov_write_ftyp_tag(pb,s);
         if (mov->mode == MODE_PSP) {
             if (s->nb_streams != 2) {
                 av_log(s, AV_LOG_ERROR, "PSP mode need one video and one audio stream\n");
                 return -1;
             }
             mov_write_uuidprof_tag(pb,s);
         }
     }
 
ddb63017
     mov->nb_streams = s->nb_streams;
     if (mov->mode & (MODE_MOV|MODE_IPOD) && s->nb_chapters)
         mov->chapter_track = mov->nb_streams++;
 
28734ac9
 #if FF_API_FLAG_RTP_HINT
e977af6f
     if (s->flags & AVFMT_FLAG_RTP_HINT) {
28734ac9
         av_log(s, AV_LOG_WARNING, "The RTP_HINT flag is deprecated, enable it "
                                   "via the -movflags rtphint muxer option "
                                   "instead.\n");
         mov->flags |= FF_MOV_FLAG_RTP_HINT;
     }
 #endif
     if (mov->flags & FF_MOV_FLAG_RTP_HINT) {
e977af6f
         /* Add hint tracks for each audio and video stream */
         hint_track = mov->nb_streams;
         for (i = 0; i < s->nb_streams; i++) {
             AVStream *st = s->streams[i];
             if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO ||
                 st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
                 mov->nb_streams++;
             }
         }
     }
 
ddb63017
     mov->tracks = av_mallocz(mov->nb_streams*sizeof(*mov->tracks));
1b206f62
     if (!mov->tracks)
         return AVERROR(ENOMEM);
 
     for(i=0; i<s->nb_streams; i++){
         AVStream *st= s->streams[i];
         MOVTrack *track= &mov->tracks[i];
d2d67e42
         AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL,0);
1b206f62
 
         track->enc = st->codec;
         track->language = ff_mov_iso639_to_lang(lang?lang->value:"und", mov->mode!=MODE_MOV);
         if (track->language < 0)
             track->language = 0;
         track->mode = mov->mode;
         track->tag = mov_find_codec_tag(s, track);
         if (!track->tag) {
             av_log(s, AV_LOG_ERROR, "track %d: could not find tag, "
                    "codec not currently supported in container\n", i);
             goto error;
         }
e977af6f
         /* If hinting of this track is enabled by a later hint track,
          * this is updated. */
         track->hint_track = -1;
1b206f62
         if(st->codec->codec_type == AVMEDIA_TYPE_VIDEO){
             if (track->tag == MKTAG('m','x','3','p') || track->tag == MKTAG('m','x','3','n') ||
                 track->tag == MKTAG('m','x','4','p') || track->tag == MKTAG('m','x','4','n') ||
                 track->tag == MKTAG('m','x','5','p') || track->tag == MKTAG('m','x','5','n')) {
                 if (st->codec->width != 720 || (st->codec->height != 608 && st->codec->height != 512)) {
                     av_log(s, AV_LOG_ERROR, "D-10/IMX must use 720x608 or 720x512 video resolution\n");
                     goto error;
                 }
                 track->height = track->tag>>24 == 'n' ? 486 : 576;
             }
             track->timescale = st->codec->time_base.den;
             if (track->mode == MODE_MOV && track->timescale > 100000)
                 av_log(s, AV_LOG_WARNING,
                        "WARNING codec timebase is very high. If duration is too long,\n"
                        "file may not be playable by quicktime. Specify a shorter timebase\n"
                        "or choose different container.\n");
         }else if(st->codec->codec_type == AVMEDIA_TYPE_AUDIO){
             track->timescale = st->codec->sample_rate;
             if(!st->codec->frame_size && !av_get_bits_per_sample(st->codec->codec_id)) {
                 av_log(s, AV_LOG_ERROR, "track %d: codec frame size is not set\n", i);
                 goto error;
d4e0130e
             }else if(st->codec->codec_id == CODEC_ID_ADPCM_MS ||
                      st->codec->codec_id == CODEC_ID_ADPCM_IMA_WAV){
                 if (!st->codec->block_align) {
                     av_log(s, AV_LOG_ERROR, "track %d: codec block align is not set for adpcm\n", i);
                     goto error;
                 }
                 track->sampleSize = st->codec->block_align;
1b206f62
             }else if(st->codec->frame_size > 1){ /* assume compressed audio */
                 track->audio_vbr = 1;
             }else{
                 st->codec->frame_size = 1;
                 track->sampleSize = (av_get_bits_per_sample(st->codec->codec_id) >> 3) * st->codec->channels;
             }
             if (track->mode != MODE_MOV) {
                 if (track->timescale > UINT16_MAX) {
                     av_log(s, AV_LOG_ERROR, "track %d: output format does not support "
                            "sample rate %dhz\n", i, track->timescale);
                     goto error;
                 }
                 if (track->enc->codec_id == CODEC_ID_MP3 && track->timescale < 16000) {
                     av_log(s, AV_LOG_ERROR, "track %d: muxing mp3 at %dhz is not supported\n",
                            i, track->enc->sample_rate);
                     goto error;
                 }
             }
         }else if(st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE){
             track->timescale = st->codec->time_base.den;
         }
         if (!track->height)
             track->height = st->codec->height;
 
         av_set_pts_info(st, 64, 1, track->timescale);
     }
 
     mov_write_mdat_tag(pb, mov);
     mov->time = s->timestamp + 0x7C25B080; //1970 based -> 1904 based
ddb63017
 
     if (mov->chapter_track)
         mov_create_chapter_track(s, mov->chapter_track);
1b206f62
 
28734ac9
     if (mov->flags & FF_MOV_FLAG_RTP_HINT) {
e977af6f
         /* Initialize the hint tracks for each audio and video stream */
         for (i = 0; i < s->nb_streams; i++) {
             AVStream *st = s->streams[i];
             if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO ||
                 st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
                 ff_mov_init_hinting(s, hint_track, i);
                 hint_track++;
             }
         }
     }
 
b7f2fdde
     avio_flush(pb);
1b206f62
 
     return 0;
  error:
     av_freep(&mov->tracks);
     return -1;
 }
 
1cb5f7fd
 static int mov_write_trailer(AVFormatContext *s)
 {
2d243fb3
     MOVMuxContext *mov = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
1cb5f7fd
     int res = 0;
0aec3c5c
     int i;
1cb5f7fd
 
384c9c2f
     int64_t moov_pos = avio_tell(pb);
1cb5f7fd
 
     /* Write size of mdat tag */
039627cf
     if (mov->mdat_size+8 <= UINT32_MAX) {
f59d8ff8
         avio_seek(pb, mov->mdat_pos, SEEK_SET);
e9eb8d0b
         avio_wb32(pb, mov->mdat_size+8);
b29af723
     } else {
         /* overwrite 'wide' placeholder atom */
f59d8ff8
         avio_seek(pb, mov->mdat_pos - 8, SEEK_SET);
e9eb8d0b
         avio_wb32(pb, 1); /* special value: real atom size will be 64 bit value after tag field */
32442930
         ffio_wfourcc(pb, "mdat");
e9eb8d0b
         avio_wb64(pb, mov->mdat_size+16);
b29af723
     }
f59d8ff8
     avio_seek(pb, moov_pos, SEEK_SET);
1cb5f7fd
 
69dde1ad
     mov_write_moov_tag(pb, mov, s);
1cb5f7fd
 
ddb63017
     if (mov->chapter_track)
         av_freep(&mov->tracks[mov->chapter_track].enc);
 
42fb4148
     for (i=0; i<mov->nb_streams; i++) {
e977af6f
         if (mov->tracks[i].tag == MKTAG('r','t','p',' '))
             ff_mov_close_hinting(&mov->tracks[i]);
0aec3c5c
         av_freep(&mov->tracks[i].cluster);
 
91208916
         if(mov->tracks[i].vosLen) av_free(mov->tracks[i].vosData);
ec7d0d2e
 
1cb5f7fd
     }
69dde1ad
 
b7f2fdde
     avio_flush(pb);
1cb5f7fd
 
5c5776e1
     av_freep(&mov->tracks);
 
1cb5f7fd
     return res;
 }
 
b250f9c6
 #if CONFIG_MOV_MUXER
66355be3
 AVOutputFormat ff_mov_muxer = {
1cb5f7fd
     "mov",
bde15e74
     NULL_IF_CONFIG_SMALL("MOV format"),
1cb5f7fd
     NULL,
     "mov",
2d243fb3
     sizeof(MOVMuxContext),
69dde1ad
     CODEC_ID_AAC,
2187d948
     CODEC_ID_MPEG4,
1cb5f7fd
     mov_write_header,
27a826c9
     ff_mov_write_packet,
1cb5f7fd
     mov_write_trailer,
91360ce6
     .flags = AVFMT_GLOBALHEADER,
c1854592
     .codec_tag = (const AVCodecTag* const []){codec_movvideo_tags, codec_movaudio_tags, 0},
91e3a25e
     .priv_class = &mov_muxer_class,
1cb5f7fd
 };
ff70e601
 #endif
b250f9c6
 #if CONFIG_TGP_MUXER
66355be3
 AVOutputFormat ff_tgp_muxer = {
1cb5f7fd
     "3gp",
bde15e74
     NULL_IF_CONFIG_SMALL("3GP format"),
1cb5f7fd
     NULL,
     "3gp",
2d243fb3
     sizeof(MOVMuxContext),
1cb5f7fd
     CODEC_ID_AMR_NB,
     CODEC_ID_H263,
     mov_write_header,
27a826c9
     ff_mov_write_packet,
1cb5f7fd
     mov_write_trailer,
c64d476c
     .flags = AVFMT_GLOBALHEADER,
c1854592
     .codec_tag = (const AVCodecTag* const []){codec_3gp_tags, 0},
91e3a25e
     .priv_class = &mov_muxer_class,
1cb5f7fd
 };
ff70e601
 #endif
b250f9c6
 #if CONFIG_MP4_MUXER
66355be3
 AVOutputFormat ff_mp4_muxer = {
1cb5f7fd
     "mp4",
bde15e74
     NULL_IF_CONFIG_SMALL("MP4 format"),
4cb3f3b6
     "application/mp4",
ccec1b69
     "mp4",
2d243fb3
     sizeof(MOVMuxContext),
1cb5f7fd
     CODEC_ID_AAC,
     CODEC_ID_MPEG4,
     mov_write_header,
27a826c9
     ff_mov_write_packet,
1cb5f7fd
     mov_write_trailer,
91360ce6
     .flags = AVFMT_GLOBALHEADER,
c1854592
     .codec_tag = (const AVCodecTag* const []){ff_mp4_obj_type, 0},
91e3a25e
     .priv_class = &mov_muxer_class,
1cb5f7fd
 };
ff70e601
 #endif
b250f9c6
 #if CONFIG_PSP_MUXER
66355be3
 AVOutputFormat ff_psp_muxer = {
8af18154
     "psp",
bde15e74
     NULL_IF_CONFIG_SMALL("PSP MP4 format"),
8af18154
     NULL,
     "mp4,psp",
2d243fb3
     sizeof(MOVMuxContext),
8af18154
     CODEC_ID_AAC,
     CODEC_ID_MPEG4,
     mov_write_header,
27a826c9
     ff_mov_write_packet,
8af18154
     mov_write_trailer,
dcfdb046
     .flags = AVFMT_GLOBALHEADER,
c1854592
     .codec_tag = (const AVCodecTag* const []){ff_mp4_obj_type, 0},
91e3a25e
     .priv_class = &mov_muxer_class,
8af18154
 };
ff70e601
 #endif
b250f9c6
 #if CONFIG_TG2_MUXER
66355be3
 AVOutputFormat ff_tg2_muxer = {
8536ab89
     "3g2",
bde15e74
     NULL_IF_CONFIG_SMALL("3GP2 format"),
8536ab89
     NULL,
     "3g2",
2d243fb3
     sizeof(MOVMuxContext),
8536ab89
     CODEC_ID_AMR_NB,
     CODEC_ID_H263,
     mov_write_header,
27a826c9
     ff_mov_write_packet,
8536ab89
     mov_write_trailer,
c64d476c
     .flags = AVFMT_GLOBALHEADER,
c1854592
     .codec_tag = (const AVCodecTag* const []){codec_3gp_tags, 0},
91e3a25e
     .priv_class = &mov_muxer_class,
8536ab89
 };
ff70e601
 #endif
b250f9c6
 #if CONFIG_IPOD_MUXER
66355be3
 AVOutputFormat ff_ipod_muxer = {
aa9f4208
     "ipod",
bde15e74
     NULL_IF_CONFIG_SMALL("iPod H.264 MP4 format"),
aa9f4208
     "application/mp4",
ccec1b69
     "m4v,m4a",
2d243fb3
     sizeof(MOVMuxContext),
aa9f4208
     CODEC_ID_AAC,
     CODEC_ID_H264,
     mov_write_header,
27a826c9
     ff_mov_write_packet,
aa9f4208
     mov_write_trailer,
     .flags = AVFMT_GLOBALHEADER,
d1df4da0
     .codec_tag = (const AVCodecTag* const []){codec_ipod_tags, 0},
91e3a25e
     .priv_class = &mov_muxer_class,
aa9f4208
 };
 #endif