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