]> git.sesse.net Git - ffmpeg/blob - libavformat/isom.h
mp3dec: read the initial/trailing padding from the LAME tag
[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 Libav.
8  *
9  * Libav 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  * Libav 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 Libav; 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[];
35 extern const AVCodecTag ff_codec_movsubtitle_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 MOVDref {
57     uint32_t type;
58     char *path;
59     char *dir;
60     char volume[28];
61     char filename[64];
62     int16_t nlvl_to, nlvl_from;
63 } MOVDref;
64
65 typedef struct MOVAtom {
66     uint32_t type;
67     int64_t size; /* total size (excluding the size and type fields) */
68 } MOVAtom;
69
70 struct MOVParseTableEntry;
71
72 typedef struct MOVFragment {
73     unsigned track_id;
74     uint64_t base_data_offset;
75     uint64_t moof_offset;
76     uint64_t implicit_offset;
77     unsigned stsd_id;
78     unsigned duration;
79     unsigned size;
80     unsigned flags;
81 } MOVFragment;
82
83 typedef struct MOVTrackExt {
84     unsigned track_id;
85     unsigned stsd_id;
86     unsigned duration;
87     unsigned size;
88     unsigned flags;
89 } MOVTrackExt;
90
91 typedef struct MOVSbgp {
92     unsigned int count;
93     unsigned int index;
94 } MOVSbgp;
95
96 typedef struct MOVStreamContext {
97     AVIOContext *pb;
98     int ffindex;          ///< AVStream index
99     int next_chunk;
100     unsigned int chunk_count;
101     int64_t *chunk_offsets;
102     unsigned int stts_count;
103     MOVStts *stts_data;
104     unsigned int ctts_count;
105     MOVStts *ctts_data;
106     unsigned int stsc_count;
107     MOVStsc *stsc_data;
108     int stsc_index;
109     int stsc_sample;
110     unsigned int stps_count;
111     unsigned *stps_data;  ///< partial sync sample for mpeg-2 open gop
112     int ctts_index;
113     int ctts_sample;
114     unsigned int sample_size;
115     unsigned int sample_count;
116     int *sample_sizes;
117     int keyframe_absent;
118     unsigned int keyframe_count;
119     int *keyframes;
120     int time_scale;
121     int64_t time_offset;  ///< time offset of the first edit list entry
122     int current_sample;
123     unsigned int bytes_per_frame;
124     unsigned int samples_per_frame;
125     int dv_audio_container;
126     int pseudo_stream_id; ///< -1 means demux all ids
127     int16_t audio_cid;    ///< stsd audio compression id
128     unsigned drefs_count;
129     MOVDref *drefs;
130     int dref_id;
131     int wrong_dts;        ///< dts are wrong due to huge ctts offset (iMovie files)
132     int width;            ///< tkhd width
133     int height;           ///< tkhd height
134     int dts_shift;        ///< dts shift when ctts is negative
135     uint32_t palette[256];
136     int has_palette;
137     int64_t data_size;
138     int64_t track_end;    ///< used for dts generation in fragmented movie files
139     unsigned int rap_group_count;
140     MOVSbgp *rap_group;
141
142     /** extradata array (and size) for multiple stsd */
143     uint8_t **extradata;
144     int *extradata_size;
145     int last_stsd_index;
146     int stsd_count;
147
148     int32_t *display_matrix;
149 } MOVStreamContext;
150
151 typedef struct MOVContext {
152     const AVClass *class; ///< class for private options
153     AVFormatContext *fc;
154     int time_scale;
155     int64_t duration;     ///< duration of the longest track
156     int found_moov;       ///< 'moov' atom has been found
157     int found_mdat;       ///< 'mdat' atom has been found
158     DVDemuxContext *dv_demux;
159     AVFormatContext *dv_fctx;
160     int isom;             ///< 1 if file is ISO Media (mp4/3gp)
161     MOVFragment fragment; ///< current fragment in moof atom
162     MOVTrackExt *trex_data;
163     unsigned trex_count;
164     int itunes_metadata;  ///< metadata are itunes style
165     int chapter_track;
166     int seek_individually;
167     int64_t next_root_atom; ///< offset of the next root atom
168     int export_all;
169     int export_xmp;
170     int enable_drefs;
171 } MOVContext;
172
173 int ff_mp4_read_descr_len(AVIOContext *pb);
174 int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag);
175 int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb);
176 void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id);
177
178 #define MP4ODescrTag                    0x01
179 #define MP4IODescrTag                   0x02
180 #define MP4ESDescrTag                   0x03
181 #define MP4DecConfigDescrTag            0x04
182 #define MP4DecSpecificDescrTag          0x05
183 #define MP4SLDescrTag                   0x06
184
185 #define MOV_TFHD_BASE_DATA_OFFSET       0x01
186 #define MOV_TFHD_STSD_ID                0x02
187 #define MOV_TFHD_DEFAULT_DURATION       0x08
188 #define MOV_TFHD_DEFAULT_SIZE           0x10
189 #define MOV_TFHD_DEFAULT_FLAGS          0x20
190 #define MOV_TFHD_DURATION_IS_EMPTY  0x010000
191 #define MOV_TFHD_DEFAULT_BASE_IS_MOOF 0x020000
192
193 #define MOV_TRUN_DATA_OFFSET            0x01
194 #define MOV_TRUN_FIRST_SAMPLE_FLAGS     0x04
195 #define MOV_TRUN_SAMPLE_DURATION       0x100
196 #define MOV_TRUN_SAMPLE_SIZE           0x200
197 #define MOV_TRUN_SAMPLE_FLAGS          0x400
198 #define MOV_TRUN_SAMPLE_CTS            0x800
199
200 #define MOV_FRAG_SAMPLE_FLAG_DEGRADATION_PRIORITY_MASK 0x0000ffff
201 #define MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC               0x00010000
202 #define MOV_FRAG_SAMPLE_FLAG_PADDING_MASK              0x000e0000
203 #define MOV_FRAG_SAMPLE_FLAG_REDUNDANCY_MASK           0x00300000
204 #define MOV_FRAG_SAMPLE_FLAG_DEPENDED_MASK             0x00c00000
205 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_MASK              0x03000000
206
207 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_NO                0x02000000
208 #define MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES               0x01000000
209
210 #define MOV_TKHD_FLAG_ENABLED       0x0001
211 #define MOV_TKHD_FLAG_IN_MOVIE      0x0002
212 #define MOV_TKHD_FLAG_IN_PREVIEW    0x0004
213 #define MOV_TKHD_FLAG_IN_POSTER     0x0008
214
215 #define TAG_IS_AVCI(tag)                    \
216     ((tag) == MKTAG('a', 'i', '5', 'p') ||  \
217      (tag) == MKTAG('a', 'i', '5', 'q') ||  \
218      (tag) == MKTAG('a', 'i', '5', '2') ||  \
219      (tag) == MKTAG('a', 'i', '5', '3') ||  \
220      (tag) == MKTAG('a', 'i', '5', '5') ||  \
221      (tag) == MKTAG('a', 'i', '5', '6') ||  \
222      (tag) == MKTAG('a', 'i', '1', 'p') ||  \
223      (tag) == MKTAG('a', 'i', '1', 'q') ||  \
224      (tag) == MKTAG('a', 'i', '1', '2') ||  \
225      (tag) == MKTAG('a', 'i', '1', '3') ||  \
226      (tag) == MKTAG('a', 'i', '1', '5') ||  \
227      (tag) == MKTAG('a', 'i', '1', '6') ||  \
228      (tag) == MKTAG('A', 'V', 'i', 'n'))
229
230
231 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb);
232 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags);
233
234 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries);
235
236 #endif /* AVFORMAT_ISOM_H */