3 * Copyright (c) 2003 Thomas Raivio
4 * Copyright (c) 2004 Gildas Bazin <gbazin at videolan dot org>
5 * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
7 * This file is part of Libav.
9 * Libav is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * Libav is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with Libav; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #ifndef AVFORMAT_MOVENC_H
25 #define AVFORMAT_MOVENC_H
29 #define MOV_FRAG_INFO_ALLOC_INCREMENT 64
30 #define MOV_INDEX_CLUSTER_SIZE 1024
31 #define MOV_TIMESCALE 1000
33 #define RTP_MAX_PACKET_SIZE 1450
38 #define MODE_PSP 0x08 // example working PSP command line:
39 // avconv -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4
41 #define MODE_IPOD 0x20
45 typedef struct MOVIentry {
49 unsigned int samples_in_chunk;
52 #define MOV_SYNC_SAMPLE 0x0001
53 #define MOV_PARTIAL_SYNC_SAMPLE 0x0002
57 typedef struct HintSample {
65 typedef struct HintSampleQueue {
71 typedef struct MOVFragmentInfo {
79 typedef struct MOVTrack {
84 int64_t track_duration;
88 #define MOV_TRACK_CTTS 0x0001
89 #define MOV_TRACK_STPS 0x0002
90 #define MOV_TRACK_ENABLED 0x0004
94 int tag; ///< stsd fourcc
101 unsigned cluster_capacity;
103 int height; ///< active picture (w/o VBI) height for D-10/IMX
105 int tref_id; ///< trackID of the referenced track
110 int hint_track; ///< the track that hints this track, -1 if no hint track is set
111 int src_track; ///< the track that this hint track describes
112 AVFormatContext *rtp_ctx; ///< the format context for the hinting rtp muxer
113 uint32_t prev_rtp_ts;
114 int64_t cur_rtp_ts_unwrapped;
115 uint32_t max_packet_size;
117 int64_t default_duration;
118 uint32_t default_sample_flags;
119 uint32_t default_size;
121 HintSampleQueue sample_queue;
123 AVIOContext *mdat_buf;
130 MOVFragmentInfo *frag_info;
131 unsigned frag_info_capacity;
134 int first_packet_seq;
135 int first_packet_entry;
136 int first_packet_seen;
137 int first_frag_written;
144 typedef struct MOVMuxContext {
145 const AVClass *av_class;
149 int chapter_track; ///< qt chapter track number
157 int iods_video_profile;
158 int iods_audio_profile;
162 int max_fragment_duration;
163 int min_fragment_duration;
164 int max_fragment_size;
166 AVIOContext *mdat_buf;
169 int64_t reserved_moov_pos;
173 int per_stream_grouping;
178 int missing_duration_warned;
181 #define FF_MOV_FLAG_RTP_HINT (1 << 0)
182 #define FF_MOV_FLAG_FRAGMENT (1 << 1)
183 #define FF_MOV_FLAG_EMPTY_MOOV (1 << 2)
184 #define FF_MOV_FLAG_FRAG_KEYFRAME (1 << 3)
185 #define FF_MOV_FLAG_SEPARATE_MOOF (1 << 4)
186 #define FF_MOV_FLAG_FRAG_CUSTOM (1 << 5)
187 #define FF_MOV_FLAG_ISML (1 << 6)
188 #define FF_MOV_FLAG_FASTSTART (1 << 7)
189 #define FF_MOV_FLAG_OMIT_TFHD_OFFSET (1 << 8)
190 #define FF_MOV_FLAG_DISABLE_CHPL (1 << 9)
191 #define FF_MOV_FLAG_DEFAULT_BASE_MOOF (1 << 10)
192 #define FF_MOV_FLAG_DASH (1 << 11)
193 #define FF_MOV_FLAG_FRAG_DISCONT (1 << 12)
194 #define FF_MOV_FLAG_DELAY_MOOV (1 << 13)
196 int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt);
198 int ff_mov_init_hinting(AVFormatContext *s, int index, int src_index);
199 int ff_mov_add_hinted_packet(AVFormatContext *s, AVPacket *pkt,
200 int track_index, int sample,
201 uint8_t *sample_data, int sample_size);
202 void ff_mov_close_hinting(MOVTrack *track);
204 #endif /* AVFORMAT_MOVENC_H */