Mercurial > libavformat.hg
annotate mov.c @ 345:d94c6fd7b95e libavformat
MSZH and ZLIB decoder support
Experimental ZLIB encoder (not working yet)
author | rtognimp |
---|---|
date | Mon, 12 Jan 2004 22:14:45 +0000 |
parents | e73e7b5f2599 |
children | d18a2b1fc182 |
rev | line source |
---|---|
0 | 1 /* |
2 * MOV decoder. | |
3 * Copyright (c) 2001 Fabrice Bellard. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
19 #include "avformat.h" | |
20 #include "avi.h" | |
21 | |
22 #ifdef CONFIG_ZLIB | |
23 #include <zlib.h> | |
24 #endif | |
25 | |
26 /* | |
27 * First version by Francois Revol revol@free.fr | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
28 * |
0 | 29 * Features and limitations: |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
30 * - reads most of the QT files I have (at least the structure), |
0 | 31 * the exceptions are .mov with zlib compressed headers ('cmov' section). It shouldn't be hard to implement. |
32 * FIXED, Francois Revol, 07/17/2002 | |
33 * - ffmpeg has nearly none of the usual QuickTime codecs, | |
34 * although I succesfully dumped raw and mp3 audio tracks off .mov files. | |
35 * Sample QuickTime files with mp3 audio can be found at: http://www.3ivx.com/showcase.html | |
36 * - .mp4 parsing is still hazardous, although the format really is QuickTime with some minor changes | |
37 * (to make .mov parser crash maybe ?), despite what they say in the MPEG FAQ at | |
38 * http://mpeg.telecomitalialab.com/faq.htm | |
39 * - the code is quite ugly... maybe I won't do it recursive next time :-) | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
40 * |
0 | 41 * Funny I didn't know about http://sourceforge.net/projects/qt-ffmpeg/ |
42 * when coding this :) (it's a writer anyway) | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
43 * |
0 | 44 * Reference documents: |
45 * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt | |
46 * Apple: | |
47 * http://developer.apple.com/techpubs/quicktime/qtdevdocs/QTFF/qtff.html | |
48 * http://developer.apple.com/techpubs/quicktime/qtdevdocs/PDF/QTFileFormat.pdf | |
49 * QuickTime is a trademark of Apple (AFAIK :)) | |
50 */ | |
51 | |
52 //#define DEBUG | |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
53 #ifdef DEBUG |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
54 #include <stdio.h> |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
55 #include <fcntl.h> |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
56 #endif |
0 | 57 |
302
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
58 #include "qtpalette.h" |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
59 |
0 | 60 /* allows chunk splitting - should work now... */ |
61 /* in case you can't read a file, try commenting */ | |
62 #define MOV_SPLIT_CHUNKS | |
63 | |
147 | 64 /* Special handling for movies created with Minolta Dimaxe Xi*/ |
65 /* this fix should not interfere with other .mov files, but just in case*/ | |
66 #define MOV_MINOLTA_FIX | |
67 | |
0 | 68 /* some streams in QT (and in MP4 mostly) aren't either video nor audio */ |
69 /* so we first list them as this, then clean up the list of streams we give back, */ | |
70 /* getting rid of these */ | |
121 | 71 #define CODEC_TYPE_MOV_OTHER (enum CodecType) 2 |
0 | 72 |
73 static const CodecTag mov_video_tags[] = { | |
74 /* { CODEC_ID_, MKTAG('c', 'v', 'i', 'd') }, *//* Cinepak */ | |
75 /* { CODEC_ID_H263, MKTAG('r', 'a', 'w', ' ') }, *//* Uncompressed RGB */ | |
76 /* { CODEC_ID_H263, MKTAG('Y', 'u', 'v', '2') }, *//* Uncompressed YUV422 */ | |
101
0865b0aaa2af
QT AVID 4CCs patch by ("Sebastien Bechet" <s dot bechet at av7 dot net>) (not tested)
mmu_man
parents:
85
diff
changeset
|
77 /* { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, *//* YUV with alpha-channel (AVID Uncompressed) */ |
0 | 78 /* Graphics */ |
79 /* Animation */ | |
80 /* Apple video */ | |
81 /* Kodak Photo CD */ | |
82 { CODEC_ID_MJPEG, MKTAG('j', 'p', 'e', 'g') }, /* PhotoJPEG */ | |
83 { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'e', 'g') }, /* MPEG */ | |
84 { CODEC_ID_MJPEG, MKTAG('m', 'j', 'p', 'a') }, /* Motion-JPEG (format A) */ | |
85 { CODEC_ID_MJPEG, MKTAG('m', 'j', 'p', 'b') }, /* Motion-JPEG (format B) */ | |
101
0865b0aaa2af
QT AVID 4CCs patch by ("Sebastien Bechet" <s dot bechet at av7 dot net>) (not tested)
mmu_man
parents:
85
diff
changeset
|
86 { CODEC_ID_MJPEG, MKTAG('A', 'V', 'D', 'J') }, /* MJPEG with alpha-channel (AVID JFIF meridien compressed) */ |
0865b0aaa2af
QT AVID 4CCs patch by ("Sebastien Bechet" <s dot bechet at av7 dot net>) (not tested)
mmu_man
parents:
85
diff
changeset
|
87 /* { CODEC_ID_MJPEG, MKTAG('A', 'V', 'R', 'n') }, *//* MJPEG with alpha-channel (AVID ABVB/Truevision NuVista) */ |
0 | 88 /* { CODEC_ID_GIF, MKTAG('g', 'i', 'f', ' ') }, *//* embedded gif files as frames (usually one "click to play movie" frame) */ |
89 /* Sorenson video */ | |
90 { CODEC_ID_SVQ1, MKTAG('S', 'V', 'Q', '1') }, /* Sorenson Video v1 */ | |
91 { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', '1') }, /* Sorenson Video v1 */ | |
92 { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', 'i') }, /* Sorenson Video v1 (from QT specs)*/ | |
129 | 93 { CODEC_ID_SVQ3, MKTAG('S', 'V', 'Q', '3') }, /* Sorenson Video v3 */ |
0 | 94 { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') }, |
95 { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X') }, /* OpenDiVX *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */ | |
289 | 96 { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D') }, |
0 | 97 /* { CODEC_ID_, MKTAG('I', 'V', '5', '0') }, *//* Indeo 5.0 */ |
98 { CODEC_ID_H263, MKTAG('h', '2', '6', '3') }, /* H263 */ | |
133 | 99 { CODEC_ID_H263, MKTAG('s', '2', '6', '3') }, /* H263 ?? works */ |
0 | 100 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', ' ') }, /* DV NTSC */ |
101 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', 'p') }, /* DV PAL */ | |
101
0865b0aaa2af
QT AVID 4CCs patch by ("Sebastien Bechet" <s dot bechet at av7 dot net>) (not tested)
mmu_man
parents:
85
diff
changeset
|
102 /* { CODEC_ID_DVVIDEO, MKTAG('A', 'V', 'd', 'v') }, *//* AVID dv */ |
124 | 103 { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') }, /* On2 VP3 */ |
266
8bb470d85249
New demuxers: Sega FILM/CPK, Westwood VQA & AUD; new decoders: MS RLE &
tmmm
parents:
258
diff
changeset
|
104 { CODEC_ID_RPZA, MKTAG('r', 'p', 'z', 'a') }, /* Apple Video (RPZA) */ |
8bb470d85249
New demuxers: Sega FILM/CPK, Westwood VQA & AUD; new decoders: MS RLE &
tmmm
parents:
258
diff
changeset
|
105 { CODEC_ID_CINEPAK, MKTAG('c', 'v', 'i', 'd') }, /* Cinepak */ |
301 | 106 { CODEC_ID_8BPS, MKTAG('8', 'B', 'P', 'S') }, /* Planar RGB (8BPS) */ |
302
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
107 { CODEC_ID_SMC, MKTAG('s', 'm', 'c', ' ') }, /* Apple Graphics (SMC) */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
108 { CODEC_ID_NONE, 0 }, |
0 | 109 }; |
110 | |
111 static const CodecTag mov_audio_tags[] = { | |
112 /* { CODEC_ID_PCM_S16BE, MKTAG('N', 'O', 'N', 'E') }, *//* uncompressed */ | |
113 { CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's') }, /* 16 bits */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
114 /* { CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's') },*/ /* 8 bits */ |
118 | 115 { CODEC_ID_PCM_U8, MKTAG('r', 'a', 'w', ' ') }, /* 8 bits unsigned */ |
0 | 116 { CODEC_ID_PCM_S16LE, MKTAG('s', 'o', 'w', 't') }, /* */ |
117 { CODEC_ID_PCM_MULAW, MKTAG('u', 'l', 'a', 'w') }, /* */ | |
118 { CODEC_ID_PCM_ALAW, MKTAG('a', 'l', 'a', 'w') }, /* */ | |
119 { CODEC_ID_ADPCM_IMA_QT, MKTAG('i', 'm', 'a', '4') }, /* IMA-4 ADPCM */ | |
120 { CODEC_ID_MACE3, MKTAG('M', 'A', 'C', '3') }, /* Macintosh Audio Compression and Expansion 3:1 */ | |
121 { CODEC_ID_MACE6, MKTAG('M', 'A', 'C', '6') }, /* Macintosh Audio Compression and Expansion 6:1 */ | |
122 | |
123 { CODEC_ID_MP2, MKTAG('.', 'm', 'p', '3') }, /* MPEG layer 3 */ /* sample files at http://www.3ivx.com/showcase.html use this tag */ | |
124 { CODEC_ID_MP2, 0x6D730055 }, /* MPEG layer 3 */ | |
125 { CODEC_ID_MP2, 0x5500736D }, /* MPEG layer 3 *//* XXX: check endianness */ | |
126 /* { CODEC_ID_OGG_VORBIS, MKTAG('O', 'g', 'g', 'S') }, *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */ | |
127 /* MP4 tags */ | |
286
eccf0c3e3289
Using the extension m4a for audio only MPEG-4 files is increasingly
michael
parents:
266
diff
changeset
|
128 { CODEC_ID_MPEG4AAC, MKTAG('m', 'p', '4', 'a') }, /* MPEG-4 AAC */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
129 /* The standard for mpeg4 audio is still not normalised AFAIK anyway */ |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
130 { CODEC_ID_AMR_NB, MKTAG('s', 'a', 'm', 'r') }, /* AMR-NB 3gp */ |
258
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
131 { CODEC_ID_AMR_WB, MKTAG('s', 'a', 'w', 'b') }, /* AMR-WB 3gp */ |
289 | 132 { CODEC_ID_AC3, MKTAG('m', 's', 0x20, 0x00) }, /* Dolby AC-3 */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
133 { CODEC_ID_NONE, 0 }, |
0 | 134 }; |
135 | |
136 /* the QuickTime file format is quite convoluted... | |
137 * it has lots of index tables, each indexing something in another one... | |
138 * Here we just use what is needed to read the chunks | |
139 */ | |
140 | |
141 typedef struct MOV_sample_to_chunk_tbl { | |
142 long first; | |
143 long count; | |
144 long id; | |
145 } MOV_sample_to_chunk_tbl; | |
146 | |
118 | 147 typedef struct { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
148 uint32_t type; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
149 int64_t offset; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
150 int64_t size; /* total size (excluding the size and type fields) */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
151 } MOV_atom_t; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
152 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
153 typedef struct { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
154 int seed; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
155 int flags; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
156 int size; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
157 void* clrs; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
158 } MOV_ctab_t; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
159 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
160 typedef struct { |
118 | 161 uint8_t version; |
162 uint32_t flags; // 24bit | |
163 | |
164 /* 0x03 ESDescrTag */ | |
165 uint16_t es_id; | |
166 #define MP4ODescrTag 0x01 | |
167 #define MP4IODescrTag 0x02 | |
168 #define MP4ESDescrTag 0x03 | |
169 #define MP4DecConfigDescrTag 0x04 | |
170 #define MP4DecSpecificDescrTag 0x05 | |
171 #define MP4SLConfigDescrTag 0x06 | |
172 #define MP4ContentIdDescrTag 0x07 | |
173 #define MP4SupplContentIdDescrTag 0x08 | |
174 #define MP4IPIPtrDescrTag 0x09 | |
175 #define MP4IPMPPtrDescrTag 0x0A | |
176 #define MP4IPMPDescrTag 0x0B | |
177 #define MP4RegistrationDescrTag 0x0D | |
178 #define MP4ESIDIncDescrTag 0x0E | |
179 #define MP4ESIDRefDescrTag 0x0F | |
180 #define MP4FileIODescrTag 0x10 | |
181 #define MP4FileODescrTag 0x11 | |
182 #define MP4ExtProfileLevelDescrTag 0x13 | |
183 #define MP4ExtDescrTagsStart 0x80 | |
184 #define MP4ExtDescrTagsEnd 0xFE | |
185 uint8_t stream_priority; | |
186 | |
187 /* 0x04 DecConfigDescrTag */ | |
188 uint8_t object_type_id; | |
189 uint8_t stream_type; | |
190 /* XXX: really streamType is | |
191 * only 6bit, followed by: | |
192 * 1bit upStream | |
193 * 1bit reserved | |
194 */ | |
195 uint32_t buffer_size_db; // 24 | |
196 uint32_t max_bitrate; | |
197 uint32_t avg_bitrate; | |
198 | |
199 /* 0x05 DecSpecificDescrTag */ | |
200 uint8_t decoder_cfg_len; | |
201 uint8_t *decoder_cfg; | |
202 | |
203 /* 0x06 SLConfigDescrTag */ | |
204 uint8_t sl_config_len; | |
205 uint8_t *sl_config; | |
206 } MOV_esds_t; | |
207 | |
121 | 208 struct MOVParseTableEntry; |
209 | |
0 | 210 typedef struct MOVStreamContext { |
211 int ffindex; /* the ffmpeg stream id */ | |
212 int is_ff_stream; /* Is this stream presented to ffmpeg ? i.e. is this an audio or video stream ? */ | |
213 long next_chunk; | |
214 long chunk_count; | |
65 | 215 int64_t *chunk_offsets; |
0 | 216 long sample_to_chunk_sz; |
217 MOV_sample_to_chunk_tbl *sample_to_chunk; | |
218 long sample_to_chunk_index; | |
219 long sample_size; | |
220 long sample_count; | |
221 long *sample_sizes; | |
118 | 222 int time_scale; |
0 | 223 long current_sample; |
224 long left_in_chunk; /* how many samples before next chunk */ | |
225 /* specific MPEG4 header which is added at the beginning of the stream */ | |
226 int header_len; | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
227 uint8_t *header_data; |
118 | 228 MOV_esds_t esds; |
0 | 229 } MOVStreamContext; |
230 | |
231 typedef struct MOVContext { | |
232 int mp4; /* set to 1 as soon as we are sure that the file is an .mp4 file (even some header parsing depends on this) */ | |
233 AVFormatContext *fc; | |
118 | 234 int time_scale; |
235 int duration; /* duration of the longest track */ | |
0 | 236 int found_moov; /* when both 'moov' and 'mdat' sections has been found */ |
237 int found_mdat; /* we suppose we have enough data to read the file */ | |
65 | 238 int64_t mdat_size; |
239 int64_t mdat_offset; | |
0 | 240 int total_streams; |
241 /* some streams listed here aren't presented to the ffmpeg API, since they aren't either video nor audio | |
242 * but we need the info to be able to skip data from those streams in the 'mdat' section | |
243 */ | |
244 MOVStreamContext *streams[MAX_STREAMS]; | |
118 | 245 |
65 | 246 int64_t next_chunk_offset; |
118 | 247 MOVStreamContext *partial; /* != 0 : there is still to read in the current chunk */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
248 int ctab_size; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
249 MOV_ctab_t **ctab; /* color tables */ |
121 | 250 const struct MOVParseTableEntry *parse_table; /* could be eventually used to change the table */ |
251 /* NOTE: for recursion save to/ restore from local variable! */ | |
302
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
252 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
253 AVPaletteControl palette_control; |
0 | 254 } MOVContext; |
255 | |
256 | |
257 /* XXX: it's the first time I make a recursive parser I think... sorry if it's ugly :P */ | |
258 | |
259 /* those functions parse an atom */ | |
260 /* return code: | |
261 1: found what I wanted, exit | |
262 0: continue to parse next atom | |
263 -1: error occured, exit | |
264 */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
265 typedef int (*mov_parse_function)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom); |
0 | 266 |
267 /* links atom IDs to parse functions */ | |
268 typedef struct MOVParseTableEntry { | |
65 | 269 uint32_t type; |
0 | 270 mov_parse_function func; |
271 } MOVParseTableEntry; | |
272 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
273 #ifdef DEBUG |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
274 /* |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
275 * XXX: static sux, even more in a multithreaded environment... |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
276 * Avoid them. This is here just to help debugging. |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
277 */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
278 static int debug_indent = 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
279 void print_atom(const char *str, MOV_atom_t atom) |
0 | 280 { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
281 unsigned int tag, i; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
282 tag = (unsigned int) atom.type; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
283 i=debug_indent; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
284 if(tag == 0) tag = MKTAG('N', 'U', 'L', 'L'); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
285 while(i--) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
286 printf("|"); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
287 printf("parse:"); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
288 printf(" %s: tag=%c%c%c%c offset=0x%x size=0x%x\n", |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
289 str, tag & 0xff, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
290 (tag >> 8) & 0xff, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
291 (tag >> 16) & 0xff, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
292 (tag >> 24) & 0xff, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
293 (unsigned int)atom.offset, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
294 (unsigned int)atom.size); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
295 assert((unsigned int)atom.size < 0x7fffffff);// catching errors |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
296 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
297 #else |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
298 #define print_atom(a,b) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
299 #endif |
121 | 300 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
301 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
302 static int mov_read_leaf(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
303 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
304 print_atom("leaf", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
305 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
306 if (atom.size>1) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
307 url_fskip(pb, atom.size); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
308 /* url_seek(pb, atom_offset+atom.size, SEEK_SET); */ |
0 | 309 return 0; |
310 } | |
311 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
312 static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0 | 313 { |
121 | 314 int64_t total_size = 0; |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
315 MOV_atom_t a; |
0 | 316 int i; |
317 int err = 0; | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
318 |
0 | 319 #ifdef DEBUG |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
320 print_atom("default", atom); |
0 | 321 debug_indent++; |
322 #endif | |
118 | 323 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
324 a.offset = atom.offset; |
0 | 325 |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
326 if (atom.size < 0) |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
327 atom.size = 0x7fffffffffffffffLL; |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
328 while(((total_size + 8) < atom.size) && !url_feof(pb) && !err) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
329 a.size = atom.size; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
330 a.type=0L; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
331 if(atom.size >= 8) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
332 a.size = get_be32(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
333 a.type = get_le32(pb); |
0 | 334 } |
118 | 335 total_size += 8; |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
336 a.offset += 8; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
337 //printf("type: %08x %.4s sz: %Lx %Lx %Lx\n", type, (char*)&type, size, atom.size, total_size); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
338 if (a.size == 1) { /* 64 bit extended size */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
339 a.size = get_be64(pb) - 8; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
340 a.offset += 8; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
341 total_size += 8; |
0 | 342 } |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
343 if (a.size == 0) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
344 a.size = atom.size - total_size; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
345 if (a.size <= 8) |
118 | 346 break; |
347 } | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
348 for (i = 0; c->parse_table[i].type != 0L |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
349 && c->parse_table[i].type != a.type; i++) |
118 | 350 /* empty */; |
351 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
352 a.size -= 8; |
0 | 353 // printf(" i=%ld\n", i); |
121 | 354 if (c->parse_table[i].type == 0) { /* skip leaf atoms data */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
355 // url_seek(pb, atom.offset+atom.size, SEEK_SET); |
0 | 356 #ifdef DEBUG |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
357 print_atom("unknown", a); |
0 | 358 #endif |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
359 url_fskip(pb, a.size); |
121 | 360 } else { |
361 #ifdef DEBUG | |
362 //char b[5] = { type & 0xff, (type >> 8) & 0xff, (type >> 16) & 0xff, (type >> 24) & 0xff, 0 }; | |
363 //print_atom(b, type, offset, size); | |
364 #endif | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
365 err = (c->parse_table[i].func)(c, pb, a); |
121 | 366 } |
0 | 367 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
368 a.offset += a.size; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
369 total_size += a.size; |
0 | 370 } |
371 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
372 if (!err && total_size < atom.size && atom.size < 0x7ffff) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
373 //printf("RESET %Ld %Ld err:%d\n", atom.size, total_size, err); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
374 url_fskip(pb, atom.size - total_size); |
118 | 375 } |
376 | |
0 | 377 #ifdef DEBUG |
378 debug_indent--; | |
379 #endif | |
380 return err; | |
381 } | |
382 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
383 static int mov_read_ctab(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0 | 384 { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
385 unsigned int len; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
386 MOV_ctab_t *t; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
387 //url_fskip(pb, atom.size); // for now |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
388 c->ctab = av_realloc(c->ctab, ++c->ctab_size); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
389 t = c->ctab[c->ctab_size]; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
390 t->seed = get_be32(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
391 t->flags = get_be16(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
392 t->size = get_be16(pb) + 1; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
393 len = 2 * t->size * 4; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
394 if (len > 0) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
395 t->clrs = av_malloc(len); // 16bit A R G B |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
396 if (t->clrs) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
397 get_buffer(pb, t->clrs, len); |
0 | 398 } |
118 | 399 |
0 | 400 return 0; |
401 } | |
402 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
403 static int mov_read_hdlr(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0 | 404 { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
405 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; |
0 | 406 int len = 0; |
65 | 407 uint32_t type; |
408 uint32_t ctype; | |
121 | 409 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
410 print_atom("hdlr", atom); |
0 | 411 |
412 get_byte(pb); /* version */ | |
413 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
414 | |
415 /* component type */ | |
416 ctype = get_le32(pb); | |
417 type = get_le32(pb); /* component subtype */ | |
418 | |
419 #ifdef DEBUG | |
420 printf("ctype= %c%c%c%c (0x%08lx)\n", *((char *)&ctype), ((char *)&ctype)[1], ((char *)&ctype)[2], ((char *)&ctype)[3], (long) ctype); | |
421 printf("stype= %c%c%c%c\n", *((char *)&type), ((char *)&type)[1], ((char *)&type)[2], ((char *)&type)[3]); | |
422 #endif | |
423 #ifdef DEBUG | |
424 /* XXX: yeah this is ugly... */ | |
425 if(ctype == MKTAG('m', 'h', 'l', 'r')) { /* MOV */ | |
426 if(type == MKTAG('v', 'i', 'd', 'e')) | |
427 puts("hdlr: vide"); | |
428 else if(type == MKTAG('s', 'o', 'u', 'n')) | |
429 puts("hdlr: soun"); | |
430 } else if(ctype == 0) { /* MP4 */ | |
431 if(type == MKTAG('v', 'i', 'd', 'e')) | |
432 puts("hdlr: vide"); | |
433 else if(type == MKTAG('s', 'o', 'u', 'n')) | |
434 puts("hdlr: soun"); | |
435 else if(type == MKTAG('o', 'd', 's', 'm')) | |
436 puts("hdlr: odsm"); | |
437 else if(type == MKTAG('s', 'd', 's', 'm')) | |
438 puts("hdlr: sdsm"); | |
439 } else puts("hdlr: meta"); | |
440 #endif | |
441 | |
442 if(ctype == MKTAG('m', 'h', 'l', 'r')) { /* MOV */ | |
443 /* helps parsing the string hereafter... */ | |
444 c->mp4 = 0; | |
445 if(type == MKTAG('v', 'i', 'd', 'e')) | |
446 st->codec.codec_type = CODEC_TYPE_VIDEO; | |
447 else if(type == MKTAG('s', 'o', 'u', 'n')) | |
448 st->codec.codec_type = CODEC_TYPE_AUDIO; | |
449 } else if(ctype == 0) { /* MP4 */ | |
450 /* helps parsing the string hereafter... */ | |
451 c->mp4 = 1; | |
452 if(type == MKTAG('v', 'i', 'd', 'e')) | |
453 st->codec.codec_type = CODEC_TYPE_VIDEO; | |
454 else if(type == MKTAG('s', 'o', 'u', 'n')) | |
455 st->codec.codec_type = CODEC_TYPE_AUDIO; | |
456 } | |
457 get_be32(pb); /* component manufacture */ | |
458 get_be32(pb); /* component flags */ | |
459 get_be32(pb); /* component flags mask */ | |
460 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
461 if(atom.size <= 24) |
0 | 462 return 0; /* nothing left to read */ |
463 /* XXX: MP4 uses a C string, not a pascal one */ | |
464 /* component name */ | |
465 | |
466 if(c->mp4) { | |
467 /* .mp4: C string */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
468 while(get_byte(pb) && (++len < (atom.size - 24))); |
0 | 469 } else { |
470 /* .mov: PASCAL string */ | |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
471 #ifdef DEBUG |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
472 char* buf; |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
473 #endif |
0 | 474 len = get_byte(pb); |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
475 #ifdef DEBUG |
121 | 476 buf = (uint8_t*) av_malloc(len+1); |
477 if (buf) { | |
478 get_buffer(pb, buf, len); | |
479 buf[len] = '\0'; | |
480 printf("**buf='%s'\n", buf); | |
481 av_free(buf); | |
482 } else | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
483 #endif |
121 | 484 url_fskip(pb, len); |
0 | 485 } |
118 | 486 |
0 | 487 return 0; |
488 } | |
489 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
490 static int mov_mp4_read_descr_len(ByteIOContext *pb) |
0 | 491 { |
118 | 492 int len = 0; |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
493 int count = 4; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
494 while (count--) { |
118 | 495 int c = get_byte(pb); |
496 len = (len << 7) | (c & 0x7f); | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
497 if (!(c & 0x80)) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
498 break; |
0 | 499 } |
500 return len; | |
501 } | |
502 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
503 static int mov_mp4_read_descr(ByteIOContext *pb, int *tag) |
0 | 504 { |
505 int len; | |
506 *tag = get_byte(pb); | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
507 len = mov_mp4_read_descr_len(pb); |
0 | 508 #ifdef DEBUG |
509 printf("MPEG4 description: tag=0x%02x len=%d\n", *tag, len); | |
510 #endif | |
511 return len; | |
512 } | |
513 | |
118 | 514 static inline unsigned int get_be24(ByteIOContext *s) |
515 { | |
516 unsigned int val; | |
517 val = get_byte(s) << 16; | |
518 val |= get_byte(s) << 8; | |
519 val |= get_byte(s); | |
520 return val; | |
521 } | |
522 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
523 static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
118 | 524 { |
525 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
526 MOVStreamContext *sc = (MOVStreamContext *)st->priv_data; | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
527 int64_t start_pos = url_ftell(pb); |
118 | 528 int tag, len; |
121 | 529 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
530 print_atom("esds", atom); |
118 | 531 |
532 /* Well, broken but suffisant for some MP4 streams */ | |
533 get_be32(pb); /* version + flags */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
534 len = mov_mp4_read_descr(pb, &tag); |
118 | 535 if (tag == MP4ESDescrTag) { |
536 get_be16(pb); /* ID */ | |
537 get_byte(pb); /* priority */ | |
538 } else | |
539 get_be16(pb); /* ID */ | |
540 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
541 len = mov_mp4_read_descr(pb, &tag); |
118 | 542 if (tag == MP4DecConfigDescrTag) { |
543 sc->esds.object_type_id = get_byte(pb); | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
544 sc->esds.stream_type = get_byte(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
545 sc->esds.buffer_size_db = get_be24(pb); |
118 | 546 sc->esds.max_bitrate = get_be32(pb); |
547 sc->esds.avg_bitrate = get_be32(pb); | |
548 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
549 len = mov_mp4_read_descr(pb, &tag); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
550 //printf("LEN %d TAG %d m:%d a:%d\n", len, tag, sc->esds.max_bitrate, sc->esds.avg_bitrate); |
118 | 551 if (tag == MP4DecSpecificDescrTag) { |
552 #ifdef DEBUG | |
553 printf("Specific MPEG4 header len=%d\n", len); | |
554 #endif | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
555 st->codec.extradata = (uint8_t*) av_mallocz(len); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
556 if (st->codec.extradata) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
557 get_buffer(pb, st->codec.extradata, len); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
558 st->codec.extradata_size = len; |
118 | 559 } |
560 } | |
561 } | |
562 /* in any case, skip garbage */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
563 url_fskip(pb, atom.size - ((url_ftell(pb) - start_pos))); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
564 return 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
565 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
566 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
567 /* this atom contains actual media data */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
568 static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
569 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
570 print_atom("mdat", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
571 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
572 if(atom.size == 0) /* wrong one (MP4) */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
573 return 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
574 c->found_mdat=1; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
575 c->mdat_offset = atom.offset; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
576 c->mdat_size = atom.size; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
577 if(c->found_moov) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
578 return 1; /* found both, just go */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
579 url_fskip(pb, atom.size); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
580 return 0; /* now go for moov */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
581 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
582 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
583 /* this atom should contain all header atoms */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
584 static int mov_read_moov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
585 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
586 int err; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
587 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
588 print_atom("moov", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
589 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
590 err = mov_read_default(c, pb, atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
591 /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
592 /* so we don't parse the whole file if over a network */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
593 c->found_moov=1; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
594 if(c->found_mdat) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
595 return 1; /* found both, just go */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
596 return 0; /* now go for mdat */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
597 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
598 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
599 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
600 static int mov_read_mdhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
601 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
602 print_atom("mdhd", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
603 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
604 get_byte(pb); /* version */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
605 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
606 get_byte(pb); get_byte(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
607 get_byte(pb); /* flags */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
608 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
609 get_be32(pb); /* creation time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
610 get_be32(pb); /* modification time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
611 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
612 c->streams[c->total_streams]->time_scale = get_be32(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
613 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
614 #ifdef DEBUG |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
615 printf("track[%i].time_scale = %i\n", c->fc->nb_streams-1, c->streams[c->total_streams]->time_scale); /* time scale */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
616 #endif |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
617 get_be32(pb); /* duration */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
618 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
619 get_be16(pb); /* language */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
620 get_be16(pb); /* quality */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
621 |
118 | 622 return 0; |
623 } | |
624 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
625 static int mov_read_mvhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
626 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
627 print_atom("mvhd", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
628 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
629 get_byte(pb); /* version */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
630 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
631 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
632 get_be32(pb); /* creation time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
633 get_be32(pb); /* modification time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
634 c->time_scale = get_be32(pb); /* time scale */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
635 #ifdef DEBUG |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
636 printf("time scale = %i\n", c->time_scale); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
637 #endif |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
638 c->duration = get_be32(pb); /* duration */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
639 get_be32(pb); /* preferred scale */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
640 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
641 get_be16(pb); /* preferred volume */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
642 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
643 url_fskip(pb, 10); /* reserved */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
644 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
645 url_fskip(pb, 36); /* display matrix */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
646 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
647 get_be32(pb); /* preview time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
648 get_be32(pb); /* preview duration */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
649 get_be32(pb); /* poster time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
650 get_be32(pb); /* selection time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
651 get_be32(pb); /* selection duration */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
652 get_be32(pb); /* current time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
653 get_be32(pb); /* next track ID */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
654 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
655 return 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
656 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
657 |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
658 static int mov_read_smi(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
659 { |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
660 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
661 |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
662 // currently SVQ3 decoder expect full STSD header - so let's fake it |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
663 // this should be fixed and just SMI header should be passed |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
664 av_free(st->codec.extradata); |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
665 st->codec.extradata_size = 0x5a + atom.size; |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
666 st->codec.extradata = (uint8_t*) av_mallocz(st->codec.extradata_size); |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
667 |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
668 if (st->codec.extradata) { |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
669 strcpy(st->codec.extradata, "SVQ3"); // fake |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
670 get_buffer(pb, st->codec.extradata + 0x5a, atom.size); |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
671 //printf("Reading SMI %Ld %s\n", atom.size, (char*)st->codec.extradata + 0x5a); |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
672 } else |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
673 url_fskip(pb, atom.size); |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
674 |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
675 return 0; |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
676 } |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
677 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
678 static int mov_read_stco(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0 | 679 { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
680 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
681 MOVStreamContext *sc = (MOVStreamContext *)st->priv_data; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
682 int entries, i; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
683 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
684 print_atom("stco", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
685 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
686 get_byte(pb); /* version */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
687 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
688 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
689 entries = get_be32(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
690 sc->chunk_count = entries; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
691 sc->chunk_offsets = (int64_t*) av_malloc(entries * sizeof(int64_t)); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
692 if (!sc->chunk_offsets) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
693 return -1; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
694 if (atom.type == MKTAG('s', 't', 'c', 'o')) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
695 for(i=0; i<entries; i++) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
696 sc->chunk_offsets[i] = get_be32(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
697 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
698 } else if (atom.type == MKTAG('c', 'o', '6', '4')) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
699 for(i=0; i<entries; i++) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
700 sc->chunk_offsets[i] = get_be64(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
701 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
702 } else |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
703 return -1; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
704 #ifdef DEBUG |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
705 /* |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
706 for(i=0; i<entries; i++) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
707 printf("chunk offset=0x%Lx\n", sc->chunk_offsets[i]); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
708 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
709 */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
710 #endif |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
711 return 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
712 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
713 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
714 static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
715 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
716 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; |
131 | 717 //MOVStreamContext *sc = (MOVStreamContext *)st->priv_data; |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
718 int entries, frames_per_sample; |
65 | 719 uint32_t format; |
121 | 720 |
302
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
721 /* for palette traversal */ |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
722 int color_depth; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
723 int color_start; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
724 int color_count; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
725 int color_end; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
726 int color_index; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
727 int color_dec; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
728 int color_greyscale; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
729 unsigned char *color_table; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
730 int j; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
731 unsigned char r, g, b; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
732 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
733 print_atom("stsd", atom); |
0 | 734 |
735 get_byte(pb); /* version */ | |
736 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
737 | |
738 entries = get_be32(pb); | |
739 | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
740 while(entries--) { //Parsing Sample description table |
121 | 741 enum CodecID id; |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
742 int size = get_be32(pb); /* size */ |
0 | 743 format = get_le32(pb); /* data format */ |
118 | 744 |
0 | 745 get_be32(pb); /* reserved */ |
746 get_be16(pb); /* reserved */ | |
747 get_be16(pb); /* index */ | |
748 | |
749 /* for MPEG4: set codec type by looking for it */ | |
750 id = codec_get_id(mov_video_tags, format); | |
751 if (id >= 0) { | |
752 AVCodec *codec; | |
121 | 753 codec = avcodec_find_decoder(id); |
0 | 754 if (codec) |
121 | 755 st->codec.codec_type = codec->type; |
0 | 756 } |
757 #ifdef DEBUG | |
118 | 758 printf("size=%d 4CC= %c%c%c%c codec_type=%d\n", |
759 size, | |
0 | 760 (format >> 0) & 0xff, |
761 (format >> 8) & 0xff, | |
762 (format >> 16) & 0xff, | |
763 (format >> 24) & 0xff, | |
764 st->codec.codec_type); | |
765 #endif | |
118 | 766 st->codec.codec_tag = format; |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
767 if(st->codec.codec_type==CODEC_TYPE_VIDEO) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
768 MOV_atom_t a = { 0, 0, 0 }; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
769 st->codec.codec_id = id; |
0 | 770 get_be16(pb); /* version */ |
771 get_be16(pb); /* revision level */ | |
772 get_be32(pb); /* vendor */ | |
773 get_be32(pb); /* temporal quality */ | |
774 get_be32(pb); /* spacial quality */ | |
775 st->codec.width = get_be16(pb); /* width */ | |
776 st->codec.height = get_be16(pb); /* height */ | |
777 #if 1 | |
778 if (st->codec.codec_id == CODEC_ID_MPEG4) { | |
779 /* in some MPEG4 the width/height are not correct, so | |
780 we ignore this info */ | |
781 st->codec.width = 0; | |
782 st->codec.height = 0; | |
783 } | |
784 #endif | |
785 get_be32(pb); /* horiz resolution */ | |
786 get_be32(pb); /* vert resolution */ | |
787 get_be32(pb); /* data size, always 0 */ | |
118 | 788 frames_per_sample = get_be16(pb); /* frames per samples */ |
0 | 789 #ifdef DEBUG |
790 printf("frames/samples = %d\n", frames_per_sample); | |
791 #endif | |
121 | 792 get_buffer(pb, (uint8_t *)st->codec.codec_name, 32); /* codec name */ |
0 | 793 |
118 | 794 st->codec.bits_per_sample = get_be16(pb); /* depth */ |
795 st->codec.color_table_id = get_be16(pb); /* colortable id */ | |
796 | |
147 | 797 /* These are set in mov_read_stts and might already be set! |
85
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
65
diff
changeset
|
798 st->codec.frame_rate = 25; |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
65
diff
changeset
|
799 st->codec.frame_rate_base = 1; |
147 | 800 */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
801 size -= (16+8*4+2+32+2*2); |
118 | 802 #if 0 |
803 while (size >= 8) { | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
804 MOV_atom_t a; |
65 | 805 int64_t start_pos; |
118 | 806 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
807 a.size = get_be32(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
808 a.type = get_le32(pb); |
118 | 809 size -= 8; |
0 | 810 #ifdef DEBUG |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
811 printf("VIDEO: atom_type=%c%c%c%c atom.size=%Ld size_left=%d\n", |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
812 (a.type >> 0) & 0xff, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
813 (a.type >> 8) & 0xff, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
814 (a.type >> 16) & 0xff, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
815 (a.type >> 24) & 0xff, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
816 a.size, size); |
0 | 817 #endif |
818 start_pos = url_ftell(pb); | |
819 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
820 switch(a.type) { |
0 | 821 case MKTAG('e', 's', 'd', 's'): |
822 { | |
823 int tag, len; | |
824 /* Well, broken but suffisant for some MP4 streams */ | |
825 get_be32(pb); /* version + flags */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
826 len = mov_mp4_read_descr(pb, &tag); |
0 | 827 if (tag == 0x03) { |
828 /* MP4ESDescrTag */ | |
829 get_be16(pb); /* ID */ | |
830 get_byte(pb); /* priority */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
831 len = mov_mp4_read_descr(pb, &tag); |
0 | 832 if (tag != 0x04) |
833 goto fail; | |
834 /* MP4DecConfigDescrTag */ | |
835 get_byte(pb); /* objectTypeId */ | |
836 get_be32(pb); /* streamType + buffer size */ | |
118 | 837 get_be32(pb); /* max bit rate */ |
0 | 838 get_be32(pb); /* avg bit rate */ |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
839 len = mov_mp4_read_descr(pb, &tag); |
0 | 840 if (tag != 0x05) |
841 goto fail; | |
842 /* MP4DecSpecificDescrTag */ | |
843 #ifdef DEBUG | |
844 printf("Specific MPEG4 header len=%d\n", len); | |
845 #endif | |
846 sc->header_data = av_mallocz(len); | |
847 if (sc->header_data) { | |
848 get_buffer(pb, sc->header_data, len); | |
118 | 849 sc->header_len = len; |
0 | 850 } |
851 } | |
852 /* in any case, skip garbage */ | |
853 } | |
854 break; | |
855 default: | |
856 break; | |
857 } | |
118 | 858 fail: |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
859 printf("ATOMENEWSIZE %Ld %d\n", atom.size, url_ftell(pb) - start_pos); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
860 if (atom.size > 8) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
861 url_fskip(pb, (atom.size - 8) - |
118 | 862 ((url_ftell(pb) - start_pos))); |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
863 size -= atom.size - 8; |
118 | 864 } |
865 } | |
0 | 866 if (size > 0) { |
867 /* unknown extension */ | |
868 url_fskip(pb, size); | |
869 } | |
118 | 870 #else |
302
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
871 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
872 /* figure out the palette situation */ |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
873 color_depth = st->codec.bits_per_sample & 0x1F; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
874 color_greyscale = st->codec.bits_per_sample & 0x20; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
875 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
876 /* if the depth is 2, 4, or 8 bpp, file is palettized */ |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
877 if ((color_depth == 2) || (color_depth == 4) || |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
878 (color_depth == 8)) { |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
879 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
880 if (color_greyscale) { |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
881 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
882 /* compute the greyscale palette */ |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
883 color_count = 1 << color_depth; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
884 color_index = 255; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
885 color_dec = 256 / (color_count - 1); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
886 for (j = 0; j < color_count; j++) { |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
887 r = g = b = color_index; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
888 c->palette_control.palette[j] = |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
889 (r << 16) | (g << 8) | (b); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
890 color_index -= color_dec; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
891 if (color_index < 0) |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
892 color_index = 0; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
893 } |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
894 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
895 } else if (st->codec.color_table_id & 0x08) { |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
896 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
897 /* if flag bit 3 is set, use the default palette */ |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
898 color_count = 1 << color_depth; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
899 if (color_depth == 2) |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
900 color_table = qt_default_palette_4; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
901 else if (color_depth == 4) |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
902 color_table = qt_default_palette_16; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
903 else |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
904 color_table = qt_default_palette_256; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
905 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
906 for (j = 0; j < color_count; j++) { |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
907 r = color_table[j * 4 + 0]; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
908 g = color_table[j * 4 + 1]; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
909 b = color_table[j * 4 + 2]; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
910 c->palette_control.palette[j] = |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
911 (r << 16) | (g << 8) | (b); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
912 } |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
913 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
914 } else { |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
915 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
916 /* load the palette from the file */ |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
917 color_start = get_be32(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
918 color_count = get_be16(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
919 color_end = get_be16(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
920 for (j = color_start; j <= color_end; j++) { |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
921 /* each R, G, or B component is 16 bits; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
922 * only use the top 8 bits; skip alpha bytes |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
923 * up front */ |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
924 get_byte(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
925 get_byte(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
926 r = get_byte(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
927 get_byte(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
928 g = get_byte(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
929 get_byte(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
930 b = get_byte(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
931 get_byte(pb); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
932 c->palette_control.palette[j] = |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
933 (r << 16) | (g << 8) | (b); |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
934 } |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
935 } |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
936 |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
937 st->codec.palctrl = &c->palette_control; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
938 st->codec.palctrl->palette_changed = 1; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
939 } else |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
940 st->codec.palctrl = NULL; |
6949df67922d
added palette support to the QT demuxer; registered SMC video decoder
melanson
parents:
301
diff
changeset
|
941 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
942 a.size = size; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
943 mov_read_default(c, pb, a); |
118 | 944 #endif |
945 } else { | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
946 st->codec.codec_id = codec_get_id(mov_audio_tags, format); |
258
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
947 if(st->codec.codec_id==CODEC_ID_AMR_NB || st->codec.codec_id==CODEC_ID_AMR_WB) //from TS26.244 |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
948 { |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
949 #ifdef DEBUG |
258
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
950 printf("AMR-NB or AMR-WB audio identified!!\n"); |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
951 #endif |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
952 get_be32(pb);get_be32(pb); //Reserved_8 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
953 get_be16(pb);//Reserved_2 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
954 get_be16(pb);//Reserved_2 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
955 get_be32(pb);//Reserved_4 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
956 get_be16(pb);//TimeScale |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
957 get_be16(pb);//Reserved_2 |
118 | 958 |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
959 //AMRSpecificBox.(10 bytes) |
258
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
960 |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
961 get_be32(pb); //size |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
962 get_be32(pb); //type=='damr' |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
963 get_be32(pb); //vendor |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
964 get_byte(pb); //decoder version |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
965 get_be16(pb); //mode_set |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
966 get_byte(pb); //mode_change_period |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
967 get_byte(pb); //frames_per_sample |
118 | 968 |
191 | 969 st->duration = AV_NOPTS_VALUE;//Not possible to get from this info, must count number of AMR frames |
258
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
970 if(st->codec.codec_id==CODEC_ID_AMR_NB) |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
971 { |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
972 st->codec.sample_rate=8000; |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
973 st->codec.channels=1; |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
974 } |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
975 else //AMR-WB |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
976 { |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
977 st->codec.sample_rate=16000; |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
978 st->codec.channels=1; |
59c2e84817a1
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
191
diff
changeset
|
979 } |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
980 st->codec.bits_per_sample=16; |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
981 st->codec.bit_rate=0; /*It is not possible to tell this before we have |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
982 an audio frame and even then every frame can be different*/ |
118 | 983 } |
147 | 984 else if( st->codec.codec_tag == MKTAG( 'm', 'p', '4', 's' )) |
985 { | |
986 //This is some stuff for the hint track, lets ignore it! | |
987 //Do some mp4 auto detect. | |
988 c->mp4=1; | |
989 size-=(16); | |
990 url_fskip(pb, size); /* The mp4s atom also contians a esds atom that we can skip*/ | |
991 } | |
992 else if(size>=(16+20)) | |
993 {//16 bytes read, reading atleast 20 more | |
994 #ifdef DEBUG | |
995 printf("audio size=0x%X\n",size); | |
996 #endif | |
997 uint16_t version = get_be16(pb); /* version */ | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
998 get_be16(pb); /* revision level */ |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
999 get_be32(pb); /* vendor */ |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1000 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1001 st->codec.channels = get_be16(pb); /* channel count */ |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1002 st->codec.bits_per_sample = get_be16(pb); /* sample size */ |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1003 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1004 /* handle specific s8 codec */ |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1005 get_be16(pb); /* compression id = 0*/ |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1006 get_be16(pb); /* packet size = 0 */ |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1007 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1008 st->codec.sample_rate = ((get_be32(pb) >> 16)); |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1009 //printf("CODECID %d %d %.4s\n", st->codec.codec_id, CODEC_ID_PCM_S16BE, (char*)&format); |
0 | 1010 |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1011 switch (st->codec.codec_id) { |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1012 case CODEC_ID_PCM_S16BE: |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1013 if (st->codec.bits_per_sample == 8) |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1014 st->codec.codec_id = CODEC_ID_PCM_S8; |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1015 /* fall */ |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1016 case CODEC_ID_PCM_U8: |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1017 st->codec.bit_rate = st->codec.sample_rate * 8; |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1018 break; |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1019 default: |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1020 ; |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1021 } |
147 | 1022 |
1023 //Read QT version 1 fields. In version 0 theese dont exist | |
1024 #ifdef DEBUG | |
1025 printf("version =%d mp4=%d\n",version,c->mp4); | |
1026 printf("size-(16+20+16)=%d\n",size-(16+20+16)); | |
1027 #endif | |
1028 if((version==1) && size>=(16+20+16)) | |
1029 { | |
1030 get_be32(pb); /* samples per packet */ | |
1031 get_be32(pb); /* bytes per packet */ | |
1032 get_be32(pb); /* bytes per frame */ | |
1033 get_be32(pb); /* bytes per sample */ | |
1034 if(size>(16+20+16)) | |
1035 { | |
1036 //Optional, additional atom-based fields | |
1037 #ifdef DEBUG | |
1038 printf("offest=0x%X, sizeleft=%d=0x%x,format=%c%c%c%c\n",(int)url_ftell(pb),size - (16 + 20 + 16 ),size - (16 + 20 + 16 ), | |
1039 (format >> 0) & 0xff, | |
1040 (format >> 8) & 0xff, | |
1041 (format >> 16) & 0xff, | |
1042 (format >> 24) & 0xff); | |
1043 #endif | |
1044 MOV_atom_t a = { format, url_ftell(pb), size - (16 + 20 + 16 + 8) }; | |
1045 mov_read_default(c, pb, a); | |
1046 } | |
1047 } | |
1048 else | |
1049 { | |
1050 //We should be down to 0 bytes here, but lets make sure. | |
1051 size-=(16+20); | |
1052 #ifdef DEBUG | |
1053 if(size>0) | |
1054 printf("skipping 0x%X bytes\n",size-(16+20)); | |
1055 #endif | |
1056 url_fskip(pb, size); | |
1057 } | |
1058 } | |
1059 else | |
1060 { | |
1061 size-=16; | |
1062 //Unknown size, but lets do our best and skip the rest. | |
1063 #ifdef DEBUG | |
1064 printf("Strange size, skipping 0x%X bytes\n",size); | |
1065 #endif | |
1066 url_fskip(pb, size); | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1067 } |
0 | 1068 } |
1069 } | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1070 |
0 | 1071 return 0; |
1072 } | |
1073 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1074 static int mov_read_stsc(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0 | 1075 { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1076 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1077 MOVStreamContext *sc = (MOVStreamContext *)st->priv_data; |
0 | 1078 int entries, i; |
1079 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1080 print_atom("stsc", atom); |
118 | 1081 |
0 | 1082 get_byte(pb); /* version */ |
1083 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
1084 | |
1085 entries = get_be32(pb); | |
1086 #ifdef DEBUG | |
1087 printf("track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries); | |
1088 #endif | |
1089 sc->sample_to_chunk_sz = entries; | |
121 | 1090 sc->sample_to_chunk = (MOV_sample_to_chunk_tbl*) av_malloc(entries * sizeof(MOV_sample_to_chunk_tbl)); |
1091 if (!sc->sample_to_chunk) | |
1092 return -1; | |
0 | 1093 for(i=0; i<entries; i++) { |
1094 sc->sample_to_chunk[i].first = get_be32(pb); | |
1095 sc->sample_to_chunk[i].count = get_be32(pb); | |
1096 sc->sample_to_chunk[i].id = get_be32(pb); | |
1097 #ifdef DEBUG | |
1098 /* printf("sample_to_chunk first=%ld count=%ld, id=%ld\n", sc->sample_to_chunk[i].first, sc->sample_to_chunk[i].count, sc->sample_to_chunk[i].id); */ | |
1099 #endif | |
1100 } | |
1101 return 0; | |
1102 } | |
1103 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1104 static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0 | 1105 { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1106 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1107 MOVStreamContext *sc = (MOVStreamContext *)st->priv_data; |
0 | 1108 int entries, i; |
121 | 1109 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1110 print_atom("stsz", atom); |
118 | 1111 |
0 | 1112 get_byte(pb); /* version */ |
1113 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
118 | 1114 |
0 | 1115 sc->sample_size = get_be32(pb); |
1116 entries = get_be32(pb); | |
1117 sc->sample_count = entries; | |
1118 #ifdef DEBUG | |
1119 printf("sample_size = %ld sample_count = %ld\n", sc->sample_size, sc->sample_count); | |
1120 #endif | |
1121 if(sc->sample_size) | |
1122 return 0; /* there isn't any table following */ | |
121 | 1123 sc->sample_sizes = (long*) av_malloc(entries * sizeof(long)); |
1124 if (!sc->sample_sizes) | |
1125 return -1; | |
0 | 1126 for(i=0; i<entries; i++) { |
1127 sc->sample_sizes[i] = get_be32(pb); | |
1128 #ifdef DEBUG | |
1129 /* printf("sample_sizes[]=%ld\n", sc->sample_sizes[i]); */ | |
1130 #endif | |
1131 } | |
1132 return 0; | |
1133 } | |
1134 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1135 static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0 | 1136 { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1137 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; |
131 | 1138 //MOVStreamContext *sc = (MOVStreamContext *)st->priv_data; |
0 | 1139 int entries, i; |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1140 int duration=0; |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1141 int total_sample_count=0; |
121 | 1142 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1143 print_atom("stts", atom); |
0 | 1144 |
1145 get_byte(pb); /* version */ | |
1146 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
1147 entries = get_be32(pb); | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1148 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1149 |
0 | 1150 #ifdef DEBUG |
1151 printf("track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries); | |
1152 #endif | |
1153 for(i=0; i<entries; i++) { | |
1154 int sample_duration; | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1155 int sample_count; |
0 | 1156 |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1157 sample_count=get_be32(pb); |
0 | 1158 sample_duration = get_be32(pb); |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1159 #ifdef DEBUG |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1160 printf("sample_count=%d, sample_duration=%d\n",sample_count,sample_duration); |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1161 #endif |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1162 duration+=sample_duration*sample_count; |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1163 total_sample_count+=sample_count; |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1164 |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1165 #if 0 //We calculate an average instead, needed by .mp4-files created with nec e606 3g phone |
0 | 1166 |
1167 if (!i && st->codec.codec_type==CODEC_TYPE_VIDEO) { | |
85
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
65
diff
changeset
|
1168 st->codec.frame_rate_base = sample_duration ? sample_duration : 1; |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
65
diff
changeset
|
1169 st->codec.frame_rate = c->streams[c->total_streams]->time_scale; |
0 | 1170 #ifdef DEBUG |
1171 printf("VIDEO FRAME RATE= %i (sd= %i)\n", st->codec.frame_rate, sample_duration); | |
1172 #endif | |
1173 } | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1174 #endif |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1175 } |
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1176 |
147 | 1177 #define MAX(a,b) a>b?a:b |
1178 #define MIN(a,b) a>b?b:a | |
1179 /*The stsd atom which contain codec type sometimes comes after the stts so we cannot check for codec_type*/ | |
1180 if(duration>0) | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1181 { |
147 | 1182 //Find greatest common divisor to avoid overflow using the Euclidean Algorithm... |
1183 uint32_t max=MAX(duration,total_sample_count); | |
1184 uint32_t min=MIN(duration,total_sample_count); | |
1185 uint32_t spare=max%min; | |
1186 | |
1187 while(spare!=0) | |
1188 { | |
1189 max=min; | |
1190 min=spare; | |
1191 spare=max%min; | |
1192 } | |
1193 | |
1194 duration/=min; | |
1195 total_sample_count/=min; | |
1196 | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1197 //Only support constant frame rate. But lets calculate the average. Needed by .mp4-files created with nec e606 3g phone. |
147 | 1198 //To get better precision, we use the duration as frame_rate_base |
1199 | |
1200 st->codec.frame_rate_base=duration; | |
1201 st->codec.frame_rate = c->streams[c->total_streams]->time_scale * total_sample_count; | |
1202 | |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1203 #ifdef DEBUG |
147 | 1204 printf("FRAME RATE average (video or audio)= %f (tot sample count= %i ,tot dur= %i timescale=%d)\n", (float)st->codec.frame_rate/st->codec.frame_rate_base,total_sample_count,duration,c->streams[c->total_streams]->time_scale); |
134
5cda954c6e9a
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
133
diff
changeset
|
1205 #endif |
0 | 1206 } |
147 | 1207 else |
1208 { | |
1209 st->codec.frame_rate_base = 1; | |
1210 st->codec.frame_rate = c->streams[c->total_streams]->time_scale; | |
1211 } | |
1212 #undef MAX | |
1213 #undef MIN | |
0 | 1214 return 0; |
1215 } | |
1216 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1217 static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1218 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1219 AVStream *st; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1220 MOVStreamContext *sc; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1221 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1222 print_atom("trak", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1223 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1224 st = av_new_stream(c->fc, c->fc->nb_streams); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1225 if (!st) return -2; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1226 sc = (MOVStreamContext*) av_mallocz(sizeof(MOVStreamContext)); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1227 if (!sc) { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1228 av_free(st); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1229 return -1; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1230 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1231 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1232 sc->sample_to_chunk_index = -1; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1233 st->priv_data = sc; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1234 st->codec.codec_type = CODEC_TYPE_MOV_OTHER; |
191 | 1235 st->start_time = 0; /* XXX: check */ |
1236 st->duration = (c->duration * (int64_t)AV_TIME_BASE) / c->time_scale; | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1237 c->streams[c->fc->nb_streams-1] = sc; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1238 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1239 return mov_read_default(c, pb, atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1240 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1241 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1242 static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1243 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1244 AVStream *st; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1245 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1246 print_atom("tkhd", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1247 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1248 st = c->fc->streams[c->fc->nb_streams-1]; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1249 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1250 get_byte(pb); /* version */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1251 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1252 get_byte(pb); get_byte(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1253 get_byte(pb); /* flags */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1254 /* |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1255 MOV_TRACK_ENABLED 0x0001 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1256 MOV_TRACK_IN_MOVIE 0x0002 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1257 MOV_TRACK_IN_PREVIEW 0x0004 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1258 MOV_TRACK_IN_POSTER 0x0008 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1259 */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1260 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1261 get_be32(pb); /* creation time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1262 get_be32(pb); /* modification time */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1263 st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1264 get_be32(pb); /* reserved */ |
191 | 1265 st->start_time = 0; /* check */ |
1266 st->duration = (get_be32(pb) * (int64_t)AV_TIME_BASE) / c->time_scale; /* duration */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1267 get_be32(pb); /* reserved */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1268 get_be32(pb); /* reserved */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1269 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1270 get_be16(pb); /* layer */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1271 get_be16(pb); /* alternate group */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1272 get_be16(pb); /* volume */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1273 get_be16(pb); /* reserved */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1274 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1275 url_fskip(pb, 36); /* display matrix */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1276 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1277 /* those are fixed-point */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1278 st->codec.width = get_be32(pb) >> 16; /* track width */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1279 st->codec.height = get_be32(pb) >> 16; /* track height */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1280 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1281 return 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1282 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1283 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1284 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1285 /* like the files created with Adobe Premiere 5.0, for samples see */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1286 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1287 static int mov_read_wide(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1288 { |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1289 int err; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1290 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1291 #ifdef DEBUG |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1292 print_atom("wide", atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1293 debug_indent++; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1294 #endif |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1295 if (atom.size < 8) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1296 return 0; /* continue */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1297 if (get_be32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1298 url_fskip(pb, atom.size - 4); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1299 return 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1300 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1301 atom.type = get_le32(pb); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1302 atom.offset += 8; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1303 atom.size -= 8; |
131 | 1304 if (atom.type != MKTAG('m', 'd', 'a', 't')) { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1305 url_fskip(pb, atom.size); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1306 return 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1307 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1308 err = mov_read_mdat(c, pb, atom); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1309 #ifdef DEBUG |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1310 debug_indent--; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1311 #endif |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1312 return err; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1313 } |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1314 |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1315 |
0 | 1316 #ifdef CONFIG_ZLIB |
65 | 1317 static int null_read_packet(void *opaque, uint8_t *buf, int buf_size) |
0 | 1318 { |
1319 return -1; | |
1320 } | |
1321 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1322 static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0 | 1323 { |
1324 ByteIOContext ctx; | |
121 | 1325 uint8_t *cmov_data; |
1326 uint8_t *moov_data; /* uncompressed data */ | |
0 | 1327 long cmov_len, moov_len; |
1328 int ret; | |
121 | 1329 |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1330 print_atom("cmov", atom); |
0 | 1331 |
1332 get_be32(pb); /* dcom atom */ | |
1333 if (get_le32(pb) != MKTAG( 'd', 'c', 'o', 'm' )) | |
1334 return -1; | |
1335 if (get_le32(pb) != MKTAG( 'z', 'l', 'i', 'b' )) { | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1336 dprintf("unknown compression for cmov atom !"); |
0 | 1337 return -1; |
1338 } | |
1339 get_be32(pb); /* cmvd atom */ | |
1340 if (get_le32(pb) != MKTAG( 'c', 'm', 'v', 'd' )) | |
1341 return -1; | |
1342 moov_len = get_be32(pb); /* uncompressed size */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1343 cmov_len = atom.size - 6 * 4; |
118 | 1344 |
121 | 1345 cmov_data = (uint8_t *) av_malloc(cmov_len); |
0 | 1346 if (!cmov_data) |
1347 return -1; | |
121 | 1348 moov_data = (uint8_t *) av_malloc(moov_len); |
0 | 1349 if (!moov_data) { |
1350 av_free(cmov_data); | |
1351 return -1; | |
1352 } | |
1353 get_buffer(pb, cmov_data, cmov_len); | |
121 | 1354 if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK) |
0 | 1355 return -1; |
1356 if(init_put_byte(&ctx, moov_data, moov_len, 0, NULL, null_read_packet, NULL, NULL) != 0) | |
1357 return -1; | |
1358 ctx.buf_end = ctx.buffer + moov_len; | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1359 atom.type = MKTAG( 'm', 'o', 'o', 'v' ); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1360 atom.offset = 0; |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1361 atom.size = moov_len; |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1362 #ifdef DEBUG |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1363 { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); } |
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1364 #endif |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1365 ret = mov_read_default(c, &ctx, atom); |
0 | 1366 av_free(moov_data); |
1367 av_free(cmov_data); | |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1368 |
0 | 1369 return ret; |
1370 } | |
1371 #endif | |
1372 | |
1373 static const MOVParseTableEntry mov_default_parse_table[] = { | |
1374 /* mp4 atoms */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1375 { MKTAG( 'c', 'o', '6', '4' ), mov_read_stco }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1376 { MKTAG( 'c', 'p', 'r', 't' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1377 { MKTAG( 'c', 'r', 'h', 'd' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1378 { MKTAG( 'c', 't', 't', 's' ), mov_read_leaf }, /* composition time to sample */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1379 { MKTAG( 'd', 'i', 'n', 'f' ), mov_read_default }, /* data information */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1380 { MKTAG( 'd', 'p', 'n', 'd' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1381 { MKTAG( 'd', 'r', 'e', 'f' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1382 { MKTAG( 'e', 'd', 't', 's' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1383 { MKTAG( 'e', 'l', 's', 't' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1384 { MKTAG( 'f', 'r', 'e', 'e' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1385 { MKTAG( 'h', 'd', 'l', 'r' ), mov_read_hdlr }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1386 { MKTAG( 'h', 'i', 'n', 't' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1387 { MKTAG( 'h', 'm', 'h', 'd' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1388 { MKTAG( 'i', 'o', 'd', 's' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1389 { MKTAG( 'm', 'd', 'a', 't' ), mov_read_mdat }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1390 { MKTAG( 'm', 'd', 'h', 'd' ), mov_read_mdhd }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1391 { MKTAG( 'm', 'd', 'i', 'a' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1392 { MKTAG( 'm', 'i', 'n', 'f' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1393 { MKTAG( 'm', 'o', 'o', 'v' ), mov_read_moov }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1394 { MKTAG( 'm', 'p', '4', 'a' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1395 { MKTAG( 'm', 'p', '4', 's' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1396 { MKTAG( 'm', 'p', '4', 'v' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1397 { MKTAG( 'm', 'p', 'o', 'd' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1398 { MKTAG( 'm', 'v', 'h', 'd' ), mov_read_mvhd }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1399 { MKTAG( 'n', 'm', 'h', 'd' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1400 { MKTAG( 'o', 'd', 'h', 'd' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1401 { MKTAG( 's', 'd', 'h', 'd' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1402 { MKTAG( 's', 'k', 'i', 'p' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1403 { MKTAG( 's', 'm', 'h', 'd' ), mov_read_leaf }, /* sound media info header */ |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1404 { MKTAG( 'S', 'M', 'I', ' ' ), mov_read_smi }, /* Sorrenson extension ??? */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1405 { MKTAG( 's', 't', 'b', 'l' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1406 { MKTAG( 's', 't', 'c', 'o' ), mov_read_stco }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1407 { MKTAG( 's', 't', 'd', 'p' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1408 { MKTAG( 's', 't', 's', 'c' ), mov_read_stsc }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1409 { MKTAG( 's', 't', 's', 'd' ), mov_read_stsd }, /* sample description */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1410 { MKTAG( 's', 't', 's', 'h' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1411 { MKTAG( 's', 't', 's', 's' ), mov_read_leaf }, /* sync sample */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1412 { MKTAG( 's', 't', 's', 'z' ), mov_read_stsz }, /* sample size */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1413 { MKTAG( 's', 't', 't', 's' ), mov_read_stts }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1414 { MKTAG( 't', 'k', 'h', 'd' ), mov_read_tkhd }, /* track header */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1415 { MKTAG( 't', 'r', 'a', 'k' ), mov_read_trak }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1416 { MKTAG( 't', 'r', 'e', 'f' ), mov_read_default }, /* not really */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1417 { MKTAG( 'u', 'd', 't', 'a' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1418 { MKTAG( 'u', 'r', 'l', ' ' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1419 { MKTAG( 'u', 'r', 'n', ' ' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1420 { MKTAG( 'u', 'u', 'i', 'd' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1421 { MKTAG( 'v', 'm', 'h', 'd' ), mov_read_leaf }, /* video media info header */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1422 { MKTAG( 'w', 'a', 'v', 'e' ), mov_read_default }, |
0 | 1423 /* extra mp4 */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1424 { MKTAG( 'M', 'D', 'E', 'S' ), mov_read_leaf }, |
0 | 1425 /* QT atoms */ |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1426 { MKTAG( 'c', 'h', 'a', 'p' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1427 { MKTAG( 'c', 'l', 'i', 'p' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1428 { MKTAG( 'c', 'r', 'g', 'n' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1429 { MKTAG( 'c', 't', 'a', 'b' ), mov_read_ctab }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1430 { MKTAG( 'e', 's', 'd', 's' ), mov_read_esds }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1431 { MKTAG( 'k', 'm', 'a', 't' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1432 { MKTAG( 'm', 'a', 't', 't' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1433 { MKTAG( 'r', 'd', 'r', 'f' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1434 { MKTAG( 'r', 'm', 'd', 'a' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1435 { MKTAG( 'r', 'm', 'd', 'r' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1436 { MKTAG( 'r', 'm', 'r', 'a' ), mov_read_default }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1437 { MKTAG( 's', 'c', 'p', 't' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1438 { MKTAG( 's', 's', 'r', 'c' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1439 { MKTAG( 's', 'y', 'n', 'c' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1440 { MKTAG( 't', 'c', 'm', 'd' ), mov_read_leaf }, |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1441 { MKTAG( 'w', 'i', 'd', 'e' ), mov_read_wide }, /* place holder */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1442 //{ MKTAG( 'r', 'm', 'q', 'u' ), mov_read_leaf }, |
0 | 1443 #ifdef CONFIG_ZLIB |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1444 { MKTAG( 'c', 'm', 'o', 'v' ), mov_read_cmov }, |
0 | 1445 #else |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1446 { MKTAG( 'c', 'm', 'o', 'v' ), mov_read_leaf }, |
0 | 1447 #endif |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1448 { 0L, mov_read_leaf } |
0 | 1449 }; |
1450 | |
1451 static void mov_free_stream_context(MOVStreamContext *sc) | |
1452 { | |
1453 if(sc) { | |
1454 av_free(sc->chunk_offsets); | |
1455 av_free(sc->sample_to_chunk); | |
118 | 1456 av_free(sc->sample_sizes); |
0 | 1457 av_free(sc->header_data); |
1458 av_free(sc); | |
1459 } | |
1460 } | |
1461 | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1462 static inline uint32_t mov_to_tag(uint8_t *buf) |
0 | 1463 { |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1464 return MKTAG(buf[0], buf[1], buf[2], buf[3]); |
0 | 1465 } |
1466 | |
118 | 1467 static inline uint32_t to_be32(uint8_t *buf) |
0 | 1468 { |
1469 return (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3]; | |
1470 } | |
1471 | |
121 | 1472 /* XXX: is it sufficient ? */ |
0 | 1473 static int mov_probe(AVProbeData *p) |
1474 { | |
1475 unsigned int offset; | |
1476 uint32_t tag; | |
1477 | |
1478 /* check file header */ | |
1479 if (p->buf_size <= 12) | |
1480 return 0; | |
1481 offset = 0; | |
1482 for(;;) { | |
1483 /* ignore invalid offset */ | |
1484 if ((offset + 8) > (unsigned int)p->buf_size) | |
1485 return 0; | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1486 tag = mov_to_tag(p->buf + offset + 4); |
0 | 1487 switch(tag) { |
1488 case MKTAG( 'm', 'o', 'o', 'v' ): | |
1489 case MKTAG( 'w', 'i', 'd', 'e' ): | |
1490 case MKTAG( 'f', 'r', 'e', 'e' ): | |
24 | 1491 case MKTAG( 'm', 'd', 'a', 't' ): |
1492 case MKTAG( 'p', 'n', 'o', 't' ): /* detect movs with preview pics like ew.mov and april.mov */ | |
146 | 1493 case MKTAG( 'u', 'd', 't', 'a' ): /* Packet Video PVAuthor adds this and a lot of more junk */ |
0 | 1494 return AVPROBE_SCORE_MAX; |
1495 case MKTAG( 'f', 't', 'y', 'p' ): | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1496 case MKTAG( 's', 'k', 'i', 'p' ): |
147 | 1497 offset = to_be32(p->buf+offset) + offset; |
0 | 1498 break; |
1499 default: | |
1500 /* unrecognized tag */ | |
1501 return 0; | |
1502 } | |
1503 } | |
1504 return 0; | |
1505 } | |
1506 | |
1507 static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap) | |
1508 { | |
121 | 1509 MOVContext *mov = (MOVContext *) s->priv_data; |
0 | 1510 ByteIOContext *pb = &s->pb; |
1511 int i, j, nb, err; | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1512 MOV_atom_t atom = { 0, 0, 0 }; |
0 | 1513 |
1514 mov->fc = s; | |
121 | 1515 mov->parse_table = mov_default_parse_table; |
0 | 1516 #if 0 |
1517 /* XXX: I think we should auto detect */ | |
1518 if(s->iformat->name[1] == 'p') | |
1519 mov->mp4 = 1; | |
1520 #endif | |
1521 if(!url_is_streamed(pb)) /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1522 atom.size = url_filesize(url_fileno(pb)); |
0 | 1523 else |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1524 atom.size = 0x7FFFFFFFFFFFFFFFLL; |
0 | 1525 |
1526 #ifdef DEBUG | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1527 printf("filesz=%Ld\n", atom.size); |
0 | 1528 #endif |
1529 | |
1530 /* check MOV header */ | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1531 err = mov_read_default(mov, pb, atom); |
133 | 1532 if (err<0 || (!mov->found_moov && !mov->found_mdat)) { |
136 | 1533 fprintf(stderr, "mov: header not found !!! (err:%d, moov:%d, mdat:%d) pos:%lld\n", |
133 | 1534 err, mov->found_moov, mov->found_mdat, url_ftell(pb)); |
1535 return -1; | |
0 | 1536 } |
1537 #ifdef DEBUG | |
1538 printf("on_parse_exit_offset=%d\n", (int) url_ftell(pb)); | |
1539 #endif | |
1540 /* some cleanup : make sure we are on the mdat atom */ | |
1541 if(!url_is_streamed(pb) && (url_ftell(pb) != mov->mdat_offset)) | |
1542 url_fseek(pb, mov->mdat_offset, SEEK_SET); | |
1543 | |
1544 mov->next_chunk_offset = mov->mdat_offset; /* initialise reading */ | |
1545 | |
1546 #ifdef DEBUG | |
1547 printf("mdat_reset_offset=%d\n", (int) url_ftell(pb)); | |
1548 #endif | |
1549 | |
1550 #ifdef DEBUG | |
1551 printf("streams= %d\n", s->nb_streams); | |
1552 #endif | |
1553 mov->total_streams = nb = s->nb_streams; | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1554 |
0 | 1555 #if 1 |
1556 for(i=0; i<s->nb_streams;) { | |
1557 if(s->streams[i]->codec.codec_type == CODEC_TYPE_MOV_OTHER) {/* not audio, not video, delete */ | |
1558 av_free(s->streams[i]); | |
1559 for(j=i+1; j<s->nb_streams; j++) | |
1560 s->streams[j-1] = s->streams[j]; | |
1561 s->nb_streams--; | |
1562 } else | |
1563 i++; | |
1564 } | |
1565 for(i=0; i<s->nb_streams;i++) { | |
1566 MOVStreamContext *sc; | |
1567 sc = (MOVStreamContext *)s->streams[i]->priv_data; | |
1568 sc->ffindex = i; | |
1569 sc->is_ff_stream = 1; | |
1570 } | |
1571 #endif | |
1572 #ifdef DEBUG | |
1573 printf("real streams= %d\n", s->nb_streams); | |
1574 #endif | |
1575 return 0; | |
1576 } | |
1577 | |
1578 /* Yes, this is ugly... I didn't write the specs of QT :p */ | |
1579 /* XXX:remove useless commented code sometime */ | |
1580 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt) | |
1581 { | |
121 | 1582 MOVContext *mov = (MOVContext *) s->priv_data; |
0 | 1583 MOVStreamContext *sc; |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1584 int64_t offset = 0x0FFFFFFFFFFFFFFFLL; |
0 | 1585 int i; |
118 | 1586 int size; |
0 | 1587 size = 0x0FFFFFFF; |
118 | 1588 |
0 | 1589 #ifdef MOV_SPLIT_CHUNKS |
1590 if (mov->partial) { | |
118 | 1591 |
0 | 1592 int idx; |
1593 | |
118 | 1594 sc = mov->partial; |
1595 idx = sc->sample_to_chunk_index; | |
0 | 1596 |
118 | 1597 if (idx < 0) return 0; |
1598 size = sc->sample_sizes[sc->current_sample]; | |
0 | 1599 |
118 | 1600 sc->current_sample++; |
1601 sc->left_in_chunk--; | |
1602 | |
1603 if (sc->left_in_chunk <= 0) | |
0 | 1604 mov->partial = 0; |
1605 offset = mov->next_chunk_offset; | |
1606 /* extract the sample */ | |
1607 | |
1608 goto readchunk; | |
1609 } | |
1610 #endif | |
1611 | |
1612 again: | |
118 | 1613 sc = 0; |
0 | 1614 for(i=0; i<mov->total_streams; i++) { |
118 | 1615 MOVStreamContext *msc = mov->streams[i]; |
1616 //printf("MOCHUNK %ld %d %p pos:%Ld\n", mov->streams[i]->next_chunk, mov->total_streams, mov->streams[i], url_ftell(&s->pb)); | |
1617 if ((msc->next_chunk < msc->chunk_count) && msc->next_chunk >= 0 | |
1618 && (msc->chunk_offsets[msc->next_chunk] < offset)) { | |
1619 sc = msc; | |
1620 offset = msc->chunk_offsets[msc->next_chunk]; | |
1621 //printf("SELETED %Ld i:%d\n", offset, i); | |
0 | 1622 } |
1623 } | |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1624 if (!sc || offset==0x0FFFFFFFFFFFFFFFLL) |
118 | 1625 return -1; |
1626 | |
1627 sc->next_chunk++; | |
1628 | |
0 | 1629 if(mov->next_chunk_offset < offset) { /* some meta data */ |
1630 url_fskip(&s->pb, (offset - mov->next_chunk_offset)); | |
1631 mov->next_chunk_offset = offset; | |
1632 } | |
1633 | |
1634 //printf("chunk: [%i] %lli -> %lli\n", st_id, mov->next_chunk_offset, offset); | |
118 | 1635 if(!sc->is_ff_stream) { |
0 | 1636 url_fskip(&s->pb, (offset - mov->next_chunk_offset)); |
1637 mov->next_chunk_offset = offset; | |
132
9ca36221ae23
* passing ImageDescriptions for SVQ3 (Vertical300K.sorenson works)
kabi
parents:
131
diff
changeset
|
1638 offset = 0x0FFFFFFFFFFFFFFFLL; |
0 | 1639 goto again; |
1640 } | |
1641 | |
1642 /* now get the chunk size... */ | |
1643 | |
1644 for(i=0; i<mov->total_streams; i++) { | |
118 | 1645 MOVStreamContext *msc = mov->streams[i]; |
1646 if ((msc->next_chunk < msc->chunk_count) | |
1647 && ((msc->chunk_offsets[msc->next_chunk] - offset) < size)) | |
1648 size = msc->chunk_offsets[msc->next_chunk] - offset; | |
0 | 1649 } |
146 | 1650 |
1651 #ifdef MOV_MINOLTA_FIX | |
1652 //Make sure that size is according to sample_size (Needed by .mov files | |
1653 //created on a Minolta Dimage Xi where audio chunks contains waste data in the end) | |
1654 //Maybe we should really not only check sc->sample_size, but also sc->sample_sizes | |
1655 //but I have no such movies | |
1656 if (sc->sample_size > 0) { | |
1657 int foundsize=0; | |
1658 for(i=0; i<(sc->sample_to_chunk_sz); i++) { | |
1659 if( (sc->sample_to_chunk[i].first)<=(sc->next_chunk) && (sc->sample_size>0) ) | |
1660 { | |
1661 foundsize=sc->sample_to_chunk[i].count*sc->sample_size; | |
1662 } | |
1663 #ifdef DEBUG | |
1664 /*printf("sample_to_chunk first=%ld count=%ld, id=%ld\n", sc->sample_to_chunk[i].first, sc->sample_to_chunk[i].count, sc->sample_to_chunk[i].id);*/ | |
1665 #endif | |
1666 } | |
1667 if( (foundsize>0) && (foundsize<size) ) | |
1668 { | |
1669 #ifdef DEBUG | |
1670 /*printf("this size should actually be %d\n",foundsize);*/ | |
1671 #endif | |
1672 size=foundsize; | |
1673 } | |
1674 } | |
1675 #endif //MOV_MINOLTA_FIX | |
1676 | |
0 | 1677 #ifdef MOV_SPLIT_CHUNKS |
1678 /* split chunks into samples */ | |
118 | 1679 if (sc->sample_size == 0) { |
1680 int idx = sc->sample_to_chunk_index; | |
1681 if ((idx + 1 < sc->sample_to_chunk_sz) | |
1682 && (sc->next_chunk >= sc->sample_to_chunk[idx + 1].first)) | |
1683 idx++; | |
1684 sc->sample_to_chunk_index = idx; | |
1685 if (idx >= 0 && sc->sample_to_chunk[idx].count != 1) { | |
1686 mov->partial = sc; | |
0 | 1687 /* we'll have to get those samples before next chunk */ |
118 | 1688 sc->left_in_chunk = sc->sample_to_chunk[idx].count - 1; |
1689 size = sc->sample_sizes[sc->current_sample]; | |
0 | 1690 } |
1691 | |
118 | 1692 sc->current_sample++; |
0 | 1693 } |
1694 #endif | |
1695 | |
1696 readchunk: | |
1697 //printf("chunk: [%i] %lli -> %lli (%i)\n", st_id, offset, offset + size, size); | |
1698 if(size == 0x0FFFFFFF) | |
1699 size = mov->mdat_size + mov->mdat_offset - offset; | |
1700 if(size < 0) | |
1701 return -1; | |
1702 if(size == 0) | |
1703 return -1; | |
1704 url_fseek(&s->pb, offset, SEEK_SET); | |
118 | 1705 |
1706 //printf("READCHUNK hlen: %d %d off: %Ld pos:%Ld\n", size, sc->header_len, offset, url_ftell(&s->pb)); | |
0 | 1707 if (sc->header_len > 0) { |
1708 av_new_packet(pkt, size + sc->header_len); | |
1709 memcpy(pkt->data, sc->header_data, sc->header_len); | |
1710 get_buffer(&s->pb, pkt->data + sc->header_len, size); | |
1711 /* free header */ | |
1712 av_freep(&sc->header_data); | |
1713 sc->header_len = 0; | |
1714 } else { | |
1715 av_new_packet(pkt, size); | |
1716 get_buffer(&s->pb, pkt->data, pkt->size); | |
1717 } | |
1718 pkt->stream_index = sc->ffindex; | |
1719 | |
1720 #ifdef DEBUG | |
1721 /* | |
1722 printf("Packet (%d, %d, %ld) ", pkt->stream_index, st_id, pkt->size); | |
1723 for(i=0; i<8; i++) | |
1724 printf("%02x ", pkt->data[i]); | |
1725 for(i=0; i<8; i++) | |
1726 printf("%c ", (pkt->data[i]) & 0x7F); | |
1727 puts(""); | |
1728 */ | |
1729 #endif | |
1730 | |
1731 mov->next_chunk_offset = offset + size; | |
1732 | |
1733 return 0; | |
1734 } | |
1735 | |
1736 static int mov_read_close(AVFormatContext *s) | |
1737 { | |
1738 int i; | |
121 | 1739 MOVContext *mov = (MOVContext *) s->priv_data; |
0 | 1740 for(i=0; i<mov->total_streams; i++) |
1741 mov_free_stream_context(mov->streams[i]); | |
130
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1742 /* free color tabs */ |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1743 for(i=0; i<mov->ctab_size; i++) |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1744 av_freep(&mov->ctab[i]); |
f607ed6aa365
* support for AAC audio (esds decoding - using extradata)
kabi
parents:
129
diff
changeset
|
1745 av_freep(&mov->ctab); |
0 | 1746 return 0; |
1747 } | |
1748 | |
1749 static AVInputFormat mov_iformat = { | |
286
eccf0c3e3289
Using the extension m4a for audio only MPEG-4 files is increasingly
michael
parents:
266
diff
changeset
|
1750 "mov,mp4,m4a,3gp", |
0 | 1751 "QuickTime/MPEG4 format", |
1752 sizeof(MOVContext), | |
1753 mov_probe, | |
1754 mov_read_header, | |
1755 mov_read_packet, | |
1756 mov_read_close, | |
1757 }; | |
1758 | |
1759 int mov_init(void) | |
1760 { | |
1761 av_register_input_format(&mov_iformat); | |
1762 return 0; | |
1763 } |