]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/isom.h
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
[frescor/ffmpeg.git] / 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 "avio.h"
28 #include "riff.h"
29 #include "dv.h"
30
31 /* isom.c */
32 extern const AVCodecTag ff_mp4_obj_type[];
33 extern const AVCodecTag codec_movvideo_tags[];
34 extern const AVCodecTag codec_movaudio_tags[];
35 extern const AVCodecTag ff_codec_movsubtitle_tags[];
36
37 int ff_mov_iso639_to_lang(const char *lang, int mp4);
38 int ff_mov_lang_to_iso639(unsigned code, char *to);
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 {
46     int count;
47     int duration;
48 } MOVStts;
49
50 typedef struct {
51     int first;
52     int count;
53     int id;
54 } MOVStsc;
55
56 typedef struct {
57     uint32_t type;
58     char *path;
59 } MOVDref;
60
61 typedef struct {
62     uint32_t type;
63     int64_t offset;
64     int64_t size; /* total size (excluding the size and type fields) */
65 } MOVAtom;
66
67 struct MOVParseTableEntry;
68
69 typedef struct {
70     unsigned track_id;
71     uint64_t base_data_offset;
72     uint64_t moof_offset;
73     unsigned stsd_id;
74     unsigned duration;
75     unsigned size;
76     unsigned flags;
77 } MOVFragment;
78
79 typedef struct {
80     unsigned track_id;
81     unsigned stsd_id;
82     unsigned duration;
83     unsigned size;
84     unsigned flags;
85 } MOVTrackExt;
86
87 typedef struct MOVStreamContext {
88     ByteIOContext *pb;
89     int ffindex;          ///< AVStream index
90     int next_chunk;
91     unsigned int chunk_count;
92     int64_t *chunk_offsets;
93     unsigned int stts_count;
94     MOVStts *stts_data;
95     unsigned int ctts_count;
96     MOVStts *ctts_data;
97     unsigned int stsc_count;
98     MOVStsc *stsc_data;
99     unsigned int stps_count;
100     unsigned *stps_data;  ///< partial sync sample for mpeg-2 open gop
101     int ctts_index;
102     int ctts_sample;
103     unsigned int sample_size;
104     unsigned int sample_count;
105     int *sample_sizes;
106     unsigned int keyframe_count;
107     int *keyframes;
108     int time_scale;
109     int time_rate;
110     int time_offset;      ///< time offset of the first edit list entry
111     int current_sample;
112     unsigned int bytes_per_frame;
113     unsigned int samples_per_frame;
114     int dv_audio_container;
115     int pseudo_stream_id; ///< -1 means demux all ids
116     int16_t audio_cid;    ///< stsd audio compression id
117     unsigned drefs_count;
118     MOVDref *drefs;
119     int dref_id;
120     int wrong_dts;        ///< dts are wrong due to huge ctts offset (iMovie files)
121     int width;            ///< tkhd width
122     int height;           ///< tkhd height
123     int dts_shift;        ///< dts shift when ctts is negative
124 } MOVStreamContext;
125
126 typedef struct MOVContext {
127     AVFormatContext *fc;
128     int time_scale;
129     int64_t duration;     ///< duration of the longest track
130     int found_moov;       ///< 'moov' atom has been found
131     int found_mdat;       ///< 'mdat' atom has been found
132     DVDemuxContext *dv_demux;
133     AVFormatContext *dv_fctx;
134     int isom;             ///< 1 if file is ISO Media (mp4/3gp)
135     MOVFragment fragment; ///< current fragment in moof atom
136     MOVTrackExt *trex_data;
137     unsigned trex_count;
138     int itunes_metadata;  ///< metadata are itunes style
139 } MOVContext;
140
141 #endif /* AVFORMAT_ISOM_H */