]> git.sesse.net Git - ffmpeg/blob - libavformat/isom.h
Merge commit 'e344e65109f1a75ca82aff4cecec44e79197753c'
[ffmpeg] / libavformat / isom.h
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 <stddef.h>
28 #include <stdint.h>
29
30 #include "libavutil/spherical.h"
31 #include "libavutil/stereo3d.h"
32
33 #include "avio.h"
34 #include "internal.h"
35 #include "dv.h"
36
37 /* isom.c */
38 extern const AVCodecTag ff_mp4_obj_type[];
39 extern const AVCodecTag ff_codec_movvideo_tags[];
40 extern const AVCodecTag ff_codec_movaudio_tags[];
41 extern const AVCodecTag ff_codec_movsubtitle_tags[];
42
43 int ff_mov_iso639_to_lang(const char lang[4], int mp4);
44 int ff_mov_lang_to_iso639(unsigned code, char to[4]);
45
46 struct AVAESCTR;
47
48 /* the QuickTime file format is quite convoluted...
49  * it has lots of index tables, each indexing something in another one...
50  * Here we just use what is needed to read the chunks
51  */
52
53 typedef struct MOVStts {
54     int count;
55     int duration;
56 } MOVStts;
57
58 typedef struct MOVStsc {
59     int first;
60     int count;
61     int id;
62 } MOVStsc;
63
64 typedef struct MOVElst {
65     int64_t duration;
66     int64_t time;
67     float rate;
68 } MOVElst;
69
70 typedef struct MOVDref {
71     uint32_t type;
72     char *path;
73     char *dir;
74     char volume[28];
75     char filename[64];
76     int16_t nlvl_to, nlvl_from;
77 } MOVDref;
78
79 typedef struct MOVAtom {
80     uint32_t type;
81     int64_t size; /* total size (excluding the size and type fields) */
82 } MOVAtom;
83
84 struct MOVParseTableEntry;
85
86 typedef struct MOVFragment {
87     unsigned track_id;
88     uint64_t base_data_offset;
89     uint64_t moof_offset;
90     uint64_t implicit_offset;
91     unsigned stsd_id;
92     unsigned duration;
93     unsigned size;
94     unsigned flags;
95     int64_t time;
96 } MOVFragment;
97
98 typedef struct MOVTrackExt {
99     unsigned track_id;
100     unsigned stsd_id;
101     unsigned duration;
102     unsigned size;
103     unsigned flags;
104 } MOVTrackExt;
105
106 typedef struct MOVSbgp {
107     unsigned int count;
108     unsigned int index;
109 } MOVSbgp;
110
111 typedef struct MOVFragmentIndexItem {
112     int64_t moof_offset;
113     int64_t time;
114     int headers_read;
115 } MOVFragmentIndexItem;
116
117 typedef struct MOVFragmentIndex {
118     unsigned track_id;
119     unsigned item_count;
120     unsigned current_item;
121     MOVFragmentIndexItem *items;
122 } MOVFragmentIndex;
123
124 typedef struct MOVStreamContext {
125     AVIOContext *pb;
126     int pb_is_copied;
127     int ffindex;          ///< AVStream index
128     int next_chunk;
129     unsigned int chunk_count;
130     int64_t *chunk_offsets;
131     unsigned int stts_count;
132     MOVStts *stts_data;
133     unsigned int ctts_count;
134     MOVStts *ctts_data;
135     unsigned int stsc_count;
136     MOVStsc *stsc_data;
137     int stsc_index;
138     int stsc_sample;
139     unsigned int stps_count;
140     unsigned *stps_data;  ///< partial sync sample for mpeg-2 open gop
141     MOVElst *elst_data;
142     unsigned int elst_count;
143     int ctts_index;
144     int ctts_sample;
145     unsigned int sample_size; ///< may contain value calculated from stsd or value from stsz atom
146     unsigned int stsz_sample_size; ///< always contains sample size from stsz atom
147     unsigned int sample_count;
148     int *sample_sizes;
149     int keyframe_absent;
150     unsigned int keyframe_count;
151     int *keyframes;
152     int time_scale;
153     int64_t time_offset;  ///< time offset of the edit list entries
154     int current_sample;
155     unsigned int bytes_per_frame;
156     unsigned int samples_per_frame;
157     int dv_audio_container;
158     int pseudo_stream_id; ///< -1 means demux all ids
159     int16_t audio_cid;    ///< stsd audio compression id
160     unsigned drefs_count;
161     MOVDref *drefs;
162     int dref_id;
163     int timecode_track;
164     int width;            ///< tkhd width
165     int height;           ///< tkhd height
166     int dts_shift;        ///< dts shift when ctts is negative
167     uint32_t palette[256];
168     int has_palette;
169     int64_t data_size;
170     uint32_t tmcd_flags;  ///< tmcd track flags
171     int64_t track_end;    ///< used for dts generation in fragmented movie files
172     int start_pad;        ///< amount of samples to skip due to enc-dec delay
173     unsigned int rap_group_count;
174     MOVSbgp *rap_group;
175
176     int nb_frames_for_fps;
177     int64_t duration_for_fps;
178
179     /** extradata array (and size) for multiple stsd */
180     uint8_t **extradata;
181     int *extradata_size;
182     int last_stsd_index;
183     int stsd_count;
184
185     int32_t *display_matrix;
186     AVStereo3D *stereo3d;
187     AVSphericalMapping *spherical;
188     size_t spherical_size;
189
190     uint32_t format;
191
192     int has_sidx;  // If there is an sidx entry for this stream.
193     struct {
194         int use_subsamples;
195         uint8_t* auxiliary_info;
196         uint8_t* auxiliary_info_end;
197         uint8_t* auxiliary_info_pos;
198         uint8_t auxiliary_info_default_size;
199         uint8_t* auxiliary_info_sizes;
200         size_t auxiliary_info_sizes_count;
201         struct AVAESCTR* aes_ctr;
202     } cenc;
203 } MOVStreamContext;
204
205 typedef struct MOVContext {
206     const AVClass *class; ///< class for private options
207     AVFormatContext *fc;
208     int time_scale;
209     int64_t duration;     ///< duration of the longest track
210     int found_moov;       ///< 'moov' atom has been found
211     int found_mdat;       ///< 'mdat' atom has been found
212     int found_hdlr_mdta;  ///< 'hdlr' atom with type 'mdta' has been found
213     int trak_index;       ///< Index of the current 'trak'
214     char **meta_keys;
215     unsigned meta_keys_count;
216     DVDemuxContext *dv_demux;
217     AVFormatContext *dv_fctx;
218     int isom;             ///< 1 if file is ISO Media (mp4/3gp)
219     MOVFragment fragment; ///< current fragment in moof atom
220     MOVTrackExt *trex_data;
221     unsigned trex_count;
222     int itunes_metadata;  ///< metadata are itunes style
223     int handbrake_version;
224     int *chapter_tracks;
225     unsigned int nb_chapter_tracks;
226     int use_absolute_path;
227     int ignore_editlist;
228     int ignore_chapters;
229     int seek_individually;
230     int64_t next_root_atom; ///< offset of the next root atom
231     int export_all;
232     int export_xmp;
233     int *bitrates;          ///< bitrates read before streams creation
234     int bitrates_count;
235     int moov_retry;
236     int use_mfra_for;
237     int has_looked_for_mfra;
238     MOVFragmentIndex** fragment_index_data;
239     unsigned fragment_index_count;
240     int fragment_index_complete;
241     int atom_depth;
242     unsigned int aax_mode;  ///< 'aax' file has been detected
243     uint8_t file_key[20];
244     uint8_t file_iv[20];
245     void *activation_bytes;
246     int activation_bytes_size;
247     void *audible_fixed_key;
248     int audible_fixed_key_size;
249     struct AVAES *aes_decrypt;
250     uint8_t *decryption_key;
251     int decryption_key_len;
252     int enable_drefs;
253     int32_t movie_display_matrix[3][3]; ///< display matrix from mvhd
254 } MOVContext;
255
256 int ff_mp4_read_descr_len(AVIOContext *pb);
257 int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag);
258 int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb);
259 void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
260
261 #define MP4ODescrTag                    0x01
262 #define MP4IODescrTag                   0x02
263 #define MP4ESDescrTag                   0x03
264 #define MP4DecConfigDescrTag            0x04
265 #define MP4DecSpecificDescrTag          0x05
266 #define MP4SLDescrTag                   0x06
267
268 #define MOV_TFHD_BASE_DATA_OFFSET       0x01
269 #define MOV_TFHD_STSD_ID                0x02
270 #define MOV_TFHD_DEFAULT_DURATION       0x08
271 #define MOV_TFHD_DEFAULT_SIZE           0x10
272 #define MOV_TFHD_DEFAULT_FLAGS          0x20
273 #define MOV_TFHD_DURATION_IS_EMPTY  0x010000
274 #define MOV_TFHD_DEFAULT_BASE_IS_MOOF 0x020000
275
276 #define MOV_TRUN_DATA_OFFSET            0x01
277 #define MOV_TRUN_FIRST_SAMPLE_FLAGS     0x04
278 #define MOV_TRUN_SAMPLE_DURATION       0x100
279 #define MOV_TRUN_SAMPLE_SIZE           0x200
280 #define MOV_TRUN_SAMPLE_FLAGS          0x400
281 #define MOV_TRUN_SAMPLE_CTS            0x800
282
283 #define MOV_FRAG_SAMPLE_FLAG_DEGRADATION_PRIORITY_MASK 0x0000ffff
284 #define MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC               0x00010000
285 #define MOV_FRAG_SAMPLE_FLAG_PADDING_MASK              0x000e0000
286 #define MOV_FRAG_SAMPLE_FLAG_REDUNDANCY_MASK           0x00300000
287 #define MOV_FRAG_SAMPLE_FLAG_DEPENDED_MASK             0x00c00000
288 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_MASK              0x03000000
289
290 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO                0x02000000
291 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES               0x01000000
292
293 #define MOV_TKHD_FLAG_ENABLED       0x0001
294 #define MOV_TKHD_FLAG_IN_MOVIE      0x0002
295 #define MOV_TKHD_FLAG_IN_PREVIEW    0x0004
296 #define MOV_TKHD_FLAG_IN_POSTER     0x0008
297
298 #define TAG_IS_AVCI(tag)                    \
299     ((tag) == MKTAG('a', 'i', '5', 'p') ||  \
300      (tag) == MKTAG('a', 'i', '5', 'q') ||  \
301      (tag) == MKTAG('a', 'i', '5', '2') ||  \
302      (tag) == MKTAG('a', 'i', '5', '3') ||  \
303      (tag) == MKTAG('a', 'i', '5', '5') ||  \
304      (tag) == MKTAG('a', 'i', '5', '6') ||  \
305      (tag) == MKTAG('a', 'i', '1', 'p') ||  \
306      (tag) == MKTAG('a', 'i', '1', 'q') ||  \
307      (tag) == MKTAG('a', 'i', '1', '2') ||  \
308      (tag) == MKTAG('a', 'i', '1', '3') ||  \
309      (tag) == MKTAG('a', 'i', '1', '5') ||  \
310      (tag) == MKTAG('a', 'i', '1', '6') ||  \
311      (tag) == MKTAG('a', 'i', 'v', 'x') ||  \
312      (tag) == MKTAG('A', 'V', 'i', 'n'))
313
314
315 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb);
316 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags);
317
318 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
319 void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout);
320
321 #define FF_MOV_FLAG_MFRA_AUTO -1
322 #define FF_MOV_FLAG_MFRA_DTS 1
323 #define FF_MOV_FLAG_MFRA_PTS 2
324
325 #endif /* AVFORMAT_ISOM_H */