Handle error conditions when decoding probabilities.
[FFMpeg-mirror/lagarith.git] / libavformat / isom.h
blob7799a09257c75bed50b16139549251a1197794c0
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>
7 * This file is part of FFmpeg.
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.
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.
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
24 #ifndef AVFORMAT_ISOM_H
25 #define AVFORMAT_ISOM_H
27 #include "avio.h"
28 #include "riff.h"
29 #include "dv.h"
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[];
37 int ff_mov_iso639_to_lang(const char *lang, int mp4);
38 int ff_mov_lang_to_iso639(unsigned code, char *to);
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
45 typedef struct {
46 int count;
47 int duration;
48 } MOVStts;
50 typedef struct {
51 int first;
52 int count;
53 int id;
54 } MOVStsc;
56 typedef struct {
57 uint32_t type;
58 char *path;
59 } MOVDref;
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;
67 struct MOVParseTableEntry;
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;
79 typedef struct {
80 unsigned track_id;
81 unsigned stsd_id;
82 unsigned duration;
83 unsigned size;
84 unsigned flags;
85 } MOVTrackExt;
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_offset; ///< time offset of the first edit list entry
110 int current_sample;
111 unsigned int bytes_per_frame;
112 unsigned int samples_per_frame;
113 int dv_audio_container;
114 int pseudo_stream_id; ///< -1 means demux all ids
115 int16_t audio_cid; ///< stsd audio compression id
116 unsigned drefs_count;
117 MOVDref *drefs;
118 int dref_id;
119 int wrong_dts; ///< dts are wrong due to huge ctts offset (iMovie files)
120 int width; ///< tkhd width
121 int height; ///< tkhd height
122 int dts_shift; ///< dts shift when ctts is negative
123 } MOVStreamContext;
125 typedef struct MOVContext {
126 AVFormatContext *fc;
127 int time_scale;
128 int64_t duration; ///< duration of the longest track
129 int found_moov; ///< 'moov' atom has been found
130 int found_mdat; ///< 'mdat' atom has been found
131 DVDemuxContext *dv_demux;
132 AVFormatContext *dv_fctx;
133 int isom; ///< 1 if file is ISO Media (mp4/3gp)
134 MOVFragment fragment; ///< current fragment in moof atom
135 MOVTrackExt *trex_data;
136 unsigned trex_count;
137 int itunes_metadata; ///< metadata are itunes style
138 } MOVContext;
140 int ff_mp4_read_descr_len(ByteIOContext *pb);
141 int ff_mov_read_esds(AVFormatContext *fc, ByteIOContext *pb, MOVAtom atom);
142 enum CodecID ff_mov_get_lpcm_codec_id(int bps, int flags);
144 #endif /* AVFORMAT_ISOM_H */