FFmpeg  2.8.17
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
isom.h
Go to the documentation of this file.
1 /*
2  * ISO Media common code
3  * copyright (c) 2001 Fabrice Bellard
4  * copyright (c) 2002 Francois Revol <revol@free.fr>
5  * copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@free.fr>
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_ISOM_H
25 #define AVFORMAT_ISOM_H
26 
27 #include "avio.h"
28 #include "internal.h"
29 #include "dv.h"
30 
31 /* isom.c */
32 extern const AVCodecTag ff_mp4_obj_type[];
33 extern const AVCodecTag ff_codec_movvideo_tags[];
34 extern const AVCodecTag ff_codec_movaudio_tags[];
36 
37 int ff_mov_iso639_to_lang(const char lang[4], int mp4);
38 int ff_mov_lang_to_iso639(unsigned code, char to[4]);
39 
40 /* the QuickTime file format is quite convoluted...
41  * it has lots of index tables, each indexing something in another one...
42  * Here we just use what is needed to read the chunks
43  */
44 
45 typedef struct MOVStts {
46  int count;
47  int duration;
48 } MOVStts;
49 
50 typedef struct MOVStsc {
51  int first;
52  int count;
53  int id;
54 } MOVStsc;
55 
56 typedef struct MOVElst {
57  int64_t duration;
58  int64_t time;
59  float rate;
60 } MOVElst;
61 
62 typedef struct MOVDref {
63  uint32_t type;
64  char *path;
65  char *dir;
66  char volume[28];
67  char filename[64];
68  int16_t nlvl_to, nlvl_from;
69 } MOVDref;
70 
71 typedef struct MOVAtom {
72  uint32_t type;
73  int64_t size; /* total size (excluding the size and type fields) */
74 } MOVAtom;
75 
76 struct MOVParseTableEntry;
77 
78 typedef struct MOVFragment {
80  unsigned track_id;
81  uint64_t base_data_offset;
82  uint64_t moof_offset;
83  uint64_t implicit_offset;
84  unsigned stsd_id;
85  unsigned duration;
86  unsigned size;
87  unsigned flags;
88  int64_t time;
89 } MOVFragment;
90 
91 typedef struct MOVTrackExt {
92  unsigned track_id;
93  unsigned stsd_id;
94  unsigned duration;
95  unsigned size;
96  unsigned flags;
97 } MOVTrackExt;
98 
99 typedef struct MOVSbgp {
100  unsigned int count;
101  unsigned int index;
102 } MOVSbgp;
103 
104 typedef struct MOVFragmentIndexItem {
105  int64_t moof_offset;
106  int64_t time;
109 
110 typedef struct MOVFragmentIndex {
111  unsigned track_id;
112  unsigned item_count;
113  unsigned current_item;
116 
117 typedef struct MOVStreamContext {
120  int ffindex; ///< AVStream index
122  unsigned int chunk_count;
123  int64_t *chunk_offsets;
124  unsigned int stts_count;
126  unsigned int ctts_count;
128  unsigned int stsc_count;
130  unsigned int stps_count;
131  unsigned *stps_data; ///< partial sync sample for mpeg-2 open gop
133  unsigned int elst_count;
136  unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom
137  unsigned int stsz_sample_size; ///< always contains sample size from stsz atom
138  unsigned int sample_count;
141  unsigned int keyframe_count;
142  int *keyframes;
144  int64_t time_offset; ///< time offset of the edit list entries
146  unsigned int bytes_per_frame;
147  unsigned int samples_per_frame;
149  int pseudo_stream_id; ///< -1 means demux all ids
150  int16_t audio_cid; ///< stsd audio compression id
151  unsigned drefs_count;
153  int dref_id;
155  int wrong_dts; ///< dts are wrong due to huge ctts offset (iMovie files)
156  int width; ///< tkhd width
157  int height; ///< tkhd height
158  int dts_shift; ///< dts shift when ctts is negative
159  uint32_t palette[256];
161  int64_t data_size;
162  uint32_t tmcd_flags; ///< tmcd track flags
163  int64_t track_end; ///< used for dts generation in fragmented movie files
164  int start_pad; ///< amount of samples to skip due to enc-dec delay
165  unsigned int rap_group_count;
167 
170 
173 
174 typedef struct MOVContext {
175  const AVClass *class; ///< class for private options
178  int64_t duration; ///< duration of the longest track
179  int found_moov; ///< 'moov' atom has been found
180  int found_mdat; ///< 'mdat' atom has been found
183  int isom; ///< 1 if file is ISO Media (mp4/3gp)
184  MOVFragment fragment; ///< current fragment in moof atom
186  unsigned trex_count;
187  int itunes_metadata; ///< metadata are itunes style
193  int64_t next_root_atom; ///< offset of the next root atom
196  int *bitrates; ///< bitrates read before streams creation
205  unsigned int aax_mode; ///< 'aax' file has been detected
214 } MOVContext;
215 
219 void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
220 
221 #define MP4ODescrTag 0x01
222 #define MP4IODescrTag 0x02
223 #define MP4ESDescrTag 0x03
224 #define MP4DecConfigDescrTag 0x04
225 #define MP4DecSpecificDescrTag 0x05
226 #define MP4SLDescrTag 0x06
227 
228 #define MOV_TFHD_BASE_DATA_OFFSET 0x01
229 #define MOV_TFHD_STSD_ID 0x02
230 #define MOV_TFHD_DEFAULT_DURATION 0x08
231 #define MOV_TFHD_DEFAULT_SIZE 0x10
232 #define MOV_TFHD_DEFAULT_FLAGS 0x20
233 #define MOV_TFHD_DURATION_IS_EMPTY 0x010000
234 #define MOV_TFHD_DEFAULT_BASE_IS_MOOF 0x020000
235 
236 #define MOV_TRUN_DATA_OFFSET 0x01
237 #define MOV_TRUN_FIRST_SAMPLE_FLAGS 0x04
238 #define MOV_TRUN_SAMPLE_DURATION 0x100
239 #define MOV_TRUN_SAMPLE_SIZE 0x200
240 #define MOV_TRUN_SAMPLE_FLAGS 0x400
241 #define MOV_TRUN_SAMPLE_CTS 0x800
242 
243 #define MOV_FRAG_SAMPLE_FLAG_DEGRADATION_PRIORITY_MASK 0x0000ffff
244 #define MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC 0x00010000
245 #define MOV_FRAG_SAMPLE_FLAG_PADDING_MASK 0x000e0000
246 #define MOV_FRAG_SAMPLE_FLAG_REDUNDANCY_MASK 0x00300000
247 #define MOV_FRAG_SAMPLE_FLAG_DEPENDED_MASK 0x00c00000
248 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_MASK 0x03000000
249 
250 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO 0x02000000
251 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES 0x01000000
252 
253 #define MOV_TKHD_FLAG_ENABLED 0x0001
254 #define MOV_TKHD_FLAG_IN_MOVIE 0x0002
255 #define MOV_TKHD_FLAG_IN_PREVIEW 0x0004
256 #define MOV_TKHD_FLAG_IN_POSTER 0x0008
257 
258 #define TAG_IS_AVCI(tag) \
259  ((tag) == MKTAG('a', 'i', '5', 'p') || \
260  (tag) == MKTAG('a', 'i', '5', 'q') || \
261  (tag) == MKTAG('a', 'i', '5', '2') || \
262  (tag) == MKTAG('a', 'i', '5', '3') || \
263  (tag) == MKTAG('a', 'i', '5', '5') || \
264  (tag) == MKTAG('a', 'i', '5', '6') || \
265  (tag) == MKTAG('a', 'i', '1', 'p') || \
266  (tag) == MKTAG('a', 'i', '1', 'q') || \
267  (tag) == MKTAG('a', 'i', '1', '2') || \
268  (tag) == MKTAG('a', 'i', '1', '3') || \
269  (tag) == MKTAG('a', 'i', '1', '5') || \
270  (tag) == MKTAG('a', 'i', '1', '6') || \
271  (tag) == MKTAG('a', 'i', 'v', 'x') || \
272  (tag) == MKTAG('A', 'V', 'i', 'n'))
273 
274 
277 
278 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
279 void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
280 
281 #define FF_MOV_FLAG_MFRA_AUTO -1
282 #define FF_MOV_FLAG_MFRA_DTS 1
283 #define FF_MOV_FLAG_MFRA_PTS 2
284 
285 #endif /* AVFORMAT_ISOM_H */
int chapter_track
Definition: isom.h:189
int itunes_metadata
metadata are itunes style
Definition: isom.h:187
int * bitrates
bitrates read before streams creation
Definition: isom.h:196
int64_t moof_offset
Definition: isom.h:105
Bytestream IO Context.
Definition: avio.h:111
Buffered I/O operations.
uint32_t tmcd_flags
tmcd track flags
Definition: isom.h:162
const AVCodecTag ff_mp4_obj_type[]
Definition: isom.c:34
unsigned int rap_group_count
Definition: isom.h:165
int found_tfhd
Definition: isom.h:79
unsigned int elst_count
Definition: isom.h:133
MOVTrackExt * trex_data
Definition: isom.h:185
int export_all
Definition: isom.h:194
unsigned track_id
Definition: isom.h:80
unsigned int samples_per_frame
Definition: isom.h:147
int dv_audio_container
Definition: isom.h:148
Definition: isom.h:45
float rate
Definition: isom.h:59
uint64_t base_data_offset
Definition: isom.h:81
int64_t duration
Definition: isom.h:57
unsigned int stsc_count
Definition: isom.h:128
int has_palette
Definition: isom.h:160
unsigned item_count
Definition: isom.h:112
void * activation_bytes
Definition: isom.h:208
int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb)
Definition: isom.c:451
int16_t audio_cid
stsd audio compression id
Definition: isom.h:150
int height
tkhd height
Definition: isom.h:157
uint32_t type
Definition: isom.h:72
MOVElst * elst_data
Definition: isom.h:132
MOVStsc * stsc_data
Definition: isom.h:129
unsigned fragment_index_count
Definition: isom.h:202
int ctts_index
Definition: isom.h:134
unsigned stsd_id
Definition: isom.h:93
int found_moov
'moov' atom has been found
Definition: isom.h:179
unsigned flags
Definition: isom.h:96
int isom
1 if file is ISO Media (mp4/3gp)
Definition: isom.h:183
int found_mdat
'mdat' atom has been found
Definition: isom.h:180
int width
tkhd width
Definition: isom.h:156
unsigned drefs_count
Definition: isom.h:151
Format I/O context.
Definition: avformat.h:1285
const AVCodecTag ff_codec_movvideo_tags[]
Definition: isom.c:71
char filename[64]
Definition: isom.h:67
MOVDref * drefs
Definition: isom.h:152
int fragment_index_complete
Definition: isom.h:203
const AVCodecTag ff_codec_movaudio_tags[]
Definition: isom.c:268
uint8_t
int first
Definition: isom.h:51
int ff_mp4_read_descr_len(AVIOContext *pb)
Definition: isom.c:404
unsigned int sample_count
Definition: isom.h:138
int count
Definition: isom.h:52
int dts_shift
dts shift when ctts is negative
Definition: isom.h:158
unsigned int count
Definition: isom.h:100
int16_t nlvl_to
Definition: isom.h:68
char volume[28]
Definition: isom.h:66
int activation_bytes_size
Definition: isom.h:209
MOVFragmentIndex ** fragment_index_data
Definition: isom.h:201
uint32_t tag
Definition: movenc.c:1339
int nb_frames_for_fps
Definition: isom.h:168
const AVCodecTag ff_codec_movsubtitle_tags[]
Definition: isom.c:322
int current_sample
Definition: isom.h:145
unsigned track_id
Definition: isom.h:92
const char * to
Definition: webvttdec.c:34
int64_t time_offset
time offset of the edit list entries
Definition: isom.h:144
unsigned int keyframe_count
Definition: isom.h:141
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:102
unsigned int ctts_count
Definition: isom.h:126
int atom_depth
Definition: isom.h:204
int * keyframes
Definition: isom.h:142
AVFormatContext * fc
Definition: isom.h:176
int handbrake_version
Definition: isom.h:188
int ctts_sample
Definition: isom.h:135
int keyframe_absent
Definition: isom.h:140
int16_t nlvl_from
Definition: isom.h:68
void * audible_fixed_key
Definition: isom.h:210
int64_t time
Definition: isom.h:106
uint8_t file_key[20]
Definition: isom.h:206
struct AVAES * aes_decrypt
Definition: isom.h:212
static const uint16_t fc[]
Definition: dcaenc.h:41
char * dir
Definition: isom.h:65
int id
Definition: isom.h:53
int32_t
int audible_fixed_key_size
Definition: isom.h:211
char * path
Definition: isom.h:64
int time_scale
Definition: isom.h:143
int64_t time
Definition: isom.h:88
MOVFragmentIndexItem * items
Definition: isom.h:114
Definition: isom.h:99
uint64_t moof_offset
Definition: isom.h:82
MOVStts * ctts_data
Definition: isom.h:127
unsigned size
Definition: isom.h:95
void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout)
Definition: isom.c:577
int ignore_editlist
Definition: isom.h:191
int64_t * chunk_offsets
Definition: isom.h:123
unsigned int index
Definition: isom.h:101
int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb)
Definition: mov.c:660
unsigned current_item
Definition: isom.h:113
int64_t duration
duration of the longest track
Definition: isom.h:178
Stream structure.
Definition: avformat.h:854
unsigned duration
Definition: isom.h:94
DVDemuxContext * dv_demux
Definition: isom.h:181
int timecode_track
Definition: isom.h:154
int * sample_sizes
Definition: isom.h:139
unsigned duration
Definition: isom.h:85
MOVSbgp * rap_group
Definition: isom.h:166
int duration
Definition: isom.h:47
unsigned int stsz_sample_size
always contains sample size from stsz atom
Definition: isom.h:137
unsigned trex_count
Definition: isom.h:186
int enable_drefs
Definition: isom.h:213
int64_t data_size
Definition: isom.h:161
int has_looked_for_mfra
Definition: isom.h:200
uint32_t type
Definition: isom.h:63
MOVStts * stts_data
Definition: isom.h:125
Describe the class of an AVClass context structure.
Definition: log.h:67
int count
Definition: isom.h:46
unsigned int aax_mode
'aax' file has been detected
Definition: isom.h:205
MOVFragment fragment
current fragment in moof atom
Definition: isom.h:184
int64_t track_end
used for dts generation in fragmented movie files
Definition: isom.h:163
Definition: isom.h:71
int use_mfra_for
Definition: isom.h:199
int64_t time
Definition: isom.h:58
int pb_is_copied
Definition: isom.h:119
int ff_mov_lang_to_iso639(unsigned code, char to[4])
Definition: isom.c:382
int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
Definition: mov.c:2111
int next_chunk
Definition: isom.h:121
AVFormatContext * dv_fctx
Definition: isom.h:182
int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag)
Definition: isom.c:417
uint64_t implicit_offset
Definition: isom.h:83
static int flags
Definition: cpu.c:47
unsigned * stps_data
partial sync sample for mpeg-2 open gop
Definition: isom.h:131
int ff_mov_iso639_to_lang(const char lang[4], int mp4)
Definition: isom.c:355
int start_pad
amount of samples to skip due to enc-dec delay
Definition: isom.h:164
int32_t * display_matrix
Definition: isom.h:171
AVIOContext * pb
Definition: isom.h:118
unsigned int bytes_per_frame
Definition: isom.h:146
unsigned flags
Definition: isom.h:87
int bitrates_count
Definition: isom.h:197
int wrong_dts
dts are wrong due to huge ctts offset (iMovie files)
Definition: isom.h:155
int64_t size
Definition: isom.h:73
int export_xmp
Definition: isom.h:195
int seek_individually
Definition: isom.h:192
static double c[64]
unsigned int stps_count
Definition: isom.h:130
unsigned int chunk_count
Definition: isom.h:122
unsigned bps
Definition: movenc.c:1340
uint32_t palette[256]
Definition: isom.h:159
unsigned stsd_id
Definition: isom.h:84
unsigned int stts_count
Definition: isom.h:124
unsigned int sample_size
may contain value calculated from stsd or value from stsz atom
Definition: isom.h:136
uint8_t file_iv[20]
Definition: isom.h:207
enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
Compute codec id for 'lpcm' tag.
Definition: mov.c:1624
int64_t next_root_atom
offset of the next root atom
Definition: isom.h:193
int time_scale
Definition: isom.h:177
void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id)
Definition: isom.c:426
Definition: isom.h:56
int pseudo_stream_id
-1 means demux all ids
Definition: isom.h:149
int ffindex
AVStream index.
Definition: isom.h:120
int use_absolute_path
Definition: isom.h:190
unsigned size
Definition: isom.h:86
int64_t duration_for_fps
Definition: isom.h:169
Definition: aes.c:35
unsigned track_id
Definition: isom.h:111
int moov_retry
Definition: isom.h:198
Definition: isom.h:50
Definition: isom.h:62