Mercurial > libavformat.hg
annotate isom.h @ 6044:33e5c3910738 libavformat
Fix detection of some stereo atrac files by not comparing the
block size mode and info byte. Reduced the probe score just in case.
author | banan |
---|---|
date | Sun, 23 May 2010 21:56:54 +0000 |
parents | c7b98381ec2d |
children |
rev | line source |
---|---|
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
1 /* |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
2 * ISO Media common code |
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
4079
diff
changeset
|
3 * copyright (c) 2001 Fabrice Bellard |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
4 * copyright (c) 2002 Francois Revol <revol@free.fr> |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
5 * copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@free.fr> |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
6 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
7 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
8 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
9 * FFmpeg is free software; you can redistribute it and/or |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
10 * modify it under the terms of the GNU Lesser General Public |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
11 * License as published by the Free Software Foundation; either |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
12 * version 2.1 of the License, or (at your option) any later version. |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
13 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
14 * FFmpeg is distributed in the hope that it will be useful, |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
17 * Lesser General Public License for more details. |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
18 * |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
19 * You should have received a copy of the GNU Lesser General Public |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1306
diff
changeset
|
20 * License along with FFmpeg; if not, write to the Free Software |
1306
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
22 */ |
8bf9be9bb107
Add official LGPL license headers to the files that were missing them.
diego
parents:
1216
diff
changeset
|
23 |
3852 | 24 #ifndef AVFORMAT_ISOM_H |
25 #define AVFORMAT_ISOM_H | |
943
4e7a66723f1d
mp4 codecs objecttype handling patch by (Baptiste COUDURIER <baptiste.coudurier smartjog com)
michael
parents:
diff
changeset
|
26 |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
27 #include "avio.h" |
6033 | 28 #include "internal.h" |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
29 #include "dv.h" |
2171 | 30 |
1216
fec0a3d5408f
move common code from mov.c and movenc.c to isom.c
bcoudurier
parents:
1059
diff
changeset
|
31 /* isom.c */ |
1948 | 32 extern const AVCodecTag ff_mp4_obj_type[]; |
1843 | 33 extern const AVCodecTag codec_movvideo_tags[]; |
34 extern const AVCodecTag codec_movaudio_tags[]; | |
2969 | 35 extern const AVCodecTag ff_codec_movsubtitle_tags[]; |
1216
fec0a3d5408f
move common code from mov.c and movenc.c to isom.c
bcoudurier
parents:
1059
diff
changeset
|
36 |
5611
1338a4972dd4
Always consider the mov language code as 4 bytes fixed size and change the
reimar
parents:
5495
diff
changeset
|
37 int ff_mov_iso639_to_lang(const char lang[4], int mp4); |
1338a4972dd4
Always consider the mov language code as 4 bytes fixed size and change the
reimar
parents:
5495
diff
changeset
|
38 int ff_mov_lang_to_iso639(unsigned code, char to[4]); |
943
4e7a66723f1d
mp4 codecs objecttype handling patch by (Baptiste COUDURIER <baptiste.coudurier smartjog com)
michael
parents:
diff
changeset
|
39 |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
40 /* the QuickTime file format is quite convoluted... |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
41 * it has lots of index tables, each indexing something in another one... |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
42 * Here we just use what is needed to read the chunks |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
43 */ |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
44 |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
1948
diff
changeset
|
45 typedef struct { |
971
43f85eba04c4
CTTS support patch by (Baptiste COUDURIER <baptiste.coudurier smartjog com>)
michael
parents:
943
diff
changeset
|
46 int count; |
43f85eba04c4
CTTS support patch by (Baptiste COUDURIER <baptiste.coudurier smartjog com>)
michael
parents:
943
diff
changeset
|
47 int duration; |
4079 | 48 } MOVStts; |
971
43f85eba04c4
CTTS support patch by (Baptiste COUDURIER <baptiste.coudurier smartjog com>)
michael
parents:
943
diff
changeset
|
49 |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
50 typedef struct { |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
51 int first; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
52 int count; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
53 int id; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
54 } MOVStsc; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
55 |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
56 typedef struct { |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
57 uint32_t type; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
58 char *path; |
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5205
diff
changeset
|
59 char *dir; |
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5205
diff
changeset
|
60 char volume[28]; |
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5205
diff
changeset
|
61 char filename[64]; |
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5205
diff
changeset
|
62 int16_t nlvl_to, nlvl_from; |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
63 } MOVDref; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
64 |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
65 typedef struct { |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
66 uint32_t type; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
67 int64_t size; /* total size (excluding the size and type fields) */ |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
68 } MOVAtom; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
69 |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
70 struct MOVParseTableEntry; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
71 |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
72 typedef struct { |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
73 unsigned track_id; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
74 uint64_t base_data_offset; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
75 uint64_t moof_offset; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
76 unsigned stsd_id; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
77 unsigned duration; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
78 unsigned size; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
79 unsigned flags; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
80 } MOVFragment; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
81 |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
82 typedef struct { |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
83 unsigned track_id; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
84 unsigned stsd_id; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
85 unsigned duration; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
86 unsigned size; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
87 unsigned flags; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
88 } MOVTrackExt; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
89 |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
90 typedef struct MOVStreamContext { |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
91 ByteIOContext *pb; |
4932 | 92 int ffindex; ///< AVStream index |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
93 int next_chunk; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
94 unsigned int chunk_count; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
95 int64_t *chunk_offsets; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
96 unsigned int stts_count; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
97 MOVStts *stts_data; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
98 unsigned int ctts_count; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
99 MOVStts *ctts_data; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
100 unsigned int stsc_count; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
101 MOVStsc *stsc_data; |
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4932
diff
changeset
|
102 unsigned int stps_count; |
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4932
diff
changeset
|
103 unsigned *stps_data; ///< partial sync sample for mpeg-2 open gop |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
104 int ctts_index; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
105 int ctts_sample; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
106 unsigned int sample_size; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
107 unsigned int sample_count; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
108 int *sample_sizes; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
109 unsigned int keyframe_count; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
110 int *keyframes; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
111 int time_scale; |
4932 | 112 int time_offset; ///< time offset of the first edit list entry |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
113 int current_sample; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
114 unsigned int bytes_per_frame; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
115 unsigned int samples_per_frame; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
116 int dv_audio_container; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
117 int pseudo_stream_id; ///< -1 means demux all ids |
4932 | 118 int16_t audio_cid; ///< stsd audio compression id |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
119 unsigned drefs_count; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
120 MOVDref *drefs; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
121 int dref_id; |
4932 | 122 int wrong_dts; ///< dts are wrong due to huge ctts offset (iMovie files) |
123 int width; ///< tkhd width | |
124 int height; ///< tkhd height | |
125 int dts_shift; ///< dts shift when ctts is negative | |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
126 } MOVStreamContext; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
127 |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
128 typedef struct MOVContext { |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
129 AVFormatContext *fc; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
130 int time_scale; |
4932 | 131 int64_t duration; ///< duration of the longest track |
132 int found_moov; ///< 'moov' atom has been found | |
133 int found_mdat; ///< 'mdat' atom has been found | |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
134 DVDemuxContext *dv_demux; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
135 AVFormatContext *dv_fctx; |
4932 | 136 int isom; ///< 1 if file is ISO Media (mp4/3gp) |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
137 MOVFragment fragment; ///< current fragment in moof atom |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
138 MOVTrackExt *trex_data; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
139 unsigned trex_count; |
4932 | 140 int itunes_metadata; ///< metadata are itunes style |
5975 | 141 int chapter_track; |
4690
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
142 } MOVContext; |
2249417477c5
Move MOVContext and related structures from mov.c to isom.h. See "[PATCH]
rbultje
parents:
4269
diff
changeset
|
143 |
5205 | 144 int ff_mp4_read_descr_len(ByteIOContext *pb); |
145 int ff_mov_read_esds(AVFormatContext *fc, ByteIOContext *pb, MOVAtom atom); | |
146 enum CodecID ff_mov_get_lpcm_codec_id(int bps, int flags); | |
147 | |
3852 | 148 #endif /* AVFORMAT_ISOM_H */ |