FFmpeg
Loading...
Searching...
No Matches
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"
29#include "packet_internal.h"
30
31#define MOV_FRAG_INFO_ALLOC_INCREMENT 64
32#define MOV_INDEX_CLUSTER_SIZE 1024
33#define MOV_TIMESCALE 1000
34#define MOV_TIMESCALE_Q (AVRational){1, 1000}
35
36#define RTP_MAX_PACKET_SIZE 1450
37
38#define MODE_MP4 0x01
39#define MODE_MOV 0x02
40#define MODE_3GP 0x04
41#define MODE_PSP 0x08 // example working PSP command line:
42// ffmpeg -i testinput.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00001.MP4
43#define MODE_3G2 0x10
44#define MODE_IPOD 0x20
45#define MODE_ISM 0x40
46#define MODE_F4V 0x80
47#define MODE_AVIF 0x100
48
49typedef struct MOVIentry {
50 uint64_t pos;
53 unsigned int size;
54 unsigned int stsd_index;
55 unsigned int samples_in_chunk;
56 unsigned int chunkNum; ///< Chunk number if the current entry is a chunk start otherwise 0
57 unsigned int entries;
58 int cts;
59#define MOV_SYNC_SAMPLE 0x0001
60#define MOV_PARTIAL_SYNC_SAMPLE 0x0002
61#define MOV_DISPOSABLE_SAMPLE 0x0004
62 uint32_t flags;
64} MOVIentry;
65
66typedef struct HintSample {
67 const uint8_t *data;
68 int size;
70 int offset;
73
79
87
88typedef struct MovTag {
89 uint32_t name;
90 int nb_id;
91 uint32_t *id; ///< trackID of the referenced track
92} MovTag;
93
94typedef struct MOVTrack {
95 int mode;
98 unsigned timescale;
99 uint64_t time;
102
103 /* multiple stsd */
106 uint8_t **extradata;
108
114#define MOV_TRACK_CTTS 0x0001
115#define MOV_TRACK_STPS 0x0002
116#define MOV_TRACK_ENABLED 0x0004
117 uint32_t flags;
118#define MOV_TIMECODE_FLAG_DROPFRAME 0x0001
119#define MOV_TIMECODE_FLAG_24HOURSMAX 0x0002
120#define MOV_TIMECODE_FLAG_ALLOWNEGATIVE 0x0004
124 int tag; ///< stsd fourcc
129
134 int height; ///< active picture (w/o VBI) height for D-10/IMX
143
144 int hint_track; ///< the track that hints this track, -1 if no hint track is set
146 int *src_track; ///< the tracks that this hint (or tmcd) track describes
147 AVFormatContext *rtp_ctx; ///< the format context for the hinting rtp muxer
148 uint32_t prev_rtp_ts;
151
154 uint32_t default_size;
155
158
163
167
168 struct {
177
179
181
184
186
187 unsigned int squash_fragment_samples_to_one; //< flag to note formats where all samples for a fragment are to be squashed
188
190
195
197} MOVTrack;
198
203
210
211typedef struct MOVMuxContext {
213 int mode;
217 int nb_meta_tmcd; ///< number of new created tmcd track based on metadata (aka not data copy)
218 int chapter_track; ///< qt chapter track number
220 uint64_t mdat_size;
222
223 int flags;
225
229
238
240
241 int reserved_moov_size; ///< 0 for disabled, -1 for automatic, size otherwise
243
245
248
250
252 float gamma;
253
256
263
271
272 int64_t avif_extent_pos[2]; // index 0 is YUV and 1 is Alpha.
273 int avif_extent_length[2]; // index 0 is YUV and 1 is Alpha.
277
278#define FF_MOV_FLAG_RTP_HINT (1 << 0)
279#define FF_MOV_FLAG_FRAGMENT (1 << 1)
280#define FF_MOV_FLAG_EMPTY_MOOV (1 << 2)
281#define FF_MOV_FLAG_FRAG_KEYFRAME (1 << 3)
282#define FF_MOV_FLAG_SEPARATE_MOOF (1 << 4)
283#define FF_MOV_FLAG_FRAG_CUSTOM (1 << 5)
284#define FF_MOV_FLAG_ISML (1 << 6)
285#define FF_MOV_FLAG_FASTSTART (1 << 7)
286#define FF_MOV_FLAG_OMIT_TFHD_OFFSET (1 << 8)
287#define FF_MOV_FLAG_DISABLE_CHPL (1 << 9)
288#define FF_MOV_FLAG_DEFAULT_BASE_MOOF (1 << 10)
289#define FF_MOV_FLAG_DASH (1 << 11)
290#define FF_MOV_FLAG_FRAG_DISCONT (1 << 12)
291#define FF_MOV_FLAG_DELAY_MOOV (1 << 13)
292#define FF_MOV_FLAG_GLOBAL_SIDX (1 << 14)
293#define FF_MOV_FLAG_WRITE_COLR (1 << 15)
294#define FF_MOV_FLAG_WRITE_GAMA (1 << 16)
295#define FF_MOV_FLAG_USE_MDTA (1 << 17)
296#define FF_MOV_FLAG_SKIP_TRAILER (1 << 18)
297#define FF_MOV_FLAG_NEGATIVE_CTS_OFFSETS (1 << 19)
298#define FF_MOV_FLAG_FRAG_EVERY_FRAME (1 << 20)
299#define FF_MOV_FLAG_SKIP_SIDX (1 << 21)
300#define FF_MOV_FLAG_CMAF (1 << 22)
301#define FF_MOV_FLAG_PREFER_ICC (1 << 23)
302#define FF_MOV_FLAG_HYBRID_FRAGMENTED (1 << 24)
303
305
306int ff_mov_init_hinting(AVFormatContext *s, int index, int src_index);
308 int track_index, int sample,
309 uint8_t *sample_data, int sample_size);
310void ff_mov_close_hinting(MOVTrack *track);
311
312#endif /* AVFORMAT_MOVENC_H */
Main libavformat public API header.
#define s(width, name)
Definition cbs_vp9.c:198
long long int64_t
Definition coverity.c:34
static AVPacket * pkt
#define sample
int index
Definition gxfenc.c:90
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:405
int ff_mov_init_hinting(AVFormatContext *s, int index, int src_index)
Definition movenchint.c:30
MOVEncryptionScheme
Definition movenc.h:199
@ MOV_ENC_CENC_AES_CTR
Definition movenc.h:201
@ MOV_ENC_NONE
Definition movenc.h:200
void ff_mov_close_hinting(MOVTrack *track)
Definition movenchint.c:464
int ff_mov_write_packet(AVFormatContext *s, AVPacket *pkt)
Definition movenc.c:6951
MOVPrftBox
Definition movenc.h:204
@ MOV_PRFT_SRC_WALLCLOCK
Definition movenc.h:206
@ MOV_PRFT_NONE
Definition movenc.h:205
@ MOV_PRFT_SRC_PTS
Definition movenc.h:207
@ MOV_PRFT_NB
Definition movenc.h:208
#define AVPALETTE_COUNT
Definition pixfmt.h:33
Describe the class of an AVClass context structure.
Definition log.h:76
This struct describes the properties of an encoded stream.
Definition codec_par.h:49
Format I/O context.
Definition avformat.h:1333
Bytestream IO Context.
Definition avio.h:160
This structure stores compressed data.
Definition packet.h:580
This structure supplies correlation between a packet timestamp and a wall clock production time.
Definition defs.h:331
Stream structure.
Definition avformat.h:766
HintSample * samples
Definition movenc.h:77
int sample_number
Definition movenc.h:69
int own_data
Definition movenc.h:71
int size
Definition movenc.h:68
const uint8_t * data
Definition movenc.h:67
int offset
Definition movenc.h:70
int64_t offset
Definition movenc.h:81
int64_t tfrf_offset
Definition movenc.h:84
int64_t time
Definition movenc.h:82
int64_t duration
Definition movenc.h:83
uint32_t flags
Definition movenc.h:62
unsigned int chunkNum
Chunk number if the current entry is a chunk start otherwise 0.
Definition movenc.h:56
int64_t pts
Definition movenc.h:52
int cts
Definition movenc.h:58
unsigned int samples_in_chunk
Definition movenc.h:55
unsigned int stsd_index
Definition movenc.h:54
unsigned int entries
Definition movenc.h:57
AVProducerReferenceTime prft
Definition movenc.h:63
int64_t dts
Definition movenc.h:51
uint64_t pos
Definition movenc.h:50
unsigned int size
Definition movenc.h:53
int reserved_moov_size
0 for disabled, -1 for automatic, size otherwise
Definition movenc.h:241
char * major_brand
Definition movenc.h:244
int64_t mdat_pos
Definition movenc.h:219
AVFormatContext * fc
Definition movenc.h:247
AVPacket * pkt
Definition movenc.h:249
int nb_tracks
Definition movenc.h:216
int iods_skip
Definition movenc.h:226
int chapter_track
qt chapter track number
Definition movenc.h:218
uint64_t mdat_size
Definition movenc.h:220
char * encryption_scheme_str
Definition movenc.h:257
int movie_timescale
Definition movenc.h:270
float gamma
Definition movenc.h:252
int avif_loop_count
Definition movenc.h:275
uint8_t * encryption_key
Definition movenc.h:259
int nb_streams
Definition movenc.h:215
int fragments
Definition movenc.h:231
int encryption_key_len
Definition movenc.h:260
int write_btrt
Definition movenc.h:266
int avif_extent_length[2]
Definition movenc.h:273
int empty_hdlr_name
Definition movenc.h:269
int missing_duration_warned
Definition movenc.h:255
AVIOContext * mdat_buf
Definition movenc.h:236
uint8_t * encryption_kid
Definition movenc.h:261
int min_fragment_duration
Definition movenc.h:233
MOVPrftBox write_prft
Definition movenc.h:268
int64_t reserved_header_pos
Definition movenc.h:242
int per_stream_grouping
Definition movenc.h:246
int iods_video_profile
Definition movenc.h:227
MOVTrack * tracks
Definition movenc.h:221
int frag_interleave
Definition movenc.h:254
int max_fragment_duration
Definition movenc.h:232
int track_ids_ok
Definition movenc.h:265
int video_track_timescale
Definition movenc.h:239
int max_fragment_size
Definition movenc.h:234
int use_editlist
Definition movenc.h:251
int nb_meta_tmcd
number of new created tmcd track based on metadata (aka not data copy)
Definition movenc.h:217
int moov_written
Definition movenc.h:230
const AVClass * av_class
Definition movenc.h:212
int use_stream_ids_as_track_ids
Definition movenc.h:264
MOVEncryptionScheme encryption_scheme
Definition movenc.h:258
int first_trun
Definition movenc.h:237
int64_t avif_extent_pos[2]
Definition movenc.h:272
int iods_audio_profile
Definition movenc.h:228
int is_animated_avif
Definition movenc.h:274
int write_tmcd
Definition movenc.h:267
int64_t time
Definition movenc.h:214
int rtp_flags
Definition movenc.h:224
int encryption_kid_len
Definition movenc.h:262
int ism_lookahead
Definition movenc.h:235
int track_id
Definition movenc.h:123
int mono_as_fc
Definition movenc.h:127
int entry
Definition movenc.h:97
uint32_t prev_rtp_ts
Definition movenc.h:148
int64_t start_cts
Definition movenc.h:138
AVPacket * cover_image
Definition movenc.h:157
int * src_track
the tracks that this hint (or tmcd) track describes
Definition movenc.h:146
uint32_t default_size
Definition movenc.h:154
struct MOVTrack::@041066134315003153207320140045232207171303033040 vc1_info
int nb_src_track
Definition movenc.h:145
int first_iamf_idx
Definition movenc.h:192
int first_packet_seen
Definition movenc.h:171
int64_t dts_shift
Definition movenc.h:142
int last_iamf_idx
Definition movenc.h:193
int audio_vbr
Definition movenc.h:133
int tag
stsd fourcc
Definition movenc.h:124
uint32_t flags
Definition movenc.h:117
uint32_t timecode_flags
Definition movenc.h:121
int64_t cur_rtp_ts_unwrapped
Definition movenc.h:149
int * extradata_size
Definition movenc.h:107
int64_t data_offset
Definition movenc.h:160
int nb_tref_tags
Definition movenc.h:135
int language
Definition movenc.h:122
PacketList squashed_packet_queue
Definition movenc.h:189
AVCodecParameters * par
Definition movenc.h:126
unsigned frag_info_capacity
Definition movenc.h:166
int nb_frag_info
Definition movenc.h:164
int multichannel_as_mono
Definition movenc.h:128
AVIOContext * mdat_buf
Definition movenc.h:159
uint64_t time
Definition movenc.h:99
AVIOContext * iamf_buf
Definition movenc.h:194
int entry_version
Definition movenc.h:96
int packet_entry
Definition movenc.h:174
int is_unaligned_qt_rgb
Definition movenc.h:185
long sample_count
Definition movenc.h:109
uint32_t palette[AVPALETTE_COUNT]
Definition movenc.h:182
int has_disposable
Definition movenc.h:113
struct IAMFContext * iamf
Definition movenc.h:191
void * eac3_priv
Definition movenc.h:178
int64_t elst_end_pts
Definition movenc.h:140
MOVIentry * cluster_written
Definition movenc.h:131
int64_t end_pts
Definition movenc.h:139
uint8_t ** extradata
Definition movenc.h:106
unsigned int squash_fragment_samples_to_one
Definition movenc.h:187
int last_sample_is_subtitle_end
Definition movenc.h:101
MOVFragmentInfo * frag_info
Definition movenc.h:165
int entries_flushed
Definition movenc.h:162
int frag_discont
Definition movenc.h:161
uint32_t default_sample_flags
Definition movenc.h:153
int pal_done
Definition movenc.h:183
MovTag * tref_tags
Definition movenc.h:136
MOVIentry * cluster
Definition movenc.h:130
uint32_t max_packet_size
Definition movenc.h:150
int hint_track
the track that hints this track, -1 if no hint track is set
Definition movenc.h:144
struct APVDecoderConfigurationRecord * apv
Definition movenc.h:196
int64_t default_duration
Definition movenc.h:152
AVStream * st
Definition movenc.h:125
MOVMuxCencContext cenc
Definition movenc.h:180
int has_keyframes
Definition movenc.h:112
long sample_size
Definition movenc.h:110
int first_packet_entry
Definition movenc.h:170
int slices
Definition movenc.h:175
int entry_written
Definition movenc.h:97
int stsd_count
Definition movenc.h:104
int64_t start_dts
Definition movenc.h:137
int first_frag_written
Definition movenc.h:172
int mode
Definition movenc.h:95
unsigned timescale
Definition movenc.h:98
int packet_seq
Definition movenc.h:173
int first_packet_seq
Definition movenc.h:169
int64_t track_duration
Definition movenc.h:100
long chunkCount
Definition movenc.h:111
AVFormatContext * rtp_ctx
the format context for the hinting rtp muxer
Definition movenc.h:147
unsigned cluster_capacity
Definition movenc.h:132
int last_stsd_index
Definition movenc.h:105
int height
active picture (w/o VBI) height for D-10/IMX
Definition movenc.h:134
HintSampleQueue sample_queue
Definition movenc.h:156
int end_reliable
Definition movenc.h:141
uint32_t * id
trackID of the referenced track
Definition movenc.h:91
int nb_id
Definition movenc.h:90
uint32_t name
Definition movenc.h:89
static int track_index(VividasDemuxContext *viv, AVFormatContext *s, const uint8_t *buf, unsigned size)
Definition vividas.c:438