OSDN Git Service

Merge remote-tracking branch 'qatar/master'
[coroid/ffmpeg_saccubus.git] / libavformat / mov.c
1 /*
2  * MOV demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include <limits.h>
24
25 //#define DEBUG
26 //#define MOV_EXPORT_ALL_METADATA
27
28 #include "libavutil/intreadwrite.h"
29 #include "libavutil/avstring.h"
30 #include "libavutil/dict.h"
31 #include "avformat.h"
32 #include "avio_internal.h"
33 #include "riff.h"
34 #include "isom.h"
35 #include "libavcodec/get_bits.h"
36
37 #if CONFIG_ZLIB
38 #include <zlib.h>
39 #endif
40
41 /*
42  * First version by Francois Revol revol@free.fr
43  * Seek function by Gael Chardon gael.dev@4now.net
44  *
45  * Features and limitations:
46  * - reads most of the QT files I have (at least the structure),
47  *   Sample QuickTime files with mp3 audio can be found at: http://www.3ivx.com/showcase.html
48  * - the code is quite ugly... maybe I won't do it recursive next time :-)
49  *
50  * Funny I didn't know about http://sourceforge.net/projects/qt-ffmpeg/
51  * when coding this :) (it's a writer anyway)
52  *
53  * Reference documents:
54  * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt
55  * Apple:
56  *  http://developer.apple.com/documentation/QuickTime/QTFF/
57  *  http://developer.apple.com/documentation/QuickTime/QTFF/qtff.pdf
58  * QuickTime is a trademark of Apple (AFAIK :))
59  */
60
61 #include "qtpalette.h"
62
63
64 #undef NDEBUG
65 #include <assert.h>
66
67 /* XXX: it's the first time I make a recursive parser I think... sorry if it's ugly :P */
68
69 /* those functions parse an atom */
70 /* return code:
71   0: continue to parse next atom
72  <0: error occurred, exit
73 */
74 /* links atom IDs to parse functions */
75 typedef struct MOVParseTableEntry {
76     uint32_t type;
77     int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom);
78 } MOVParseTableEntry;
79
80 static const MOVParseTableEntry mov_default_parse_table[];
81
82 static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb, unsigned len, const char *type)
83 {
84     char buf[16];
85
86     avio_rb16(pb); // unknown
87     snprintf(buf, sizeof(buf), "%d", avio_rb16(pb));
88     av_dict_set(&c->fc->metadata, type, buf, 0);
89
90     avio_rb16(pb); // total tracks/discs
91
92     return 0;
93 }
94
95 static const uint32_t mac_to_unicode[128] = {
96     0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
97     0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
98     0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
99     0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
100     0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
101     0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
102     0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
103     0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
104     0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
105     0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
106     0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
107     0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
108     0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
109     0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
110     0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
111     0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
112 };
113
114 static int mov_read_mac_string(MOVContext *c, AVIOContext *pb, int len,
115                                char *dst, int dstlen)
116 {
117     char *p = dst;
118     char *end = dst+dstlen-1;
119     int i;
120
121     for (i = 0; i < len; i++) {
122         uint8_t t, c = avio_r8(pb);
123         if (c < 0x80 && p < end)
124             *p++ = c;
125         else
126             PUT_UTF8(mac_to_unicode[c-0x80], t, if (p < end) *p++ = t;);
127     }
128     *p = 0;
129     return p - dst;
130 }
131
132 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
133 {
134 #ifdef MOV_EXPORT_ALL_METADATA
135     char tmp_key[5];
136 #endif
137     char str[1024], key2[16], language[4] = {0};
138     const char *key = NULL;
139     uint16_t str_size, langcode = 0;
140     uint32_t data_type = 0;
141     int (*parse)(MOVContext*, AVIOContext*, unsigned, const char *) = NULL;
142
143     switch (atom.type) {
144     case MKTAG(0xa9,'n','a','m'): key = "title";     break;
145     case MKTAG(0xa9,'a','u','t'):
146     case MKTAG(0xa9,'A','R','T'): key = "artist";    break;
147     case MKTAG( 'a','A','R','T'): key = "album_artist";break;
148     case MKTAG(0xa9,'w','r','t'): key = "composer";  break;
149     case MKTAG( 'c','p','r','t'):
150     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
151     case MKTAG(0xa9,'g','r','p'): key = "grouping"; break;
152     case MKTAG(0xa9,'l','y','r'): key = "lyrics"; break;
153     case MKTAG(0xa9,'c','m','t'):
154     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;
155     case MKTAG(0xa9,'a','l','b'): key = "album";     break;
156     case MKTAG(0xa9,'d','a','y'): key = "date";      break;
157     case MKTAG(0xa9,'g','e','n'): key = "genre";     break;
158     case MKTAG(0xa9,'t','o','o'):
159     case MKTAG(0xa9,'s','w','r'): key = "encoder";   break;
160     case MKTAG(0xa9,'e','n','c'): key = "encoder";   break;
161     case MKTAG( 'd','e','s','c'): key = "description";break;
162     case MKTAG( 'l','d','e','s'): key = "synopsis";  break;
163     case MKTAG( 't','v','s','h'): key = "show";      break;
164     case MKTAG( 't','v','e','n'): key = "episode_id";break;
165     case MKTAG( 't','v','n','n'): key = "network";   break;
166     case MKTAG( 't','r','k','n'): key = "track";
167         parse = mov_metadata_track_or_disc_number; break;
168     case MKTAG( 'd','i','s','k'): key = "disc";
169         parse = mov_metadata_track_or_disc_number; break;
170     }
171
172     if (c->itunes_metadata && atom.size > 8) {
173         int data_size = avio_rb32(pb);
174         int tag = avio_rl32(pb);
175         if (tag == MKTAG('d','a','t','a')) {
176             data_type = avio_rb32(pb); // type
177             avio_rb32(pb); // unknown
178             str_size = data_size - 16;
179             atom.size -= 16;
180         } else return 0;
181     } else if (atom.size > 4 && key && !c->itunes_metadata) {
182         str_size = avio_rb16(pb); // string length
183         langcode = avio_rb16(pb);
184         ff_mov_lang_to_iso639(langcode, language);
185         atom.size -= 4;
186     } else
187         str_size = atom.size;
188
189 #ifdef MOV_EXPORT_ALL_METADATA
190     if (!key) {
191         snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
192         key = tmp_key;
193     }
194 #endif
195
196     if (!key)
197         return 0;
198     if (atom.size < 0)
199         return -1;
200
201     str_size = FFMIN3(sizeof(str)-1, str_size, atom.size);
202
203     if (parse)
204         parse(c, pb, str_size, key);
205     else {
206         if (data_type == 3 || (data_type == 0 && langcode < 0x800)) { // MAC Encoded
207             mov_read_mac_string(c, pb, str_size, str, sizeof(str));
208         } else {
209             avio_read(pb, str, str_size);
210             str[str_size] = 0;
211         }
212         av_dict_set(&c->fc->metadata, key, str, 0);
213         if (*language && strcmp(language, "und")) {
214             snprintf(key2, sizeof(key2), "%s-%s", key, language);
215             av_dict_set(&c->fc->metadata, key2, str, 0);
216         }
217     }
218     av_dlog(c->fc, "lang \"%3s\" ", language);
219     av_dlog(c->fc, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64"\n",
220             key, str, (char*)&atom.type, str_size, atom.size);
221
222     return 0;
223 }
224
225 static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
226 {
227     int64_t start;
228     int i, nb_chapters, str_len, version;
229     char str[256+1];
230
231     if ((atom.size -= 5) < 0)
232         return 0;
233
234     version = avio_r8(pb);
235     avio_rb24(pb);
236     if (version)
237         avio_rb32(pb); // ???
238     nb_chapters = avio_r8(pb);
239
240     for (i = 0; i < nb_chapters; i++) {
241         if (atom.size < 9)
242             return 0;
243
244         start = avio_rb64(pb);
245         str_len = avio_r8(pb);
246
247         if ((atom.size -= 9+str_len) < 0)
248             return 0;
249
250         avio_read(pb, str, str_len);
251         str[str_len] = 0;
252         ff_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str);
253     }
254     return 0;
255 }
256
257 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
258 {
259     int64_t total_size = 0;
260     MOVAtom a;
261     int i;
262
263     if (atom.size < 0)
264         atom.size = INT64_MAX;
265     while (total_size + 8 < atom.size && !url_feof(pb)) {
266         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
267         a.size = atom.size;
268         a.type=0;
269         if(atom.size >= 8) {
270             a.size = avio_rb32(pb);
271             a.type = avio_rl32(pb);
272         }
273         av_dlog(c->fc, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
274                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
275         total_size += 8;
276         if (a.size == 1) { /* 64 bit extended size */
277             a.size = avio_rb64(pb) - 8;
278             total_size += 8;
279         }
280         if (a.size == 0) {
281             a.size = atom.size - total_size;
282             if (a.size <= 8)
283                 break;
284         }
285         a.size -= 8;
286         if(a.size < 0)
287             break;
288         a.size = FFMIN(a.size, atom.size - total_size);
289
290         for (i = 0; mov_default_parse_table[i].type; i++)
291             if (mov_default_parse_table[i].type == a.type) {
292                 parse = mov_default_parse_table[i].parse;
293                 break;
294             }
295
296         // container is user data
297         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
298                        atom.type == MKTAG('i','l','s','t')))
299             parse = mov_read_udta_string;
300
301         if (!parse) { /* skip leaf atoms data */
302             avio_skip(pb, a.size);
303         } else {
304             int64_t start_pos = avio_tell(pb);
305             int64_t left;
306             int err = parse(c, pb, a);
307             if (err < 0)
308                 return err;
309             if (c->found_moov && c->found_mdat &&
310                 (!pb->seekable || start_pos + a.size == avio_size(pb)))
311                 return 0;
312             left = a.size - avio_tell(pb) + start_pos;
313             if (left > 0) /* skip garbage at atom end */
314                 avio_skip(pb, left);
315         }
316
317         total_size += a.size;
318     }
319
320     if (total_size < atom.size && atom.size < 0x7ffff)
321         avio_skip(pb, atom.size - total_size);
322
323     return 0;
324 }
325
326 static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
327 {
328     AVStream *st;
329     MOVStreamContext *sc;
330     int entries, i, j;
331
332     if (c->fc->nb_streams < 1)
333         return 0;
334     st = c->fc->streams[c->fc->nb_streams-1];
335     sc = st->priv_data;
336
337     avio_rb32(pb); // version + flags
338     entries = avio_rb32(pb);
339     if (entries >= UINT_MAX / sizeof(*sc->drefs))
340         return -1;
341     sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
342     if (!sc->drefs)
343         return AVERROR(ENOMEM);
344     sc->drefs_count = entries;
345
346     for (i = 0; i < sc->drefs_count; i++) {
347         MOVDref *dref = &sc->drefs[i];
348         uint32_t size = avio_rb32(pb);
349         int64_t next = avio_tell(pb) + size - 4;
350
351         if (size < 12)
352             return -1;
353
354         dref->type = avio_rl32(pb);
355         avio_rb32(pb); // version + flags
356         av_dlog(c->fc, "type %.4s size %d\n", (char*)&dref->type, size);
357
358         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
359             /* macintosh alias record */
360             uint16_t volume_len, len;
361             int16_t type;
362
363             avio_skip(pb, 10);
364
365             volume_len = avio_r8(pb);
366             volume_len = FFMIN(volume_len, 27);
367             avio_read(pb, dref->volume, 27);
368             dref->volume[volume_len] = 0;
369             av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len);
370
371             avio_skip(pb, 12);
372
373             len = avio_r8(pb);
374             len = FFMIN(len, 63);
375             avio_read(pb, dref->filename, 63);
376             dref->filename[len] = 0;
377             av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len);
378
379             avio_skip(pb, 16);
380
381             /* read next level up_from_alias/down_to_target */
382             dref->nlvl_from = avio_rb16(pb);
383             dref->nlvl_to   = avio_rb16(pb);
384             av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n",
385                    dref->nlvl_from, dref->nlvl_to);
386
387             avio_skip(pb, 16);
388
389             for (type = 0; type != -1 && avio_tell(pb) < next; ) {
390                 type = avio_rb16(pb);
391                 len = avio_rb16(pb);
392                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
393                 if (len&1)
394                     len += 1;
395                 if (type == 2) { // absolute path
396                     av_free(dref->path);
397                     dref->path = av_mallocz(len+1);
398                     if (!dref->path)
399                         return AVERROR(ENOMEM);
400                     avio_read(pb, dref->path, len);
401                     if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) {
402                         len -= volume_len;
403                         memmove(dref->path, dref->path+volume_len, len);
404                         dref->path[len] = 0;
405                     }
406                     for (j = 0; j < len; j++)
407                         if (dref->path[j] == ':')
408                             dref->path[j] = '/';
409                     av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
410                 } else if (type == 0) { // directory name
411                     av_free(dref->dir);
412                     dref->dir = av_malloc(len+1);
413                     if (!dref->dir)
414                         return AVERROR(ENOMEM);
415                     avio_read(pb, dref->dir, len);
416                     dref->dir[len] = 0;
417                     for (j = 0; j < len; j++)
418                         if (dref->dir[j] == ':')
419                             dref->dir[j] = '/';
420                     av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir);
421                 } else
422                     avio_skip(pb, len);
423             }
424         }
425         avio_seek(pb, next, SEEK_SET);
426     }
427     return 0;
428 }
429
430 static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
431 {
432     AVStream *st;
433     uint32_t type;
434     uint32_t av_unused ctype;
435
436     if (c->fc->nb_streams < 1) // meta before first trak
437         return 0;
438
439     st = c->fc->streams[c->fc->nb_streams-1];
440
441     avio_r8(pb); /* version */
442     avio_rb24(pb); /* flags */
443
444     /* component type */
445     ctype = avio_rl32(pb);
446     type = avio_rl32(pb); /* component subtype */
447
448     av_dlog(c->fc, "ctype= %.4s (0x%08x)\n", (char*)&ctype, ctype);
449     av_dlog(c->fc, "stype= %.4s\n", (char*)&type);
450
451     if     (type == MKTAG('v','i','d','e'))
452         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
453     else if(type == MKTAG('s','o','u','n'))
454         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
455     else if(type == MKTAG('m','1','a',' '))
456         st->codec->codec_id = CODEC_ID_MP2;
457     else if(type == MKTAG('s','u','b','p'))
458         st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
459
460     avio_rb32(pb); /* component  manufacture */
461     avio_rb32(pb); /* component flags */
462     avio_rb32(pb); /* component flags mask */
463
464     return 0;
465 }
466
467 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb, MOVAtom atom)
468 {
469     AVStream *st;
470     int tag;
471
472     if (fc->nb_streams < 1)
473         return 0;
474     st = fc->streams[fc->nb_streams-1];
475
476     avio_rb32(pb); /* version + flags */
477     ff_mp4_read_descr(fc, pb, &tag);
478     if (tag == MP4ESDescrTag) {
479         avio_rb16(pb); /* ID */
480         avio_r8(pb); /* priority */
481     } else
482         avio_rb16(pb); /* ID */
483
484     ff_mp4_read_descr(fc, pb, &tag);
485     if (tag == MP4DecConfigDescrTag)
486         ff_mp4_read_dec_config_descr(fc, st, pb);
487     return 0;
488 }
489
490 static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom)
491 {
492     return ff_mov_read_esds(c->fc, pb, atom);
493 }
494
495 static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
496 {
497     AVStream *st;
498     int ac3info, acmod, lfeon, bsmod;
499
500     if (c->fc->nb_streams < 1)
501         return 0;
502     st = c->fc->streams[c->fc->nb_streams-1];
503
504     ac3info = avio_rb24(pb);
505     bsmod = (ac3info >> 14) & 0x7;
506     acmod = (ac3info >> 11) & 0x7;
507     lfeon = (ac3info >> 10) & 0x1;
508     st->codec->channels = ((int[]){2,1,2,3,3,4,4,5})[acmod] + lfeon;
509     st->codec->audio_service_type = bsmod;
510     if (st->codec->channels > 1 && bsmod == 0x7)
511         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
512
513     return 0;
514 }
515
516 static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
517 {
518     AVStream *st;
519
520     if (c->fc->nb_streams < 1)
521         return 0;
522     st = c->fc->streams[c->fc->nb_streams-1];
523
524     ff_get_wav_header(pb, st->codec, atom.size);
525
526     return 0;
527 }
528
529 static int mov_read_pasp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
530 {
531     const int num = avio_rb32(pb);
532     const int den = avio_rb32(pb);
533     AVStream *st;
534
535     if (c->fc->nb_streams < 1)
536         return 0;
537     st = c->fc->streams[c->fc->nb_streams-1];
538
539     if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
540         (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
541         av_log(c->fc, AV_LOG_WARNING,
542                "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
543                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
544                num, den);
545     } else if (den != 0) {
546         st->sample_aspect_ratio.num = num;
547         st->sample_aspect_ratio.den = den;
548     }
549     return 0;
550 }
551
552 /* this atom contains actual media data */
553 static int mov_read_mdat(MOVContext *c, AVIOContext *pb, MOVAtom atom)
554 {
555     if(atom.size == 0) /* wrong one (MP4) */
556         return 0;
557     c->found_mdat=1;
558     return 0; /* now go for moov */
559 }
560
561 /* read major brand, minor version and compatible brands and store them as metadata */
562 static int mov_read_ftyp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
563 {
564     uint32_t minor_ver;
565     int comp_brand_size;
566     char minor_ver_str[11]; /* 32 bit integer -> 10 digits + null */
567     char* comp_brands_str;
568     uint8_t type[5] = {0};
569
570     avio_read(pb, type, 4);
571     if (strcmp(type, "qt  "))
572         c->isom = 1;
573     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
574     av_dict_set(&c->fc->metadata, "major_brand", type, 0);
575     minor_ver = avio_rb32(pb); /* minor version */
576     snprintf(minor_ver_str, sizeof(minor_ver_str), "%d", minor_ver);
577     av_dict_set(&c->fc->metadata, "minor_version", minor_ver_str, 0);
578
579     comp_brand_size = atom.size - 8;
580     if (comp_brand_size < 0)
581         return -1;
582     comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */
583     if (!comp_brands_str)
584         return AVERROR(ENOMEM);
585     avio_read(pb, comp_brands_str, comp_brand_size);
586     comp_brands_str[comp_brand_size] = 0;
587     av_dict_set(&c->fc->metadata, "compatible_brands", comp_brands_str, 0);
588     av_freep(&comp_brands_str);
589
590     return 0;
591 }
592
593 /* this atom should contain all header atoms */
594 static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
595 {
596     if (mov_read_default(c, pb, atom) < 0)
597         return -1;
598     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
599     /* so we don't parse the whole file if over a network */
600     c->found_moov=1;
601     return 0; /* now go for mdat */
602 }
603
604 static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
605 {
606     c->fragment.moof_offset = avio_tell(pb) - 8;
607     av_dlog(c->fc, "moof offset %"PRIx64"\n", c->fragment.moof_offset);
608     return mov_read_default(c, pb, atom);
609 }
610
611 static void mov_metadata_creation_time(AVDictionary **metadata, time_t time)
612 {
613     char buffer[32];
614     if (time) {
615         struct tm *ptm;
616         time -= 2082844800;  /* seconds between 1904-01-01 and Epoch */
617         ptm = gmtime(&time);
618         if (!ptm) return;
619         strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm);
620         av_dict_set(metadata, "creation_time", buffer, 0);
621     }
622 }
623
624 static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
625 {
626     AVStream *st;
627     MOVStreamContext *sc;
628     int version;
629     char language[4] = {0};
630     unsigned lang;
631     time_t creation_time;
632
633     if (c->fc->nb_streams < 1)
634         return 0;
635     st = c->fc->streams[c->fc->nb_streams-1];
636     sc = st->priv_data;
637
638     version = avio_r8(pb);
639     if (version > 1)
640         return -1; /* unsupported */
641
642     avio_rb24(pb); /* flags */
643     if (version == 1) {
644         creation_time = avio_rb64(pb);
645         avio_rb64(pb);
646     } else {
647         creation_time = avio_rb32(pb);
648         avio_rb32(pb); /* modification time */
649     }
650     mov_metadata_creation_time(&st->metadata, creation_time);
651
652     sc->time_scale = avio_rb32(pb);
653     st->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
654
655     lang = avio_rb16(pb); /* language */
656     if (ff_mov_lang_to_iso639(lang, language))
657         av_dict_set(&st->metadata, "language", language, 0);
658     avio_rb16(pb); /* quality */
659
660     return 0;
661 }
662
663 static int mov_read_mvhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
664 {
665     time_t creation_time;
666     int version = avio_r8(pb); /* version */
667     avio_rb24(pb); /* flags */
668
669     if (version == 1) {
670         creation_time = avio_rb64(pb);
671         avio_rb64(pb);
672     } else {
673         creation_time = avio_rb32(pb);
674         avio_rb32(pb); /* modification time */
675     }
676     mov_metadata_creation_time(&c->fc->metadata, creation_time);
677     c->time_scale = avio_rb32(pb); /* time scale */
678
679     av_dlog(c->fc, "time scale = %i\n", c->time_scale);
680
681     c->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
682     avio_rb32(pb); /* preferred scale */
683
684     avio_rb16(pb); /* preferred volume */
685
686     avio_skip(pb, 10); /* reserved */
687
688     avio_skip(pb, 36); /* display matrix */
689
690     avio_rb32(pb); /* preview time */
691     avio_rb32(pb); /* preview duration */
692     avio_rb32(pb); /* poster time */
693     avio_rb32(pb); /* selection time */
694     avio_rb32(pb); /* selection duration */
695     avio_rb32(pb); /* current time */
696     avio_rb32(pb); /* next track ID */
697
698     return 0;
699 }
700
701 static int mov_read_smi(MOVContext *c, AVIOContext *pb, MOVAtom atom)
702 {
703     AVStream *st;
704
705     if (c->fc->nb_streams < 1)
706         return 0;
707     st = c->fc->streams[c->fc->nb_streams-1];
708
709     if((uint64_t)atom.size > (1<<30))
710         return -1;
711
712     // currently SVQ3 decoder expect full STSD header - so let's fake it
713     // this should be fixed and just SMI header should be passed
714     av_free(st->codec->extradata);
715     st->codec->extradata = av_mallocz(atom.size + 0x5a + FF_INPUT_BUFFER_PADDING_SIZE);
716     if (!st->codec->extradata)
717         return AVERROR(ENOMEM);
718     st->codec->extradata_size = 0x5a + atom.size;
719     memcpy(st->codec->extradata, "SVQ3", 4); // fake
720     avio_read(pb, st->codec->extradata + 0x5a, atom.size);
721     av_dlog(c->fc, "Reading SMI %"PRId64"  %s\n", atom.size, st->codec->extradata + 0x5a);
722     return 0;
723 }
724
725 static int mov_read_enda(MOVContext *c, AVIOContext *pb, MOVAtom atom)
726 {
727     AVStream *st;
728     int little_endian;
729
730     if (c->fc->nb_streams < 1)
731         return 0;
732     st = c->fc->streams[c->fc->nb_streams-1];
733
734     little_endian = avio_rb16(pb) & 0xFF;
735     av_dlog(c->fc, "enda %d\n", little_endian);
736     if (little_endian == 1) {
737         switch (st->codec->codec_id) {
738         case CODEC_ID_PCM_S24BE:
739             st->codec->codec_id = CODEC_ID_PCM_S24LE;
740             break;
741         case CODEC_ID_PCM_S32BE:
742             st->codec->codec_id = CODEC_ID_PCM_S32LE;
743             break;
744         case CODEC_ID_PCM_F32BE:
745             st->codec->codec_id = CODEC_ID_PCM_F32LE;
746             break;
747         case CODEC_ID_PCM_F64BE:
748             st->codec->codec_id = CODEC_ID_PCM_F64LE;
749             break;
750         default:
751             break;
752         }
753     }
754     return 0;
755 }
756
757 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
758 static int mov_read_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom)
759 {
760     AVStream *st;
761     uint64_t size;
762     uint8_t *buf;
763
764     if (c->fc->nb_streams < 1) // will happen with jp2 files
765         return 0;
766     st= c->fc->streams[c->fc->nb_streams-1];
767     size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE;
768     if(size > INT_MAX || (uint64_t)atom.size > INT_MAX)
769         return -1;
770     buf= av_realloc(st->codec->extradata, size);
771     if(!buf)
772         return -1;
773     st->codec->extradata= buf;
774     buf+= st->codec->extradata_size;
775     st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE;
776     AV_WB32(       buf    , atom.size + 8);
777     AV_WL32(       buf + 4, atom.type);
778     avio_read(pb, buf + 8, atom.size);
779     return 0;
780 }
781
782 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
783 {
784     AVStream *st;
785
786     if (c->fc->nb_streams < 1)
787         return 0;
788     st = c->fc->streams[c->fc->nb_streams-1];
789
790     if((uint64_t)atom.size > (1<<30))
791         return -1;
792
793     if (st->codec->codec_id == CODEC_ID_QDM2 || st->codec->codec_id == CODEC_ID_QDMC) {
794         // pass all frma atom to codec, needed at least for QDMC and QDM2
795         av_free(st->codec->extradata);
796         st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
797         if (!st->codec->extradata)
798             return AVERROR(ENOMEM);
799         st->codec->extradata_size = atom.size;
800         avio_read(pb, st->codec->extradata, atom.size);
801     } else if (atom.size > 8) { /* to read frma, esds atoms */
802         if (mov_read_default(c, pb, atom) < 0)
803             return -1;
804     } else
805         avio_skip(pb, atom.size);
806     return 0;
807 }
808
809 /**
810  * This function reads atom content and puts data in extradata without tag
811  * nor size unlike mov_read_extradata.
812  */
813 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
814 {
815     AVStream *st;
816
817     if (c->fc->nb_streams < 1)
818         return 0;
819     st = c->fc->streams[c->fc->nb_streams-1];
820
821     if((uint64_t)atom.size > (1<<30))
822         return -1;
823
824     av_free(st->codec->extradata);
825     st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
826     if (!st->codec->extradata)
827         return AVERROR(ENOMEM);
828     st->codec->extradata_size = atom.size;
829     avio_read(pb, st->codec->extradata, atom.size);
830     return 0;
831 }
832
833 /**
834  * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
835  * but can have extradata appended at the end after the 40 bytes belonging
836  * to the struct.
837  */
838 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
839 {
840     AVStream *st;
841
842     if (c->fc->nb_streams < 1)
843         return 0;
844     if (atom.size <= 40)
845         return 0;
846     st = c->fc->streams[c->fc->nb_streams-1];
847
848     if((uint64_t)atom.size > (1<<30))
849         return -1;
850
851     av_free(st->codec->extradata);
852     st->codec->extradata = av_mallocz(atom.size - 40 + FF_INPUT_BUFFER_PADDING_SIZE);
853     if (!st->codec->extradata)
854         return AVERROR(ENOMEM);
855     st->codec->extradata_size = atom.size - 40;
856     avio_skip(pb, 40);
857     avio_read(pb, st->codec->extradata, atom.size - 40);
858     return 0;
859 }
860
861 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
862 {
863     AVStream *st;
864     MOVStreamContext *sc;
865     unsigned int i, entries;
866
867     if (c->fc->nb_streams < 1)
868         return 0;
869     st = c->fc->streams[c->fc->nb_streams-1];
870     sc = st->priv_data;
871
872     avio_r8(pb); /* version */
873     avio_rb24(pb); /* flags */
874
875     entries = avio_rb32(pb);
876
877     if(entries >= UINT_MAX/sizeof(int64_t))
878         return -1;
879
880     sc->chunk_offsets = av_malloc(entries * sizeof(int64_t));
881     if (!sc->chunk_offsets)
882         return AVERROR(ENOMEM);
883     sc->chunk_count = entries;
884
885     if      (atom.type == MKTAG('s','t','c','o'))
886         for(i=0; i<entries; i++)
887             sc->chunk_offsets[i] = avio_rb32(pb);
888     else if (atom.type == MKTAG('c','o','6','4'))
889         for(i=0; i<entries; i++)
890             sc->chunk_offsets[i] = avio_rb64(pb);
891     else
892         return -1;
893
894     return 0;
895 }
896
897 /**
898  * Compute codec id for 'lpcm' tag.
899  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
900  */
901 enum CodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
902 {
903     if (flags & 1) { // floating point
904         if (flags & 2) { // big endian
905             if      (bps == 32) return CODEC_ID_PCM_F32BE;
906             else if (bps == 64) return CODEC_ID_PCM_F64BE;
907         } else {
908             if      (bps == 32) return CODEC_ID_PCM_F32LE;
909             else if (bps == 64) return CODEC_ID_PCM_F64LE;
910         }
911     } else {
912         if (flags & 2) {
913             if      (bps == 8)
914                 // signed integer
915                 if (flags & 4)  return CODEC_ID_PCM_S8;
916                 else            return CODEC_ID_PCM_U8;
917             else if (bps == 16) return CODEC_ID_PCM_S16BE;
918             else if (bps == 24) return CODEC_ID_PCM_S24BE;
919             else if (bps == 32) return CODEC_ID_PCM_S32BE;
920         } else {
921             if      (bps == 8)
922                 if (flags & 4)  return CODEC_ID_PCM_S8;
923                 else            return CODEC_ID_PCM_U8;
924             else if (bps == 16) return CODEC_ID_PCM_S16LE;
925             else if (bps == 24) return CODEC_ID_PCM_S24LE;
926             else if (bps == 32) return CODEC_ID_PCM_S32LE;
927         }
928     }
929     return CODEC_ID_NONE;
930 }
931
932 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
933 {
934     AVStream *st;
935     MOVStreamContext *sc;
936     int j, pseudo_stream_id;
937
938     if (c->fc->nb_streams < 1)
939         return 0;
940     st = c->fc->streams[c->fc->nb_streams-1];
941     sc = st->priv_data;
942
943     for(pseudo_stream_id=0; pseudo_stream_id<entries; pseudo_stream_id++) {
944         //Parsing Sample description table
945         enum CodecID id;
946         int dref_id = 1;
947         MOVAtom a = { AV_RL32("stsd") };
948         int64_t start_pos = avio_tell(pb);
949         int size = avio_rb32(pb); /* size */
950         uint32_t format = avio_rl32(pb); /* data format */
951
952         if (size >= 16) {
953             avio_rb32(pb); /* reserved */
954             avio_rb16(pb); /* reserved */
955             dref_id = avio_rb16(pb);
956         }
957
958         if (st->codec->codec_tag &&
959             st->codec->codec_tag != format &&
960             (c->fc->video_codec_id ? ff_codec_get_id(codec_movvideo_tags, format) != c->fc->video_codec_id
961                                    : st->codec->codec_tag != MKTAG('j','p','e','g'))
962            ){
963             /* Multiple fourcc, we skip JPEG. This is not correct, we should
964              * export it as a separate AVStream but this needs a few changes
965              * in the MOV demuxer, patch welcome. */
966         multiple_stsd:
967             av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
968             avio_skip(pb, size - (avio_tell(pb) - start_pos));
969             continue;
970         }
971         /* we cannot demux concatenated h264 streams because of different extradata */
972         if (st->codec->codec_tag && st->codec->codec_tag == AV_RL32("avc1"))
973             goto multiple_stsd;
974         sc->pseudo_stream_id = st->codec->codec_tag ? -1 : pseudo_stream_id;
975         sc->dref_id= dref_id;
976
977         st->codec->codec_tag = format;
978         id = ff_codec_get_id(codec_movaudio_tags, format);
979         if (id<=0 && ((format&0xFFFF) == 'm'+('s'<<8) || (format&0xFFFF) == 'T'+('S'<<8)))
980             id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format)&0xFFFF);
981
982         if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
983             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
984         } else if (st->codec->codec_type != AVMEDIA_TYPE_AUDIO && /* do not overwrite codec type */
985                    format && format != MKTAG('m','p','4','s')) { /* skip old asf mpeg4 tag */
986             id = ff_codec_get_id(codec_movvideo_tags, format);
987             if (id <= 0)
988                 id = ff_codec_get_id(ff_codec_bmp_tags, format);
989             if (id > 0)
990                 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
991             else if(st->codec->codec_type == AVMEDIA_TYPE_DATA){
992                 id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
993                 if(id > 0)
994                     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
995             }
996         }
997
998         av_dlog(c->fc, "size=%d 4CC= %c%c%c%c codec_type=%d\n", size,
999                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
1000                 (format >> 24) & 0xff, st->codec->codec_type);
1001
1002         if(st->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
1003             unsigned int color_depth, len;
1004             int color_greyscale;
1005
1006             st->codec->codec_id = id;
1007             avio_rb16(pb); /* version */
1008             avio_rb16(pb); /* revision level */
1009             avio_rb32(pb); /* vendor */
1010             avio_rb32(pb); /* temporal quality */
1011             avio_rb32(pb); /* spatial quality */
1012
1013             st->codec->width = avio_rb16(pb); /* width */
1014             st->codec->height = avio_rb16(pb); /* height */
1015
1016             avio_rb32(pb); /* horiz resolution */
1017             avio_rb32(pb); /* vert resolution */
1018             avio_rb32(pb); /* data size, always 0 */
1019             avio_rb16(pb); /* frames per samples */
1020
1021             len = avio_r8(pb); /* codec name, pascal string */
1022             if (len > 31)
1023                 len = 31;
1024             mov_read_mac_string(c, pb, len, st->codec->codec_name, 32);
1025             if (len < 31)
1026                 avio_skip(pb, 31 - len);
1027             /* codec_tag YV12 triggers an UV swap in rawdec.c */
1028             if (!memcmp(st->codec->codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25))
1029                 st->codec->codec_tag=MKTAG('I', '4', '2', '0');
1030
1031             st->codec->bits_per_coded_sample = avio_rb16(pb); /* depth */
1032             st->codec->color_table_id = avio_rb16(pb); /* colortable id */
1033             av_dlog(c->fc, "depth %d, ctab id %d\n",
1034                    st->codec->bits_per_coded_sample, st->codec->color_table_id);
1035             /* figure out the palette situation */
1036             color_depth = st->codec->bits_per_coded_sample & 0x1F;
1037             color_greyscale = st->codec->bits_per_coded_sample & 0x20;
1038
1039             /* if the depth is 2, 4, or 8 bpp, file is palettized */
1040             if ((color_depth == 2) || (color_depth == 4) ||
1041                 (color_depth == 8)) {
1042                 /* for palette traversal */
1043                 unsigned int color_start, color_count, color_end;
1044                 unsigned char r, g, b;
1045
1046                 if (color_greyscale) {
1047                     int color_index, color_dec;
1048                     /* compute the greyscale palette */
1049                     st->codec->bits_per_coded_sample = color_depth;
1050                     color_count = 1 << color_depth;
1051                     color_index = 255;
1052                     color_dec = 256 / (color_count - 1);
1053                     for (j = 0; j < color_count; j++) {
1054                         r = g = b = color_index;
1055                         sc->palette[j] =
1056                             (r << 16) | (g << 8) | (b);
1057                         color_index -= color_dec;
1058                         if (color_index < 0)
1059                             color_index = 0;
1060                     }
1061                 } else if (st->codec->color_table_id) {
1062                     const uint8_t *color_table;
1063                     /* if flag bit 3 is set, use the default palette */
1064                     color_count = 1 << color_depth;
1065                     if (color_depth == 2)
1066                         color_table = ff_qt_default_palette_4;
1067                     else if (color_depth == 4)
1068                         color_table = ff_qt_default_palette_16;
1069                     else
1070                         color_table = ff_qt_default_palette_256;
1071
1072                     for (j = 0; j < color_count; j++) {
1073                         r = color_table[j * 3 + 0];
1074                         g = color_table[j * 3 + 1];
1075                         b = color_table[j * 3 + 2];
1076                         sc->palette[j] =
1077                             (r << 16) | (g << 8) | (b);
1078                     }
1079                 } else {
1080                     /* load the palette from the file */
1081                     color_start = avio_rb32(pb);
1082                     color_count = avio_rb16(pb);
1083                     color_end = avio_rb16(pb);
1084                     if ((color_start <= 255) &&
1085                         (color_end <= 255)) {
1086                         for (j = color_start; j <= color_end; j++) {
1087                             /* each R, G, or B component is 16 bits;
1088                              * only use the top 8 bits; skip alpha bytes
1089                              * up front */
1090                             avio_r8(pb);
1091                             avio_r8(pb);
1092                             r = avio_r8(pb);
1093                             avio_r8(pb);
1094                             g = avio_r8(pb);
1095                             avio_r8(pb);
1096                             b = avio_r8(pb);
1097                             avio_r8(pb);
1098                             sc->palette[j] =
1099                                 (r << 16) | (g << 8) | (b);
1100                         }
1101                     }
1102                 }
1103                 sc->has_palette = 1;
1104             }
1105         } else if(st->codec->codec_type==AVMEDIA_TYPE_AUDIO) {
1106             int bits_per_sample, flags;
1107             uint16_t version = avio_rb16(pb);
1108
1109             st->codec->codec_id = id;
1110             avio_rb16(pb); /* revision level */
1111             avio_rb32(pb); /* vendor */
1112
1113             st->codec->channels = avio_rb16(pb);             /* channel count */
1114             av_dlog(c->fc, "audio channels %d\n", st->codec->channels);
1115             st->codec->bits_per_coded_sample = avio_rb16(pb);      /* sample size */
1116
1117             sc->audio_cid = avio_rb16(pb);
1118             avio_rb16(pb); /* packet size = 0 */
1119
1120             st->codec->sample_rate = ((avio_rb32(pb) >> 16));
1121
1122             //Read QT version 1 fields. In version 0 these do not exist.
1123             av_dlog(c->fc, "version =%d, isom =%d\n",version,c->isom);
1124             if(!c->isom) {
1125                 if(version==1) {
1126                     sc->samples_per_frame = avio_rb32(pb);
1127                     avio_rb32(pb); /* bytes per packet */
1128                     sc->bytes_per_frame = avio_rb32(pb);
1129                     avio_rb32(pb); /* bytes per sample */
1130                 } else if(version==2) {
1131                     avio_rb32(pb); /* sizeof struct only */
1132                     st->codec->sample_rate = av_int2dbl(avio_rb64(pb)); /* float 64 */
1133                     st->codec->channels = avio_rb32(pb);
1134                     avio_rb32(pb); /* always 0x7F000000 */
1135                     st->codec->bits_per_coded_sample = avio_rb32(pb); /* bits per channel if sound is uncompressed */
1136                     flags = avio_rb32(pb); /* lpcm format specific flag */
1137                     sc->bytes_per_frame = avio_rb32(pb); /* bytes per audio packet if constant */
1138                     sc->samples_per_frame = avio_rb32(pb); /* lpcm frames per audio packet if constant */
1139                     if (format == MKTAG('l','p','c','m'))
1140                         st->codec->codec_id = ff_mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample, flags);
1141                 }
1142             }
1143
1144             switch (st->codec->codec_id) {
1145             case CODEC_ID_PCM_S8:
1146             case CODEC_ID_PCM_U8:
1147                 if (st->codec->bits_per_coded_sample == 16)
1148                     st->codec->codec_id = CODEC_ID_PCM_S16BE;
1149                 break;
1150             case CODEC_ID_PCM_S16LE:
1151             case CODEC_ID_PCM_S16BE:
1152                 if (st->codec->bits_per_coded_sample == 8)
1153                     st->codec->codec_id = CODEC_ID_PCM_S8;
1154                 else if (st->codec->bits_per_coded_sample == 24)
1155                     st->codec->codec_id =
1156                         st->codec->codec_id == CODEC_ID_PCM_S16BE ?
1157                         CODEC_ID_PCM_S24BE : CODEC_ID_PCM_S24LE;
1158                 break;
1159             /* set values for old format before stsd version 1 appeared */
1160             case CODEC_ID_MACE3:
1161                 sc->samples_per_frame = 6;
1162                 sc->bytes_per_frame = 2*st->codec->channels;
1163                 break;
1164             case CODEC_ID_MACE6:
1165                 sc->samples_per_frame = 6;
1166                 sc->bytes_per_frame = 1*st->codec->channels;
1167                 break;
1168             case CODEC_ID_ADPCM_IMA_QT:
1169                 sc->samples_per_frame = 64;
1170                 sc->bytes_per_frame = 34*st->codec->channels;
1171                 break;
1172             case CODEC_ID_GSM:
1173                 sc->samples_per_frame = 160;
1174                 sc->bytes_per_frame = 33;
1175                 break;
1176             default:
1177                 break;
1178             }
1179
1180             bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
1181             if (bits_per_sample) {
1182                 st->codec->bits_per_coded_sample = bits_per_sample;
1183                 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
1184             }
1185         } else if(st->codec->codec_type==AVMEDIA_TYPE_SUBTITLE){
1186             // ttxt stsd contains display flags, justification, background
1187             // color, fonts, and default styles, so fake an atom to read it
1188             MOVAtom fake_atom = { .size = size - (avio_tell(pb) - start_pos) };
1189             if (format != AV_RL32("mp4s")) // mp4s contains a regular esds atom
1190                 mov_read_glbl(c, pb, fake_atom);
1191             st->codec->codec_id= id;
1192             st->codec->width = sc->width;
1193             st->codec->height = sc->height;
1194         } else {
1195             /* other codec type, just skip (rtp, mp4s, tmcd ...) */
1196             avio_skip(pb, size - (avio_tell(pb) - start_pos));
1197         }
1198         /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
1199         a.size = size - (avio_tell(pb) - start_pos);
1200         if (a.size > 8) {
1201             if (mov_read_default(c, pb, a) < 0)
1202                 return -1;
1203         } else if (a.size > 0)
1204             avio_skip(pb, a.size);
1205     }
1206
1207     if(st->codec->codec_type==AVMEDIA_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1)
1208         st->codec->sample_rate= sc->time_scale;
1209
1210     /* special codec parameters handling */
1211     switch (st->codec->codec_id) {
1212 #if CONFIG_DV_DEMUXER
1213     case CODEC_ID_DVAUDIO:
1214         c->dv_fctx = avformat_alloc_context();
1215         c->dv_demux = dv_init_demux(c->dv_fctx);
1216         if (!c->dv_demux) {
1217             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
1218             return -1;
1219         }
1220         sc->dv_audio_container = 1;
1221         st->codec->codec_id = CODEC_ID_PCM_S16LE;
1222         break;
1223 #endif
1224     /* no ifdef since parameters are always those */
1225     case CODEC_ID_QCELP:
1226         // force sample rate for qcelp when not stored in mov
1227         if (st->codec->codec_tag != MKTAG('Q','c','l','p'))
1228             st->codec->sample_rate = 8000;
1229         st->codec->frame_size= 160;
1230         st->codec->channels= 1; /* really needed */
1231         break;
1232     case CODEC_ID_AMR_NB:
1233     case CODEC_ID_AMR_WB:
1234         st->codec->frame_size= sc->samples_per_frame;
1235         st->codec->channels= 1; /* really needed */
1236         /* force sample rate for amr, stsd in 3gp does not store sample rate */
1237         if (st->codec->codec_id == CODEC_ID_AMR_NB)
1238             st->codec->sample_rate = 8000;
1239         else if (st->codec->codec_id == CODEC_ID_AMR_WB)
1240             st->codec->sample_rate = 16000;
1241         break;
1242     case CODEC_ID_MP2:
1243     case CODEC_ID_MP3:
1244         st->codec->codec_type = AVMEDIA_TYPE_AUDIO; /* force type after stsd for m1a hdlr */
1245         st->need_parsing = AVSTREAM_PARSE_FULL;
1246         break;
1247     case CODEC_ID_GSM:
1248     case CODEC_ID_ADPCM_MS:
1249     case CODEC_ID_ADPCM_IMA_WAV:
1250         st->codec->frame_size = sc->samples_per_frame;
1251         st->codec->block_align = sc->bytes_per_frame;
1252         break;
1253     case CODEC_ID_ALAC:
1254         if (st->codec->extradata_size == 36) {
1255             st->codec->frame_size = AV_RB32(st->codec->extradata+12);
1256             st->codec->channels   = AV_RB8 (st->codec->extradata+21);
1257             st->codec->sample_rate = AV_RB32(st->codec->extradata+32);
1258         }
1259         break;
1260     default:
1261         break;
1262     }
1263
1264     return 0;
1265 }
1266
1267 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1268 {
1269     int entries;
1270
1271     avio_r8(pb); /* version */
1272     avio_rb24(pb); /* flags */
1273     entries = avio_rb32(pb);
1274
1275     return ff_mov_read_stsd_entries(c, pb, entries);
1276 }
1277
1278 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1279 {
1280     AVStream *st;
1281     MOVStreamContext *sc;
1282     unsigned int i, entries;
1283
1284     if (c->fc->nb_streams < 1)
1285         return 0;
1286     st = c->fc->streams[c->fc->nb_streams-1];
1287     sc = st->priv_data;
1288
1289     avio_r8(pb); /* version */
1290     avio_rb24(pb); /* flags */
1291
1292     entries = avio_rb32(pb);
1293
1294     av_dlog(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
1295
1296     if(entries >= UINT_MAX / sizeof(*sc->stsc_data))
1297         return -1;
1298     sc->stsc_data = av_malloc(entries * sizeof(*sc->stsc_data));
1299     if (!sc->stsc_data)
1300         return AVERROR(ENOMEM);
1301     sc->stsc_count = entries;
1302
1303     for(i=0; i<entries; i++) {
1304         sc->stsc_data[i].first = avio_rb32(pb);
1305         sc->stsc_data[i].count = avio_rb32(pb);
1306         sc->stsc_data[i].id = avio_rb32(pb);
1307     }
1308     return 0;
1309 }
1310
1311 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1312 {
1313     AVStream *st;
1314     MOVStreamContext *sc;
1315     unsigned i, entries;
1316
1317     if (c->fc->nb_streams < 1)
1318         return 0;
1319     st = c->fc->streams[c->fc->nb_streams-1];
1320     sc = st->priv_data;
1321
1322     avio_rb32(pb); // version + flags
1323
1324     entries = avio_rb32(pb);
1325     if (entries >= UINT_MAX / sizeof(*sc->stps_data))
1326         return -1;
1327     sc->stps_data = av_malloc(entries * sizeof(*sc->stps_data));
1328     if (!sc->stps_data)
1329         return AVERROR(ENOMEM);
1330     sc->stps_count = entries;
1331
1332     for (i = 0; i < entries; i++) {
1333         sc->stps_data[i] = avio_rb32(pb);
1334         //av_dlog(c->fc, "stps %d\n", sc->stps_data[i]);
1335     }
1336
1337     return 0;
1338 }
1339
1340 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1341 {
1342     AVStream *st;
1343     MOVStreamContext *sc;
1344     unsigned int i, entries;
1345
1346     if (c->fc->nb_streams < 1)
1347         return 0;
1348     st = c->fc->streams[c->fc->nb_streams-1];
1349     sc = st->priv_data;
1350
1351     avio_r8(pb); /* version */
1352     avio_rb24(pb); /* flags */
1353
1354     entries = avio_rb32(pb);
1355
1356     av_dlog(c->fc, "keyframe_count = %d\n", entries);
1357
1358     if(entries >= UINT_MAX / sizeof(int))
1359         return -1;
1360     sc->keyframes = av_malloc(entries * sizeof(int));
1361     if (!sc->keyframes)
1362         return AVERROR(ENOMEM);
1363     sc->keyframe_count = entries;
1364
1365     for(i=0; i<entries; i++) {
1366         sc->keyframes[i] = avio_rb32(pb);
1367         //av_dlog(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1368     }
1369     return 0;
1370 }
1371
1372 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1373 {
1374     AVStream *st;
1375     MOVStreamContext *sc;
1376     unsigned int i, entries, sample_size, field_size, num_bytes;
1377     GetBitContext gb;
1378     unsigned char* buf;
1379
1380     if (c->fc->nb_streams < 1)
1381         return 0;
1382     st = c->fc->streams[c->fc->nb_streams-1];
1383     sc = st->priv_data;
1384
1385     avio_r8(pb); /* version */
1386     avio_rb24(pb); /* flags */
1387
1388     if (atom.type == MKTAG('s','t','s','z')) {
1389         sample_size = avio_rb32(pb);
1390         if (!sc->sample_size) /* do not overwrite value computed in stsd */
1391             sc->sample_size = sample_size;
1392         field_size = 32;
1393     } else {
1394         sample_size = 0;
1395         avio_rb24(pb); /* reserved */
1396         field_size = avio_r8(pb);
1397     }
1398     entries = avio_rb32(pb);
1399
1400     av_dlog(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, entries);
1401
1402     sc->sample_count = entries;
1403     if (sample_size)
1404         return 0;
1405
1406     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
1407         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size);
1408         return -1;
1409     }
1410
1411     if (entries >= UINT_MAX / sizeof(int) || entries >= (UINT_MAX - 4) / field_size)
1412         return -1;
1413     sc->sample_sizes = av_malloc(entries * sizeof(int));
1414     if (!sc->sample_sizes)
1415         return AVERROR(ENOMEM);
1416
1417     num_bytes = (entries*field_size+4)>>3;
1418
1419     buf = av_malloc(num_bytes+FF_INPUT_BUFFER_PADDING_SIZE);
1420     if (!buf) {
1421         av_freep(&sc->sample_sizes);
1422         return AVERROR(ENOMEM);
1423     }
1424
1425     if (avio_read(pb, buf, num_bytes) < num_bytes) {
1426         av_freep(&sc->sample_sizes);
1427         av_free(buf);
1428         return -1;
1429     }
1430
1431     init_get_bits(&gb, buf, 8*num_bytes);
1432
1433     for(i=0; i<entries; i++)
1434         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
1435
1436     av_free(buf);
1437     return 0;
1438 }
1439
1440 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1441 {
1442     AVStream *st;
1443     MOVStreamContext *sc;
1444     unsigned int i, entries;
1445     int64_t duration=0;
1446     int64_t total_sample_count=0;
1447
1448     if (c->fc->nb_streams < 1)
1449         return 0;
1450     st = c->fc->streams[c->fc->nb_streams-1];
1451     sc = st->priv_data;
1452
1453     avio_r8(pb); /* version */
1454     avio_rb24(pb); /* flags */
1455     entries = avio_rb32(pb);
1456
1457     av_dlog(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries);
1458
1459     if(entries >= UINT_MAX / sizeof(*sc->stts_data))
1460         return -1;
1461     sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data));
1462     if (!sc->stts_data)
1463         return AVERROR(ENOMEM);
1464     sc->stts_count = entries;
1465
1466     for(i=0; i<entries; i++) {
1467         int sample_duration;
1468         int sample_count;
1469
1470         sample_count=avio_rb32(pb);
1471         sample_duration = avio_rb32(pb);
1472         sc->stts_data[i].count= sample_count;
1473         sc->stts_data[i].duration= sample_duration;
1474
1475         av_dlog(c->fc, "sample_count=%d, sample_duration=%d\n",sample_count,sample_duration);
1476
1477         duration+=(int64_t)sample_duration*sample_count;
1478         total_sample_count+=sample_count;
1479     }
1480
1481     st->nb_frames= total_sample_count;
1482     if(duration)
1483         st->duration= duration;
1484     return 0;
1485 }
1486
1487 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1488 {
1489     AVStream *st;
1490     MOVStreamContext *sc;
1491     unsigned int i, entries;
1492
1493     if (c->fc->nb_streams < 1)
1494         return 0;
1495     st = c->fc->streams[c->fc->nb_streams-1];
1496     sc = st->priv_data;
1497
1498     avio_r8(pb); /* version */
1499     avio_rb24(pb); /* flags */
1500     entries = avio_rb32(pb);
1501
1502     av_dlog(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
1503
1504     if(entries >= UINT_MAX / sizeof(*sc->ctts_data))
1505         return -1;
1506     sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data));
1507     if (!sc->ctts_data)
1508         return AVERROR(ENOMEM);
1509     sc->ctts_count = entries;
1510
1511     for(i=0; i<entries; i++) {
1512         int count    =avio_rb32(pb);
1513         int duration =avio_rb32(pb);
1514
1515         sc->ctts_data[i].count   = count;
1516         sc->ctts_data[i].duration= duration;
1517         if (duration < 0 && i+1<entries)
1518             sc->dts_shift = FFMAX(sc->dts_shift, -duration);
1519     }
1520
1521     av_dlog(c->fc, "dts shift %d\n", sc->dts_shift);
1522
1523     return 0;
1524 }
1525
1526 static void mov_build_index(MOVContext *mov, AVStream *st)
1527 {
1528     MOVStreamContext *sc = st->priv_data;
1529     int64_t current_offset;
1530     int64_t current_dts = 0;
1531     unsigned int stts_index = 0;
1532     unsigned int stsc_index = 0;
1533     unsigned int stss_index = 0;
1534     unsigned int stps_index = 0;
1535     unsigned int i, j;
1536     uint64_t stream_size = 0;
1537
1538     /* adjust first dts according to edit list */
1539     if (sc->time_offset && mov->time_scale > 0) {
1540         if (sc->time_offset < 0)
1541             sc->time_offset = av_rescale(sc->time_offset, sc->time_scale, mov->time_scale);
1542         current_dts = -sc->time_offset;
1543         if (sc->ctts_data && sc->stts_data &&
1544             sc->ctts_data[0].duration / FFMAX(sc->stts_data[0].duration, 1) > 16) {
1545             /* more than 16 frames delay, dts are likely wrong
1546                this happens with files created by iMovie */
1547             sc->wrong_dts = 1;
1548             st->codec->has_b_frames = 1;
1549         }
1550     }
1551
1552     /* only use old uncompressed audio chunk demuxing when stts specifies it */
1553     if (!(st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1554           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
1555         unsigned int current_sample = 0;
1556         unsigned int stts_sample = 0;
1557         unsigned int sample_size;
1558         unsigned int distance = 0;
1559         int key_off = sc->keyframes && sc->keyframes[0] == 1;
1560
1561         current_dts -= sc->dts_shift;
1562
1563         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries))
1564             return;
1565         st->index_entries = av_malloc(sc->sample_count*sizeof(*st->index_entries));
1566         if (!st->index_entries)
1567             return;
1568         st->index_entries_allocated_size = sc->sample_count*sizeof(*st->index_entries);
1569
1570         for (i = 0; i < sc->chunk_count; i++) {
1571             current_offset = sc->chunk_offsets[i];
1572             while (stsc_index + 1 < sc->stsc_count &&
1573                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1574                 stsc_index++;
1575             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
1576                 int keyframe = 0;
1577                 if (current_sample >= sc->sample_count) {
1578                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
1579                     return;
1580                 }
1581
1582                 if (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index]) {
1583                     keyframe = 1;
1584                     if (stss_index + 1 < sc->keyframe_count)
1585                         stss_index++;
1586                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
1587                     keyframe = 1;
1588                     if (stps_index + 1 < sc->stps_count)
1589                         stps_index++;
1590                 }
1591                 if (keyframe)
1592                     distance = 0;
1593                 sample_size = sc->sample_size > 0 ? sc->sample_size : sc->sample_sizes[current_sample];
1594                 if(sc->pseudo_stream_id == -1 ||
1595                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
1596                     AVIndexEntry *e = &st->index_entries[st->nb_index_entries++];
1597                     e->pos = current_offset;
1598                     e->timestamp = current_dts;
1599                     e->size = sample_size;
1600                     e->min_distance = distance;
1601                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
1602                     av_dlog(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
1603                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
1604                             current_offset, current_dts, sample_size, distance, keyframe);
1605                 }
1606
1607                 current_offset += sample_size;
1608                 stream_size += sample_size;
1609                 current_dts += sc->stts_data[stts_index].duration;
1610                 distance++;
1611                 stts_sample++;
1612                 current_sample++;
1613                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
1614                     stts_sample = 0;
1615                     stts_index++;
1616                 }
1617             }
1618         }
1619         if (st->duration > 0)
1620             st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
1621     } else {
1622         unsigned chunk_samples, total = 0;
1623
1624         // compute total chunk count
1625         for (i = 0; i < sc->stsc_count; i++) {
1626             unsigned count, chunk_count;
1627
1628             chunk_samples = sc->stsc_data[i].count;
1629             if (sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
1630                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
1631                 return;
1632             }
1633
1634             if (sc->samples_per_frame >= 160) { // gsm
1635                 count = chunk_samples / sc->samples_per_frame;
1636             } else if (sc->samples_per_frame > 1) {
1637                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
1638                 count = (chunk_samples+samples-1) / samples;
1639             } else {
1640                 count = (chunk_samples+1023) / 1024;
1641             }
1642
1643             if (i < sc->stsc_count - 1)
1644                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
1645             else
1646                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
1647             total += chunk_count * count;
1648         }
1649
1650         av_dlog(mov->fc, "chunk count %d\n", total);
1651         if (total >= UINT_MAX / sizeof(*st->index_entries))
1652             return;
1653         st->index_entries = av_malloc(total*sizeof(*st->index_entries));
1654         if (!st->index_entries)
1655             return;
1656         st->index_entries_allocated_size = total*sizeof(*st->index_entries);
1657
1658         // populate index
1659         for (i = 0; i < sc->chunk_count; i++) {
1660             current_offset = sc->chunk_offsets[i];
1661             if (stsc_index + 1 < sc->stsc_count &&
1662                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1663                 stsc_index++;
1664             chunk_samples = sc->stsc_data[stsc_index].count;
1665
1666             while (chunk_samples > 0) {
1667                 AVIndexEntry *e;
1668                 unsigned size, samples;
1669
1670                 if (sc->samples_per_frame >= 160) { // gsm
1671                     samples = sc->samples_per_frame;
1672                     size = sc->bytes_per_frame;
1673                 } else {
1674                     if (sc->samples_per_frame > 1) {
1675                         samples = FFMIN((1024 / sc->samples_per_frame)*
1676                                         sc->samples_per_frame, chunk_samples);
1677                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
1678                     } else {
1679                         samples = FFMIN(1024, chunk_samples);
1680                         size = samples * sc->sample_size;
1681                     }
1682                 }
1683
1684                 if (st->nb_index_entries >= total) {
1685                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %d\n", total);
1686                     return;
1687                 }
1688                 e = &st->index_entries[st->nb_index_entries++];
1689                 e->pos = current_offset;
1690                 e->timestamp = current_dts;
1691                 e->size = size;
1692                 e->min_distance = 0;
1693                 e->flags = AVINDEX_KEYFRAME;
1694                 av_dlog(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
1695                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
1696                         size, samples);
1697
1698                 current_offset += size;
1699                 current_dts += samples;
1700                 chunk_samples -= samples;
1701             }
1702         }
1703     }
1704 }
1705
1706 static int mov_open_dref(AVIOContext **pb, const char *src, MOVDref *ref)
1707 {
1708     /* try relative path, we do not try the absolute because it can leak information about our
1709        system to an attacker */
1710     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
1711         char filename[1024];
1712         const char *src_path;
1713         int i, l;
1714
1715         /* find a source dir */
1716         src_path = strrchr(src, '/');
1717         if (src_path)
1718             src_path++;
1719         else
1720             src_path = src;
1721
1722         /* find a next level down to target */
1723         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
1724             if (ref->path[l] == '/') {
1725                 if (i == ref->nlvl_to - 1)
1726                     break;
1727                 else
1728                     i++;
1729             }
1730
1731         /* compose filename if next level down to target was found */
1732         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
1733             memcpy(filename, src, src_path - src);
1734             filename[src_path - src] = 0;
1735
1736             for (i = 1; i < ref->nlvl_from; i++)
1737                 av_strlcat(filename, "../", 1024);
1738
1739             av_strlcat(filename, ref->path + l + 1, 1024);
1740
1741             if (!avio_open(pb, filename, AVIO_FLAG_READ))
1742                 return 0;
1743         }
1744     }
1745
1746     return AVERROR(ENOENT);
1747 }
1748
1749 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1750 {
1751     AVStream *st;
1752     MOVStreamContext *sc;
1753     int ret;
1754
1755     st = av_new_stream(c->fc, c->fc->nb_streams);
1756     if (!st) return AVERROR(ENOMEM);
1757     sc = av_mallocz(sizeof(MOVStreamContext));
1758     if (!sc) return AVERROR(ENOMEM);
1759
1760     st->priv_data = sc;
1761     st->codec->codec_type = AVMEDIA_TYPE_DATA;
1762     sc->ffindex = st->index;
1763
1764     if ((ret = mov_read_default(c, pb, atom)) < 0)
1765         return ret;
1766
1767     /* sanity checks */
1768     if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
1769                             (!sc->sample_size && !sc->sample_count))) {
1770         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
1771                st->index);
1772         return 0;
1773     }
1774
1775     if (sc->time_scale <= 0) {
1776         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", st->index);
1777         sc->time_scale = c->time_scale;
1778         if (sc->time_scale <= 0)
1779             sc->time_scale = 1;
1780     }
1781
1782     av_set_pts_info(st, 64, 1, sc->time_scale);
1783
1784     if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1785         !st->codec->frame_size && sc->stts_count == 1) {
1786         st->codec->frame_size = av_rescale(sc->stts_data[0].duration,
1787                                            st->codec->sample_rate, sc->time_scale);
1788         av_dlog(c->fc, "frame size %d\n", st->codec->frame_size);
1789     }
1790
1791     mov_build_index(c, st);
1792
1793     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
1794         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
1795         if (mov_open_dref(&sc->pb, c->fc->filename, dref) < 0)
1796             av_log(c->fc, AV_LOG_ERROR,
1797                    "stream %d, error opening alias: path='%s', dir='%s', "
1798                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
1799                    st->index, dref->path, dref->dir, dref->filename,
1800                    dref->volume, dref->nlvl_from, dref->nlvl_to);
1801     } else
1802         sc->pb = c->fc->pb;
1803
1804     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
1805         if (!st->sample_aspect_ratio.num &&
1806             (st->codec->width != sc->width || st->codec->height != sc->height)) {
1807             st->sample_aspect_ratio = av_d2q(((double)st->codec->height * sc->width) /
1808                                              ((double)st->codec->width * sc->height), INT_MAX);
1809         }
1810
1811         av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
1812                   sc->time_scale*st->nb_frames, st->duration, INT_MAX);
1813
1814         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
1815             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
1816                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
1817     }
1818
1819     switch (st->codec->codec_id) {
1820 #if CONFIG_H261_DECODER
1821     case CODEC_ID_H261:
1822 #endif
1823 #if CONFIG_H263_DECODER
1824     case CODEC_ID_H263:
1825 #endif
1826 #if CONFIG_H264_DECODER
1827     case CODEC_ID_H264:
1828 #endif
1829 #if CONFIG_MPEG4_DECODER
1830     case CODEC_ID_MPEG4:
1831 #endif
1832         st->codec->width = 0; /* let decoder init width/height */
1833         st->codec->height= 0;
1834         break;
1835     }
1836
1837     /* Do not need those anymore. */
1838     av_freep(&sc->chunk_offsets);
1839     av_freep(&sc->stsc_data);
1840     av_freep(&sc->sample_sizes);
1841     av_freep(&sc->keyframes);
1842     av_freep(&sc->stts_data);
1843     av_freep(&sc->stps_data);
1844
1845     return 0;
1846 }
1847
1848 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1849 {
1850     int ret;
1851     c->itunes_metadata = 1;
1852     ret = mov_read_default(c, pb, atom);
1853     c->itunes_metadata = 0;
1854     return ret;
1855 }
1856
1857 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1858 {
1859     while (atom.size > 8) {
1860         uint32_t tag = avio_rl32(pb);
1861         atom.size -= 4;
1862         if (tag == MKTAG('h','d','l','r')) {
1863             avio_seek(pb, -8, SEEK_CUR);
1864             atom.size += 8;
1865             return mov_read_default(c, pb, atom);
1866         }
1867     }
1868     return 0;
1869 }
1870
1871 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1872 {
1873     int i;
1874     int width;
1875     int height;
1876     int64_t disp_transform[2];
1877     int display_matrix[3][2];
1878     AVStream *st;
1879     MOVStreamContext *sc;
1880     int version;
1881
1882     if (c->fc->nb_streams < 1)
1883         return 0;
1884     st = c->fc->streams[c->fc->nb_streams-1];
1885     sc = st->priv_data;
1886
1887     version = avio_r8(pb);
1888     avio_rb24(pb); /* flags */
1889     /*
1890     MOV_TRACK_ENABLED 0x0001
1891     MOV_TRACK_IN_MOVIE 0x0002
1892     MOV_TRACK_IN_PREVIEW 0x0004
1893     MOV_TRACK_IN_POSTER 0x0008
1894     */
1895
1896     if (version == 1) {
1897         avio_rb64(pb);
1898         avio_rb64(pb);
1899     } else {
1900         avio_rb32(pb); /* creation time */
1901         avio_rb32(pb); /* modification time */
1902     }
1903     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
1904     avio_rb32(pb); /* reserved */
1905
1906     /* highlevel (considering edits) duration in movie timebase */
1907     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
1908     avio_rb32(pb); /* reserved */
1909     avio_rb32(pb); /* reserved */
1910
1911     avio_rb16(pb); /* layer */
1912     avio_rb16(pb); /* alternate group */
1913     avio_rb16(pb); /* volume */
1914     avio_rb16(pb); /* reserved */
1915
1916     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
1917     // they're kept in fixed point format through all calculations
1918     // ignore u,v,z b/c we don't need the scale factor to calc aspect ratio
1919     for (i = 0; i < 3; i++) {
1920         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
1921         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
1922         avio_rb32(pb);           // 2.30 fixed point (not used)
1923     }
1924
1925     width = avio_rb32(pb);       // 16.16 fixed point track width
1926     height = avio_rb32(pb);      // 16.16 fixed point track height
1927     sc->width = width >> 16;
1928     sc->height = height >> 16;
1929
1930     if (display_matrix[0][0] == -65536 && display_matrix[1][1] == -65536) {
1931          av_metadata_set2(&st->metadata, "rotate", "180", 0);
1932     }
1933
1934     // transform the display width/height according to the matrix
1935     // skip this if the display matrix is the default identity matrix
1936     // or if it is rotating the picture, ex iPhone 3GS
1937     // to keep the same scale, use [width height 1<<16]
1938     if (width && height &&
1939         ((display_matrix[0][0] != 65536  ||
1940           display_matrix[1][1] != 65536) &&
1941          !display_matrix[0][1] &&
1942          !display_matrix[1][0] &&
1943          !display_matrix[2][0] && !display_matrix[2][1])) {
1944         for (i = 0; i < 2; i++)
1945             disp_transform[i] =
1946                 (int64_t)  width  * display_matrix[0][i] +
1947                 (int64_t)  height * display_matrix[1][i] +
1948                 ((int64_t) display_matrix[2][i] << 16);
1949
1950         //sample aspect ratio is new width/height divided by old width/height
1951         st->sample_aspect_ratio = av_d2q(
1952             ((double) disp_transform[0] * height) /
1953             ((double) disp_transform[1] * width), INT_MAX);
1954     }
1955     return 0;
1956 }
1957
1958 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1959 {
1960     MOVFragment *frag = &c->fragment;
1961     MOVTrackExt *trex = NULL;
1962     int flags, track_id, i;
1963
1964     avio_r8(pb); /* version */
1965     flags = avio_rb24(pb);
1966
1967     track_id = avio_rb32(pb);
1968     if (!track_id)
1969         return -1;
1970     frag->track_id = track_id;
1971     for (i = 0; i < c->trex_count; i++)
1972         if (c->trex_data[i].track_id == frag->track_id) {
1973             trex = &c->trex_data[i];
1974             break;
1975         }
1976     if (!trex) {
1977         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
1978         return -1;
1979     }
1980
1981     if (flags & 0x01) frag->base_data_offset = avio_rb64(pb);
1982     else              frag->base_data_offset = frag->moof_offset;
1983     if (flags & 0x02) frag->stsd_id          = avio_rb32(pb);
1984     else              frag->stsd_id          = trex->stsd_id;
1985
1986     frag->duration = flags & 0x08 ? avio_rb32(pb) : trex->duration;
1987     frag->size     = flags & 0x10 ? avio_rb32(pb) : trex->size;
1988     frag->flags    = flags & 0x20 ? avio_rb32(pb) : trex->flags;
1989     av_dlog(c->fc, "frag flags 0x%x\n", frag->flags);
1990     return 0;
1991 }
1992
1993 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1994 {
1995     c->chapter_track = avio_rb32(pb);
1996     return 0;
1997 }
1998
1999 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2000 {
2001     MOVTrackExt *trex;
2002
2003     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
2004         return -1;
2005     trex = av_realloc(c->trex_data, (c->trex_count+1)*sizeof(*c->trex_data));
2006     if (!trex)
2007         return AVERROR(ENOMEM);
2008     c->trex_data = trex;
2009     trex = &c->trex_data[c->trex_count++];
2010     avio_r8(pb); /* version */
2011     avio_rb24(pb); /* flags */
2012     trex->track_id = avio_rb32(pb);
2013     trex->stsd_id  = avio_rb32(pb);
2014     trex->duration = avio_rb32(pb);
2015     trex->size     = avio_rb32(pb);
2016     trex->flags    = avio_rb32(pb);
2017     return 0;
2018 }
2019
2020 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2021 {
2022     MOVFragment *frag = &c->fragment;
2023     AVStream *st = NULL;
2024     MOVStreamContext *sc;
2025     MOVStts *ctts_data;
2026     uint64_t offset;
2027     int64_t dts;
2028     int data_offset = 0;
2029     unsigned entries, first_sample_flags = frag->flags;
2030     int flags, distance, i;
2031
2032     for (i = 0; i < c->fc->nb_streams; i++) {
2033         if (c->fc->streams[i]->id == frag->track_id) {
2034             st = c->fc->streams[i];
2035             break;
2036         }
2037     }
2038     if (!st) {
2039         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
2040         return -1;
2041     }
2042     sc = st->priv_data;
2043     if (sc->pseudo_stream_id+1 != frag->stsd_id)
2044         return 0;
2045     avio_r8(pb); /* version */
2046     flags = avio_rb24(pb);
2047     entries = avio_rb32(pb);
2048     av_dlog(c->fc, "flags 0x%x entries %d\n", flags, entries);
2049
2050     /* Always assume the presence of composition time offsets.
2051      * Without this assumption, for instance, we cannot deal with a track in fragmented movies that meet the following.
2052      *  1) in the initial movie, there are no samples.
2053      *  2) in the first movie fragment, there is only one sample without composition time offset.
2054      *  3) in the subsequent movie fragments, there are samples with composition time offset. */
2055     if (!sc->ctts_count && sc->sample_count)
2056     {
2057         /* Complement ctts table if moov atom doesn't have ctts atom. */
2058         ctts_data = av_malloc(sizeof(*sc->ctts_data));
2059         if (!ctts_data)
2060             return AVERROR(ENOMEM);
2061         sc->ctts_data = ctts_data;
2062         sc->ctts_data[sc->ctts_count].count = sc->sample_count;
2063         sc->ctts_data[sc->ctts_count].duration = 0;
2064         sc->ctts_count++;
2065     }
2066     if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
2067         return -1;
2068     ctts_data = av_realloc(sc->ctts_data,
2069                            (entries+sc->ctts_count)*sizeof(*sc->ctts_data));
2070     if (!ctts_data)
2071         return AVERROR(ENOMEM);
2072     sc->ctts_data = ctts_data;
2073
2074     if (flags & 0x001) data_offset        = avio_rb32(pb);
2075     if (flags & 0x004) first_sample_flags = avio_rb32(pb);
2076     dts = st->duration - sc->time_offset;
2077     offset = frag->base_data_offset + data_offset;
2078     distance = 0;
2079     av_dlog(c->fc, "first sample flags 0x%x\n", first_sample_flags);
2080     for (i = 0; i < entries; i++) {
2081         unsigned sample_size = frag->size;
2082         int sample_flags = i ? frag->flags : first_sample_flags;
2083         unsigned sample_duration = frag->duration;
2084         int keyframe;
2085
2086         if (flags & 0x100) sample_duration = avio_rb32(pb);
2087         if (flags & 0x200) sample_size     = avio_rb32(pb);
2088         if (flags & 0x400) sample_flags    = avio_rb32(pb);
2089         sc->ctts_data[sc->ctts_count].count = 1;
2090         sc->ctts_data[sc->ctts_count].duration = (flags & 0x800) ? avio_rb32(pb) : 0;
2091         sc->ctts_count++;
2092         if ((keyframe = st->codec->codec_type == AVMEDIA_TYPE_AUDIO ||
2093              (flags & 0x004 && !i && !sample_flags) || sample_flags & 0x2000000))
2094             distance = 0;
2095         av_add_index_entry(st, offset, dts, sample_size, distance,
2096                            keyframe ? AVINDEX_KEYFRAME : 0);
2097         av_dlog(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
2098                 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i,
2099                 offset, dts, sample_size, distance, keyframe);
2100         distance++;
2101         dts += sample_duration;
2102         offset += sample_size;
2103     }
2104     frag->moof_offset = offset;
2105     st->duration = dts + sc->time_offset;
2106     return 0;
2107 }
2108
2109 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
2110 /* like the files created with Adobe Premiere 5.0, for samples see */
2111 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
2112 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2113 {
2114     int err;
2115
2116     if (atom.size < 8)
2117         return 0; /* continue */
2118     if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
2119         avio_skip(pb, atom.size - 4);
2120         return 0;
2121     }
2122     atom.type = avio_rl32(pb);
2123     atom.size -= 8;
2124     if (atom.type != MKTAG('m','d','a','t')) {
2125         avio_skip(pb, atom.size);
2126         return 0;
2127     }
2128     err = mov_read_mdat(c, pb, atom);
2129     return err;
2130 }
2131
2132 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2133 {
2134 #if CONFIG_ZLIB
2135     AVIOContext ctx;
2136     uint8_t *cmov_data;
2137     uint8_t *moov_data; /* uncompressed data */
2138     long cmov_len, moov_len;
2139     int ret = -1;
2140
2141     avio_rb32(pb); /* dcom atom */
2142     if (avio_rl32(pb) != MKTAG('d','c','o','m'))
2143         return -1;
2144     if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
2145         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !");
2146         return -1;
2147     }
2148     avio_rb32(pb); /* cmvd atom */
2149     if (avio_rl32(pb) != MKTAG('c','m','v','d'))
2150         return -1;
2151     moov_len = avio_rb32(pb); /* uncompressed size */
2152     cmov_len = atom.size - 6 * 4;
2153
2154     cmov_data = av_malloc(cmov_len);
2155     if (!cmov_data)
2156         return AVERROR(ENOMEM);
2157     moov_data = av_malloc(moov_len);
2158     if (!moov_data) {
2159         av_free(cmov_data);
2160         return AVERROR(ENOMEM);
2161     }
2162     avio_read(pb, cmov_data, cmov_len);
2163     if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
2164         goto free_and_return;
2165     if(ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
2166         goto free_and_return;
2167     atom.type = MKTAG('m','o','o','v');
2168     atom.size = moov_len;
2169     ret = mov_read_default(c, &ctx, atom);
2170 free_and_return:
2171     av_free(moov_data);
2172     av_free(cmov_data);
2173     return ret;
2174 #else
2175     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
2176     return -1;
2177 #endif
2178 }
2179
2180 /* edit list atom */
2181 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2182 {
2183     MOVStreamContext *sc;
2184     int i, edit_count, version;
2185
2186     if (c->fc->nb_streams < 1)
2187         return 0;
2188     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
2189
2190     version = avio_r8(pb); /* version */
2191     avio_rb24(pb); /* flags */
2192     edit_count = avio_rb32(pb); /* entries */
2193
2194     if((uint64_t)edit_count*12+8 > atom.size)
2195         return -1;
2196
2197     for(i=0; i<edit_count; i++){
2198         int64_t time;
2199         int64_t duration;
2200         if (version == 1) {
2201             duration = avio_rb64(pb);
2202             time     = avio_rb64(pb);
2203         } else {
2204             duration = avio_rb32(pb); /* segment duration */
2205             time     = avio_rb32(pb); /* media time */
2206         }
2207         avio_rb32(pb); /* Media rate */
2208         if (i == 0 && time >= -1) {
2209             sc->time_offset = time != -1 ? time : -duration;
2210         }
2211     }
2212
2213     if(edit_count > 1)
2214         av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, "
2215                "a/v desync might occur, patch welcome\n");
2216
2217     av_dlog(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count);
2218     return 0;
2219 }
2220
2221 static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2222 {
2223     if (atom.size < 16)
2224         return AVERROR_INVALIDDATA;
2225     avio_skip(pb, 4);
2226     ff_mov_read_chan(c->fc, atom.size - 4, c->fc->streams[0]->codec);
2227     return 0;
2228 }
2229
2230 static const MOVParseTableEntry mov_default_parse_table[] = {
2231 { MKTAG('a','v','s','s'), mov_read_extradata },
2232 { MKTAG('c','h','p','l'), mov_read_chpl },
2233 { MKTAG('c','o','6','4'), mov_read_stco },
2234 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
2235 { MKTAG('d','i','n','f'), mov_read_default },
2236 { MKTAG('d','r','e','f'), mov_read_dref },
2237 { MKTAG('e','d','t','s'), mov_read_default },
2238 { MKTAG('e','l','s','t'), mov_read_elst },
2239 { MKTAG('e','n','d','a'), mov_read_enda },
2240 { MKTAG('f','i','e','l'), mov_read_extradata },
2241 { MKTAG('f','t','y','p'), mov_read_ftyp },
2242 { MKTAG('g','l','b','l'), mov_read_glbl },
2243 { MKTAG('h','d','l','r'), mov_read_hdlr },
2244 { MKTAG('i','l','s','t'), mov_read_ilst },
2245 { MKTAG('j','p','2','h'), mov_read_extradata },
2246 { MKTAG('m','d','a','t'), mov_read_mdat },
2247 { MKTAG('m','d','h','d'), mov_read_mdhd },
2248 { MKTAG('m','d','i','a'), mov_read_default },
2249 { MKTAG('m','e','t','a'), mov_read_meta },
2250 { MKTAG('m','i','n','f'), mov_read_default },
2251 { MKTAG('m','o','o','f'), mov_read_moof },
2252 { MKTAG('m','o','o','v'), mov_read_moov },
2253 { MKTAG('m','v','e','x'), mov_read_default },
2254 { MKTAG('m','v','h','d'), mov_read_mvhd },
2255 { MKTAG('S','M','I',' '), mov_read_smi }, /* Sorenson extension ??? */
2256 { MKTAG('a','l','a','c'), mov_read_extradata }, /* alac specific atom */
2257 { MKTAG('a','v','c','C'), mov_read_glbl },
2258 { MKTAG('p','a','s','p'), mov_read_pasp },
2259 { MKTAG('s','t','b','l'), mov_read_default },
2260 { MKTAG('s','t','c','o'), mov_read_stco },
2261 { MKTAG('s','t','p','s'), mov_read_stps },
2262 { MKTAG('s','t','r','f'), mov_read_strf },
2263 { MKTAG('s','t','s','c'), mov_read_stsc },
2264 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
2265 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
2266 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
2267 { MKTAG('s','t','t','s'), mov_read_stts },
2268 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
2269 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
2270 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
2271 { MKTAG('t','r','a','k'), mov_read_trak },
2272 { MKTAG('t','r','a','f'), mov_read_default },
2273 { MKTAG('t','r','e','f'), mov_read_default },
2274 { MKTAG('c','h','a','p'), mov_read_chap },
2275 { MKTAG('t','r','e','x'), mov_read_trex },
2276 { MKTAG('t','r','u','n'), mov_read_trun },
2277 { MKTAG('u','d','t','a'), mov_read_default },
2278 { MKTAG('w','a','v','e'), mov_read_wave },
2279 { MKTAG('e','s','d','s'), mov_read_esds },
2280 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
2281 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
2282 { MKTAG('w','f','e','x'), mov_read_wfex },
2283 { MKTAG('c','m','o','v'), mov_read_cmov },
2284 { MKTAG('c','h','a','n'), mov_read_chan },
2285 { 0, NULL }
2286 };
2287
2288 static int mov_probe(AVProbeData *p)
2289 {
2290     unsigned int offset;
2291     uint32_t tag;
2292     int score = 0;
2293
2294     /* check file header */
2295     offset = 0;
2296     for(;;) {
2297         /* ignore invalid offset */
2298         if ((offset + 8) > (unsigned int)p->buf_size)
2299             return score;
2300         tag = AV_RL32(p->buf + offset + 4);
2301         switch(tag) {
2302         /* check for obvious tags */
2303         case MKTAG('j','P',' ',' '): /* jpeg 2000 signature */
2304         case MKTAG('m','o','o','v'):
2305         case MKTAG('m','d','a','t'):
2306         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
2307         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
2308         case MKTAG('f','t','y','p'):
2309             return AVPROBE_SCORE_MAX;
2310         /* those are more common words, so rate then a bit less */
2311         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
2312         case MKTAG('w','i','d','e'):
2313         case MKTAG('f','r','e','e'):
2314         case MKTAG('j','u','n','k'):
2315         case MKTAG('p','i','c','t'):
2316             return AVPROBE_SCORE_MAX - 5;
2317         case MKTAG(0x82,0x82,0x7f,0x7d):
2318         case MKTAG('s','k','i','p'):
2319         case MKTAG('u','u','i','d'):
2320         case MKTAG('p','r','f','l'):
2321             offset = AV_RB32(p->buf+offset) + offset;
2322             /* if we only find those cause probedata is too small at least rate them */
2323             score = AVPROBE_SCORE_MAX - 50;
2324             break;
2325         default:
2326             /* unrecognized tag */
2327             return score;
2328         }
2329     }
2330     return score;
2331 }
2332
2333 // must be done after parsing all trak because there's no order requirement
2334 static void mov_read_chapters(AVFormatContext *s)
2335 {
2336     MOVContext *mov = s->priv_data;
2337     AVStream *st = NULL;
2338     MOVStreamContext *sc;
2339     int64_t cur_pos;
2340     int i;
2341
2342     for (i = 0; i < s->nb_streams; i++)
2343         if (s->streams[i]->id == mov->chapter_track) {
2344             st = s->streams[i];
2345             break;
2346         }
2347     if (!st) {
2348         av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
2349         return;
2350     }
2351
2352     st->discard = AVDISCARD_ALL;
2353     sc = st->priv_data;
2354     cur_pos = avio_tell(sc->pb);
2355
2356     for (i = 0; i < st->nb_index_entries; i++) {
2357         AVIndexEntry *sample = &st->index_entries[i];
2358         int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
2359         uint8_t *title;
2360         uint16_t ch;
2361         int len, title_len;
2362
2363         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
2364             av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
2365             goto finish;
2366         }
2367
2368         // the first two bytes are the length of the title
2369         len = avio_rb16(sc->pb);
2370         if (len > sample->size-2)
2371             continue;
2372         title_len = 2*len + 1;
2373         if (!(title = av_mallocz(title_len)))
2374             goto finish;
2375
2376         // The samples could theoretically be in any encoding if there's an encd
2377         // atom following, but in practice are only utf-8 or utf-16, distinguished
2378         // instead by the presence of a BOM
2379         ch = avio_rb16(sc->pb);
2380         if (ch == 0xfeff)
2381             avio_get_str16be(sc->pb, len, title, title_len);
2382         else if (ch == 0xfffe)
2383             avio_get_str16le(sc->pb, len, title, title_len);
2384         else {
2385             AV_WB16(title, ch);
2386             get_strz(sc->pb, title + 2, len - 1);
2387         }
2388
2389         ff_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
2390         av_freep(&title);
2391     }
2392 finish:
2393     avio_seek(sc->pb, cur_pos, SEEK_SET);
2394 }
2395
2396 static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
2397 {
2398     MOVContext *mov = s->priv_data;
2399     AVIOContext *pb = s->pb;
2400     int err;
2401     MOVAtom atom = { AV_RL32("root") };
2402
2403     mov->fc = s;
2404     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
2405     if(pb->seekable)
2406         atom.size = avio_size(pb);
2407     else
2408         atom.size = INT64_MAX;
2409
2410     /* check MOV header */
2411     if ((err = mov_read_default(mov, pb, atom)) < 0) {
2412         av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
2413         return err;
2414     }
2415     if (!mov->found_moov) {
2416         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
2417         return -1;
2418     }
2419     av_dlog(mov->fc, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
2420
2421     if (pb->seekable && mov->chapter_track > 0)
2422         mov_read_chapters(s);
2423
2424     return 0;
2425 }
2426
2427 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
2428 {
2429     AVIndexEntry *sample = NULL;
2430     int64_t best_dts = INT64_MAX;
2431     int i;
2432     for (i = 0; i < s->nb_streams; i++) {
2433         AVStream *avst = s->streams[i];
2434         MOVStreamContext *msc = avst->priv_data;
2435         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
2436             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
2437             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
2438             av_dlog(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
2439             if (!sample || (!s->pb->seekable && current_sample->pos < sample->pos) ||
2440                 (s->pb->seekable &&
2441                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
2442                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
2443                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
2444                 sample = current_sample;
2445                 best_dts = dts;
2446                 *st = avst;
2447             }
2448         }
2449     }
2450     return sample;
2451 }
2452
2453 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
2454 {
2455     MOVContext *mov = s->priv_data;
2456     MOVStreamContext *sc;
2457     AVIndexEntry *sample;
2458     AVStream *st = NULL;
2459     int ret;
2460  retry:
2461     sample = mov_find_next_sample(s, &st);
2462     if (!sample) {
2463         mov->found_mdat = 0;
2464         if (s->pb->seekable||
2465             mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX }) < 0 ||
2466             url_feof(s->pb))
2467             return AVERROR_EOF;
2468         av_dlog(s, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
2469         goto retry;
2470     }
2471     sc = st->priv_data;
2472     /* must be done just before reading, to avoid infinite loop on sample */
2473     sc->current_sample++;
2474
2475     if (st->discard != AVDISCARD_ALL) {
2476         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
2477             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
2478                    sc->ffindex, sample->pos);
2479             return -1;
2480         }
2481         ret = av_get_packet(sc->pb, pkt, sample->size);
2482         if (ret < 0)
2483             return ret;
2484         if (sc->has_palette) {
2485             uint8_t *pal;
2486
2487             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
2488             if (!pal) {
2489                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
2490             } else {
2491                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
2492                 sc->has_palette = 0;
2493             }
2494         }
2495 #if CONFIG_DV_DEMUXER
2496         if (mov->dv_demux && sc->dv_audio_container) {
2497             dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
2498             av_free(pkt->data);
2499             pkt->size = 0;
2500             ret = dv_get_packet(mov->dv_demux, pkt);
2501             if (ret < 0)
2502                 return ret;
2503         }
2504 #endif
2505     }
2506
2507     pkt->stream_index = sc->ffindex;
2508     pkt->dts = sample->timestamp;
2509     if (sc->ctts_data) {
2510         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
2511         /* update ctts context */
2512         sc->ctts_sample++;
2513         if (sc->ctts_index < sc->ctts_count &&
2514             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
2515             sc->ctts_index++;
2516             sc->ctts_sample = 0;
2517         }
2518         if (sc->wrong_dts)
2519             pkt->dts = AV_NOPTS_VALUE;
2520     } else {
2521         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
2522             st->index_entries[sc->current_sample].timestamp : st->duration;
2523         pkt->duration = next_dts - pkt->dts;
2524         pkt->pts = pkt->dts;
2525     }
2526     if (st->discard == AVDISCARD_ALL)
2527         goto retry;
2528     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
2529     pkt->pos = sample->pos;
2530     av_dlog(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n",
2531             pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
2532     return 0;
2533 }
2534
2535 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
2536 {
2537     MOVStreamContext *sc = st->priv_data;
2538     int sample, time_sample;
2539     int i;
2540
2541     sample = av_index_search_timestamp(st, timestamp, flags);
2542     av_dlog(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
2543     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
2544         sample = 0;
2545     if (sample < 0) /* not sure what to do */
2546         return -1;
2547     sc->current_sample = sample;
2548     av_dlog(s, "stream %d, found sample %d\n", st->index, sc->current_sample);
2549     /* adjust ctts index */
2550     if (sc->ctts_data) {
2551         time_sample = 0;
2552         for (i = 0; i < sc->ctts_count; i++) {
2553             int next = time_sample + sc->ctts_data[i].count;
2554             if (next > sc->current_sample) {
2555                 sc->ctts_index = i;
2556                 sc->ctts_sample = sc->current_sample - time_sample;
2557                 break;
2558             }
2559             time_sample = next;
2560         }
2561     }
2562     return sample;
2563 }
2564
2565 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
2566 {
2567     AVStream *st;
2568     int64_t seek_timestamp, timestamp;
2569     int sample;
2570     int i;
2571
2572     if (stream_index >= s->nb_streams)
2573         return -1;
2574     if (sample_time < 0)
2575         sample_time = 0;
2576
2577     st = s->streams[stream_index];
2578     sample = mov_seek_stream(s, st, sample_time, flags);
2579     if (sample < 0)
2580         return -1;
2581
2582     /* adjust seek timestamp to found sample timestamp */
2583     seek_timestamp = st->index_entries[sample].timestamp;
2584
2585     for (i = 0; i < s->nb_streams; i++) {
2586         st = s->streams[i];
2587         if (stream_index == i)
2588             continue;
2589
2590         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
2591         mov_seek_stream(s, st, timestamp, flags);
2592     }
2593     return 0;
2594 }
2595
2596 static int mov_read_close(AVFormatContext *s)
2597 {
2598     MOVContext *mov = s->priv_data;
2599     int i, j;
2600
2601     for (i = 0; i < s->nb_streams; i++) {
2602         AVStream *st = s->streams[i];
2603         MOVStreamContext *sc = st->priv_data;
2604
2605         av_freep(&sc->ctts_data);
2606         for (j = 0; j < sc->drefs_count; j++) {
2607             av_freep(&sc->drefs[j].path);
2608             av_freep(&sc->drefs[j].dir);
2609         }
2610         av_freep(&sc->drefs);
2611         if (sc->pb && sc->pb != s->pb)
2612             avio_close(sc->pb);
2613
2614         av_freep(&st->codec->palctrl);
2615     }
2616
2617     if (mov->dv_demux) {
2618         for(i = 0; i < mov->dv_fctx->nb_streams; i++) {
2619             av_freep(&mov->dv_fctx->streams[i]->codec);
2620             av_freep(&mov->dv_fctx->streams[i]);
2621         }
2622         av_freep(&mov->dv_fctx);
2623         av_freep(&mov->dv_demux);
2624     }
2625
2626     av_freep(&mov->trex_data);
2627
2628     return 0;
2629 }
2630
2631 AVInputFormat ff_mov_demuxer = {
2632     "mov,mp4,m4a,3gp,3g2,mj2",
2633     NULL_IF_CONFIG_SMALL("QuickTime/MPEG-4/Motion JPEG 2000 format"),
2634     sizeof(MOVContext),
2635     mov_probe,
2636     mov_read_header,
2637     mov_read_packet,
2638     mov_read_close,
2639     mov_read_seek,
2640 };