FFmpeg
movenc.h
Go to the documentation of this file.
1 /*
2  * MOV, 3GP, MP4 muxer
3  * Copyright (c) 2003 Thomas Raivio
4  * Copyright (c) 2004 Gildas Bazin <gbazin at videolan dot org>
5  * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23 
24 #ifndef AVFORMAT_MOVENC_H
25 #define AVFORMAT_MOVENC_H
26 
27 #include "avformat.h"
28 #include "movenccenc.h"
30 
31 #define MOV_FRAG_INFO_ALLOC_INCREMENT 64
32 #define MOV_INDEX_CLUSTER_SIZE 1024
33 #define MOV_TIMESCALE 1000
34 
35 #define RTP_MAX_PACKET_SIZE 1450
36 
37 #define MODE_MP4 0x01
38 #define MODE_MOV 0x02
39 #define MODE_3GP 0x04
40 #define MODE_PSP 0x08 // example working PSP command line:
41 // ffmpeg -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4
42 #define MODE_3G2 0x10
43 #define MODE_IPOD 0x20
44 #define MODE_ISM 0x40
45 #define MODE_F4V 0x80
46 
47 typedef struct MOVIentry {
48  uint64_t pos;
49  int64_t dts;
50  int64_t pts;
51  unsigned int size;
52  unsigned int samples_in_chunk;
53  unsigned int chunkNum; ///< Chunk number if the current entry is a chunk start otherwise 0
54  unsigned int entries;
55  int cts;
56 #define MOV_SYNC_SAMPLE 0x0001
57 #define MOV_PARTIAL_SYNC_SAMPLE 0x0002
58 #define MOV_DISPOSABLE_SAMPLE 0x0004
59  uint32_t flags;
61 } MOVIentry;
62 
63 typedef struct HintSample {
64  uint8_t *data;
65  int size;
67  int offset;
68  int own_data;
69 } HintSample;
70 
71 typedef struct HintSampleQueue {
72  int size;
73  int len;
76 
77 typedef struct MOVFragmentInfo {
78  int64_t offset;
79  int64_t time;
80  int64_t duration;
81  int64_t tfrf_offset;
82  int size;
84 
85 typedef struct MOVTrack {
86  int mode;
87  int entry;
88  unsigned timescale;
89  uint64_t time;
90  int64_t track_duration;
94  long chunkCount;
97 #define MOV_TRACK_CTTS 0x0001
98 #define MOV_TRACK_STPS 0x0002
99 #define MOV_TRACK_ENABLED 0x0004
100  uint32_t flags;
101 #define MOV_TIMECODE_FLAG_DROPFRAME 0x0001
102 #define MOV_TIMECODE_FLAG_24HOURSMAX 0x0002
103 #define MOV_TIMECODE_FLAG_ALLOWNEGATIVE 0x0004
104  uint32_t timecode_flags;
105  int language;
106  int track_id;
107  int tag; ///< stsd fourcc
111 
112  int vos_len;
113  uint8_t *vos_data;
117  int height; ///< active picture (w/o VBI) height for D-10/IMX
118  uint32_t tref_tag;
119  int tref_id; ///< trackID of the referenced track
120  int64_t start_dts;
121  int64_t start_cts;
122  int64_t end_pts;
124  int64_t dts_shift;
125 
126  int hint_track; ///< the track that hints this track, -1 if no hint track is set
127  int src_track; ///< the track that this hint (or tmcd) track describes
128  AVFormatContext *rtp_ctx; ///< the format context for the hinting rtp muxer
129  uint32_t prev_rtp_ts;
131  uint32_t max_packet_size;
132 
135  uint32_t default_size;
136 
139 
141  int64_t data_offset;
144 
148 
149  struct {
156  int slices;
157  } vc1_info;
158 
159  void *eac3_priv;
160 
162 
164  int pal_done;
165 
167 
168  unsigned int squash_fragment_samples_to_one; //< flag to note formats where all samples for a fragment are to be squashed
169 
171 } MOVTrack;
172 
173 typedef enum {
177 
178 typedef enum {
183 } MOVPrftBox;
184 
185 typedef struct MOVMuxContext {
187  int mode;
188  int64_t time;
190  int nb_meta_tmcd; ///< number of new created tmcd track based on metadata (aka not data copy)
191  int chapter_track; ///< qt chapter track number
192  int64_t mdat_pos;
193  uint64_t mdat_size;
195 
196  int flags;
198 
202 
211 
213 
214  int reserved_moov_size; ///< 0 for disabled, -1 for automatic, size otherwise
216 
217  char *major_brand;
218 
221 
223 
225  float gamma;
226 
229 
232  uint8_t *encryption_key;
234  uint8_t *encryption_kid;
236 
238 
245 } MOVMuxContext;
246 
247 #define FF_MOV_FLAG_RTP_HINT (1 << 0)
248 #define FF_MOV_FLAG_FRAGMENT (1 << 1)
249 #define FF_MOV_FLAG_EMPTY_MOOV (1 << 2)
250 #define FF_MOV_FLAG_FRAG_KEYFRAME (1 << 3)
251 #define FF_MOV_FLAG_SEPARATE_MOOF (1 << 4)
252 #define FF_MOV_FLAG_FRAG_CUSTOM (1 << 5)
253 #define FF_MOV_FLAG_ISML (1 << 6)
254 #define FF_MOV_FLAG_FASTSTART (1 << 7)
255 #define FF_MOV_FLAG_OMIT_TFHD_OFFSET (1 << 8)
256 #define FF_MOV_FLAG_DISABLE_CHPL (1 << 9)
257 #define FF_MOV_FLAG_DEFAULT_BASE_MOOF (1 << 10)
258 #define FF_MOV_FLAG_DASH (1 << 11)
259 #define FF_MOV_FLAG_FRAG_DISCONT (1 << 12)
260 #define FF_MOV_FLAG_DELAY_MOOV (1 << 13)
261 #define FF_MOV_FLAG_GLOBAL_SIDX (1 << 14)
262 #define FF_MOV_FLAG_WRITE_COLR (1 << 15)
263 #define FF_MOV_FLAG_WRITE_GAMA (1 << 16)
264 #define FF_MOV_FLAG_USE_MDTA (1 << 17)
265 #define FF_MOV_FLAG_SKIP_TRAILER (1 << 18)
266 #define FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS (1 << 19)
267 #define FF_MOV_FLAG_FRAG_EVERY_FRAME (1 << 20)
268 #define FF_MOV_FLAG_SKIP_SIDX (1 << 21)
269 #define FF_MOV_FLAG_CMAF (1 << 22)
270 #define FF_MOV_FLAG_PREFER_ICC (1 << 23)
271 
273 
274 int ff_mov_init_hinting(AVFormatContext *s, int index, int src_index);
276  int track_index, int sample,
277  uint8_t *sample_data, int sample_size);
278 void ff_mov_close_hinting(MOVTrack *track);
279 
280 #endif /* AVFORMAT_MOVENC_H */
MOVTrack::height
int height
active picture (w/o VBI) height for D-10/IMX
Definition: movenc.h:117
MOVMuxContext::mdat_pos
int64_t mdat_pos
Definition: movenc.h:192
MOVMuxContext::fc
AVFormatContext * fc
Definition: movenc.h:220
MOVTrack::end_pts
int64_t end_pts
Definition: movenc.h:122
MOVMuxContext::iods_audio_profile
int iods_audio_profile
Definition: movenc.h:201
MOVTrack::chunkCount
long chunkCount
Definition: movenc.h:94
MOVFragmentInfo::tfrf_offset
int64_t tfrf_offset
Definition: movenc.h:81
MOVTrack::squash_fragment_samples_to_one
unsigned int squash_fragment_samples_to_one
Definition: movenc.h:168
MOVMuxContext::mode
int mode
Definition: movenc.h:187
MOVMuxContext::encryption_scheme
MOVEncryptionScheme encryption_scheme
Definition: movenc.h:231
AVCodecParameters
This struct describes the properties of an encoded stream.
Definition: codec_par.h:52
MOVTrack::mode
int mode
Definition: movenc.h:86
MOVIentry
Definition: movenc.h:47
track_index
static int track_index(VividasDemuxContext *viv, AVFormatContext *s, uint8_t *buf, unsigned size)
Definition: vividas.c:435
MOVFragmentInfo::size
int size
Definition: movenc.h:82
MOVFragmentInfo
Definition: movenc.h:77
MOVTrack::vos_len
int vos_len
Definition: movenc.h:112
MOVMuxContext::min_fragment_duration
int min_fragment_duration
Definition: movenc.h:206
MOVMuxContext::encryption_scheme_str
char * encryption_scheme_str
Definition: movenc.h:230
index
fg index
Definition: ffmpeg_filter.c:167
MOVFragmentInfo::duration
int64_t duration
Definition: movenc.h:80
PacketList
Definition: packet_internal.h:31
MOVTrack::flags
uint32_t flags
Definition: movenc.h:100
MOVTrack::tag
int tag
stsd fourcc
Definition: movenc.h:107
MOVTrack::pal_done
int pal_done
Definition: movenc.h:164
MOVIentry::dts
int64_t dts
Definition: movenc.h:49
MOVMuxContext::encryption_key
uint8_t * encryption_key
Definition: movenc.h:232
MOVIentry::flags
uint32_t flags
Definition: movenc.h:59
MOVTrack::track_id
int track_id
Definition: movenc.h:106
HintSampleQueue::size
int size
Definition: movenc.h:72
MOVTrack::vos_data
uint8_t * vos_data
Definition: movenc.h:113
HintSample::data
uint8_t * data
Definition: movenc.h:64
ff_mov_init_hinting
int ff_mov_init_hinting(AVFormatContext *s, int index, int src_index)
Definition: movenchint.c:29
MOVTrack::track_duration
int64_t track_duration
Definition: movenc.h:90
MOVTrack::dts_shift
int64_t dts_shift
Definition: movenc.h:124
MOVIentry::entries
unsigned int entries
Definition: movenc.h:54
MOVMuxContext::write_prft
MOVPrftBox write_prft
Definition: movenc.h:242
MOVTrack::first_frag_written
int first_frag_written
Definition: movenc.h:153
MOVMuxContext::mdat_size
uint64_t mdat_size
Definition: movenc.h:193
MOVMuxContext::write_tmcd
int write_tmcd
Definition: movenc.h:241
MOVTrack::frag_info
MOVFragmentInfo * frag_info
Definition: movenc.h:146
MOV_PRFT_SRC_PTS
@ MOV_PRFT_SRC_PTS
Definition: movenc.h:181
MOVTrack
Definition: movenc.h:85
MOVFragmentInfo::offset
int64_t offset
Definition: movenc.h:78
MOV_ENC_NONE
@ MOV_ENC_NONE
Definition: movenc.h:174
HintSample::own_data
int own_data
Definition: movenc.h:68
MOVMuxContext::use_editlist
int use_editlist
Definition: movenc.h:224
MOVTrack::frag_discont
int frag_discont
Definition: movenc.h:142
MOVTrack::first_packet_entry
int first_packet_entry
Definition: movenc.h:151
MOVTrack::cur_rtp_ts_unwrapped
int64_t cur_rtp_ts_unwrapped
Definition: movenc.h:130
MOVIentry::size
unsigned int size
Definition: movenc.h:51
MOVTrack::mdat_buf
AVIOContext * mdat_buf
Definition: movenc.h:140
MOVTrack::cluster
MOVIentry * cluster
Definition: movenc.h:114
HintSample::offset
int offset
Definition: movenc.h:67
MOVMuxContext::iods_video_profile
int iods_video_profile
Definition: movenc.h:200
MOV_PRFT_NB
@ MOV_PRFT_NB
Definition: movenc.h:182
MOVIentry::prft
AVProducerReferenceTime prft
Definition: movenc.h:60
MOVTrack::st
AVStream * st
Definition: movenc.h:108
MOVTrack::palette
uint32_t palette[AVPALETTE_COUNT]
Definition: movenc.h:163
pkt
AVPacket * pkt
Definition: movenc.c:59
MOVTrack::squashed_packet_queue
PacketList squashed_packet_queue
Definition: movenc.h:170
movenccenc.h
MOVMuxContext::encryption_kid_len
int encryption_kid_len
Definition: movenc.h:235
MOVMuxContext::pkt
AVPacket * pkt
Definition: movenc.h:222
MOVMuxContext::chapter_track
int chapter_track
qt chapter track number
Definition: movenc.h:191
s
#define s(width, name)
Definition: cbs_vp9.c:257
MOVMuxContext::movie_timescale
int movie_timescale
Definition: movenc.h:244
MOVTrack::sample_queue
HintSampleQueue sample_queue
Definition: movenc.h:137
MOVTrack::tref_tag
uint32_t tref_tag
Definition: movenc.h:118
MOVMuxContext::per_stream_grouping
int per_stream_grouping
Definition: movenc.h:219
MOVMuxContext::nb_meta_tmcd
int nb_meta_tmcd
number of new created tmcd track based on metadata (aka not data copy)
Definition: movenc.h:190
MOVTrack::timecode_flags
uint32_t timecode_flags
Definition: movenc.h:104
MOVIentry::pts
int64_t pts
Definition: movenc.h:50
MOVTrack::has_disposable
int has_disposable
Definition: movenc.h:96
HintSampleQueue
Definition: movenc.h:71
MOVMuxContext::encryption_kid
uint8_t * encryption_kid
Definition: movenc.h:234
MOVMuxContext::frag_interleave
int frag_interleave
Definition: movenc.h:227
MOVTrack::max_packet_size
uint32_t max_packet_size
Definition: movenc.h:131
MOVTrack::sample_size
long sample_size
Definition: movenc.h:93
HintSample::size
int size
Definition: movenc.h:65
MOVIentry::pos
uint64_t pos
Definition: movenc.h:48
MOV_PRFT_NONE
@ MOV_PRFT_NONE
Definition: movenc.h:179
MOVMuxContext::time
int64_t time
Definition: movenc.h:188
MOVTrack::packet_entry
int packet_entry
Definition: movenc.h:155
MOVMuxContext::use_stream_ids_as_track_ids
int use_stream_ids_as_track_ids
Definition: movenc.h:239
MOVTrack::sample_count
long sample_count
Definition: movenc.h:92
MOVTrack::start_dts
int64_t start_dts
Definition: movenc.h:120
AVFormatContext
Format I/O context.
Definition: avformat.h:1200
MOVMuxContext::iods_skip
int iods_skip
Definition: movenc.h:199
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
MOVTrack::src_track
int src_track
the track that this hint (or tmcd) track describes
Definition: movenc.h:127
MOVMuxContext::encryption_key_len
int encryption_key_len
Definition: movenc.h:233
MOVMuxContext::max_fragment_size
int max_fragment_size
Definition: movenc.h:207
MOVTrack::prev_rtp_ts
uint32_t prev_rtp_ts
Definition: movenc.h:129
MOVTrack::cenc
MOVMuxCencContext cenc
Definition: movenc.h:161
MOVTrack::last_sample_is_subtitle_end
int last_sample_is_subtitle_end
Definition: movenc.h:91
MOVMuxContext::av_class
const AVClass * av_class
Definition: movenc.h:186
MOVMuxContext
Definition: movenc.h:185
MOVMuxContext::missing_duration_warned
int missing_duration_warned
Definition: movenc.h:228
MOVTrack::data_offset
int64_t data_offset
Definition: movenc.h:141
ff_mov_close_hinting
void ff_mov_close_hinting(MOVTrack *track)
Definition: movenchint.c:459
MOVIentry::cts
int cts
Definition: movenc.h:55
HintSample::sample_number
int sample_number
Definition: movenc.h:66
AVProducerReferenceTime
This structure supplies correlation between a packet timestamp and a wall clock production time.
Definition: defs.h:153
MOVTrack::packet_seq
int packet_seq
Definition: movenc.h:154
MOVMuxContext::empty_hdlr_name
int empty_hdlr_name
Definition: movenc.h:243
AVPALETTE_COUNT
#define AVPALETTE_COUNT
Definition: pixfmt.h:33
ff_mov_write_packet
int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition: movenc.c:5656
AVIOContext
Bytestream IO Context.
Definition: avio.h:161
MOVTrack::cover_image
AVPacket * cover_image
Definition: movenc.h:138
MOVFragmentInfo::time
int64_t time
Definition: movenc.h:79
MOVTrack::language
int language
Definition: movenc.h:105
MOVMuxContext::first_trun
int first_trun
Definition: movenc.h:210
MOVMuxContext::ism_lookahead
int ism_lookahead
Definition: movenc.h:208
MOVTrack::default_sample_flags
uint32_t default_sample_flags
Definition: movenc.h:134
sample
#define sample
Definition: flacdsp_template.c:44
MOVMuxContext::need_rewrite_extradata
int need_rewrite_extradata
Definition: movenc.h:237
MOVMuxContext::reserved_header_pos
int64_t reserved_header_pos
Definition: movenc.h:215
MOVTrack::audio_vbr
int audio_vbr
Definition: movenc.h:116
MOVTrack::end_reliable
int end_reliable
Definition: movenc.h:123
MOVTrack::slices
int slices
Definition: movenc.h:156
MOVTrack::first_packet_seen
int first_packet_seen
Definition: movenc.h:152
HintSampleQueue::len
int len
Definition: movenc.h:73
MOVTrack::start_cts
int64_t start_cts
Definition: movenc.h:121
MOVIentry::chunkNum
unsigned int chunkNum
Chunk number if the current entry is a chunk start otherwise 0.
Definition: movenc.h:53
MOVTrack::time
uint64_t time
Definition: movenc.h:89
ff_mov_add_hinted_packet
int ff_mov_add_hinted_packet(AVFormatContext *s, AVPacket *pkt, int track_index, int sample, uint8_t *sample_data, int sample_size)
Definition: movenchint.c:400
MOVTrack::hint_track
int hint_track
the track that hints this track, -1 if no hint track is set
Definition: movenc.h:126
MOVTrack::has_keyframes
int has_keyframes
Definition: movenc.h:95
MOVTrack::entry
int entry
Definition: movenc.h:87
MOVMuxContext::nb_streams
int nb_streams
Definition: movenc.h:189
MOVMuxContext::fragments
int fragments
Definition: movenc.h:204
MOV_PRFT_SRC_WALLCLOCK
@ MOV_PRFT_SRC_WALLCLOCK
Definition: movenc.h:180
MOVTrack::first_packet_seq
int first_packet_seq
Definition: movenc.h:150
MOVPrftBox
MOVPrftBox
Definition: movenc.h:178
MOVMuxContext::video_track_timescale
int video_track_timescale
Definition: movenc.h:212
MOVMuxContext::max_fragment_duration
int max_fragment_duration
Definition: movenc.h:205
MOVTrack::rtp_ctx
AVFormatContext * rtp_ctx
the format context for the hinting rtp muxer
Definition: movenc.h:128
MOVEncryptionScheme
MOVEncryptionScheme
Definition: movenc.h:173
MOVTrack::vc1_info
struct MOVTrack::@269 vc1_info
AVStream
Stream structure.
Definition: avformat.h:935
MOVMuxContext::track_ids_ok
int track_ids_ok
Definition: movenc.h:240
MOVTrack::entries_flushed
int entries_flushed
Definition: movenc.h:143
avformat.h
MOVTrack::par
AVCodecParameters * par
Definition: movenc.h:109
MOVMuxContext::flags
int flags
Definition: movenc.h:196
MOVMuxContext::reserved_moov_size
int reserved_moov_size
0 for disabled, -1 for automatic, size otherwise
Definition: movenc.h:214
HintSampleQueue::samples
HintSample * samples
Definition: movenc.h:74
MOVTrack::is_unaligned_qt_rgb
int is_unaligned_qt_rgb
Definition: movenc.h:166
MOVMuxContext::rtp_flags
int rtp_flags
Definition: movenc.h:197
MOVMuxContext::tracks
MOVTrack * tracks
Definition: movenc.h:194
MOVTrack::multichannel_as_mono
int multichannel_as_mono
Definition: movenc.h:110
MOVTrack::timescale
unsigned timescale
Definition: movenc.h:88
packet_internal.h
MOVMuxCencContext
Definition: movenccenc.h:33
HintSample
Definition: movenc.h:63
MOVMuxContext::major_brand
char * major_brand
Definition: movenc.h:217
MOVTrack::cluster_capacity
unsigned cluster_capacity
Definition: movenc.h:115
MOV_ENC_CENC_AES_CTR
@ MOV_ENC_CENC_AES_CTR
Definition: movenc.h:175
AVPacket
This structure stores compressed data.
Definition: packet.h:350
MOVTrack::eac3_priv
void * eac3_priv
Definition: movenc.h:159
MOVMuxContext::mdat_buf
AVIOContext * mdat_buf
Definition: movenc.h:209
MOVTrack::default_duration
int64_t default_duration
Definition: movenc.h:133
MOVTrack::frag_info_capacity
unsigned frag_info_capacity
Definition: movenc.h:147
MOVTrack::tref_id
int tref_id
trackID of the referenced track
Definition: movenc.h:119
MOVMuxContext::moov_written
int moov_written
Definition: movenc.h:203
MOVTrack::default_size
uint32_t default_size
Definition: movenc.h:135
MOVMuxContext::gamma
float gamma
Definition: movenc.h:225
MOVTrack::nb_frag_info
int nb_frag_info
Definition: movenc.h:145
MOVIentry::samples_in_chunk
unsigned int samples_in_chunk
Definition: movenc.h:52