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