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