FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups 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 {
79  unsigned track_id;
80  uint64_t base_data_offset;
81  uint64_t moof_offset;
82  uint64_t implicit_offset;
83  unsigned stsd_id;
84  unsigned duration;
85  unsigned size;
86  unsigned flags;
87  int64_t time;
88 } MOVFragment;
89 
90 typedef struct MOVTrackExt {
91  unsigned track_id;
92  unsigned stsd_id;
93  unsigned duration;
94  unsigned size;
95  unsigned flags;
96 } MOVTrackExt;
97 
98 typedef struct MOVSbgp {
99  unsigned int count;
100  unsigned int index;
101 } MOVSbgp;
102 
103 typedef struct MOVFragmentIndexItem {
104  int64_t moof_offset;
105  int64_t time;
107 
108 typedef struct MOVFragmentIndex {
109  unsigned track_id;
110  unsigned item_count;
111  unsigned current_item;
114 
115 typedef struct MOVStreamContext {
118  int ffindex; ///< AVStream index
120  unsigned int chunk_count;
121  int64_t *chunk_offsets;
122  unsigned int stts_count;
124  unsigned int ctts_count;
126  unsigned int stsc_count;
128  unsigned int stps_count;
129  unsigned *stps_data; ///< partial sync sample for mpeg-2 open gop
131  unsigned int elst_count;
134  unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom
135  unsigned int stsz_sample_size; ///< always contains sample size from stsz atom
136  unsigned int sample_count;
139  unsigned int keyframe_count;
140  int *keyframes;
142  int64_t time_offset; ///< time offset of the edit list entries
144  unsigned int bytes_per_frame;
145  unsigned int samples_per_frame;
147  int pseudo_stream_id; ///< -1 means demux all ids
148  int16_t audio_cid; ///< stsd audio compression id
149  unsigned drefs_count;
151  int dref_id;
153  int wrong_dts; ///< dts are wrong due to huge ctts offset (iMovie files)
154  int width; ///< tkhd width
155  int height; ///< tkhd height
156  int dts_shift; ///< dts shift when ctts is negative
157  uint32_t palette[256];
159  int64_t data_size;
160  uint32_t tmcd_flags; ///< tmcd track flags
161  int64_t track_end; ///< used for dts generation in fragmented movie files
162  int start_pad; ///< amount of samples to skip due to enc-dec delay
163  unsigned int rap_group_count;
165 
168 
171 
172 typedef struct MOVContext {
173  const AVClass *class; ///< class for private options
176  int64_t duration; ///< duration of the longest track
177  int found_moov; ///< 'moov' atom has been found
178  int found_mdat; ///< 'mdat' atom has been found
181  int isom; ///< 1 if file is ISO Media (mp4/3gp)
182  MOVFragment fragment; ///< current fragment in moof atom
184  unsigned trex_count;
185  int itunes_metadata; ///< metadata are itunes style
190  int64_t next_root_atom; ///< offset of the next root atom
193  int *bitrates; ///< bitrates read before streams creation
201 } MOVContext;
202 
206 void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
207 
208 #define MP4ODescrTag 0x01
209 #define MP4IODescrTag 0x02
210 #define MP4ESDescrTag 0x03
211 #define MP4DecConfigDescrTag 0x04
212 #define MP4DecSpecificDescrTag 0x05
213 #define MP4SLDescrTag 0x06
214 
215 #define MOV_TFHD_BASE_DATA_OFFSET 0x01
216 #define MOV_TFHD_STSD_ID 0x02
217 #define MOV_TFHD_DEFAULT_DURATION 0x08
218 #define MOV_TFHD_DEFAULT_SIZE 0x10
219 #define MOV_TFHD_DEFAULT_FLAGS 0x20
220 #define MOV_TFHD_DURATION_IS_EMPTY 0x010000
221 #define MOV_TFHD_DEFAULT_BASE_IS_MOOF 0x020000
222 
223 #define MOV_TRUN_DATA_OFFSET 0x01
224 #define MOV_TRUN_FIRST_SAMPLE_FLAGS 0x04
225 #define MOV_TRUN_SAMPLE_DURATION 0x100
226 #define MOV_TRUN_SAMPLE_SIZE 0x200
227 #define MOV_TRUN_SAMPLE_FLAGS 0x400
228 #define MOV_TRUN_SAMPLE_CTS 0x800
229 
230 #define MOV_FRAG_SAMPLE_FLAG_DEGRADATION_PRIORITY_MASK 0x0000ffff
231 #define MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC 0x00010000
232 #define MOV_FRAG_SAMPLE_FLAG_PADDING_MASK 0x000e0000
233 #define MOV_FRAG_SAMPLE_FLAG_REDUNDANCY_MASK 0x00300000
234 #define MOV_FRAG_SAMPLE_FLAG_DEPENDED_MASK 0x00c00000
235 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_MASK 0x03000000
236 
237 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO 0x02000000
238 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES 0x01000000
239 
240 #define MOV_TKHD_FLAG_ENABLED 0x0001
241 #define MOV_TKHD_FLAG_IN_MOVIE 0x0002
242 #define MOV_TKHD_FLAG_IN_PREVIEW 0x0004
243 #define MOV_TKHD_FLAG_IN_POSTER 0x0008
244 
245 #define TAG_IS_AVCI(tag) \
246  ((tag) == MKTAG('a', 'i', '5', 'p') || \
247  (tag) == MKTAG('a', 'i', '5', 'q') || \
248  (tag) == MKTAG('a', 'i', '5', '2') || \
249  (tag) == MKTAG('a', 'i', '5', '3') || \
250  (tag) == MKTAG('a', 'i', '5', '5') || \
251  (tag) == MKTAG('a', 'i', '5', '6') || \
252  (tag) == MKTAG('a', 'i', '1', 'p') || \
253  (tag) == MKTAG('a', 'i', '1', 'q') || \
254  (tag) == MKTAG('a', 'i', '1', '2') || \
255  (tag) == MKTAG('a', 'i', '1', '3') || \
256  (tag) == MKTAG('a', 'i', '1', '5') || \
257  (tag) == MKTAG('a', 'i', '1', '6') || \
258  (tag) == MKTAG('a', 'i', 'v', 'x') || \
259  (tag) == MKTAG('A', 'V', 'i', 'n'))
260 
261 
264 
265 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
266 void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
267 
268 #define FF_MOV_FLAG_MFRA_AUTO -1
269 #define FF_MOV_FLAG_MFRA_DTS 1
270 #define FF_MOV_FLAG_MFRA_PTS 2
271 
272 #endif /* AVFORMAT_ISOM_H */
int chapter_track
Definition: isom.h:186
int itunes_metadata
metadata are itunes style
Definition: isom.h:185
int * bitrates
bitrates read before streams creation
Definition: isom.h:193
int64_t moof_offset
Definition: isom.h:104
Bytestream IO Context.
Definition: avio.h:111
Buffered I/O operations.
uint32_t tmcd_flags
tmcd track flags
Definition: isom.h:160
const AVCodecTag ff_mp4_obj_type[]
Definition: isom.c:34
unsigned int rap_group_count
Definition: isom.h:163
unsigned int elst_count
Definition: isom.h:131
MOVTrackExt * trex_data
Definition: isom.h:183
int export_all
Definition: isom.h:191
unsigned track_id
Definition: isom.h:79
unsigned int samples_per_frame
Definition: isom.h:145
int dv_audio_container
Definition: isom.h:146
Definition: isom.h:45
float rate
Definition: isom.h:59
uint64_t base_data_offset
Definition: isom.h:80
int64_t duration
Definition: isom.h:57
unsigned int stsc_count
Definition: isom.h:126
int has_palette
Definition: isom.h:158
unsigned item_count
Definition: isom.h:110
int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb)
Definition: isom.c:447
int16_t audio_cid
stsd audio compression id
Definition: isom.h:148
int height
tkhd height
Definition: isom.h:155
uint32_t type
Definition: isom.h:72
MOVElst * elst_data
Definition: isom.h:130
MOVStsc * stsc_data
Definition: isom.h:127
unsigned fragment_index_count
Definition: isom.h:199
int ctts_index
Definition: isom.h:132
unsigned stsd_id
Definition: isom.h:92
int found_moov
'moov' atom has been found
Definition: isom.h:177
unsigned flags
Definition: isom.h:95
int isom
1 if file is ISO Media (mp4/3gp)
Definition: isom.h:181
int found_mdat
'mdat' atom has been found
Definition: isom.h:178
int width
tkhd width
Definition: isom.h:154
unsigned drefs_count
Definition: isom.h:149
Format I/O context.
Definition: avformat.h:1272
const AVCodecTag ff_codec_movvideo_tags[]
Definition: isom.c:71
char filename[64]
Definition: isom.h:67
MOVDref * drefs
Definition: isom.h:150
const AVCodecTag ff_codec_movaudio_tags[]
Definition: isom.c:264
int first
Definition: isom.h:51
int ff_mp4_read_descr_len(AVIOContext *pb)
Definition: isom.c:400
unsigned int sample_count
Definition: isom.h:136
int count
Definition: isom.h:52
int dts_shift
dts shift when ctts is negative
Definition: isom.h:156
unsigned int count
Definition: isom.h:99
int16_t nlvl_to
Definition: isom.h:68
char volume[28]
Definition: isom.h:66
MOVFragmentIndex ** fragment_index_data
Definition: isom.h:198
uint32_t tag
Definition: movenc.c:1333
int nb_frames_for_fps
Definition: isom.h:166
const AVCodecTag ff_codec_movsubtitle_tags[]
Definition: isom.c:318
int current_sample
Definition: isom.h:143
unsigned track_id
Definition: isom.h:91
const char * to
Definition: webvttdec.c:34
int64_t time_offset
time offset of the edit list entries
Definition: isom.h:142
unsigned int keyframe_count
Definition: isom.h:139
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:102
unsigned int ctts_count
Definition: isom.h:124
int atom_depth
Definition: isom.h:200
int * keyframes
Definition: isom.h:140
AVFormatContext * fc
Definition: isom.h:174
int ctts_sample
Definition: isom.h:133
int keyframe_absent
Definition: isom.h:138
int16_t nlvl_from
Definition: isom.h:68
int64_t time
Definition: isom.h:105
static const uint16_t fc[]
Definition: dcaenc.h:41
char * dir
Definition: isom.h:65
int id
Definition: isom.h:53
int32_t
char * path
Definition: isom.h:64
int time_scale
Definition: isom.h:141
int64_t time
Definition: isom.h:87
MOVFragmentIndexItem * items
Definition: isom.h:112
Definition: isom.h:98
uint64_t moof_offset
Definition: isom.h:81
MOVStts * ctts_data
Definition: isom.h:125
unsigned size
Definition: isom.h:94
void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout)
Definition: isom.c:568
int ignore_editlist
Definition: isom.h:188
int64_t * chunk_offsets
Definition: isom.h:121
unsigned int index
Definition: isom.h:100
int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb)
Definition: mov.c:649
unsigned current_item
Definition: isom.h:111
int64_t duration
duration of the longest track
Definition: isom.h:176
Stream structure.
Definition: avformat.h:842
unsigned duration
Definition: isom.h:93
DVDemuxContext * dv_demux
Definition: isom.h:179
int timecode_track
Definition: isom.h:152
int * sample_sizes
Definition: isom.h:137
unsigned duration
Definition: isom.h:84
MOVSbgp * rap_group
Definition: isom.h:164
int duration
Definition: isom.h:47
unsigned int stsz_sample_size
always contains sample size from stsz atom
Definition: isom.h:135
unsigned trex_count
Definition: isom.h:184
int64_t data_size
Definition: isom.h:159
int has_looked_for_mfra
Definition: isom.h:197
uint32_t type
Definition: isom.h:63
MOVStts * stts_data
Definition: isom.h:123
Describe the class of an AVClass context structure.
Definition: log.h:67
int count
Definition: isom.h:46
MOVFragment fragment
current fragment in moof atom
Definition: isom.h:182
int64_t track_end
used for dts generation in fragmented movie files
Definition: isom.h:161
Definition: isom.h:71
int use_mfra_for
Definition: isom.h:196
int64_t time
Definition: isom.h:58
int pb_is_copied
Definition: isom.h:117
int ff_mov_lang_to_iso639(unsigned code, char to[4])
Definition: isom.c:378
int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
Definition: mov.c:1948
int next_chunk
Definition: isom.h:119
AVFormatContext * dv_fctx
Definition: isom.h:180
int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag)
Definition: isom.c:413
uint64_t implicit_offset
Definition: isom.h:82
static int flags
Definition: cpu.c:47
unsigned * stps_data
partial sync sample for mpeg-2 open gop
Definition: isom.h:129
int ff_mov_iso639_to_lang(const char lang[4], int mp4)
Definition: isom.c:351
int start_pad
amount of samples to skip due to enc-dec delay
Definition: isom.h:162
int32_t * display_matrix
Definition: isom.h:169
AVIOContext * pb
Definition: isom.h:116
unsigned int bytes_per_frame
Definition: isom.h:144
unsigned flags
Definition: isom.h:86
int bitrates_count
Definition: isom.h:194
int wrong_dts
dts are wrong due to huge ctts offset (iMovie files)
Definition: isom.h:153
int64_t size
Definition: isom.h:73
int export_xmp
Definition: isom.h:192
int seek_individually
Definition: isom.h:189
static double c[64]
unsigned int stps_count
Definition: isom.h:128
unsigned int chunk_count
Definition: isom.h:120
unsigned bps
Definition: movenc.c:1334
uint32_t palette[256]
Definition: isom.h:157
unsigned stsd_id
Definition: isom.h:83
unsigned int stts_count
Definition: isom.h:122
unsigned int sample_size
may contain value calculated from stsd or value from stsz atom
Definition: isom.h:134
enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
Compute codec id for 'lpcm' tag.
Definition: mov.c:1469
int64_t next_root_atom
offset of the next root atom
Definition: isom.h:190
int time_scale
Definition: isom.h:175
void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id)
Definition: isom.c:422
Definition: isom.h:56
int pseudo_stream_id
-1 means demux all ids
Definition: isom.h:147
int ffindex
AVStream index.
Definition: isom.h:118
int use_absolute_path
Definition: isom.h:187
unsigned size
Definition: isom.h:85
int64_t duration_for_fps
Definition: isom.h:167
unsigned track_id
Definition: isom.h:109
int moov_retry
Definition: isom.h:195
Definition: isom.h:50
Definition: isom.h:62