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