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