Mercurial > libavformat.hg
annotate mov.c @ 3084:1fd2a702fe49 libavformat
remove useless braces
author | bcoudurier |
---|---|
date | Tue, 26 Feb 2008 14:42:07 +0000 |
parents | 100182d3aefe |
children | bae59276377f |
rev | line source |
---|---|
1845 | 1 /* |
2 * MOV demuxer | |
3 * Copyright (c) 2001 Fabrice Bellard. | |
4 * | |
5 * This file is part of FFmpeg. | |
6 * | |
7 * FFmpeg is free software; you can redistribute it and/or | |
8 * modify it under the terms of the GNU Lesser General Public | |
9 * License as published by the Free Software Foundation; either | |
10 * version 2.1 of the License, or (at your option) any later version. | |
11 * | |
12 * FFmpeg is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Lesser General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Lesser General Public | |
18 * License along with FFmpeg; if not, write to the Free Software | |
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
20 */ | |
21 | |
22 #include <limits.h> | |
23 | |
24 //#define DEBUG | |
25 | |
26 #include "avformat.h" | |
27 #include "riff.h" | |
28 #include "isom.h" | |
29 #include "dv.h" | |
30 | |
31 #ifdef CONFIG_ZLIB | |
32 #include <zlib.h> | |
33 #endif | |
34 | |
35 /* | |
36 * First version by Francois Revol revol@free.fr | |
37 * Seek function by Gael Chardon gael.dev@4now.net | |
38 * | |
39 * Features and limitations: | |
40 * - reads most of the QT files I have (at least the structure), | |
41 * Sample QuickTime files with mp3 audio can be found at: http://www.3ivx.com/showcase.html | |
42 * - the code is quite ugly... maybe I won't do it recursive next time :-) | |
43 * | |
44 * Funny I didn't know about http://sourceforge.net/projects/qt-ffmpeg/ | |
45 * when coding this :) (it's a writer anyway) | |
46 * | |
47 * Reference documents: | |
48 * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt | |
49 * Apple: | |
50 * http://developer.apple.com/documentation/QuickTime/QTFF/ | |
51 * http://developer.apple.com/documentation/QuickTime/QTFF/qtff.pdf | |
52 * QuickTime is a trademark of Apple (AFAIK :)) | |
53 */ | |
54 | |
55 #include "qtpalette.h" | |
56 | |
57 | |
58 #undef NDEBUG | |
59 #include <assert.h> | |
60 | |
61 /* the QuickTime file format is quite convoluted... | |
62 * it has lots of index tables, each indexing something in another one... | |
63 * Here we just use what is needed to read the chunks | |
64 */ | |
65 | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
66 typedef struct { |
2030 | 67 int first; |
68 int count; | |
69 int id; | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
70 } MOV_stsc_t; |
1845 | 71 |
72 typedef struct { | |
73 uint32_t type; | |
74 int64_t offset; | |
75 int64_t size; /* total size (excluding the size and type fields) */ | |
76 } MOV_atom_t; | |
77 | |
78 struct MOVParseTableEntry; | |
79 | |
80 typedef struct MOVStreamContext { | |
81 int ffindex; /* the ffmpeg stream id */ | |
2030 | 82 int next_chunk; |
1845 | 83 unsigned int chunk_count; |
84 int64_t *chunk_offsets; | |
85 unsigned int stts_count; | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
86 MOV_stts_t *stts_data; |
1845 | 87 unsigned int ctts_count; |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
88 MOV_stts_t *ctts_data; |
1845 | 89 unsigned int edit_count; /* number of 'edit' (elst atom) */ |
90 unsigned int sample_to_chunk_sz; | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
91 MOV_stsc_t *sample_to_chunk; |
1845 | 92 int sample_to_ctime_index; |
93 int sample_to_ctime_sample; | |
94 unsigned int sample_size; | |
95 unsigned int sample_count; | |
2030 | 96 int *sample_sizes; |
1845 | 97 unsigned int keyframe_count; |
2030 | 98 int *keyframes; |
1845 | 99 int time_scale; |
100 int time_rate; | |
2030 | 101 int current_sample; |
1940
1a7f66384792
cosmetics, sample_size_v1 -> bytes_per_frame / samples_per_frame
bcoudurier
parents:
1939
diff
changeset
|
102 unsigned int bytes_per_frame; |
1a7f66384792
cosmetics, sample_size_v1 -> bytes_per_frame / samples_per_frame
bcoudurier
parents:
1939
diff
changeset
|
103 unsigned int samples_per_frame; |
1845 | 104 int dv_audio_container; |
2967
2fc866d3614f
Only export packets which belong to the existing AVStream.
michael
parents:
2966
diff
changeset
|
105 int pseudo_stream_id; |
3029
10abe8748ec2
use correct demux mechanism when audio compression id is -2, dv audio does not matter, demux partially qt_dv_pal_test.mov which does NOT use cid -2
bcoudurier
parents:
3027
diff
changeset
|
106 int16_t audio_cid; ///< stsd audio compression id |
1845 | 107 } MOVStreamContext; |
108 | |
109 typedef struct MOVContext { | |
110 AVFormatContext *fc; | |
111 int time_scale; | |
112 int64_t duration; /* duration of the longest track */ | |
113 int found_moov; /* when both 'moov' and 'mdat' sections has been found */ | |
114 int found_mdat; /* we suppose we have enough data to read the file */ | |
115 AVPaletteControl palette_control; | |
116 DVDemuxContext *dv_demux; | |
117 AVFormatContext *dv_fctx; | |
118 int isom; /* 1 if file is ISO Media (mp4/3gp) */ | |
119 } MOVContext; | |
120 | |
121 | |
122 /* XXX: it's the first time I make a recursive parser I think... sorry if it's ugly :P */ | |
123 | |
124 /* those functions parse an atom */ | |
125 /* return code: | |
126 1: found what I wanted, exit | |
127 0: continue to parse next atom | |
128 -1: error occured, exit | |
129 */ | |
130 /* links atom IDs to parse functions */ | |
131 typedef struct MOVParseTableEntry { | |
132 uint32_t type; | |
2822
bdb887c3e9e9
cosmetics: func -> parse, remove useless parenthesis
bcoudurier
parents:
2821
diff
changeset
|
133 int (*parse)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom); |
1845 | 134 } MOVParseTableEntry; |
135 | |
2820
95ce00ad6f3e
save pointer to parse table, it is unlikely to change
bcoudurier
parents:
2819
diff
changeset
|
136 static const MOVParseTableEntry mov_default_parse_table[]; |
95ce00ad6f3e
save pointer to parse table, it is unlikely to change
bcoudurier
parents:
2819
diff
changeset
|
137 |
1845 | 138 static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
139 { | |
140 int64_t total_size = 0; | |
141 MOV_atom_t a; | |
142 int i; | |
143 int err = 0; | |
144 | |
145 a.offset = atom.offset; | |
146 | |
147 if (atom.size < 0) | |
2026 | 148 atom.size = INT64_MAX; |
1845 | 149 while(((total_size + 8) < atom.size) && !url_feof(pb) && !err) { |
150 a.size = atom.size; | |
2826 | 151 a.type=0; |
1845 | 152 if(atom.size >= 8) { |
153 a.size = get_be32(pb); | |
154 a.type = get_le32(pb); | |
155 } | |
156 total_size += 8; | |
157 a.offset += 8; | |
2902 | 158 dprintf(c->fc, "type: %08x %.4s sz: %"PRIx64" %"PRIx64" %"PRIx64"\n", |
159 a.type, (char*)&a.type, a.size, atom.size, total_size); | |
1845 | 160 if (a.size == 1) { /* 64 bit extended size */ |
161 a.size = get_be64(pb) - 8; | |
162 a.offset += 8; | |
163 total_size += 8; | |
164 } | |
165 if (a.size == 0) { | |
166 a.size = atom.size - total_size; | |
167 if (a.size <= 8) | |
168 break; | |
169 } | |
1964
4571a481081d
move atom size check before parsing function search
bcoudurier
parents:
1963
diff
changeset
|
170 a.size -= 8; |
2660
022174d849d5
fix issue 225, instead of stoping when wrong atom size is found,
bcoudurier
parents:
2589
diff
changeset
|
171 if(a.size < 0) |
1964
4571a481081d
move atom size check before parsing function search
bcoudurier
parents:
1963
diff
changeset
|
172 break; |
2665 | 173 a.size = FFMIN(a.size, atom.size - total_size); |
1964
4571a481081d
move atom size check before parsing function search
bcoudurier
parents:
1963
diff
changeset
|
174 |
2826 | 175 for (i = 0; mov_default_parse_table[i].type != 0 |
2820
95ce00ad6f3e
save pointer to parse table, it is unlikely to change
bcoudurier
parents:
2819
diff
changeset
|
176 && mov_default_parse_table[i].type != a.type; i++) |
1845 | 177 /* empty */; |
178 | |
2820
95ce00ad6f3e
save pointer to parse table, it is unlikely to change
bcoudurier
parents:
2819
diff
changeset
|
179 if (mov_default_parse_table[i].type == 0) { /* skip leaf atoms data */ |
1845 | 180 url_fskip(pb, a.size); |
181 } else { | |
182 offset_t start_pos = url_ftell(pb); | |
183 int64_t left; | |
2822
bdb887c3e9e9
cosmetics: func -> parse, remove useless parenthesis
bcoudurier
parents:
2821
diff
changeset
|
184 err = mov_default_parse_table[i].parse(c, pb, a); |
2817 | 185 if (c->found_moov && c->found_mdat) |
186 break; | |
1845 | 187 left = a.size - url_ftell(pb) + start_pos; |
188 if (left > 0) /* skip garbage at atom end */ | |
189 url_fskip(pb, left); | |
190 } | |
191 | |
192 a.offset += a.size; | |
193 total_size += a.size; | |
194 } | |
195 | |
196 if (!err && total_size < atom.size && atom.size < 0x7ffff) { | |
197 url_fskip(pb, atom.size - total_size); | |
198 } | |
199 | |
200 return err; | |
201 } | |
202 | |
203 static int mov_read_hdlr(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
204 { | |
205 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
206 uint32_t type; | |
207 uint32_t ctype; | |
208 | |
209 get_byte(pb); /* version */ | |
210 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
211 | |
212 /* component type */ | |
213 ctype = get_le32(pb); | |
214 type = get_le32(pb); /* component subtype */ | |
215 | |
2902 | 216 dprintf(c->fc, "ctype= %c%c%c%c (0x%08x)\n", *((char *)&ctype), ((char *)&ctype)[1], |
217 ((char *)&ctype)[2], ((char *)&ctype)[3], (int) ctype); | |
218 dprintf(c->fc, "stype= %c%c%c%c\n", | |
219 *((char *)&type), ((char *)&type)[1], ((char *)&type)[2], ((char *)&type)[3]); | |
1845 | 220 if(!ctype) |
221 c->isom = 1; | |
222 if(type == MKTAG('v', 'i', 'd', 'e')) | |
223 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
224 else if(type == MKTAG('s', 'o', 'u', 'n')) | |
225 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
226 else if(type == MKTAG('m', '1', 'a', ' ')) | |
227 st->codec->codec_id = CODEC_ID_MP2; | |
228 else if(type == MKTAG('s', 'u', 'b', 'p')) { | |
229 st->codec->codec_type = CODEC_TYPE_SUBTITLE; | |
230 } | |
231 get_be32(pb); /* component manufacture */ | |
232 get_be32(pb); /* component flags */ | |
233 get_be32(pb); /* component flags mask */ | |
234 | |
235 if(atom.size <= 24) | |
236 return 0; /* nothing left to read */ | |
237 | |
238 url_fskip(pb, atom.size - (url_ftell(pb) - atom.offset)); | |
239 return 0; | |
240 } | |
241 | |
2029 | 242 static int mp4_read_descr_len(ByteIOContext *pb) |
1845 | 243 { |
244 int len = 0; | |
245 int count = 4; | |
246 while (count--) { | |
247 int c = get_byte(pb); | |
248 len = (len << 7) | (c & 0x7f); | |
249 if (!(c & 0x80)) | |
250 break; | |
251 } | |
252 return len; | |
253 } | |
254 | |
2029 | 255 static int mp4_read_descr(MOVContext *c, ByteIOContext *pb, int *tag) |
1845 | 256 { |
257 int len; | |
258 *tag = get_byte(pb); | |
2029 | 259 len = mp4_read_descr_len(pb); |
1907 | 260 dprintf(c->fc, "MPEG4 description: tag=0x%02x len=%d\n", *tag, len); |
1845 | 261 return len; |
262 } | |
263 | |
2028 | 264 #define MP4ESDescrTag 0x03 |
265 #define MP4DecConfigDescrTag 0x04 | |
266 #define MP4DecSpecificDescrTag 0x05 | |
267 | |
1845 | 268 static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
269 { | |
270 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
271 int tag, len; | |
272 | |
273 get_be32(pb); /* version + flags */ | |
2029 | 274 len = mp4_read_descr(c, pb, &tag); |
1845 | 275 if (tag == MP4ESDescrTag) { |
276 get_be16(pb); /* ID */ | |
277 get_byte(pb); /* priority */ | |
278 } else | |
279 get_be16(pb); /* ID */ | |
280 | |
2029 | 281 len = mp4_read_descr(c, pb, &tag); |
1845 | 282 if (tag == MP4DecConfigDescrTag) { |
2028 | 283 int object_type_id = get_byte(pb); |
284 get_byte(pb); /* stream type */ | |
285 get_be24(pb); /* buffer size db */ | |
286 get_be32(pb); /* max bitrate */ | |
287 get_be32(pb); /* avg bitrate */ | |
1845 | 288 |
2028 | 289 st->codec->codec_id= codec_get_id(ff_mp4_obj_type, object_type_id); |
290 dprintf(c->fc, "esds object type id %d\n", object_type_id); | |
2029 | 291 len = mp4_read_descr(c, pb, &tag); |
1845 | 292 if (tag == MP4DecSpecificDescrTag) { |
1907 | 293 dprintf(c->fc, "Specific MPEG4 header len=%d\n", len); |
3078 | 294 if((uint64_t)len > (1<<30)) |
295 return -1; | |
1845 | 296 st->codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE); |
3076 | 297 if (!st->codec->extradata) |
298 return AVERROR(ENOMEM); | |
3077 | 299 get_buffer(pb, st->codec->extradata, len); |
300 st->codec->extradata_size = len; | |
301 /* from mplayer */ | |
302 if ((*st->codec->extradata >> 3) == 29) { | |
303 st->codec->codec_id = CODEC_ID_MP3ON4; | |
304 } | |
1845 | 305 } |
306 } | |
307 return 0; | |
308 } | |
309 | |
310 /* this atom contains actual media data */ | |
311 static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
312 { | |
313 if(atom.size == 0) /* wrong one (MP4) */ | |
314 return 0; | |
315 c->found_mdat=1; | |
316 if(c->found_moov) | |
317 return 1; /* found both, just go */ | |
318 url_fskip(pb, atom.size); | |
319 return 0; /* now go for moov */ | |
320 } | |
321 | |
322 static int mov_read_ftyp(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
323 { | |
324 uint32_t type = get_le32(pb); | |
325 | |
326 if (type != MKTAG('q','t',' ',' ')) | |
327 c->isom = 1; | |
328 av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type); | |
329 get_be32(pb); /* minor version */ | |
330 url_fskip(pb, atom.size - 8); | |
331 return 0; | |
332 } | |
333 | |
334 /* this atom should contain all header atoms */ | |
335 static int mov_read_moov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
336 { | |
2806
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
337 if (mov_read_default(c, pb, atom) < 0) |
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
338 return -1; |
1845 | 339 /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */ |
340 /* so we don't parse the whole file if over a network */ | |
341 c->found_moov=1; | |
342 if(c->found_mdat) | |
343 return 1; /* found both, just go */ | |
344 return 0; /* now go for mdat */ | |
345 } | |
346 | |
347 | |
348 static int mov_read_mdhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
349 { | |
350 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2006 | 351 MOVStreamContext *sc = st->priv_data; |
1845 | 352 int version = get_byte(pb); |
353 int lang; | |
354 | |
355 if (version > 1) | |
356 return 1; /* unsupported */ | |
357 | |
358 get_byte(pb); get_byte(pb); | |
359 get_byte(pb); /* flags */ | |
360 | |
361 if (version == 1) { | |
362 get_be64(pb); | |
363 get_be64(pb); | |
364 } else { | |
365 get_be32(pb); /* creation time */ | |
366 get_be32(pb); /* modification time */ | |
367 } | |
368 | |
369 sc->time_scale = get_be32(pb); | |
370 st->duration = (version == 1) ? get_be64(pb) : get_be32(pb); /* duration */ | |
371 | |
372 lang = get_be16(pb); /* language */ | |
373 ff_mov_lang_to_iso639(lang, st->language); | |
374 get_be16(pb); /* quality */ | |
375 | |
376 return 0; | |
377 } | |
378 | |
379 static int mov_read_mvhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
380 { | |
381 int version = get_byte(pb); /* version */ | |
382 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
383 | |
384 if (version == 1) { | |
385 get_be64(pb); | |
386 get_be64(pb); | |
387 } else { | |
388 get_be32(pb); /* creation time */ | |
389 get_be32(pb); /* modification time */ | |
390 } | |
391 c->time_scale = get_be32(pb); /* time scale */ | |
2044 | 392 |
393 dprintf(c->fc, "time scale = %i\n", c->time_scale); | |
394 | |
1845 | 395 c->duration = (version == 1) ? get_be64(pb) : get_be32(pb); /* duration */ |
396 get_be32(pb); /* preferred scale */ | |
397 | |
398 get_be16(pb); /* preferred volume */ | |
399 | |
400 url_fskip(pb, 10); /* reserved */ | |
401 | |
402 url_fskip(pb, 36); /* display matrix */ | |
403 | |
404 get_be32(pb); /* preview time */ | |
405 get_be32(pb); /* preview duration */ | |
406 get_be32(pb); /* poster time */ | |
407 get_be32(pb); /* selection time */ | |
408 get_be32(pb); /* selection duration */ | |
409 get_be32(pb); /* current time */ | |
410 get_be32(pb); /* next track ID */ | |
411 | |
412 return 0; | |
413 } | |
414 | |
415 static int mov_read_smi(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
416 { | |
417 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
418 | |
419 if((uint64_t)atom.size > (1<<30)) | |
420 return -1; | |
421 | |
422 // currently SVQ3 decoder expect full STSD header - so let's fake it | |
423 // this should be fixed and just SMI header should be passed | |
424 av_free(st->codec->extradata); | |
3076 | 425 st->codec->extradata = av_mallocz(atom.size + 0x5a + FF_INPUT_BUFFER_PADDING_SIZE); |
426 if (!st->codec->extradata) | |
427 return AVERROR(ENOMEM); | |
3077 | 428 st->codec->extradata_size = 0x5a + atom.size; |
429 memcpy(st->codec->extradata, "SVQ3", 4); // fake | |
430 get_buffer(pb, st->codec->extradata + 0x5a, atom.size); | |
431 dprintf(c->fc, "Reading SMI %"PRId64" %s\n", atom.size, st->codec->extradata + 0x5a); | |
1845 | 432 return 0; |
433 } | |
434 | |
435 static int mov_read_enda(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
436 { | |
437 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
438 int little_endian = get_be16(pb); | |
439 | |
440 if (little_endian) { | |
441 switch (st->codec->codec_id) { | |
442 case CODEC_ID_PCM_S24BE: | |
443 st->codec->codec_id = CODEC_ID_PCM_S24LE; | |
444 break; | |
445 case CODEC_ID_PCM_S32BE: | |
446 st->codec->codec_id = CODEC_ID_PCM_S32LE; | |
447 break; | |
448 default: | |
449 break; | |
450 } | |
451 } | |
452 return 0; | |
453 } | |
454 | |
455 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */ | |
456 static int mov_read_extradata(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
457 { | |
458 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2589
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
459 uint64_t size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE; |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
460 uint8_t *buf; |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
461 if(size > INT_MAX || (uint64_t)atom.size > INT_MAX) |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
462 return -1; |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
463 buf= av_realloc(st->codec->extradata, size); |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
464 if(!buf) |
1845 | 465 return -1; |
2589
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
466 st->codec->extradata= buf; |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
467 buf+= st->codec->extradata_size; |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
468 st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE; |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
469 AV_WB32( buf , atom.size + 8); |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
470 AV_WL32( buf + 4, atom.type); |
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
471 get_buffer(pb, buf + 8, atom.size); |
1845 | 472 return 0; |
473 } | |
474 | |
475 static int mov_read_wave(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
476 { | |
477 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
478 | |
479 if((uint64_t)atom.size > (1<<30)) | |
480 return -1; | |
481 | |
482 if (st->codec->codec_id == CODEC_ID_QDM2) { | |
483 // pass all frma atom to codec, needed at least for QDM2 | |
484 av_free(st->codec->extradata); | |
3076 | 485 st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE); |
486 if (!st->codec->extradata) | |
487 return AVERROR(ENOMEM); | |
1845 | 488 st->codec->extradata_size = atom.size; |
3076 | 489 get_buffer(pb, st->codec->extradata, atom.size); |
1845 | 490 } else if (atom.size > 8) { /* to read frma, esds atoms */ |
2806
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
491 if (mov_read_default(c, pb, atom) < 0) |
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
492 return -1; |
1845 | 493 } else |
494 url_fskip(pb, atom.size); | |
495 return 0; | |
496 } | |
497 | |
2837
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
498 /** |
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
499 * This function reads atom content and puts data in extradata without tag |
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
500 * nor size unlike mov_read_extradata. |
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
501 */ |
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
502 static int mov_read_glbl(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
1845 | 503 { |
504 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
505 | |
506 if((uint64_t)atom.size > (1<<30)) | |
507 return -1; | |
508 | |
509 av_free(st->codec->extradata); | |
3076 | 510 st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE); |
511 if (!st->codec->extradata) | |
512 return AVERROR(ENOMEM); | |
1845 | 513 st->codec->extradata_size = atom.size; |
3076 | 514 get_buffer(pb, st->codec->extradata, atom.size); |
1845 | 515 return 0; |
516 } | |
517 | |
518 static int mov_read_stco(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
519 { | |
520 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2006 | 521 MOVStreamContext *sc = st->priv_data; |
1845 | 522 unsigned int i, entries; |
523 | |
524 get_byte(pb); /* version */ | |
525 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
526 | |
527 entries = get_be32(pb); | |
528 | |
529 if(entries >= UINT_MAX/sizeof(int64_t)) | |
530 return -1; | |
531 | |
532 sc->chunk_count = entries; | |
533 sc->chunk_offsets = av_malloc(entries * sizeof(int64_t)); | |
534 if (!sc->chunk_offsets) | |
535 return -1; | |
536 if (atom.type == MKTAG('s', 't', 'c', 'o')) { | |
537 for(i=0; i<entries; i++) { | |
538 sc->chunk_offsets[i] = get_be32(pb); | |
539 } | |
540 } else if (atom.type == MKTAG('c', 'o', '6', '4')) { | |
541 for(i=0; i<entries; i++) { | |
542 sc->chunk_offsets[i] = get_be64(pb); | |
543 } | |
544 } else | |
545 return -1; | |
546 | |
547 return 0; | |
548 } | |
549 | |
550 static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
551 { | |
552 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2006 | 553 MOVStreamContext *sc = st->priv_data; |
1845 | 554 int entries, frames_per_sample; |
555 uint32_t format; | |
556 uint8_t codec_name[32]; | |
557 | |
558 /* for palette traversal */ | |
2809
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
559 unsigned int color_depth; |
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
560 unsigned int color_start; |
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
561 unsigned int color_count; |
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
562 unsigned int color_end; |
1845 | 563 int color_index; |
564 int color_dec; | |
565 int color_greyscale; | |
2794 | 566 const uint8_t *color_table; |
2967
2fc866d3614f
Only export packets which belong to the existing AVStream.
michael
parents:
2966
diff
changeset
|
567 int j, pseudo_stream_id; |
1845 | 568 unsigned char r, g, b; |
569 | |
570 get_byte(pb); /* version */ | |
571 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
572 | |
573 entries = get_be32(pb); | |
574 | |
2967
2fc866d3614f
Only export packets which belong to the existing AVStream.
michael
parents:
2966
diff
changeset
|
575 for(pseudo_stream_id=0; pseudo_stream_id<entries; pseudo_stream_id++) { //Parsing Sample description table |
1845 | 576 enum CodecID id; |
577 MOV_atom_t a = { 0, 0, 0 }; | |
578 offset_t start_pos = url_ftell(pb); | |
579 int size = get_be32(pb); /* size */ | |
580 format = get_le32(pb); /* data format */ | |
581 | |
582 get_be32(pb); /* reserved */ | |
583 get_be16(pb); /* reserved */ | |
584 get_be16(pb); /* index */ | |
585 | |
3022
800db1ceafc6
Allow the user to select which codec out of several in stsd he wants.
michael
parents:
2974
diff
changeset
|
586 if (st->codec->codec_tag && |
800db1ceafc6
Allow the user to select which codec out of several in stsd he wants.
michael
parents:
2974
diff
changeset
|
587 (c->fc->video_codec_id ? codec_get_id(codec_movvideo_tags, format) != c->fc->video_codec_id |
800db1ceafc6
Allow the user to select which codec out of several in stsd he wants.
michael
parents:
2974
diff
changeset
|
588 : st->codec->codec_tag != MKTAG('j', 'p', 'e', 'g')) |
800db1ceafc6
Allow the user to select which codec out of several in stsd he wants.
michael
parents:
2974
diff
changeset
|
589 ){ |
2966 | 590 /* multiple fourcc, we skip jpeg, this isnt correct, we should export it as |
591 seperate AVStream but this needs a few changes in the mov demuxer, patch | |
592 welcome */ | |
1845 | 593 url_fskip(pb, size - (url_ftell(pb) - start_pos)); |
594 continue; | |
595 } | |
2967
2fc866d3614f
Only export packets which belong to the existing AVStream.
michael
parents:
2966
diff
changeset
|
596 sc->pseudo_stream_id= pseudo_stream_id; |
1845 | 597 |
598 st->codec->codec_tag = format; | |
1847
922180a45610
recommit of the change below after reverting earlier cosmetic-functional mix
michael
parents:
1846
diff
changeset
|
599 id = codec_get_id(codec_movaudio_tags, format); |
2298 | 600 if (id<=0 && (format&0xFFFF) == 'm' + ('s'<<8)) |
601 id = codec_get_id(codec_wav_tags, bswap_32(format)&0xFFFF); | |
602 | |
1845 | 603 if (st->codec->codec_type != CODEC_TYPE_VIDEO && id > 0) { |
604 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
605 } else if (st->codec->codec_type != CODEC_TYPE_AUDIO && /* do not overwrite codec type */ | |
606 format && format != MKTAG('m', 'p', '4', 's')) { /* skip old asf mpeg4 tag */ | |
1847
922180a45610
recommit of the change below after reverting earlier cosmetic-functional mix
michael
parents:
1846
diff
changeset
|
607 id = codec_get_id(codec_movvideo_tags, format); |
1845 | 608 if (id <= 0) |
609 id = codec_get_id(codec_bmp_tags, format); | |
610 if (id > 0) | |
611 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
2969 | 612 else if(st->codec->codec_type == CODEC_TYPE_DATA){ |
613 id = codec_get_id(ff_codec_movsubtitle_tags, format); | |
614 if(id > 0) | |
615 st->codec->codec_type = CODEC_TYPE_SUBTITLE; | |
616 } | |
1845 | 617 } |
618 | |
2902 | 619 dprintf(c->fc, "size=%d 4CC= %c%c%c%c codec_type=%d\n", size, |
620 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff, | |
621 (format >> 24) & 0xff, st->codec->codec_type); | |
1845 | 622 |
623 if(st->codec->codec_type==CODEC_TYPE_VIDEO) { | |
624 st->codec->codec_id = id; | |
625 get_be16(pb); /* version */ | |
626 get_be16(pb); /* revision level */ | |
627 get_be32(pb); /* vendor */ | |
628 get_be32(pb); /* temporal quality */ | |
2730 | 629 get_be32(pb); /* spatial quality */ |
1845 | 630 |
631 st->codec->width = get_be16(pb); /* width */ | |
632 st->codec->height = get_be16(pb); /* height */ | |
633 | |
634 get_be32(pb); /* horiz resolution */ | |
635 get_be32(pb); /* vert resolution */ | |
636 get_be32(pb); /* data size, always 0 */ | |
637 frames_per_sample = get_be16(pb); /* frames per samples */ | |
2044 | 638 |
639 dprintf(c->fc, "frames/samples = %d\n", frames_per_sample); | |
640 | |
1845 | 641 get_buffer(pb, codec_name, 32); /* codec name, pascal string (FIXME: true for mp4?) */ |
642 if (codec_name[0] <= 31) { | |
643 memcpy(st->codec->codec_name, &codec_name[1],codec_name[0]); | |
644 st->codec->codec_name[codec_name[0]] = 0; | |
645 } | |
646 | |
647 st->codec->bits_per_sample = get_be16(pb); /* depth */ | |
648 st->codec->color_table_id = get_be16(pb); /* colortable id */ | |
649 | |
650 /* figure out the palette situation */ | |
651 color_depth = st->codec->bits_per_sample & 0x1F; | |
652 color_greyscale = st->codec->bits_per_sample & 0x20; | |
653 | |
654 /* if the depth is 2, 4, or 8 bpp, file is palettized */ | |
655 if ((color_depth == 2) || (color_depth == 4) || | |
656 (color_depth == 8)) { | |
657 if (color_greyscale) { | |
658 /* compute the greyscale palette */ | |
659 color_count = 1 << color_depth; | |
660 color_index = 255; | |
661 color_dec = 256 / (color_count - 1); | |
662 for (j = 0; j < color_count; j++) { | |
663 r = g = b = color_index; | |
664 c->palette_control.palette[j] = | |
665 (r << 16) | (g << 8) | (b); | |
666 color_index -= color_dec; | |
667 if (color_index < 0) | |
668 color_index = 0; | |
669 } | |
670 } else if (st->codec->color_table_id & 0x08) { | |
671 /* if flag bit 3 is set, use the default palette */ | |
672 color_count = 1 << color_depth; | |
673 if (color_depth == 2) | |
674 color_table = ff_qt_default_palette_4; | |
675 else if (color_depth == 4) | |
676 color_table = ff_qt_default_palette_16; | |
677 else | |
678 color_table = ff_qt_default_palette_256; | |
679 | |
680 for (j = 0; j < color_count; j++) { | |
681 r = color_table[j * 4 + 0]; | |
682 g = color_table[j * 4 + 1]; | |
683 b = color_table[j * 4 + 2]; | |
684 c->palette_control.palette[j] = | |
685 (r << 16) | (g << 8) | (b); | |
686 } | |
687 } else { | |
688 /* load the palette from the file */ | |
689 color_start = get_be32(pb); | |
690 color_count = get_be16(pb); | |
691 color_end = get_be16(pb); | |
2809
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
692 if ((color_start <= 255) && |
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
693 (color_end <= 255)) { |
2810 | 694 for (j = color_start; j <= color_end; j++) { |
695 /* each R, G, or B component is 16 bits; | |
696 * only use the top 8 bits; skip alpha bytes | |
697 * up front */ | |
698 get_byte(pb); | |
699 get_byte(pb); | |
700 r = get_byte(pb); | |
701 get_byte(pb); | |
702 g = get_byte(pb); | |
703 get_byte(pb); | |
704 b = get_byte(pb); | |
705 get_byte(pb); | |
706 c->palette_control.palette[j] = | |
707 (r << 16) | (g << 8) | (b); | |
2809
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
708 } |
1845 | 709 } |
710 } | |
711 st->codec->palctrl = &c->palette_control; | |
712 st->codec->palctrl->palette_changed = 1; | |
713 } else | |
714 st->codec->palctrl = NULL; | |
715 } else if(st->codec->codec_type==CODEC_TYPE_AUDIO) { | |
716 int bits_per_sample; | |
717 uint16_t version = get_be16(pb); | |
718 | |
719 st->codec->codec_id = id; | |
720 get_be16(pb); /* revision level */ | |
721 get_be32(pb); /* vendor */ | |
722 | |
723 st->codec->channels = get_be16(pb); /* channel count */ | |
1907 | 724 dprintf(c->fc, "audio channels %d\n", st->codec->channels); |
1845 | 725 st->codec->bits_per_sample = get_be16(pb); /* sample size */ |
726 | |
3029
10abe8748ec2
use correct demux mechanism when audio compression id is -2, dv audio does not matter, demux partially qt_dv_pal_test.mov which does NOT use cid -2
bcoudurier
parents:
3027
diff
changeset
|
727 sc->audio_cid = get_be16(pb); |
1845 | 728 get_be16(pb); /* packet size = 0 */ |
729 | |
730 st->codec->sample_rate = ((get_be32(pb) >> 16)); | |
731 | |
732 switch (st->codec->codec_id) { | |
733 case CODEC_ID_PCM_S8: | |
734 case CODEC_ID_PCM_U8: | |
735 if (st->codec->bits_per_sample == 16) | |
736 st->codec->codec_id = CODEC_ID_PCM_S16BE; | |
737 break; | |
738 case CODEC_ID_PCM_S16LE: | |
739 case CODEC_ID_PCM_S16BE: | |
740 if (st->codec->bits_per_sample == 8) | |
741 st->codec->codec_id = CODEC_ID_PCM_S8; | |
742 else if (st->codec->bits_per_sample == 24) | |
743 st->codec->codec_id = CODEC_ID_PCM_S24BE; | |
744 break; | |
3036
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
745 /* set values for old format before stsd version 1 appeared */ |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
746 case CODEC_ID_MACE3: |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
747 sc->samples_per_frame = 6; |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
748 sc->bytes_per_frame = 2*st->codec->channels; |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
749 break; |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
750 case CODEC_ID_MACE6: |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
751 sc->samples_per_frame = 6; |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
752 sc->bytes_per_frame = 1*st->codec->channels; |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
753 break; |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
754 case CODEC_ID_ADPCM_IMA_QT: |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
755 sc->samples_per_frame = 64; |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
756 sc->bytes_per_frame = 34*st->codec->channels; |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
757 break; |
1845 | 758 default: |
759 break; | |
760 } | |
761 | |
2164 | 762 //Read QT version 1 fields. In version 0 these do not exist. |
1907 | 763 dprintf(c->fc, "version =%d, isom =%d\n",version,c->isom); |
1845 | 764 if(!c->isom) { |
765 if(version==1) { | |
1940
1a7f66384792
cosmetics, sample_size_v1 -> bytes_per_frame / samples_per_frame
bcoudurier
parents:
1939
diff
changeset
|
766 sc->samples_per_frame = get_be32(pb); |
1845 | 767 get_be32(pb); /* bytes per packet */ |
1940
1a7f66384792
cosmetics, sample_size_v1 -> bytes_per_frame / samples_per_frame
bcoudurier
parents:
1939
diff
changeset
|
768 sc->bytes_per_frame = get_be32(pb); |
1845 | 769 get_be32(pb); /* bytes per sample */ |
770 } else if(version==2) { | |
771 get_be32(pb); /* sizeof struct only */ | |
772 st->codec->sample_rate = av_int2dbl(get_be64(pb)); /* float 64 */ | |
773 st->codec->channels = get_be32(pb); | |
774 get_be32(pb); /* always 0x7F000000 */ | |
775 get_be32(pb); /* bits per channel if sound is uncompressed */ | |
776 get_be32(pb); /* lcpm format specific flag */ | |
777 get_be32(pb); /* bytes per audio packet if constant */ | |
778 get_be32(pb); /* lpcm frames per audio packet if constant */ | |
779 } | |
780 } | |
781 | |
782 bits_per_sample = av_get_bits_per_sample(st->codec->codec_id); | |
783 if (bits_per_sample) { | |
784 st->codec->bits_per_sample = bits_per_sample; | |
785 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels; | |
786 } | |
2972
bc330130bdce
Set subtitle codec id correctly, i hope this does not break anything.
michael
parents:
2970
diff
changeset
|
787 } else if(st->codec->codec_type==CODEC_TYPE_SUBTITLE){ |
bc330130bdce
Set subtitle codec id correctly, i hope this does not break anything.
michael
parents:
2970
diff
changeset
|
788 st->codec->codec_id= id; |
1845 | 789 } else { |
790 /* other codec type, just skip (rtp, mp4s, tmcd ...) */ | |
791 url_fskip(pb, size - (url_ftell(pb) - start_pos)); | |
792 } | |
793 /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */ | |
794 a.size = size - (url_ftell(pb) - start_pos); | |
2806
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
795 if (a.size > 8) { |
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
796 if (mov_read_default(c, pb, a) < 0) |
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
797 return -1; |
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
798 } else if (a.size > 0) |
1845 | 799 url_fskip(pb, a.size); |
800 } | |
801 | |
3084 | 802 if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1) |
1845 | 803 st->codec->sample_rate= sc->time_scale; |
804 | |
805 /* special codec parameters handling */ | |
806 switch (st->codec->codec_id) { | |
807 #ifdef CONFIG_DV_DEMUXER | |
808 case CODEC_ID_DVAUDIO: | |
809 c->dv_fctx = av_alloc_format_context(); | |
810 c->dv_demux = dv_init_demux(c->dv_fctx); | |
811 if (!c->dv_demux) { | |
812 av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n"); | |
813 return -1; | |
814 } | |
815 sc->dv_audio_container = 1; | |
816 st->codec->codec_id = CODEC_ID_PCM_S16LE; | |
817 break; | |
818 #endif | |
819 /* no ifdef since parameters are always those */ | |
820 case CODEC_ID_AMR_WB: | |
821 st->codec->sample_rate= 16000; | |
822 st->codec->channels= 1; /* really needed */ | |
823 break; | |
824 case CODEC_ID_AMR_NB: | |
825 st->codec->sample_rate= 8000; | |
826 st->codec->channels= 1; /* really needed */ | |
827 break; | |
828 case CODEC_ID_MP2: | |
1953
edfd6b33d1f6
activate parser on MP3 id, fix [A-Destiny]_Konjiki_no_Gash_Bell_-_65_[71EE362C].mp4
bcoudurier
parents:
1950
diff
changeset
|
829 case CODEC_ID_MP3: |
1845 | 830 st->codec->codec_type = CODEC_TYPE_AUDIO; /* force type after stsd for m1a hdlr */ |
2023 | 831 st->need_parsing = AVSTREAM_PARSE_FULL; |
1845 | 832 break; |
2299
fe59c768ecf7
set block align to stsd audio v2 bytes per frame for adpcm ms and ima wav, fix surge-2-16-L-ms11.mov and surge-2-16-L-ms02.mov
bcoudurier
parents:
2298
diff
changeset
|
833 case CODEC_ID_ADPCM_MS: |
fe59c768ecf7
set block align to stsd audio v2 bytes per frame for adpcm ms and ima wav, fix surge-2-16-L-ms11.mov and surge-2-16-L-ms02.mov
bcoudurier
parents:
2298
diff
changeset
|
834 case CODEC_ID_ADPCM_IMA_WAV: |
fe59c768ecf7
set block align to stsd audio v2 bytes per frame for adpcm ms and ima wav, fix surge-2-16-L-ms11.mov and surge-2-16-L-ms02.mov
bcoudurier
parents:
2298
diff
changeset
|
835 st->codec->block_align = sc->bytes_per_frame; |
fe59c768ecf7
set block align to stsd audio v2 bytes per frame for adpcm ms and ima wav, fix surge-2-16-L-ms11.mov and surge-2-16-L-ms02.mov
bcoudurier
parents:
2298
diff
changeset
|
836 break; |
1845 | 837 default: |
838 break; | |
839 } | |
840 | |
841 return 0; | |
842 } | |
843 | |
844 static int mov_read_stsc(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
845 { | |
846 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2006 | 847 MOVStreamContext *sc = st->priv_data; |
1845 | 848 unsigned int i, entries; |
849 | |
850 get_byte(pb); /* version */ | |
851 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
852 | |
853 entries = get_be32(pb); | |
854 | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
855 if(entries >= UINT_MAX / sizeof(MOV_stsc_t)) |
1845 | 856 return -1; |
857 | |
2044 | 858 dprintf(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries); |
859 | |
1845 | 860 sc->sample_to_chunk_sz = entries; |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
861 sc->sample_to_chunk = av_malloc(entries * sizeof(MOV_stsc_t)); |
1845 | 862 if (!sc->sample_to_chunk) |
863 return -1; | |
864 for(i=0; i<entries; i++) { | |
865 sc->sample_to_chunk[i].first = get_be32(pb); | |
866 sc->sample_to_chunk[i].count = get_be32(pb); | |
867 sc->sample_to_chunk[i].id = get_be32(pb); | |
868 } | |
869 return 0; | |
870 } | |
871 | |
872 static int mov_read_stss(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
873 { | |
874 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2006 | 875 MOVStreamContext *sc = st->priv_data; |
1845 | 876 unsigned int i, entries; |
877 | |
878 get_byte(pb); /* version */ | |
879 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
880 | |
881 entries = get_be32(pb); | |
882 | |
2030 | 883 if(entries >= UINT_MAX / sizeof(int)) |
1845 | 884 return -1; |
885 | |
886 sc->keyframe_count = entries; | |
2044 | 887 |
888 dprintf(c->fc, "keyframe_count = %d\n", sc->keyframe_count); | |
889 | |
2030 | 890 sc->keyframes = av_malloc(entries * sizeof(int)); |
1845 | 891 if (!sc->keyframes) |
892 return -1; | |
893 for(i=0; i<entries; i++) { | |
894 sc->keyframes[i] = get_be32(pb); | |
2044 | 895 //dprintf(c->fc, "keyframes[]=%d\n", sc->keyframes[i]); |
1845 | 896 } |
897 return 0; | |
898 } | |
899 | |
900 static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
901 { | |
902 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2006 | 903 MOVStreamContext *sc = st->priv_data; |
1845 | 904 unsigned int i, entries, sample_size; |
905 | |
906 get_byte(pb); /* version */ | |
907 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
908 | |
909 sample_size = get_be32(pb); | |
910 if (!sc->sample_size) /* do not overwrite value computed in stsd */ | |
911 sc->sample_size = sample_size; | |
912 entries = get_be32(pb); | |
2030 | 913 if(entries >= UINT_MAX / sizeof(int)) |
1845 | 914 return -1; |
915 | |
916 sc->sample_count = entries; | |
917 if (sample_size) | |
918 return 0; | |
919 | |
2044 | 920 dprintf(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, sc->sample_count); |
921 | |
2030 | 922 sc->sample_sizes = av_malloc(entries * sizeof(int)); |
1845 | 923 if (!sc->sample_sizes) |
924 return -1; | |
925 for(i=0; i<entries; i++) { | |
926 sc->sample_sizes[i] = get_be32(pb); | |
2044 | 927 dprintf(c->fc, "sample_sizes[]=%d\n", sc->sample_sizes[i]); |
1845 | 928 } |
929 return 0; | |
930 } | |
931 | |
932 static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
933 { | |
934 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2006 | 935 MOVStreamContext *sc = st->priv_data; |
1845 | 936 unsigned int i, entries; |
937 int64_t duration=0; | |
938 int64_t total_sample_count=0; | |
939 | |
940 get_byte(pb); /* version */ | |
941 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
942 entries = get_be32(pb); | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
943 if(entries >= UINT_MAX / sizeof(MOV_stts_t)) |
1845 | 944 return -1; |
945 | |
946 sc->stts_count = entries; | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
947 sc->stts_data = av_malloc(entries * sizeof(MOV_stts_t)); |
2807
5bf4b9df2794
return error if malloc failed, found by takis, fix issue 286
bcoudurier
parents:
2806
diff
changeset
|
948 if (!sc->stts_data) |
5bf4b9df2794
return error if malloc failed, found by takis, fix issue 286
bcoudurier
parents:
2806
diff
changeset
|
949 return -1; |
2044 | 950 dprintf(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries); |
1845 | 951 |
952 sc->time_rate=0; | |
953 | |
954 for(i=0; i<entries; i++) { | |
955 int sample_duration; | |
956 int sample_count; | |
957 | |
958 sample_count=get_be32(pb); | |
959 sample_duration = get_be32(pb); | |
960 sc->stts_data[i].count= sample_count; | |
961 sc->stts_data[i].duration= sample_duration; | |
962 | |
963 sc->time_rate= ff_gcd(sc->time_rate, sample_duration); | |
964 | |
1907 | 965 dprintf(c->fc, "sample_count=%d, sample_duration=%d\n",sample_count,sample_duration); |
1845 | 966 |
967 duration+=(int64_t)sample_duration*sample_count; | |
968 total_sample_count+=sample_count; | |
969 } | |
970 | |
971 st->nb_frames= total_sample_count; | |
972 if(duration) | |
973 st->duration= duration; | |
974 return 0; | |
975 } | |
976 | |
977 static int mov_read_ctts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
978 { | |
979 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
2006 | 980 MOVStreamContext *sc = st->priv_data; |
1845 | 981 unsigned int i, entries; |
982 | |
983 get_byte(pb); /* version */ | |
984 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
985 entries = get_be32(pb); | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
986 if(entries >= UINT_MAX / sizeof(MOV_stts_t)) |
1845 | 987 return -1; |
988 | |
989 sc->ctts_count = entries; | |
2045
aa5e56700fdf
cosmectics, use consistant and homogeneous type names for atoms
bcoudurier
parents:
2044
diff
changeset
|
990 sc->ctts_data = av_malloc(entries * sizeof(MOV_stts_t)); |
2807
5bf4b9df2794
return error if malloc failed, found by takis, fix issue 286
bcoudurier
parents:
2806
diff
changeset
|
991 if (!sc->ctts_data) |
5bf4b9df2794
return error if malloc failed, found by takis, fix issue 286
bcoudurier
parents:
2806
diff
changeset
|
992 return -1; |
1907 | 993 dprintf(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries); |
1845 | 994 |
995 for(i=0; i<entries; i++) { | |
996 int count =get_be32(pb); | |
997 int duration =get_be32(pb); | |
998 | |
999 if (duration < 0) { | |
1000 av_log(c->fc, AV_LOG_ERROR, "negative ctts, ignoring\n"); | |
1001 sc->ctts_count = 0; | |
1002 url_fskip(pb, 8 * (entries - i - 1)); | |
1003 break; | |
1004 } | |
1005 sc->ctts_data[i].count = count; | |
1006 sc->ctts_data[i].duration= duration; | |
1007 | |
1008 sc->time_rate= ff_gcd(sc->time_rate, duration); | |
1009 } | |
1010 return 0; | |
1011 } | |
1012 | |
1013 static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
1014 { | |
1015 AVStream *st; | |
1016 MOVStreamContext *sc; | |
1017 | |
1018 st = av_new_stream(c->fc, c->fc->nb_streams); | |
1019 if (!st) return -2; | |
1020 sc = av_mallocz(sizeof(MOVStreamContext)); | |
1021 if (!sc) { | |
1022 av_free(st); | |
1023 return -1; | |
1024 } | |
1025 | |
1026 st->priv_data = sc; | |
1027 st->codec->codec_type = CODEC_TYPE_DATA; | |
1028 st->start_time = 0; /* XXX: check */ | |
1029 | |
1030 return mov_read_default(c, pb, atom); | |
1031 } | |
1032 | |
2296
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1033 static void mov_parse_udta_string(ByteIOContext *pb, char *str, int size) |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1034 { |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1035 uint16_t str_size = get_be16(pb); /* string length */; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1036 |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1037 get_be16(pb); /* skip language */ |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1038 get_buffer(pb, str, FFMIN(size, str_size)); |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1039 } |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1040 |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1041 static int mov_read_udta(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1042 { |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1043 uint64_t end = url_ftell(pb) + atom.size; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1044 |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1045 while (url_ftell(pb) + 8 < end) { |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1046 uint32_t tag_size = get_be32(pb); |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1047 uint32_t tag = get_le32(pb); |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1048 uint64_t next = url_ftell(pb) + tag_size - 8; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1049 |
2547
92bf4673d050
stop parsing udta if size is wrong/garbage, fix issue 154, fix RQ004F14.MOV
bcoudurier
parents:
2299
diff
changeset
|
1050 if (next > end) // stop if tag_size is wrong |
92bf4673d050
stop parsing udta if size is wrong/garbage, fix issue 154, fix RQ004F14.MOV
bcoudurier
parents:
2299
diff
changeset
|
1051 break; |
92bf4673d050
stop parsing udta if size is wrong/garbage, fix issue 154, fix RQ004F14.MOV
bcoudurier
parents:
2299
diff
changeset
|
1052 |
2296
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1053 switch (tag) { |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1054 case MKTAG(0xa9,'n','a','m'): |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1055 mov_parse_udta_string(pb, c->fc->title, sizeof(c->fc->title)); |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1056 break; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1057 case MKTAG(0xa9,'w','r','t'): |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1058 mov_parse_udta_string(pb, c->fc->author, sizeof(c->fc->author)); |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1059 break; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1060 case MKTAG(0xa9,'c','p','y'): |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1061 mov_parse_udta_string(pb, c->fc->copyright, sizeof(c->fc->copyright)); |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1062 break; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1063 case MKTAG(0xa9,'i','n','f'): |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1064 mov_parse_udta_string(pb, c->fc->comment, sizeof(c->fc->comment)); |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1065 break; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1066 default: |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1067 break; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1068 } |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1069 |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1070 url_fseek(pb, next, SEEK_SET); |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1071 } |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1072 |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1073 return 0; |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1074 } |
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1075 |
1845 | 1076 static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) |
1077 { | |
1078 AVStream *st = c->fc->streams[c->fc->nb_streams-1]; | |
1079 int version = get_byte(pb); | |
1080 | |
1081 get_byte(pb); get_byte(pb); | |
1082 get_byte(pb); /* flags */ | |
1083 /* | |
1084 MOV_TRACK_ENABLED 0x0001 | |
1085 MOV_TRACK_IN_MOVIE 0x0002 | |
1086 MOV_TRACK_IN_PREVIEW 0x0004 | |
1087 MOV_TRACK_IN_POSTER 0x0008 | |
1088 */ | |
1089 | |
1090 if (version == 1) { | |
1091 get_be64(pb); | |
1092 get_be64(pb); | |
1093 } else { | |
1094 get_be32(pb); /* creation time */ | |
1095 get_be32(pb); /* modification time */ | |
1096 } | |
1097 st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/ | |
1098 get_be32(pb); /* reserved */ | |
1099 st->start_time = 0; /* check */ | |
1100 (version == 1) ? get_be64(pb) : get_be32(pb); /* highlevel (considering edits) duration in movie timebase */ | |
1101 get_be32(pb); /* reserved */ | |
1102 get_be32(pb); /* reserved */ | |
1103 | |
1104 get_be16(pb); /* layer */ | |
1105 get_be16(pb); /* alternate group */ | |
1106 get_be16(pb); /* volume */ | |
1107 get_be16(pb); /* reserved */ | |
1108 | |
1109 url_fskip(pb, 36); /* display matrix */ | |
1110 | |
1111 /* those are fixed-point */ | |
1112 get_be32(pb); /* track width */ | |
1113 get_be32(pb); /* track height */ | |
1114 | |
1115 return 0; | |
1116 } | |
1117 | |
1118 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */ | |
1119 /* like the files created with Adobe Premiere 5.0, for samples see */ | |
1120 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */ | |
1121 static int mov_read_wide(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
1122 { | |
1123 int err; | |
1124 | |
1125 if (atom.size < 8) | |
1126 return 0; /* continue */ | |
1127 if (get_be32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */ | |
1128 url_fskip(pb, atom.size - 4); | |
1129 return 0; | |
1130 } | |
1131 atom.type = get_le32(pb); | |
1132 atom.offset += 8; | |
1133 atom.size -= 8; | |
1134 if (atom.type != MKTAG('m', 'd', 'a', 't')) { | |
1135 url_fskip(pb, atom.size); | |
1136 return 0; | |
1137 } | |
1138 err = mov_read_mdat(c, pb, atom); | |
1139 return err; | |
1140 } | |
1141 | |
1142 static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
1143 { | |
1144 #ifdef CONFIG_ZLIB | |
1145 ByteIOContext ctx; | |
1146 uint8_t *cmov_data; | |
1147 uint8_t *moov_data; /* uncompressed data */ | |
1148 long cmov_len, moov_len; | |
1149 int ret; | |
1150 | |
1151 get_be32(pb); /* dcom atom */ | |
1152 if (get_le32(pb) != MKTAG( 'd', 'c', 'o', 'm' )) | |
1153 return -1; | |
1154 if (get_le32(pb) != MKTAG( 'z', 'l', 'i', 'b' )) { | |
1155 av_log(NULL, AV_LOG_ERROR, "unknown compression for cmov atom !"); | |
1156 return -1; | |
1157 } | |
1158 get_be32(pb); /* cmvd atom */ | |
1159 if (get_le32(pb) != MKTAG( 'c', 'm', 'v', 'd' )) | |
1160 return -1; | |
1161 moov_len = get_be32(pb); /* uncompressed size */ | |
1162 cmov_len = atom.size - 6 * 4; | |
1163 | |
1164 cmov_data = av_malloc(cmov_len); | |
1165 if (!cmov_data) | |
1166 return -1; | |
1167 moov_data = av_malloc(moov_len); | |
1168 if (!moov_data) { | |
1169 av_free(cmov_data); | |
1170 return -1; | |
1171 } | |
1172 get_buffer(pb, cmov_data, cmov_len); | |
1173 if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK) | |
1174 return -1; | |
1175 if(init_put_byte(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0) | |
1176 return -1; | |
1177 atom.type = MKTAG( 'm', 'o', 'o', 'v' ); | |
1178 atom.offset = 0; | |
1179 atom.size = moov_len; | |
1180 #ifdef DEBUG | |
1181 // { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); } | |
1182 #endif | |
1183 ret = mov_read_default(c, &ctx, atom); | |
1184 av_free(moov_data); | |
1185 av_free(cmov_data); | |
1186 return ret; | |
1187 #else | |
1188 av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n"); | |
1189 return -1; | |
1190 #endif | |
1191 } | |
1192 | |
1193 /* edit list atom */ | |
1194 static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) | |
1195 { | |
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1196 MOVStreamContext *sc = c->fc->streams[c->fc->nb_streams-1]->priv_data; |
1845 | 1197 int i, edit_count; |
1198 | |
1199 get_byte(pb); /* version */ | |
1200 get_byte(pb); get_byte(pb); get_byte(pb); /* flags */ | |
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1201 edit_count= sc->edit_count = get_be32(pb); /* entries */ |
1845 | 1202 |
1203 for(i=0; i<edit_count; i++){ | |
3038
db12cabbe337
warn use if edit list is not starting at 0, a/v desync might occur
bcoudurier
parents:
3037
diff
changeset
|
1204 int time; |
1845 | 1205 get_be32(pb); /* Track duration */ |
3038
db12cabbe337
warn use if edit list is not starting at 0, a/v desync might occur
bcoudurier
parents:
3037
diff
changeset
|
1206 time = get_be32(pb); /* Media time */ |
1845 | 1207 get_be32(pb); /* Media rate */ |
3038
db12cabbe337
warn use if edit list is not starting at 0, a/v desync might occur
bcoudurier
parents:
3037
diff
changeset
|
1208 if (time != 0) |
db12cabbe337
warn use if edit list is not starting at 0, a/v desync might occur
bcoudurier
parents:
3037
diff
changeset
|
1209 av_log(c->fc, AV_LOG_WARNING, "edit list not starting at 0, " |
db12cabbe337
warn use if edit list is not starting at 0, a/v desync might occur
bcoudurier
parents:
3037
diff
changeset
|
1210 "a/v desync might occur, patch welcome\n"); |
1845 | 1211 } |
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1212 dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, sc->edit_count); |
1845 | 1213 return 0; |
1214 } | |
1215 | |
1216 static const MOVParseTableEntry mov_default_parse_table[] = { | |
1217 /* mp4 atoms */ | |
1218 { MKTAG( 'c', 'o', '6', '4' ), mov_read_stco }, | |
1219 { MKTAG( 'c', 't', 't', 's' ), mov_read_ctts }, /* composition time to sample */ | |
1220 { MKTAG( 'e', 'd', 't', 's' ), mov_read_default }, | |
1221 { MKTAG( 'e', 'l', 's', 't' ), mov_read_elst }, | |
1222 { MKTAG( 'e', 'n', 'd', 'a' ), mov_read_enda }, | |
1223 { MKTAG( 'f', 'i', 'e', 'l' ), mov_read_extradata }, | |
1224 { MKTAG( 'f', 't', 'y', 'p' ), mov_read_ftyp }, | |
2837
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
1225 { MKTAG( 'g', 'l', 'b', 'l' ), mov_read_glbl }, |
1845 | 1226 { MKTAG( 'h', 'd', 'l', 'r' ), mov_read_hdlr }, |
1227 { MKTAG( 'j', 'p', '2', 'h' ), mov_read_extradata }, | |
1228 { MKTAG( 'm', 'd', 'a', 't' ), mov_read_mdat }, | |
1229 { MKTAG( 'm', 'd', 'h', 'd' ), mov_read_mdhd }, | |
1230 { MKTAG( 'm', 'd', 'i', 'a' ), mov_read_default }, | |
1231 { MKTAG( 'm', 'i', 'n', 'f' ), mov_read_default }, | |
1232 { MKTAG( 'm', 'o', 'o', 'v' ), mov_read_moov }, | |
1233 { MKTAG( 'm', 'v', 'h', 'd' ), mov_read_mvhd }, | |
1234 { MKTAG( 'S', 'M', 'I', ' ' ), mov_read_smi }, /* Sorenson extension ??? */ | |
1235 { MKTAG( 'a', 'l', 'a', 'c' ), mov_read_extradata }, /* alac specific atom */ | |
2837
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
1236 { MKTAG( 'a', 'v', 'c', 'C' ), mov_read_glbl }, |
1845 | 1237 { MKTAG( 's', 't', 'b', 'l' ), mov_read_default }, |
1238 { MKTAG( 's', 't', 'c', 'o' ), mov_read_stco }, | |
1239 { MKTAG( 's', 't', 's', 'c' ), mov_read_stsc }, | |
1240 { MKTAG( 's', 't', 's', 'd' ), mov_read_stsd }, /* sample description */ | |
1241 { MKTAG( 's', 't', 's', 's' ), mov_read_stss }, /* sync sample */ | |
1242 { MKTAG( 's', 't', 's', 'z' ), mov_read_stsz }, /* sample size */ | |
1243 { MKTAG( 's', 't', 't', 's' ), mov_read_stts }, | |
1244 { MKTAG( 't', 'k', 'h', 'd' ), mov_read_tkhd }, /* track header */ | |
1245 { MKTAG( 't', 'r', 'a', 'k' ), mov_read_trak }, | |
2296
0cfc556604e3
fill title, author, copyright and comment fields by parsing udta atom
benoit
parents:
2164
diff
changeset
|
1246 { MKTAG( 'u', 'd', 't', 'a' ), mov_read_udta }, |
1845 | 1247 { MKTAG( 'w', 'a', 'v', 'e' ), mov_read_wave }, |
1248 { MKTAG( 'e', 's', 'd', 's' ), mov_read_esds }, | |
1249 { MKTAG( 'w', 'i', 'd', 'e' ), mov_read_wide }, /* place holder */ | |
1250 { MKTAG( 'c', 'm', 'o', 'v' ), mov_read_cmov }, | |
2826 | 1251 { 0, NULL } |
1845 | 1252 }; |
1253 | |
1254 /* XXX: is it sufficient ? */ | |
1255 static int mov_probe(AVProbeData *p) | |
1256 { | |
1257 unsigned int offset; | |
1258 uint32_t tag; | |
1259 int score = 0; | |
1260 | |
1261 /* check file header */ | |
1262 offset = 0; | |
1263 for(;;) { | |
1264 /* ignore invalid offset */ | |
1265 if ((offset + 8) > (unsigned int)p->buf_size) | |
1266 return score; | |
1267 tag = AV_RL32(p->buf + offset + 4); | |
1268 switch(tag) { | |
1269 /* check for obvious tags */ | |
1270 case MKTAG( 'j', 'P', ' ', ' ' ): /* jpeg 2000 signature */ | |
1271 case MKTAG( 'm', 'o', 'o', 'v' ): | |
1272 case MKTAG( 'm', 'd', 'a', 't' ): | |
1273 case MKTAG( 'p', 'n', 'o', 't' ): /* detect movs with preview pics like ew.mov and april.mov */ | |
1274 case MKTAG( 'u', 'd', 't', 'a' ): /* Packet Video PVAuthor adds this and a lot of more junk */ | |
1275 return AVPROBE_SCORE_MAX; | |
1276 /* those are more common words, so rate then a bit less */ | |
2039
5dd45d0a5340
add 'wide' reversed tag in probe, detect broken xdcam files xdcam_hd_1080i60.mov
bcoudurier
parents:
2030
diff
changeset
|
1277 case MKTAG( 'e', 'd', 'i', 'w' ): /* xdcam files have reverted first tags */ |
1845 | 1278 case MKTAG( 'w', 'i', 'd', 'e' ): |
1279 case MKTAG( 'f', 'r', 'e', 'e' ): | |
1280 case MKTAG( 'j', 'u', 'n', 'k' ): | |
1281 case MKTAG( 'p', 'i', 'c', 't' ): | |
1282 return AVPROBE_SCORE_MAX - 5; | |
1283 case MKTAG( 'f', 't', 'y', 'p' ): | |
1284 case MKTAG( 's', 'k', 'i', 'p' ): | |
1285 case MKTAG( 'u', 'u', 'i', 'd' ): | |
1286 offset = AV_RB32(p->buf+offset) + offset; | |
1287 /* if we only find those cause probedata is too small at least rate them */ | |
1288 score = AVPROBE_SCORE_MAX - 50; | |
1289 break; | |
1290 default: | |
1291 /* unrecognized tag */ | |
1292 return score; | |
1293 } | |
1294 } | |
1295 return score; | |
1296 } | |
1297 | |
1298 static void mov_build_index(MOVContext *mov, AVStream *st) | |
1299 { | |
1300 MOVStreamContext *sc = st->priv_data; | |
1301 offset_t current_offset; | |
1302 int64_t current_dts = 0; | |
1303 unsigned int stts_index = 0; | |
1304 unsigned int stsc_index = 0; | |
1305 unsigned int stss_index = 0; | |
3036
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1306 unsigned int i, j; |
1845 | 1307 |
3029
10abe8748ec2
use correct demux mechanism when audio compression id is -2, dv audio does not matter, demux partially qt_dv_pal_test.mov which does NOT use cid -2
bcoudurier
parents:
3027
diff
changeset
|
1308 if (sc->sample_sizes || st->codec->codec_type == CODEC_TYPE_VIDEO || |
10abe8748ec2
use correct demux mechanism when audio compression id is -2, dv audio does not matter, demux partially qt_dv_pal_test.mov which does NOT use cid -2
bcoudurier
parents:
3027
diff
changeset
|
1309 sc->audio_cid == -2) { |
1845 | 1310 unsigned int current_sample = 0; |
1311 unsigned int stts_sample = 0; | |
1312 unsigned int keyframe, sample_size; | |
1313 unsigned int distance = 0; | |
1314 | |
1315 st->nb_frames = sc->sample_count; | |
1316 for (i = 0; i < sc->chunk_count; i++) { | |
1317 current_offset = sc->chunk_offsets[i]; | |
2902 | 1318 if (stsc_index + 1 < sc->sample_to_chunk_sz && |
1319 i + 1 == sc->sample_to_chunk[stsc_index + 1].first) | |
1845 | 1320 stsc_index++; |
1321 for (j = 0; j < sc->sample_to_chunk[stsc_index].count; j++) { | |
1322 if (current_sample >= sc->sample_count) { | |
1323 av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n"); | |
1324 goto out; | |
1325 } | |
1326 keyframe = !sc->keyframe_count || current_sample + 1 == sc->keyframes[stss_index]; | |
1327 if (keyframe) { | |
1328 distance = 0; | |
1329 if (stss_index + 1 < sc->keyframe_count) | |
1330 stss_index++; | |
1331 } | |
1332 sample_size = sc->sample_size > 0 ? sc->sample_size : sc->sample_sizes[current_sample]; | |
2902 | 1333 dprintf(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", " |
1334 "size %d, distance %d, keyframe %d\n", st->index, current_sample, | |
1335 current_offset, current_dts, sample_size, distance, keyframe); | |
2967
2fc866d3614f
Only export packets which belong to the existing AVStream.
michael
parents:
2966
diff
changeset
|
1336 if(sc->sample_to_chunk[stsc_index].id - 1 == sc->pseudo_stream_id) |
2968 | 1337 av_add_index_entry(st, current_offset, current_dts, sample_size, distance, |
1338 keyframe ? AVINDEX_KEYFRAME : 0); | |
1845 | 1339 current_offset += sample_size; |
1340 assert(sc->stts_data[stts_index].duration % sc->time_rate == 0); | |
1341 current_dts += sc->stts_data[stts_index].duration / sc->time_rate; | |
1342 distance++; | |
1343 stts_sample++; | |
1344 current_sample++; | |
1345 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) { | |
1346 stts_sample = 0; | |
1347 stts_index++; | |
1348 } | |
1349 } | |
1350 } | |
1351 } else { /* read whole chunk */ | |
1352 unsigned int chunk_samples, chunk_size, chunk_duration; | |
3030
5064dffc46b7
split chunks in the case of big compressed audio frames,
bcoudurier
parents:
3029
diff
changeset
|
1353 unsigned int frames = 1; |
1845 | 1354 for (i = 0; i < sc->chunk_count; i++) { |
1355 current_offset = sc->chunk_offsets[i]; | |
2902 | 1356 if (stsc_index + 1 < sc->sample_to_chunk_sz && |
1357 i + 1 == sc->sample_to_chunk[stsc_index + 1].first) | |
1845 | 1358 stsc_index++; |
1359 chunk_samples = sc->sample_to_chunk[stsc_index].count; | |
3041
f68603a02de9
honor stsd v1 first, fix mace surge-2-8-MAC3.mov, beware of mulaw,alaw
bcoudurier
parents:
3040
diff
changeset
|
1360 /* get chunk size, beware of alaw/ulaw/mace */ |
f68603a02de9
honor stsd v1 first, fix mace surge-2-8-MAC3.mov, beware of mulaw,alaw
bcoudurier
parents:
3040
diff
changeset
|
1361 if (sc->samples_per_frame > 0 && |
f68603a02de9
honor stsd v1 first, fix mace surge-2-8-MAC3.mov, beware of mulaw,alaw
bcoudurier
parents:
3040
diff
changeset
|
1362 (chunk_samples * sc->bytes_per_frame % sc->samples_per_frame == 0)) { |
3031 | 1363 if (sc->samples_per_frame < 1024) |
1364 chunk_size = chunk_samples * sc->bytes_per_frame / sc->samples_per_frame; | |
1365 else { | |
1366 chunk_size = sc->bytes_per_frame; | |
1367 frames = chunk_samples / sc->samples_per_frame; | |
1368 chunk_samples = sc->samples_per_frame; | |
3030
5064dffc46b7
split chunks in the case of big compressed audio frames,
bcoudurier
parents:
3029
diff
changeset
|
1369 } |
3041
f68603a02de9
honor stsd v1 first, fix mace surge-2-8-MAC3.mov, beware of mulaw,alaw
bcoudurier
parents:
3040
diff
changeset
|
1370 } else if (sc->sample_size > 1 || st->codec->bits_per_sample == 8) { |
f68603a02de9
honor stsd v1 first, fix mace surge-2-8-MAC3.mov, beware of mulaw,alaw
bcoudurier
parents:
3040
diff
changeset
|
1371 chunk_size = chunk_samples * sc->sample_size; |
3036
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1372 } else { |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1373 av_log(mov->fc, AV_LOG_ERROR, "could not determine chunk size, report problem\n"); |
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1374 goto out; |
1845 | 1375 } |
3030
5064dffc46b7
split chunks in the case of big compressed audio frames,
bcoudurier
parents:
3029
diff
changeset
|
1376 for (j = 0; j < frames; j++) { |
3083 | 1377 av_add_index_entry(st, current_offset, current_dts, chunk_size, 0, AVINDEX_KEYFRAME); |
1378 /* get chunk duration */ | |
1379 chunk_duration = 0; | |
1380 while (chunk_samples > 0) { | |
1381 if (chunk_samples < sc->stts_data[stts_index].count) { | |
1382 chunk_duration += sc->stts_data[stts_index].duration * chunk_samples; | |
1383 sc->stts_data[stts_index].count -= chunk_samples; | |
1384 break; | |
1385 } else { | |
1386 chunk_duration += sc->stts_data[stts_index].duration * chunk_samples; | |
1387 chunk_samples -= sc->stts_data[stts_index].count; | |
1388 if (stts_index + 1 < sc->stts_count) | |
1389 stts_index++; | |
1390 } | |
1845 | 1391 } |
3083 | 1392 current_offset += sc->bytes_per_frame; |
1393 dprintf(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", size %d, " | |
1394 "duration %d\n", st->index, i, current_offset, current_dts, chunk_size, chunk_duration); | |
1395 assert(chunk_duration % sc->time_rate == 0); | |
1396 current_dts += chunk_duration / sc->time_rate; | |
3030
5064dffc46b7
split chunks in the case of big compressed audio frames,
bcoudurier
parents:
3029
diff
changeset
|
1397 } |
1845 | 1398 } |
1399 } | |
1400 out: | |
1401 /* adjust sample count to avindex entries */ | |
1402 sc->sample_count = st->nb_index_entries; | |
1403 } | |
1404 | |
1405 static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap) | |
1406 { | |
2006 | 1407 MOVContext *mov = s->priv_data; |
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2730
diff
changeset
|
1408 ByteIOContext *pb = s->pb; |
1845 | 1409 int i, err; |
1410 MOV_atom_t atom = { 0, 0, 0 }; | |
1411 | |
1412 mov->fc = s; | |
1413 | |
1414 if(!url_is_streamed(pb)) /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */ | |
1415 atom.size = url_fsize(pb); | |
1416 else | |
2026 | 1417 atom.size = INT64_MAX; |
1845 | 1418 |
1419 /* check MOV header */ | |
1420 err = mov_read_default(mov, pb, atom); | |
1421 if (err<0 || (!mov->found_moov && !mov->found_mdat)) { | |
1422 av_log(s, AV_LOG_ERROR, "mov: header not found !!! (err:%d, moov:%d, mdat:%d) pos:%"PRId64"\n", | |
1423 err, mov->found_moov, mov->found_mdat, url_ftell(pb)); | |
1424 return -1; | |
1425 } | |
1907 | 1426 dprintf(mov->fc, "on_parse_exit_offset=%d\n", (int) url_ftell(pb)); |
1845 | 1427 |
2823 | 1428 for(i=0; i<s->nb_streams; i++) { |
1938 | 1429 AVStream *st = s->streams[i]; |
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1430 MOVStreamContext *sc = st->priv_data; |
1845 | 1431 /* sanity checks */ |
1432 if(!sc->stts_count || !sc->chunk_count || !sc->sample_to_chunk_sz || | |
1433 (!sc->sample_size && !sc->sample_count)){ | |
1434 av_log(s, AV_LOG_ERROR, "missing mandatory atoms, broken header\n"); | |
1963
81268e2bd9aa
unset sample count to disable track when is broken
bcoudurier
parents:
1962
diff
changeset
|
1435 sc->sample_count = 0; //ignore track |
1950
4ef37f929c21
dont fail immediately when a somehow broken track is detected, some tracks might be good, fix mi2_vorbis51.mp4
bcoudurier
parents:
1948
diff
changeset
|
1436 continue; |
1845 | 1437 } |
1438 if(!sc->time_rate) | |
1439 sc->time_rate=1; | |
1440 if(!sc->time_scale) | |
1441 sc->time_scale= mov->time_scale; | |
1939 | 1442 av_set_pts_info(st, 64, sc->time_rate, sc->time_scale); |
1845 | 1443 |
1938 | 1444 if (st->codec->codec_type == CODEC_TYPE_AUDIO && sc->stts_count == 1) |
3082 | 1445 st->codec->frame_size = av_rescale(sc->time_rate, st->codec->sample_rate, sc->time_scale); |
1938 | 1446 |
1939 | 1447 if(st->duration != AV_NOPTS_VALUE){ |
1448 assert(st->duration % sc->time_rate == 0); | |
1449 st->duration /= sc->time_rate; | |
1845 | 1450 } |
1451 sc->ffindex = i; | |
1939 | 1452 mov_build_index(mov, st); |
3081
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1453 |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1454 switch (st->codec->codec_id) { |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1455 #ifdef CONFIG_H261_DECODER |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1456 case CODEC_ID_H261: |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1457 #endif |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1458 #ifdef CONFIG_H263_DECODER |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1459 case CODEC_ID_H263: |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1460 #endif |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1461 #ifdef CONFIG_MPEG4_DECODER |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1462 case CODEC_ID_MPEG4: |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1463 #endif |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1464 st->codec->width= 0; /* let decoder init width/height */ |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1465 st->codec->height= 0; |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1466 break; |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1467 #ifdef CONFIG_LIBFAAD |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1468 case CODEC_ID_AAC: |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1469 #endif |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1470 #ifdef CONFIG_VORBIS_DECODER |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1471 case CODEC_ID_VORBIS: |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1472 #endif |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1473 case CODEC_ID_MP3ON4: |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1474 st->codec->sample_rate= 0; /* let decoder init parameters properly */ |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1475 break; |
e9f7c2764298
move parameters reset after setting stream parameters, will need those infos
bcoudurier
parents:
3078
diff
changeset
|
1476 } |
1845 | 1477 } |
1478 | |
2823 | 1479 for(i=0; i<s->nb_streams; i++) { |
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1480 MOVStreamContext *sc = s->streams[i]->priv_data; |
2164 | 1481 /* Do not need those anymore. */ |
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1482 av_freep(&sc->chunk_offsets); |
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1483 av_freep(&sc->sample_to_chunk); |
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1484 av_freep(&sc->sample_sizes); |
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1485 av_freep(&sc->keyframes); |
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1486 av_freep(&sc->stts_data); |
1845 | 1487 } |
1488 return 0; | |
1489 } | |
1490 | |
1491 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt) | |
1492 { | |
1493 MOVContext *mov = s->priv_data; | |
1494 MOVStreamContext *sc = 0; | |
1495 AVIndexEntry *sample = 0; | |
1496 int64_t best_dts = INT64_MAX; | |
1497 int i; | |
1498 | |
2823 | 1499 for (i = 0; i < s->nb_streams; i++) { |
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1500 AVStream *st = s->streams[i]; |
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1501 MOVStreamContext *msc = st->priv_data; |
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1502 if (st->discard != AVDISCARD_ALL && msc->current_sample < msc->sample_count) { |
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1503 AVIndexEntry *current_sample = &st->index_entries[msc->current_sample]; |
2902 | 1504 int64_t dts = av_rescale(current_sample->timestamp * (int64_t)msc->time_rate, |
1505 AV_TIME_BASE, msc->time_scale); | |
2030 | 1506 dprintf(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts); |
2817 | 1507 if (!sample || (url_is_streamed(s->pb) && current_sample->pos < sample->pos) || |
1508 (!url_is_streamed(s->pb) && | |
1509 ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) || | |
1510 (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))) { | |
1845 | 1511 sample = current_sample; |
1512 best_dts = dts; | |
1513 sc = msc; | |
1514 } | |
1515 } | |
1516 } | |
1517 if (!sample) | |
1518 return -1; | |
1519 /* must be done just before reading, to avoid infinite loop on sample */ | |
1520 sc->current_sample++; | |
2817 | 1521 if (url_fseek(s->pb, sample->pos, SEEK_SET) != sample->pos) { |
2902 | 1522 av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n", |
1523 sc->ffindex, sample->pos); | |
1845 | 1524 return -1; |
1525 } | |
3027 | 1526 av_get_packet(s->pb, pkt, sample->size); |
1845 | 1527 #ifdef CONFIG_DV_DEMUXER |
3027 | 1528 if (mov->dv_demux && sc->dv_audio_container) { |
1529 dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size); | |
1530 av_free(pkt->data); | |
3034 | 1531 pkt->size = 0; |
1532 if (dv_get_packet(mov->dv_demux, pkt) < 0) | |
1533 return -1; | |
3027 | 1534 } |
1845 | 1535 #endif |
1536 pkt->stream_index = sc->ffindex; | |
1537 pkt->dts = sample->timestamp; | |
1538 if (sc->ctts_data) { | |
1539 assert(sc->ctts_data[sc->sample_to_ctime_index].duration % sc->time_rate == 0); | |
1540 pkt->pts = pkt->dts + sc->ctts_data[sc->sample_to_ctime_index].duration / sc->time_rate; | |
1541 /* update ctts context */ | |
1542 sc->sample_to_ctime_sample++; | |
2902 | 1543 if (sc->sample_to_ctime_index < sc->ctts_count && |
1544 sc->ctts_data[sc->sample_to_ctime_index].count == sc->sample_to_ctime_sample) { | |
1845 | 1545 sc->sample_to_ctime_index++; |
1546 sc->sample_to_ctime_sample = 0; | |
1547 } | |
1548 } else { | |
1549 pkt->pts = pkt->dts; | |
1550 } | |
1551 pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? PKT_FLAG_KEY : 0; | |
1552 pkt->pos = sample->pos; | |
2902 | 1553 dprintf(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n", |
1554 pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration); | |
1845 | 1555 return 0; |
1556 } | |
1557 | |
1558 static int mov_seek_stream(AVStream *st, int64_t timestamp, int flags) | |
1559 { | |
1560 MOVStreamContext *sc = st->priv_data; | |
1561 int sample, time_sample; | |
1562 int i; | |
1563 | |
1564 sample = av_index_search_timestamp(st, timestamp, flags); | |
1907 | 1565 dprintf(st->codec, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample); |
1845 | 1566 if (sample < 0) /* not sure what to do */ |
1567 return -1; | |
1568 sc->current_sample = sample; | |
2030 | 1569 dprintf(st->codec, "stream %d, found sample %d\n", st->index, sc->current_sample); |
1845 | 1570 /* adjust ctts index */ |
1571 if (sc->ctts_data) { | |
1572 time_sample = 0; | |
1573 for (i = 0; i < sc->ctts_count; i++) { | |
2083
2c3887f02739
fix ctts index computation when seeking, check must be done against next ctts sample, thanks to Uoti
bcoudurier
parents:
2046
diff
changeset
|
1574 int next = time_sample + sc->ctts_data[i].count; |
2c3887f02739
fix ctts index computation when seeking, check must be done against next ctts sample, thanks to Uoti
bcoudurier
parents:
2046
diff
changeset
|
1575 if (next > sc->current_sample) { |
1845 | 1576 sc->sample_to_ctime_index = i; |
2083
2c3887f02739
fix ctts index computation when seeking, check must be done against next ctts sample, thanks to Uoti
bcoudurier
parents:
2046
diff
changeset
|
1577 sc->sample_to_ctime_sample = sc->current_sample - time_sample; |
1845 | 1578 break; |
1579 } | |
2083
2c3887f02739
fix ctts index computation when seeking, check must be done against next ctts sample, thanks to Uoti
bcoudurier
parents:
2046
diff
changeset
|
1580 time_sample = next; |
1845 | 1581 } |
1582 } | |
1583 return sample; | |
1584 } | |
1585 | |
1586 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags) | |
1587 { | |
1588 AVStream *st; | |
1589 int64_t seek_timestamp, timestamp; | |
1590 int sample; | |
1591 int i; | |
1592 | |
1593 if (stream_index >= s->nb_streams) | |
1594 return -1; | |
1595 | |
1596 st = s->streams[stream_index]; | |
1597 sample = mov_seek_stream(st, sample_time, flags); | |
1598 if (sample < 0) | |
1599 return -1; | |
1600 | |
1601 /* adjust seek timestamp to found sample timestamp */ | |
1602 seek_timestamp = st->index_entries[sample].timestamp; | |
1603 | |
1604 for (i = 0; i < s->nb_streams; i++) { | |
1605 st = s->streams[i]; | |
1606 if (stream_index == i || st->discard == AVDISCARD_ALL) | |
1607 continue; | |
1608 | |
1609 timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base); | |
1610 mov_seek_stream(st, timestamp, flags); | |
1611 } | |
1612 return 0; | |
1613 } | |
1614 | |
1615 static int mov_read_close(AVFormatContext *s) | |
1616 { | |
1617 int i; | |
2006 | 1618 MOVContext *mov = s->priv_data; |
2823 | 1619 for(i=0; i<s->nb_streams; i++) { |
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1620 MOVStreamContext *sc = s->streams[i]->priv_data; |
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
1621 av_freep(&sc->ctts_data); |
2084 | 1622 } |
1845 | 1623 if(mov->dv_demux){ |
1624 for(i=0; i<mov->dv_fctx->nb_streams; i++){ | |
1625 av_freep(&mov->dv_fctx->streams[i]->codec); | |
1626 av_freep(&mov->dv_fctx->streams[i]); | |
1627 } | |
1628 av_freep(&mov->dv_fctx); | |
1629 av_freep(&mov->dv_demux); | |
1630 } | |
1631 return 0; | |
1632 } | |
1633 | |
1634 AVInputFormat mov_demuxer = { | |
1635 "mov,mp4,m4a,3gp,3g2,mj2", | |
1636 "QuickTime/MPEG4/Motion JPEG 2000 format", | |
1637 sizeof(MOVContext), | |
1638 mov_probe, | |
1639 mov_read_header, | |
1640 mov_read_packet, | |
1641 mov_read_close, | |
1642 mov_read_seek, | |
1643 }; |