]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
dce2c9152424c7e54a75843ac9a9f91a000c1f9c
[ffmpeg] / 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/attributes.h"
29 #include "libavutil/audioconvert.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/intfloat.h"
32 #include "libavutil/mathematics.h"
33 #include "libavutil/avstring.h"
34 #include "libavutil/dict.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/timecode.h"
37 #include "libavcodec/ac3tab.h"
38 #include "avformat.h"
39 #include "internal.h"
40 #include "avio_internal.h"
41 #include "riff.h"
42 #include "isom.h"
43 #include "libavcodec/get_bits.h"
44 #include "id3v1.h"
45 #include "mov_chan.h"
46
47 #if CONFIG_ZLIB
48 #include <zlib.h>
49 #endif
50
51 /*
52  * First version by Francois Revol revol@free.fr
53  * Seek function by Gael Chardon gael.dev@4now.net
54  */
55
56 #include "qtpalette.h"
57
58
59 #undef NDEBUG
60 #include <assert.h>
61
62 /* those functions parse an atom */
63 /* links atom IDs to parse functions */
64 typedef struct MOVParseTableEntry {
65     uint32_t type;
66     int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom);
67 } MOVParseTableEntry;
68
69 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom);
70
71 static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb,
72                                              unsigned len, const char *key)
73 {
74     char buf[16];
75
76     short current, total = 0;
77     avio_rb16(pb); // unknown
78     current = avio_rb16(pb);
79     if (len >= 6)
80         total = avio_rb16(pb);
81     if (!total)
82         snprintf(buf, sizeof(buf), "%d", current);
83     else
84         snprintf(buf, sizeof(buf), "%d/%d", current, total);
85     av_dict_set(&c->fc->metadata, key, buf, 0);
86
87     return 0;
88 }
89
90 static int mov_metadata_int8_bypass_padding(MOVContext *c, AVIOContext *pb,
91                                             unsigned len, const char *key)
92 {
93     char buf[16];
94
95     /* bypass padding bytes */
96     avio_r8(pb);
97     avio_r8(pb);
98     avio_r8(pb);
99
100     snprintf(buf, sizeof(buf), "%d", avio_r8(pb));
101     av_dict_set(&c->fc->metadata, key, buf, 0);
102
103     return 0;
104 }
105
106 static int mov_metadata_int8_no_padding(MOVContext *c, AVIOContext *pb,
107                                         unsigned len, const char *key)
108 {
109     char buf[16];
110
111     snprintf(buf, sizeof(buf), "%d", avio_r8(pb));
112     av_dict_set(&c->fc->metadata, key, buf, 0);
113
114     return 0;
115 }
116
117 static int mov_metadata_gnre(MOVContext *c, AVIOContext *pb,
118                              unsigned len, const char *key)
119 {
120     short genre;
121     char buf[20];
122
123     avio_r8(pb); // unknown
124
125     genre = avio_r8(pb);
126     if (genre < 1 || genre > ID3v1_GENRE_MAX)
127         return 0;
128     snprintf(buf, sizeof(buf), "%s", ff_id3v1_genre_str[genre-1]);
129     av_dict_set(&c->fc->metadata, key, buf, 0);
130
131     return 0;
132 }
133
134 static const uint32_t mac_to_unicode[128] = {
135     0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
136     0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
137     0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
138     0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
139     0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
140     0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
141     0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
142     0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
143     0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
144     0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
145     0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
146     0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
147     0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
148     0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
149     0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
150     0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
151 };
152
153 static int mov_read_mac_string(MOVContext *c, AVIOContext *pb, int len,
154                                char *dst, int dstlen)
155 {
156     char *p = dst;
157     char *end = dst+dstlen-1;
158     int i;
159
160     for (i = 0; i < len; i++) {
161         uint8_t t, c = avio_r8(pb);
162         if (c < 0x80 && p < end)
163             *p++ = c;
164         else if (p < end)
165             PUT_UTF8(mac_to_unicode[c-0x80], t, if (p < end) *p++ = t;);
166     }
167     *p = 0;
168     return p - dst;
169 }
170
171 static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
172 {
173     AVPacket pkt;
174     AVStream *st;
175     MOVStreamContext *sc;
176     enum AVCodecID id;
177     int ret;
178
179     switch (type) {
180     case 0xd:  id = AV_CODEC_ID_MJPEG; break;
181     case 0xe:  id = AV_CODEC_ID_PNG;   break;
182     case 0x1b: id = AV_CODEC_ID_BMP;   break;
183     default:
184         av_log(c->fc, AV_LOG_WARNING, "Unknown cover type: 0x%x.\n", type);
185         avio_skip(pb, len);
186         return 0;
187     }
188
189     st = avformat_new_stream(c->fc, NULL);
190     if (!st)
191         return AVERROR(ENOMEM);
192     sc = av_mallocz(sizeof(*sc));
193     if (!sc)
194         return AVERROR(ENOMEM);
195     st->priv_data = sc;
196
197     ret = av_get_packet(pb, &pkt, len);
198     if (ret < 0)
199         return ret;
200
201     st->disposition              |= AV_DISPOSITION_ATTACHED_PIC;
202
203     st->attached_pic              = pkt;
204     st->attached_pic.stream_index = st->index;
205     st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
206
207     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
208     st->codec->codec_id   = id;
209
210     return 0;
211 }
212
213 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
214 {
215 #ifdef MOV_EXPORT_ALL_METADATA
216     char tmp_key[5];
217 #endif
218     char str[1024], key2[16], language[4] = {0};
219     const char *key = NULL;
220     uint16_t langcode = 0;
221     uint32_t data_type = 0, str_size;
222     int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL;
223
224     switch (atom.type) {
225     case MKTAG(0xa9,'n','a','m'): key = "title";     break;
226     case MKTAG(0xa9,'a','u','t'):
227     case MKTAG(0xa9,'A','R','T'): key = "artist";    break;
228     case MKTAG( 'a','A','R','T'): key = "album_artist";    break;
229     case MKTAG(0xa9,'w','r','t'): key = "composer";  break;
230     case MKTAG( 'c','p','r','t'):
231     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
232     case MKTAG(0xa9,'g','r','p'): key = "grouping"; break;
233     case MKTAG(0xa9,'l','y','r'): key = "lyrics"; break;
234     case MKTAG(0xa9,'c','m','t'):
235     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;
236     case MKTAG(0xa9,'a','l','b'): key = "album";     break;
237     case MKTAG(0xa9,'d','a','y'): key = "date";      break;
238     case MKTAG(0xa9,'g','e','n'): key = "genre";     break;
239     case MKTAG( 'g','n','r','e'): key = "genre";
240         parse = mov_metadata_gnre; break;
241     case MKTAG(0xa9,'t','o','o'):
242     case MKTAG(0xa9,'s','w','r'): key = "encoder";   break;
243     case MKTAG(0xa9,'e','n','c'): key = "encoder";   break;
244     case MKTAG( 'd','e','s','c'): key = "description";break;
245     case MKTAG( 'l','d','e','s'): key = "synopsis";  break;
246     case MKTAG( 't','v','s','h'): key = "show";      break;
247     case MKTAG( 't','v','e','n'): key = "episode_id";break;
248     case MKTAG( 't','v','n','n'): key = "network";   break;
249     case MKTAG( 't','r','k','n'): key = "track";
250         parse = mov_metadata_track_or_disc_number; break;
251     case MKTAG( 'd','i','s','k'): key = "disc";
252         parse = mov_metadata_track_or_disc_number; break;
253     case MKTAG( 't','v','e','s'): key = "episode_sort";
254         parse = mov_metadata_int8_bypass_padding; break;
255     case MKTAG( 't','v','s','n'): key = "season_number";
256         parse = mov_metadata_int8_bypass_padding; break;
257     case MKTAG( 's','t','i','k'): key = "media_type";
258         parse = mov_metadata_int8_no_padding; break;
259     case MKTAG( 'h','d','v','d'): key = "hd_video";
260         parse = mov_metadata_int8_no_padding; break;
261     case MKTAG( 'p','g','a','p'): key = "gapless_playback";
262         parse = mov_metadata_int8_no_padding; break;
263     }
264
265     if (c->itunes_metadata && atom.size > 8) {
266         int data_size = avio_rb32(pb);
267         int tag = avio_rl32(pb);
268         if (tag == MKTAG('d','a','t','a')) {
269             data_type = avio_rb32(pb); // type
270             avio_rb32(pb); // unknown
271             str_size = data_size - 16;
272             atom.size -= 16;
273
274             if (atom.type == MKTAG('c', 'o', 'v', 'r')) {
275                 int ret = mov_read_covr(c, pb, data_type, str_size);
276                 if (ret < 0) {
277                     av_log(c->fc, AV_LOG_ERROR, "Error parsing cover art.\n");
278                     return ret;
279                 }
280             }
281         } else return 0;
282     } else if (atom.size > 4 && key && !c->itunes_metadata) {
283         str_size = avio_rb16(pb); // string length
284         langcode = avio_rb16(pb);
285         ff_mov_lang_to_iso639(langcode, language);
286         atom.size -= 4;
287     } else
288         str_size = atom.size;
289
290 #ifdef MOV_EXPORT_ALL_METADATA
291     if (!key) {
292         snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
293         key = tmp_key;
294     }
295 #endif
296
297     if (!key)
298         return 0;
299     if (atom.size < 0)
300         return AVERROR_INVALIDDATA;
301
302     str_size = FFMIN3(sizeof(str)-1, str_size, atom.size);
303
304     if (parse)
305         parse(c, pb, str_size, key);
306     else {
307         if (data_type == 3 || (data_type == 0 && (langcode < 0x400 || langcode == 0x7fff))) { // MAC Encoded
308             mov_read_mac_string(c, pb, str_size, str, sizeof(str));
309         } else {
310             avio_read(pb, str, str_size);
311             str[str_size] = 0;
312         }
313         av_dict_set(&c->fc->metadata, key, str, 0);
314         if (*language && strcmp(language, "und")) {
315             snprintf(key2, sizeof(key2), "%s-%s", key, language);
316             av_dict_set(&c->fc->metadata, key2, str, 0);
317         }
318     }
319     av_dlog(c->fc, "lang \"%3s\" ", language);
320     av_dlog(c->fc, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64"\n",
321             key, str, (char*)&atom.type, str_size, atom.size);
322
323     return 0;
324 }
325
326 static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
327 {
328     int64_t start;
329     int i, nb_chapters, str_len, version;
330     char str[256+1];
331
332     if ((atom.size -= 5) < 0)
333         return 0;
334
335     version = avio_r8(pb);
336     avio_rb24(pb);
337     if (version)
338         avio_rb32(pb); // ???
339     nb_chapters = avio_r8(pb);
340
341     for (i = 0; i < nb_chapters; i++) {
342         if (atom.size < 9)
343             return 0;
344
345         start = avio_rb64(pb);
346         str_len = avio_r8(pb);
347
348         if ((atom.size -= 9+str_len) < 0)
349             return 0;
350
351         avio_read(pb, str, str_len);
352         str[str_len] = 0;
353         avpriv_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str);
354     }
355     return 0;
356 }
357
358 static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
359 {
360     AVStream *st;
361     MOVStreamContext *sc;
362     int entries, i, j;
363
364     if (c->fc->nb_streams < 1)
365         return 0;
366     st = c->fc->streams[c->fc->nb_streams-1];
367     sc = st->priv_data;
368
369     avio_rb32(pb); // version + flags
370     entries = avio_rb32(pb);
371     if (entries >= UINT_MAX / sizeof(*sc->drefs))
372         return AVERROR_INVALIDDATA;
373     av_free(sc->drefs);
374     sc->drefs_count = 0;
375     sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
376     if (!sc->drefs)
377         return AVERROR(ENOMEM);
378     sc->drefs_count = entries;
379
380     for (i = 0; i < sc->drefs_count; i++) {
381         MOVDref *dref = &sc->drefs[i];
382         uint32_t size = avio_rb32(pb);
383         int64_t next = avio_tell(pb) + size - 4;
384
385         if (size < 12)
386             return AVERROR_INVALIDDATA;
387
388         dref->type = avio_rl32(pb);
389         avio_rb32(pb); // version + flags
390         av_dlog(c->fc, "type %.4s size %d\n", (char*)&dref->type, size);
391
392         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
393             /* macintosh alias record */
394             uint16_t volume_len, len;
395             int16_t type;
396
397             avio_skip(pb, 10);
398
399             volume_len = avio_r8(pb);
400             volume_len = FFMIN(volume_len, 27);
401             avio_read(pb, dref->volume, 27);
402             dref->volume[volume_len] = 0;
403             av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len);
404
405             avio_skip(pb, 12);
406
407             len = avio_r8(pb);
408             len = FFMIN(len, 63);
409             avio_read(pb, dref->filename, 63);
410             dref->filename[len] = 0;
411             av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len);
412
413             avio_skip(pb, 16);
414
415             /* read next level up_from_alias/down_to_target */
416             dref->nlvl_from = avio_rb16(pb);
417             dref->nlvl_to   = avio_rb16(pb);
418             av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n",
419                    dref->nlvl_from, dref->nlvl_to);
420
421             avio_skip(pb, 16);
422
423             for (type = 0; type != -1 && avio_tell(pb) < next; ) {
424                 if(url_feof(pb))
425                     return AVERROR_EOF;
426                 type = avio_rb16(pb);
427                 len = avio_rb16(pb);
428                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
429                 if (len&1)
430                     len += 1;
431                 if (type == 2) { // absolute path
432                     av_free(dref->path);
433                     dref->path = av_mallocz(len+1);
434                     if (!dref->path)
435                         return AVERROR(ENOMEM);
436                     avio_read(pb, dref->path, len);
437                     if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) {
438                         len -= volume_len;
439                         memmove(dref->path, dref->path+volume_len, len);
440                         dref->path[len] = 0;
441                     }
442                     for (j = 0; j < len; j++)
443                         if (dref->path[j] == ':')
444                             dref->path[j] = '/';
445                     av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
446                 } else if (type == 0) { // directory name
447                     av_free(dref->dir);
448                     dref->dir = av_malloc(len+1);
449                     if (!dref->dir)
450                         return AVERROR(ENOMEM);
451                     avio_read(pb, dref->dir, len);
452                     dref->dir[len] = 0;
453                     for (j = 0; j < len; j++)
454                         if (dref->dir[j] == ':')
455                             dref->dir[j] = '/';
456                     av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir);
457                 } else
458                     avio_skip(pb, len);
459             }
460         }
461         avio_seek(pb, next, SEEK_SET);
462     }
463     return 0;
464 }
465
466 static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
467 {
468     AVStream *st;
469     uint32_t type;
470     uint32_t av_unused ctype;
471     int title_size;
472     char *title_str;
473
474     if (c->fc->nb_streams < 1) // meta before first trak
475         return 0;
476
477     st = c->fc->streams[c->fc->nb_streams-1];
478
479     avio_r8(pb); /* version */
480     avio_rb24(pb); /* flags */
481
482     /* component type */
483     ctype = avio_rl32(pb);
484     type = avio_rl32(pb); /* component subtype */
485
486     av_dlog(c->fc, "ctype= %.4s (0x%08x)\n", (char*)&ctype, ctype);
487     av_dlog(c->fc, "stype= %.4s\n", (char*)&type);
488
489     if     (type == MKTAG('v','i','d','e'))
490         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
491     else if (type == MKTAG('s','o','u','n'))
492         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
493     else if (type == MKTAG('m','1','a',' '))
494         st->codec->codec_id = AV_CODEC_ID_MP2;
495     else if ((type == MKTAG('s','u','b','p')) || (type == MKTAG('c','l','c','p')))
496         st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
497
498     avio_rb32(pb); /* component  manufacture */
499     avio_rb32(pb); /* component flags */
500     avio_rb32(pb); /* component flags mask */
501
502     title_size = atom.size - 24;
503     if (title_size > 0) {
504         title_str = av_malloc(title_size + 1); /* Add null terminator */
505         if (!title_str)
506             return AVERROR(ENOMEM);
507         avio_read(pb, title_str, title_size);
508         title_str[title_size] = 0;
509         if (title_str[0])
510             av_dict_set(&st->metadata, "handler_name", title_str +
511                         (!c->isom && title_str[0] == title_size - 1), 0);
512         av_freep(&title_str);
513     }
514
515     return 0;
516 }
517
518 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb, MOVAtom atom)
519 {
520     AVStream *st;
521     int tag;
522
523     if (fc->nb_streams < 1)
524         return 0;
525     st = fc->streams[fc->nb_streams-1];
526
527     avio_rb32(pb); /* version + flags */
528     ff_mp4_read_descr(fc, pb, &tag);
529     if (tag == MP4ESDescrTag) {
530         ff_mp4_parse_es_descr(pb, NULL);
531     } else
532         avio_rb16(pb); /* ID */
533
534     ff_mp4_read_descr(fc, pb, &tag);
535     if (tag == MP4DecConfigDescrTag)
536         ff_mp4_read_dec_config_descr(fc, st, pb);
537     return 0;
538 }
539
540 static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom)
541 {
542     return ff_mov_read_esds(c->fc, pb, atom);
543 }
544
545 static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
546 {
547     AVStream *st;
548     int ac3info, acmod, lfeon, bsmod;
549
550     if (c->fc->nb_streams < 1)
551         return 0;
552     st = c->fc->streams[c->fc->nb_streams-1];
553
554     ac3info = avio_rb24(pb);
555     bsmod = (ac3info >> 14) & 0x7;
556     acmod = (ac3info >> 11) & 0x7;
557     lfeon = (ac3info >> 10) & 0x1;
558     st->codec->channels = ((int[]){2,1,2,3,3,4,4,5})[acmod] + lfeon;
559     st->codec->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
560     if (lfeon)
561         st->codec->channel_layout |= AV_CH_LOW_FREQUENCY;
562     st->codec->audio_service_type = bsmod;
563     if (st->codec->channels > 1 && bsmod == 0x7)
564         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
565
566     return 0;
567 }
568
569 static int mov_read_dec3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
570 {
571     AVStream *st;
572     int eac3info, acmod, lfeon, bsmod;
573
574     if (c->fc->nb_streams < 1)
575         return 0;
576     st = c->fc->streams[c->fc->nb_streams-1];
577
578     /* No need to parse fields for additional independent substreams and its
579      * associated dependent substreams since libavcodec's E-AC-3 decoder
580      * does not support them yet. */
581     avio_rb16(pb); /* data_rate and num_ind_sub */
582     eac3info = avio_rb24(pb);
583     bsmod = (eac3info >> 12) & 0x1f;
584     acmod = (eac3info >>  9) & 0x7;
585     lfeon = (eac3info >>  8) & 0x1;
586     st->codec->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
587     if (lfeon)
588         st->codec->channel_layout |= AV_CH_LOW_FREQUENCY;
589     st->codec->channels = av_get_channel_layout_nb_channels(st->codec->channel_layout);
590     st->codec->audio_service_type = bsmod;
591     if (st->codec->channels > 1 && bsmod == 0x7)
592         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
593
594     return 0;
595 }
596
597 static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
598 {
599     AVStream *st;
600
601     if (c->fc->nb_streams < 1)
602         return 0;
603     st = c->fc->streams[c->fc->nb_streams-1];
604
605     if (atom.size < 16)
606         return 0;
607
608     ff_mov_read_chan(c->fc, st, atom.size - 4);
609
610     return 0;
611 }
612
613 static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
614 {
615     AVStream *st;
616
617     if (c->fc->nb_streams < 1)
618         return 0;
619     st = c->fc->streams[c->fc->nb_streams-1];
620
621     ff_get_wav_header(pb, st->codec, atom.size);
622
623     return 0;
624 }
625
626 static int mov_read_pasp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
627 {
628     const int num = avio_rb32(pb);
629     const int den = avio_rb32(pb);
630     AVStream *st;
631
632     if (c->fc->nb_streams < 1)
633         return 0;
634     st = c->fc->streams[c->fc->nb_streams-1];
635
636     if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
637         (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
638         av_log(c->fc, AV_LOG_WARNING,
639                "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
640                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
641                num, den);
642     } else if (den != 0) {
643         st->sample_aspect_ratio.num = num;
644         st->sample_aspect_ratio.den = den;
645     }
646     return 0;
647 }
648
649 /* this atom contains actual media data */
650 static int mov_read_mdat(MOVContext *c, AVIOContext *pb, MOVAtom atom)
651 {
652     if (atom.size == 0) /* wrong one (MP4) */
653         return 0;
654     c->found_mdat=1;
655     return 0; /* now go for moov */
656 }
657
658 /* read major brand, minor version and compatible brands and store them as metadata */
659 static int mov_read_ftyp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
660 {
661     uint32_t minor_ver;
662     int comp_brand_size;
663     char minor_ver_str[11]; /* 32 bit integer -> 10 digits + null */
664     char* comp_brands_str;
665     uint8_t type[5] = {0};
666
667     avio_read(pb, type, 4);
668     if (strcmp(type, "qt  "))
669         c->isom = 1;
670     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
671     av_dict_set(&c->fc->metadata, "major_brand", type, 0);
672     minor_ver = avio_rb32(pb); /* minor version */
673     snprintf(minor_ver_str, sizeof(minor_ver_str), "%d", minor_ver);
674     av_dict_set(&c->fc->metadata, "minor_version", minor_ver_str, 0);
675
676     comp_brand_size = atom.size - 8;
677     if (comp_brand_size < 0)
678         return AVERROR_INVALIDDATA;
679     comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */
680     if (!comp_brands_str)
681         return AVERROR(ENOMEM);
682     avio_read(pb, comp_brands_str, comp_brand_size);
683     comp_brands_str[comp_brand_size] = 0;
684     av_dict_set(&c->fc->metadata, "compatible_brands", comp_brands_str, 0);
685     av_freep(&comp_brands_str);
686
687     return 0;
688 }
689
690 /* this atom should contain all header atoms */
691 static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
692 {
693     int ret;
694
695     if ((ret = mov_read_default(c, pb, atom)) < 0)
696         return ret;
697     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
698     /* so we don't parse the whole file if over a network */
699     c->found_moov=1;
700     return 0; /* now go for mdat */
701 }
702
703 static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
704 {
705     c->fragment.moof_offset = avio_tell(pb) - 8;
706     av_dlog(c->fc, "moof offset %"PRIx64"\n", c->fragment.moof_offset);
707     return mov_read_default(c, pb, atom);
708 }
709
710 static void mov_metadata_creation_time(AVDictionary **metadata, time_t time)
711 {
712     char buffer[32];
713     if (time) {
714         struct tm *ptm;
715         if(time >= 2082844800)
716             time -= 2082844800;  /* seconds between 1904-01-01 and Epoch */
717         ptm = gmtime(&time);
718         if (!ptm) return;
719         strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm);
720         av_dict_set(metadata, "creation_time", buffer, 0);
721     }
722 }
723
724 static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
725 {
726     AVStream *st;
727     MOVStreamContext *sc;
728     int version;
729     char language[4] = {0};
730     unsigned lang;
731     time_t creation_time;
732
733     if (c->fc->nb_streams < 1)
734         return 0;
735     st = c->fc->streams[c->fc->nb_streams-1];
736     sc = st->priv_data;
737
738     version = avio_r8(pb);
739     if (version > 1) {
740         av_log_ask_for_sample(c, "unsupported version %d\n", version);
741         return AVERROR_PATCHWELCOME;
742     }
743     avio_rb24(pb); /* flags */
744     if (version == 1) {
745         creation_time = avio_rb64(pb);
746         avio_rb64(pb);
747     } else {
748         creation_time = avio_rb32(pb);
749         avio_rb32(pb); /* modification time */
750     }
751     mov_metadata_creation_time(&st->metadata, creation_time);
752
753     sc->time_scale = avio_rb32(pb);
754     st->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
755
756     lang = avio_rb16(pb); /* language */
757     if (ff_mov_lang_to_iso639(lang, language))
758         av_dict_set(&st->metadata, "language", language, 0);
759     avio_rb16(pb); /* quality */
760
761     return 0;
762 }
763
764 static int mov_read_mvhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
765 {
766     time_t creation_time;
767     int version = avio_r8(pb); /* version */
768     avio_rb24(pb); /* flags */
769
770     if (version == 1) {
771         creation_time = avio_rb64(pb);
772         avio_rb64(pb);
773     } else {
774         creation_time = avio_rb32(pb);
775         avio_rb32(pb); /* modification time */
776     }
777     mov_metadata_creation_time(&c->fc->metadata, creation_time);
778     c->time_scale = avio_rb32(pb); /* time scale */
779
780     av_dlog(c->fc, "time scale = %i\n", c->time_scale);
781
782     c->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
783     // set the AVCodecContext duration because the duration of individual tracks
784     // may be inaccurate
785     if (c->time_scale > 0)
786         c->fc->duration = av_rescale(c->duration, AV_TIME_BASE, c->time_scale);
787     avio_rb32(pb); /* preferred scale */
788
789     avio_rb16(pb); /* preferred volume */
790
791     avio_skip(pb, 10); /* reserved */
792
793     avio_skip(pb, 36); /* display matrix */
794
795     avio_rb32(pb); /* preview time */
796     avio_rb32(pb); /* preview duration */
797     avio_rb32(pb); /* poster time */
798     avio_rb32(pb); /* selection time */
799     avio_rb32(pb); /* selection duration */
800     avio_rb32(pb); /* current time */
801     avio_rb32(pb); /* next track ID */
802     return 0;
803 }
804
805 static int mov_read_enda(MOVContext *c, AVIOContext *pb, MOVAtom atom)
806 {
807     AVStream *st;
808     int little_endian;
809
810     if (c->fc->nb_streams < 1)
811         return 0;
812     st = c->fc->streams[c->fc->nb_streams-1];
813
814     little_endian = avio_rb16(pb) & 0xFF;
815     av_dlog(c->fc, "enda %d\n", little_endian);
816     if (little_endian == 1) {
817         switch (st->codec->codec_id) {
818         case AV_CODEC_ID_PCM_S24BE:
819             st->codec->codec_id = AV_CODEC_ID_PCM_S24LE;
820             break;
821         case AV_CODEC_ID_PCM_S32BE:
822             st->codec->codec_id = AV_CODEC_ID_PCM_S32LE;
823             break;
824         case AV_CODEC_ID_PCM_F32BE:
825             st->codec->codec_id = AV_CODEC_ID_PCM_F32LE;
826             break;
827         case AV_CODEC_ID_PCM_F64BE:
828             st->codec->codec_id = AV_CODEC_ID_PCM_F64LE;
829             break;
830         default:
831             break;
832         }
833     }
834     return 0;
835 }
836
837 static int mov_read_fiel(MOVContext *c, AVIOContext *pb, MOVAtom atom)
838 {
839     AVStream *st;
840     unsigned mov_field_order;
841     enum AVFieldOrder decoded_field_order = AV_FIELD_UNKNOWN;
842
843     if (c->fc->nb_streams < 1) // will happen with jp2 files
844         return 0;
845     st = c->fc->streams[c->fc->nb_streams-1];
846     if (atom.size < 2)
847         return AVERROR_INVALIDDATA;
848     mov_field_order = avio_rb16(pb);
849     if ((mov_field_order & 0xFF00) == 0x0100)
850         decoded_field_order = AV_FIELD_PROGRESSIVE;
851     else if ((mov_field_order & 0xFF00) == 0x0200) {
852         switch (mov_field_order & 0xFF) {
853         case 0x01: decoded_field_order = AV_FIELD_TT;
854                    break;
855         case 0x06: decoded_field_order = AV_FIELD_BB;
856                    break;
857         case 0x09: decoded_field_order = AV_FIELD_TB;
858                    break;
859         case 0x0E: decoded_field_order = AV_FIELD_BT;
860                    break;
861         }
862     }
863     if (decoded_field_order == AV_FIELD_UNKNOWN && mov_field_order) {
864         av_log(NULL, AV_LOG_ERROR, "Unknown MOV field order 0x%04x\n", mov_field_order);
865     }
866     st->codec->field_order = decoded_field_order;
867
868     return 0;
869 }
870
871 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
872 static int mov_read_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
873                               enum AVCodecID codec_id)
874 {
875     AVStream *st;
876     uint64_t size;
877     uint8_t *buf;
878
879     if (c->fc->nb_streams < 1) // will happen with jp2 files
880         return 0;
881     st= c->fc->streams[c->fc->nb_streams-1];
882
883     if (st->codec->codec_id != codec_id)
884         return 0; /* unexpected codec_id - don't mess with extradata */
885
886     size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE;
887     if (size > INT_MAX || (uint64_t)atom.size > INT_MAX)
888         return AVERROR_INVALIDDATA;
889     buf= av_realloc(st->codec->extradata, size);
890     if (!buf)
891         return AVERROR(ENOMEM);
892     st->codec->extradata= buf;
893     buf+= st->codec->extradata_size;
894     st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE;
895     AV_WB32(       buf    , atom.size + 8);
896     AV_WL32(       buf + 4, atom.type);
897     avio_read(pb, buf + 8, atom.size);
898     return 0;
899 }
900
901 /* wrapper functions for reading ALAC/AVS/MJPEG/MJPEG2000 extradata atoms only for those codecs */
902 static int mov_read_alac(MOVContext *c, AVIOContext *pb, MOVAtom atom)
903 {
904     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_ALAC);
905 }
906
907 static int mov_read_avss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
908 {
909     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVS);
910 }
911
912 static int mov_read_jp2h(MOVContext *c, AVIOContext *pb, MOVAtom atom)
913 {
914     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_JPEG2000);
915 }
916
917 static int mov_read_avid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
918 {
919     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVUI);
920 }
921
922 static int mov_read_svq3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
923 {
924     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_SVQ3);
925 }
926
927 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
928 {
929     AVStream *st;
930
931     if (c->fc->nb_streams < 1)
932         return 0;
933     st = c->fc->streams[c->fc->nb_streams-1];
934
935     if ((uint64_t)atom.size > (1<<30))
936         return AVERROR_INVALIDDATA;
937
938     if (st->codec->codec_id == AV_CODEC_ID_QDM2 || st->codec->codec_id == AV_CODEC_ID_QDMC) {
939         // pass all frma atom to codec, needed at least for QDMC and QDM2
940         av_free(st->codec->extradata);
941         st->codec->extradata_size = 0;
942         st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
943         if (!st->codec->extradata)
944             return AVERROR(ENOMEM);
945         st->codec->extradata_size = atom.size;
946         avio_read(pb, st->codec->extradata, atom.size);
947     } else if (atom.size > 8) { /* to read frma, esds atoms */
948         int ret;
949         if ((ret = mov_read_default(c, pb, atom)) < 0)
950             return ret;
951     } else
952         avio_skip(pb, atom.size);
953     return 0;
954 }
955
956 /**
957  * This function reads atom content and puts data in extradata without tag
958  * nor size unlike mov_read_extradata.
959  */
960 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
961 {
962     AVStream *st;
963
964     if (c->fc->nb_streams < 1)
965         return 0;
966     st = c->fc->streams[c->fc->nb_streams-1];
967
968     if ((uint64_t)atom.size > (1<<30))
969         return AVERROR_INVALIDDATA;
970
971     if (atom.size >= 10) {
972         // Broken files created by legacy versions of libavformat will
973         // wrap a whole fiel atom inside of a glbl atom.
974         unsigned size = avio_rb32(pb);
975         unsigned type = avio_rl32(pb);
976         avio_seek(pb, -8, SEEK_CUR);
977         if (type == MKTAG('f','i','e','l') && size == atom.size)
978             return mov_read_default(c, pb, atom);
979     }
980     av_free(st->codec->extradata);
981     st->codec->extradata_size = 0;
982     st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE);
983     if (!st->codec->extradata)
984         return AVERROR(ENOMEM);
985     st->codec->extradata_size = atom.size;
986     avio_read(pb, st->codec->extradata, atom.size);
987     return 0;
988 }
989
990 static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
991 {
992     AVStream *st;
993     uint8_t profile_level;
994
995     if (c->fc->nb_streams < 1)
996         return 0;
997     st = c->fc->streams[c->fc->nb_streams-1];
998
999     if (atom.size >= (1<<28) || atom.size < 7)
1000         return AVERROR_INVALIDDATA;
1001
1002     profile_level = avio_r8(pb);
1003     if ((profile_level & 0xf0) != 0xc0)
1004         return 0;
1005
1006     av_free(st->codec->extradata);
1007     st->codec->extradata_size = 0;
1008     st->codec->extradata = av_mallocz(atom.size - 7 + FF_INPUT_BUFFER_PADDING_SIZE);
1009     if (!st->codec->extradata)
1010         return AVERROR(ENOMEM);
1011     st->codec->extradata_size = atom.size - 7;
1012     avio_seek(pb, 6, SEEK_CUR);
1013     avio_read(pb, st->codec->extradata, st->codec->extradata_size);
1014     return 0;
1015 }
1016
1017 /**
1018  * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1019  * but can have extradata appended at the end after the 40 bytes belonging
1020  * to the struct.
1021  */
1022 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1023 {
1024     AVStream *st;
1025
1026     if (c->fc->nb_streams < 1)
1027         return 0;
1028     if (atom.size <= 40)
1029         return 0;
1030     st = c->fc->streams[c->fc->nb_streams-1];
1031
1032     if ((uint64_t)atom.size > (1<<30))
1033         return AVERROR_INVALIDDATA;
1034
1035     av_free(st->codec->extradata);
1036     st->codec->extradata_size = 0;
1037     st->codec->extradata = av_mallocz(atom.size - 40 + FF_INPUT_BUFFER_PADDING_SIZE);
1038     if (!st->codec->extradata)
1039         return AVERROR(ENOMEM);
1040     st->codec->extradata_size = atom.size - 40;
1041     avio_skip(pb, 40);
1042     avio_read(pb, st->codec->extradata, atom.size - 40);
1043     return 0;
1044 }
1045
1046 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1047 {
1048     AVStream *st;
1049     MOVStreamContext *sc;
1050     unsigned int i, entries;
1051
1052     if (c->fc->nb_streams < 1)
1053         return 0;
1054     st = c->fc->streams[c->fc->nb_streams-1];
1055     sc = st->priv_data;
1056
1057     avio_r8(pb); /* version */
1058     avio_rb24(pb); /* flags */
1059
1060     entries = avio_rb32(pb);
1061
1062     if (!entries)
1063         return 0;
1064     if (entries >= UINT_MAX/sizeof(int64_t))
1065         return AVERROR_INVALIDDATA;
1066
1067     sc->chunk_offsets = av_malloc(entries * sizeof(int64_t));
1068     if (!sc->chunk_offsets)
1069         return AVERROR(ENOMEM);
1070     sc->chunk_count = entries;
1071
1072     if      (atom.type == MKTAG('s','t','c','o'))
1073         for (i=0; i<entries; i++)
1074             sc->chunk_offsets[i] = avio_rb32(pb);
1075     else if (atom.type == MKTAG('c','o','6','4'))
1076         for (i=0; i<entries; i++)
1077             sc->chunk_offsets[i] = avio_rb64(pb);
1078     else
1079         return AVERROR_INVALIDDATA;
1080
1081     return 0;
1082 }
1083
1084 /**
1085  * Compute codec id for 'lpcm' tag.
1086  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
1087  */
1088 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
1089 {
1090     if (flags & 1) { // floating point
1091         if (flags & 2) { // big endian
1092             if      (bps == 32) return AV_CODEC_ID_PCM_F32BE;
1093             else if (bps == 64) return AV_CODEC_ID_PCM_F64BE;
1094         } else {
1095             if      (bps == 32) return AV_CODEC_ID_PCM_F32LE;
1096             else if (bps == 64) return AV_CODEC_ID_PCM_F64LE;
1097         }
1098     } else {
1099         if (flags & 2) {
1100             if      (bps == 8)
1101                 // signed integer
1102                 if (flags & 4)  return AV_CODEC_ID_PCM_S8;
1103                 else            return AV_CODEC_ID_PCM_U8;
1104             else if (bps == 16) return AV_CODEC_ID_PCM_S16BE;
1105             else if (bps == 24) return AV_CODEC_ID_PCM_S24BE;
1106             else if (bps == 32) return AV_CODEC_ID_PCM_S32BE;
1107         } else {
1108             if      (bps == 8)
1109                 if (flags & 4)  return AV_CODEC_ID_PCM_S8;
1110                 else            return AV_CODEC_ID_PCM_U8;
1111             else if (bps == 16) return AV_CODEC_ID_PCM_S16LE;
1112             else if (bps == 24) return AV_CODEC_ID_PCM_S24LE;
1113             else if (bps == 32) return AV_CODEC_ID_PCM_S32LE;
1114         }
1115     }
1116     return AV_CODEC_ID_NONE;
1117 }
1118
1119 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
1120 {
1121     AVStream *st;
1122     MOVStreamContext *sc;
1123     int j, pseudo_stream_id;
1124
1125     if (c->fc->nb_streams < 1)
1126         return 0;
1127     st = c->fc->streams[c->fc->nb_streams-1];
1128     sc = st->priv_data;
1129
1130     for (pseudo_stream_id=0; pseudo_stream_id<entries; pseudo_stream_id++) {
1131         //Parsing Sample description table
1132         enum AVCodecID id;
1133         int dref_id = 1;
1134         MOVAtom a = { AV_RL32("stsd") };
1135         int64_t start_pos = avio_tell(pb);
1136         int size = avio_rb32(pb); /* size */
1137         uint32_t format = avio_rl32(pb); /* data format */
1138
1139         if (size >= 16) {
1140             avio_rb32(pb); /* reserved */
1141             avio_rb16(pb); /* reserved */
1142             dref_id = avio_rb16(pb);
1143         }else if (size <= 0){
1144             av_log(c->fc, AV_LOG_ERROR, "invalid size %d in stsd\n", size);
1145             return -1;
1146         }
1147
1148         if (st->codec->codec_tag &&
1149             st->codec->codec_tag != format &&
1150             (c->fc->video_codec_id ? ff_codec_get_id(ff_codec_movvideo_tags, format) != c->fc->video_codec_id
1151                                    : st->codec->codec_tag != MKTAG('j','p','e','g'))
1152            ){
1153             /* Multiple fourcc, we skip JPEG. This is not correct, we should
1154              * export it as a separate AVStream but this needs a few changes
1155              * in the MOV demuxer, patch welcome. */
1156             av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
1157             avio_skip(pb, size - (avio_tell(pb) - start_pos));
1158             continue;
1159         }
1160         /* we cannot demux concatenated h264 streams because of different extradata */
1161         if (st->codec->codec_tag && st->codec->codec_tag == AV_RL32("avc1"))
1162             av_log(c->fc, AV_LOG_WARNING, "Concatenated H.264 might not play corrently.\n");
1163         sc->pseudo_stream_id = st->codec->codec_tag ? -1 : pseudo_stream_id;
1164         sc->dref_id= dref_id;
1165
1166         st->codec->codec_tag = format;
1167         id = ff_codec_get_id(ff_codec_movaudio_tags, format);
1168         if (id<=0 && ((format&0xFFFF) == 'm'+('s'<<8) || (format&0xFFFF) == 'T'+('S'<<8)))
1169             id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format)&0xFFFF);
1170
1171         if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
1172             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1173         } else if (st->codec->codec_type != AVMEDIA_TYPE_AUDIO && /* do not overwrite codec type */
1174                    format && format != MKTAG('m','p','4','s')) { /* skip old asf mpeg4 tag */
1175             id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1176             if (id <= 0)
1177                 id = ff_codec_get_id(ff_codec_bmp_tags, format);
1178             if (id > 0)
1179                 st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1180             else if (st->codec->codec_type == AVMEDIA_TYPE_DATA ||
1181                      (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1182                       st->codec->codec_id == AV_CODEC_ID_NONE)){
1183                 id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
1184                 if (id > 0)
1185                     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1186             }
1187         }
1188
1189         av_dlog(c->fc, "size=%d 4CC= %c%c%c%c codec_type=%d\n", size,
1190                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
1191                 (format >> 24) & 0xff, st->codec->codec_type);
1192
1193         if (st->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
1194             unsigned int color_depth, len;
1195             int color_greyscale;
1196             int color_table_id;
1197
1198             st->codec->codec_id = id;
1199             avio_rb16(pb); /* version */
1200             avio_rb16(pb); /* revision level */
1201             avio_rb32(pb); /* vendor */
1202             avio_rb32(pb); /* temporal quality */
1203             avio_rb32(pb); /* spatial quality */
1204
1205             st->codec->width = avio_rb16(pb); /* width */
1206             st->codec->height = avio_rb16(pb); /* height */
1207
1208             avio_rb32(pb); /* horiz resolution */
1209             avio_rb32(pb); /* vert resolution */
1210             avio_rb32(pb); /* data size, always 0 */
1211             avio_rb16(pb); /* frames per samples */
1212
1213             len = avio_r8(pb); /* codec name, pascal string */
1214             if (len > 31)
1215                 len = 31;
1216             mov_read_mac_string(c, pb, len, st->codec->codec_name, 32);
1217             if (len < 31)
1218                 avio_skip(pb, 31 - len);
1219             /* codec_tag YV12 triggers an UV swap in rawdec.c */
1220             if (!memcmp(st->codec->codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25))
1221                 st->codec->codec_tag=MKTAG('I', '4', '2', '0');
1222
1223             st->codec->bits_per_coded_sample = avio_rb16(pb); /* depth */
1224             color_table_id = avio_rb16(pb); /* colortable id */
1225             av_dlog(c->fc, "depth %d, ctab id %d\n",
1226                    st->codec->bits_per_coded_sample, color_table_id);
1227             /* figure out the palette situation */
1228             color_depth = st->codec->bits_per_coded_sample & 0x1F;
1229             color_greyscale = st->codec->bits_per_coded_sample & 0x20;
1230
1231             /* if the depth is 2, 4, or 8 bpp, file is palettized */
1232             if ((color_depth == 2) || (color_depth == 4) ||
1233                 (color_depth == 8)) {
1234                 /* for palette traversal */
1235                 unsigned int color_start, color_count, color_end;
1236                 unsigned char a, r, g, b;
1237
1238                 if (color_greyscale) {
1239                     int color_index, color_dec;
1240                     /* compute the greyscale palette */
1241                     st->codec->bits_per_coded_sample = color_depth;
1242                     color_count = 1 << color_depth;
1243                     color_index = 255;
1244                     color_dec = 256 / (color_count - 1);
1245                     for (j = 0; j < color_count; j++) {
1246                         if (id == AV_CODEC_ID_CINEPAK){
1247                             r = g = b = color_count - 1 - color_index;
1248                         }else
1249                         r = g = b = color_index;
1250                         sc->palette[j] =
1251                             (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1252                         color_index -= color_dec;
1253                         if (color_index < 0)
1254                             color_index = 0;
1255                     }
1256                 } else if (color_table_id) {
1257                     const uint8_t *color_table;
1258                     /* if flag bit 3 is set, use the default palette */
1259                     color_count = 1 << color_depth;
1260                     if (color_depth == 2)
1261                         color_table = ff_qt_default_palette_4;
1262                     else if (color_depth == 4)
1263                         color_table = ff_qt_default_palette_16;
1264                     else
1265                         color_table = ff_qt_default_palette_256;
1266
1267                     for (j = 0; j < color_count; j++) {
1268                         r = color_table[j * 3 + 0];
1269                         g = color_table[j * 3 + 1];
1270                         b = color_table[j * 3 + 2];
1271                         sc->palette[j] =
1272                             (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1273                     }
1274                 } else {
1275                     /* load the palette from the file */
1276                     color_start = avio_rb32(pb);
1277                     color_count = avio_rb16(pb);
1278                     color_end = avio_rb16(pb);
1279                     if ((color_start <= 255) &&
1280                         (color_end <= 255)) {
1281                         for (j = color_start; j <= color_end; j++) {
1282                             /* each A, R, G, or B component is 16 bits;
1283                              * only use the top 8 bits */
1284                             a = avio_r8(pb);
1285                             avio_r8(pb);
1286                             r = avio_r8(pb);
1287                             avio_r8(pb);
1288                             g = avio_r8(pb);
1289                             avio_r8(pb);
1290                             b = avio_r8(pb);
1291                             avio_r8(pb);
1292                             sc->palette[j] =
1293                                 (a << 24 ) | (r << 16) | (g << 8) | (b);
1294                         }
1295                     }
1296                 }
1297                 sc->has_palette = 1;
1298             }
1299         } else if (st->codec->codec_type==AVMEDIA_TYPE_AUDIO) {
1300             int bits_per_sample, flags;
1301             uint16_t version = avio_rb16(pb);
1302
1303             st->codec->codec_id = id;
1304             avio_rb16(pb); /* revision level */
1305             avio_rb32(pb); /* vendor */
1306
1307             st->codec->channels = avio_rb16(pb);             /* channel count */
1308             av_dlog(c->fc, "audio channels %d\n", st->codec->channels);
1309             st->codec->bits_per_coded_sample = avio_rb16(pb);      /* sample size */
1310
1311             sc->audio_cid = avio_rb16(pb);
1312             avio_rb16(pb); /* packet size = 0 */
1313
1314             st->codec->sample_rate = ((avio_rb32(pb) >> 16));
1315
1316             //Read QT version 1 fields. In version 0 these do not exist.
1317             av_dlog(c->fc, "version =%d, isom =%d\n",version,c->isom);
1318             if (!c->isom) {
1319                 if (version==1) {
1320                     sc->samples_per_frame = avio_rb32(pb);
1321                     avio_rb32(pb); /* bytes per packet */
1322                     sc->bytes_per_frame = avio_rb32(pb);
1323                     avio_rb32(pb); /* bytes per sample */
1324                 } else if (version==2) {
1325                     avio_rb32(pb); /* sizeof struct only */
1326                     st->codec->sample_rate = av_int2double(avio_rb64(pb)); /* float 64 */
1327                     st->codec->channels = avio_rb32(pb);
1328                     avio_rb32(pb); /* always 0x7F000000 */
1329                     st->codec->bits_per_coded_sample = avio_rb32(pb); /* bits per channel if sound is uncompressed */
1330                     flags = avio_rb32(pb); /* lpcm format specific flag */
1331                     sc->bytes_per_frame = avio_rb32(pb); /* bytes per audio packet if constant */
1332                     sc->samples_per_frame = avio_rb32(pb); /* lpcm frames per audio packet if constant */
1333                     if (format == MKTAG('l','p','c','m'))
1334                         st->codec->codec_id = ff_mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample, flags);
1335                 }
1336             }
1337
1338             switch (st->codec->codec_id) {
1339             case AV_CODEC_ID_PCM_S8:
1340             case AV_CODEC_ID_PCM_U8:
1341                 if (st->codec->bits_per_coded_sample == 16)
1342                     st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
1343                 break;
1344             case AV_CODEC_ID_PCM_S16LE:
1345             case AV_CODEC_ID_PCM_S16BE:
1346                 if (st->codec->bits_per_coded_sample == 8)
1347                     st->codec->codec_id = AV_CODEC_ID_PCM_S8;
1348                 else if (st->codec->bits_per_coded_sample == 24)
1349                     st->codec->codec_id =
1350                         st->codec->codec_id == AV_CODEC_ID_PCM_S16BE ?
1351                         AV_CODEC_ID_PCM_S24BE : AV_CODEC_ID_PCM_S24LE;
1352                 break;
1353             /* set values for old format before stsd version 1 appeared */
1354             case AV_CODEC_ID_MACE3:
1355                 sc->samples_per_frame = 6;
1356                 sc->bytes_per_frame = 2*st->codec->channels;
1357                 break;
1358             case AV_CODEC_ID_MACE6:
1359                 sc->samples_per_frame = 6;
1360                 sc->bytes_per_frame = 1*st->codec->channels;
1361                 break;
1362             case AV_CODEC_ID_ADPCM_IMA_QT:
1363                 sc->samples_per_frame = 64;
1364                 sc->bytes_per_frame = 34*st->codec->channels;
1365                 break;
1366             case AV_CODEC_ID_GSM:
1367                 sc->samples_per_frame = 160;
1368                 sc->bytes_per_frame = 33;
1369                 break;
1370             default:
1371                 break;
1372             }
1373
1374             bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
1375             if (bits_per_sample) {
1376                 st->codec->bits_per_coded_sample = bits_per_sample;
1377                 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
1378             }
1379         } else if (st->codec->codec_type==AVMEDIA_TYPE_SUBTITLE){
1380             // ttxt stsd contains display flags, justification, background
1381             // color, fonts, and default styles, so fake an atom to read it
1382             MOVAtom fake_atom = { .size = size - (avio_tell(pb) - start_pos) };
1383             if (format != AV_RL32("mp4s")) // mp4s contains a regular esds atom
1384                 mov_read_glbl(c, pb, fake_atom);
1385             st->codec->codec_id= id;
1386             st->codec->width = sc->width;
1387             st->codec->height = sc->height;
1388         } else {
1389             if (st->codec->codec_tag == MKTAG('t','m','c','d')) {
1390                 MOVStreamContext *tmcd_ctx = st->priv_data;
1391                 int val;
1392                 avio_rb32(pb);       /* reserved */
1393                 val = avio_rb32(pb); /* flags */
1394                 tmcd_ctx->tmcd_flags = val;
1395                 if (val & 1)
1396                     st->codec->flags2 |= CODEC_FLAG2_DROP_FRAME_TIMECODE;
1397                 avio_rb32(pb); /* time scale */
1398                 avio_rb32(pb); /* frame duration */
1399                 st->codec->time_base.den = avio_r8(pb); /* number of frame */
1400                 st->codec->time_base.num = 1;
1401             }
1402             /* other codec type, just skip (rtp, mp4s, ...) */
1403             avio_skip(pb, size - (avio_tell(pb) - start_pos));
1404         }
1405         /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
1406         a.size = size - (avio_tell(pb) - start_pos);
1407         if (a.size > 8) {
1408             int ret;
1409             if ((ret = mov_read_default(c, pb, a)) < 0)
1410                 return ret;
1411         } else if (a.size > 0)
1412             avio_skip(pb, a.size);
1413     }
1414
1415     if (st->codec->codec_type==AVMEDIA_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1)
1416         st->codec->sample_rate= sc->time_scale;
1417
1418     /* special codec parameters handling */
1419     switch (st->codec->codec_id) {
1420 #if CONFIG_DV_DEMUXER
1421     case AV_CODEC_ID_DVAUDIO:
1422         c->dv_fctx = avformat_alloc_context();
1423         c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
1424         if (!c->dv_demux) {
1425             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
1426             return AVERROR(ENOMEM);
1427         }
1428         sc->dv_audio_container = 1;
1429         st->codec->codec_id = AV_CODEC_ID_PCM_S16LE;
1430         break;
1431 #endif
1432     /* no ifdef since parameters are always those */
1433     case AV_CODEC_ID_QCELP:
1434         // force sample rate for qcelp when not stored in mov
1435         if (st->codec->codec_tag != MKTAG('Q','c','l','p'))
1436             st->codec->sample_rate = 8000;
1437         st->codec->channels= 1; /* really needed */
1438         break;
1439     case AV_CODEC_ID_AMR_NB:
1440         st->codec->channels= 1; /* really needed */
1441         /* force sample rate for amr, stsd in 3gp does not store sample rate */
1442         st->codec->sample_rate = 8000;
1443         break;
1444     case AV_CODEC_ID_AMR_WB:
1445         st->codec->channels    = 1;
1446         st->codec->sample_rate = 16000;
1447         break;
1448     case AV_CODEC_ID_MP2:
1449     case AV_CODEC_ID_MP3:
1450         st->codec->codec_type = AVMEDIA_TYPE_AUDIO; /* force type after stsd for m1a hdlr */
1451         st->need_parsing = AVSTREAM_PARSE_FULL;
1452         break;
1453     case AV_CODEC_ID_GSM:
1454     case AV_CODEC_ID_ADPCM_MS:
1455     case AV_CODEC_ID_ADPCM_IMA_WAV:
1456     case AV_CODEC_ID_ILBC:
1457         st->codec->block_align = sc->bytes_per_frame;
1458         break;
1459     case AV_CODEC_ID_ALAC:
1460         if (st->codec->extradata_size == 36) {
1461             st->codec->channels   = AV_RB8 (st->codec->extradata+21);
1462             st->codec->sample_rate = AV_RB32(st->codec->extradata+32);
1463         }
1464         break;
1465     case AV_CODEC_ID_AC3:
1466         st->need_parsing = AVSTREAM_PARSE_FULL;
1467         break;
1468     case AV_CODEC_ID_MPEG1VIDEO:
1469         st->need_parsing = AVSTREAM_PARSE_FULL;
1470         break;
1471     case AV_CODEC_ID_VC1:
1472         st->need_parsing = AVSTREAM_PARSE_FULL;
1473         break;
1474     default:
1475         break;
1476     }
1477
1478     return 0;
1479 }
1480
1481 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1482 {
1483     int entries;
1484
1485     avio_r8(pb); /* version */
1486     avio_rb24(pb); /* flags */
1487     entries = avio_rb32(pb);
1488
1489     return ff_mov_read_stsd_entries(c, pb, entries);
1490 }
1491
1492 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1493 {
1494     AVStream *st;
1495     MOVStreamContext *sc;
1496     unsigned int i, entries;
1497
1498     if (c->fc->nb_streams < 1)
1499         return 0;
1500     st = c->fc->streams[c->fc->nb_streams-1];
1501     sc = st->priv_data;
1502
1503     avio_r8(pb); /* version */
1504     avio_rb24(pb); /* flags */
1505
1506     entries = avio_rb32(pb);
1507
1508     av_dlog(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
1509
1510     if (!entries)
1511         return 0;
1512     if (entries >= UINT_MAX / sizeof(*sc->stsc_data))
1513         return AVERROR_INVALIDDATA;
1514     sc->stsc_data = av_malloc(entries * sizeof(*sc->stsc_data));
1515     if (!sc->stsc_data)
1516         return AVERROR(ENOMEM);
1517     sc->stsc_count = entries;
1518
1519     for (i=0; i<entries; i++) {
1520         sc->stsc_data[i].first = avio_rb32(pb);
1521         sc->stsc_data[i].count = avio_rb32(pb);
1522         sc->stsc_data[i].id = avio_rb32(pb);
1523     }
1524     return 0;
1525 }
1526
1527 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1528 {
1529     AVStream *st;
1530     MOVStreamContext *sc;
1531     unsigned i, entries;
1532
1533     if (c->fc->nb_streams < 1)
1534         return 0;
1535     st = c->fc->streams[c->fc->nb_streams-1];
1536     sc = st->priv_data;
1537
1538     avio_rb32(pb); // version + flags
1539
1540     entries = avio_rb32(pb);
1541     if (entries >= UINT_MAX / sizeof(*sc->stps_data))
1542         return AVERROR_INVALIDDATA;
1543     sc->stps_data = av_malloc(entries * sizeof(*sc->stps_data));
1544     if (!sc->stps_data)
1545         return AVERROR(ENOMEM);
1546     sc->stps_count = entries;
1547
1548     for (i = 0; i < entries; i++) {
1549         sc->stps_data[i] = avio_rb32(pb);
1550         //av_dlog(c->fc, "stps %d\n", sc->stps_data[i]);
1551     }
1552
1553     return 0;
1554 }
1555
1556 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1557 {
1558     AVStream *st;
1559     MOVStreamContext *sc;
1560     unsigned int i, entries;
1561
1562     if (c->fc->nb_streams < 1)
1563         return 0;
1564     st = c->fc->streams[c->fc->nb_streams-1];
1565     sc = st->priv_data;
1566
1567     avio_r8(pb); /* version */
1568     avio_rb24(pb); /* flags */
1569
1570     entries = avio_rb32(pb);
1571
1572     av_dlog(c->fc, "keyframe_count = %d\n", entries);
1573
1574     if (!entries)
1575     {
1576         sc->keyframe_absent = 1;
1577         return 0;
1578     }
1579     if (entries >= UINT_MAX / sizeof(int))
1580         return AVERROR_INVALIDDATA;
1581     sc->keyframes = av_malloc(entries * sizeof(int));
1582     if (!sc->keyframes)
1583         return AVERROR(ENOMEM);
1584     sc->keyframe_count = entries;
1585
1586     for (i=0; i<entries; i++) {
1587         sc->keyframes[i] = avio_rb32(pb);
1588         //av_dlog(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1589     }
1590     return 0;
1591 }
1592
1593 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1594 {
1595     AVStream *st;
1596     MOVStreamContext *sc;
1597     unsigned int i, entries, sample_size, field_size, num_bytes;
1598     GetBitContext gb;
1599     unsigned char* buf;
1600
1601     if (c->fc->nb_streams < 1)
1602         return 0;
1603     st = c->fc->streams[c->fc->nb_streams-1];
1604     sc = st->priv_data;
1605
1606     avio_r8(pb); /* version */
1607     avio_rb24(pb); /* flags */
1608
1609     if (atom.type == MKTAG('s','t','s','z')) {
1610         sample_size = avio_rb32(pb);
1611         if (!sc->sample_size) /* do not overwrite value computed in stsd */
1612             sc->sample_size = sample_size;
1613         sc->alt_sample_size = sample_size;
1614         field_size = 32;
1615     } else {
1616         sample_size = 0;
1617         avio_rb24(pb); /* reserved */
1618         field_size = avio_r8(pb);
1619     }
1620     entries = avio_rb32(pb);
1621
1622     av_dlog(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, entries);
1623
1624     sc->sample_count = entries;
1625     if (sample_size)
1626         return 0;
1627
1628     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
1629         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size);
1630         return AVERROR_INVALIDDATA;
1631     }
1632
1633     if (!entries)
1634         return 0;
1635     if (entries >= UINT_MAX / sizeof(int) || entries >= (UINT_MAX - 4) / field_size)
1636         return AVERROR_INVALIDDATA;
1637     sc->sample_sizes = av_malloc(entries * sizeof(int));
1638     if (!sc->sample_sizes)
1639         return AVERROR(ENOMEM);
1640
1641     num_bytes = (entries*field_size+4)>>3;
1642
1643     buf = av_malloc(num_bytes+FF_INPUT_BUFFER_PADDING_SIZE);
1644     if (!buf) {
1645         av_freep(&sc->sample_sizes);
1646         return AVERROR(ENOMEM);
1647     }
1648
1649     if (avio_read(pb, buf, num_bytes) < num_bytes) {
1650         av_freep(&sc->sample_sizes);
1651         av_free(buf);
1652         return AVERROR_INVALIDDATA;
1653     }
1654
1655     init_get_bits(&gb, buf, 8*num_bytes);
1656
1657     for (i = 0; i < entries; i++) {
1658         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
1659         sc->data_size += sc->sample_sizes[i];
1660     }
1661
1662     av_free(buf);
1663     return 0;
1664 }
1665
1666 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1667 {
1668     AVStream *st;
1669     MOVStreamContext *sc;
1670     unsigned int i, entries;
1671     int64_t duration=0;
1672     int64_t total_sample_count=0;
1673
1674     if (c->fc->nb_streams < 1)
1675         return 0;
1676     st = c->fc->streams[c->fc->nb_streams-1];
1677     sc = st->priv_data;
1678
1679     avio_r8(pb); /* version */
1680     avio_rb24(pb); /* flags */
1681     entries = avio_rb32(pb);
1682
1683     av_dlog(c->fc, "track[%i].stts.entries = %i\n",
1684             c->fc->nb_streams-1, entries);
1685
1686     if (entries >= UINT_MAX / sizeof(*sc->stts_data))
1687         return -1;
1688
1689     sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data));
1690     if (!sc->stts_data)
1691         return AVERROR(ENOMEM);
1692
1693     sc->stts_count = entries;
1694
1695     for (i=0; i<entries; i++) {
1696         int sample_duration;
1697         int sample_count;
1698
1699         sample_count=avio_rb32(pb);
1700         sample_duration = avio_rb32(pb);
1701         /* sample_duration < 0 is invalid based on the spec */
1702         if (sample_duration < 0) {
1703             av_log(c->fc, AV_LOG_ERROR, "Invalid SampleDelta in STTS %d\n", sample_duration);
1704             sample_duration = 1;
1705         }
1706         sc->stts_data[i].count= sample_count;
1707         sc->stts_data[i].duration= sample_duration;
1708
1709         av_dlog(c->fc, "sample_count=%d, sample_duration=%d\n",
1710                 sample_count, sample_duration);
1711
1712         duration+=(int64_t)sample_duration*sample_count;
1713         total_sample_count+=sample_count;
1714     }
1715
1716     st->nb_frames= total_sample_count;
1717     if (duration)
1718         st->duration= duration;
1719     sc->track_end = duration;
1720     return 0;
1721 }
1722
1723 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1724 {
1725     AVStream *st;
1726     MOVStreamContext *sc;
1727     unsigned int i, entries;
1728
1729     if (c->fc->nb_streams < 1)
1730         return 0;
1731     st = c->fc->streams[c->fc->nb_streams-1];
1732     sc = st->priv_data;
1733
1734     avio_r8(pb); /* version */
1735     avio_rb24(pb); /* flags */
1736     entries = avio_rb32(pb);
1737
1738     av_dlog(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
1739
1740     if (!entries)
1741         return 0;
1742     if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
1743         return AVERROR_INVALIDDATA;
1744     sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data));
1745     if (!sc->ctts_data)
1746         return AVERROR(ENOMEM);
1747     sc->ctts_count = entries;
1748
1749     for (i=0; i<entries; i++) {
1750         int count    =avio_rb32(pb);
1751         int duration =avio_rb32(pb);
1752
1753         sc->ctts_data[i].count   = count;
1754         sc->ctts_data[i].duration= duration;
1755
1756         av_dlog(c->fc, "count=%d, duration=%d\n",
1757                 count, duration);
1758
1759         if (FFABS(duration) > (1<<28) && i+2<entries) {
1760             av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
1761             av_freep(&sc->ctts_data);
1762             sc->ctts_count = 0;
1763             return 0;
1764         }
1765
1766         if (duration < 0 && i+2<entries)
1767             sc->dts_shift = FFMAX(sc->dts_shift, -duration);
1768     }
1769
1770     av_dlog(c->fc, "dts shift %d\n", sc->dts_shift);
1771
1772     return 0;
1773 }
1774
1775 static void mov_build_index(MOVContext *mov, AVStream *st)
1776 {
1777     MOVStreamContext *sc = st->priv_data;
1778     int64_t current_offset;
1779     int64_t current_dts = 0;
1780     unsigned int stts_index = 0;
1781     unsigned int stsc_index = 0;
1782     unsigned int stss_index = 0;
1783     unsigned int stps_index = 0;
1784     unsigned int i, j;
1785     uint64_t stream_size = 0;
1786     AVIndexEntry *mem;
1787
1788     /* adjust first dts according to edit list */
1789     if ((sc->empty_duration || sc->start_time) && mov->time_scale > 0) {
1790         if (sc->empty_duration)
1791             sc->empty_duration = av_rescale(sc->empty_duration, sc->time_scale, mov->time_scale);
1792         sc->time_offset = sc->start_time - sc->empty_duration;
1793         current_dts = -sc->time_offset;
1794         if (sc->ctts_count>0 && sc->stts_count>0 &&
1795             sc->ctts_data[0].duration / FFMAX(sc->stts_data[0].duration, 1) > 16) {
1796             /* more than 16 frames delay, dts are likely wrong
1797                this happens with files created by iMovie */
1798             sc->wrong_dts = 1;
1799             st->codec->has_b_frames = 1;
1800         }
1801     }
1802
1803     /* only use old uncompressed audio chunk demuxing when stts specifies it */
1804     if (!(st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1805           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
1806         unsigned int current_sample = 0;
1807         unsigned int stts_sample = 0;
1808         unsigned int sample_size;
1809         unsigned int distance = 0;
1810         int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_data && sc->stps_data[0] > 0);
1811
1812         current_dts -= sc->dts_shift;
1813
1814         if (!sc->sample_count || st->nb_index_entries)
1815             return;
1816         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
1817             return;
1818         mem = av_realloc(st->index_entries, (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries));
1819         if (!mem)
1820             return;
1821         st->index_entries = mem;
1822         st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
1823
1824         for (i = 0; i < sc->chunk_count; i++) {
1825             current_offset = sc->chunk_offsets[i];
1826             while (stsc_index + 1 < sc->stsc_count &&
1827                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1828                 stsc_index++;
1829             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
1830                 int keyframe = 0;
1831                 if (current_sample >= sc->sample_count) {
1832                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
1833                     return;
1834                 }
1835
1836                 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
1837                     keyframe = 1;
1838                     if (stss_index + 1 < sc->keyframe_count)
1839                         stss_index++;
1840                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
1841                     keyframe = 1;
1842                     if (stps_index + 1 < sc->stps_count)
1843                         stps_index++;
1844                 }
1845                 if (keyframe)
1846                     distance = 0;
1847                 sample_size = sc->alt_sample_size > 0 ? sc->alt_sample_size : sc->sample_sizes[current_sample];
1848                 if (sc->pseudo_stream_id == -1 ||
1849                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
1850                     AVIndexEntry *e = &st->index_entries[st->nb_index_entries++];
1851                     e->pos = current_offset;
1852                     e->timestamp = current_dts;
1853                     e->size = sample_size;
1854                     e->min_distance = distance;
1855                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
1856                     av_dlog(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
1857                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
1858                             current_offset, current_dts, sample_size, distance, keyframe);
1859                 }
1860
1861                 current_offset += sample_size;
1862                 stream_size += sample_size;
1863                 current_dts += sc->stts_data[stts_index].duration;
1864                 distance++;
1865                 stts_sample++;
1866                 current_sample++;
1867                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
1868                     stts_sample = 0;
1869                     stts_index++;
1870                 }
1871             }
1872         }
1873         if (st->duration > 0)
1874             st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
1875     } else {
1876         unsigned chunk_samples, total = 0;
1877
1878         // compute total chunk count
1879         for (i = 0; i < sc->stsc_count; i++) {
1880             unsigned count, chunk_count;
1881
1882             chunk_samples = sc->stsc_data[i].count;
1883             if (i != sc->stsc_count - 1 &&
1884                 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
1885                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
1886                 return;
1887             }
1888
1889             if (sc->samples_per_frame >= 160) { // gsm
1890                 count = chunk_samples / sc->samples_per_frame;
1891             } else if (sc->samples_per_frame > 1) {
1892                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
1893                 count = (chunk_samples+samples-1) / samples;
1894             } else {
1895                 count = (chunk_samples+1023) / 1024;
1896             }
1897
1898             if (i < sc->stsc_count - 1)
1899                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
1900             else
1901                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
1902             total += chunk_count * count;
1903         }
1904
1905         av_dlog(mov->fc, "chunk count %d\n", total);
1906         if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
1907             return;
1908         mem = av_realloc(st->index_entries, (st->nb_index_entries + total) * sizeof(*st->index_entries));
1909         if (!mem)
1910             return;
1911         st->index_entries = mem;
1912         st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
1913
1914         // populate index
1915         for (i = 0; i < sc->chunk_count; i++) {
1916             current_offset = sc->chunk_offsets[i];
1917             if (stsc_index + 1 < sc->stsc_count &&
1918                 i + 1 == sc->stsc_data[stsc_index + 1].first)
1919                 stsc_index++;
1920             chunk_samples = sc->stsc_data[stsc_index].count;
1921
1922             while (chunk_samples > 0) {
1923                 AVIndexEntry *e;
1924                 unsigned size, samples;
1925
1926                 if (sc->samples_per_frame >= 160) { // gsm
1927                     samples = sc->samples_per_frame;
1928                     size = sc->bytes_per_frame;
1929                 } else {
1930                     if (sc->samples_per_frame > 1) {
1931                         samples = FFMIN((1024 / sc->samples_per_frame)*
1932                                         sc->samples_per_frame, chunk_samples);
1933                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
1934                     } else {
1935                         samples = FFMIN(1024, chunk_samples);
1936                         size = samples * sc->sample_size;
1937                     }
1938                 }
1939
1940                 if (st->nb_index_entries >= total) {
1941                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %d\n", total);
1942                     return;
1943                 }
1944                 e = &st->index_entries[st->nb_index_entries++];
1945                 e->pos = current_offset;
1946                 e->timestamp = current_dts;
1947                 e->size = size;
1948                 e->min_distance = 0;
1949                 e->flags = AVINDEX_KEYFRAME;
1950                 av_dlog(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
1951                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
1952                         size, samples);
1953
1954                 current_offset += size;
1955                 current_dts += samples;
1956                 chunk_samples -= samples;
1957             }
1958         }
1959     }
1960 }
1961
1962 static int mov_open_dref(AVIOContext **pb, const char *src, MOVDref *ref,
1963                          AVIOInterruptCB *int_cb, int use_absolute_path, AVFormatContext *fc)
1964 {
1965     /* try relative path, we do not try the absolute because it can leak information about our
1966        system to an attacker */
1967     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
1968         char filename[1024];
1969         const char *src_path;
1970         int i, l;
1971
1972         /* find a source dir */
1973         src_path = strrchr(src, '/');
1974         if (src_path)
1975             src_path++;
1976         else
1977             src_path = src;
1978
1979         /* find a next level down to target */
1980         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
1981             if (ref->path[l] == '/') {
1982                 if (i == ref->nlvl_to - 1)
1983                     break;
1984                 else
1985                     i++;
1986             }
1987
1988         /* compose filename if next level down to target was found */
1989         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
1990             memcpy(filename, src, src_path - src);
1991             filename[src_path - src] = 0;
1992
1993             for (i = 1; i < ref->nlvl_from; i++)
1994                 av_strlcat(filename, "../", 1024);
1995
1996             av_strlcat(filename, ref->path + l + 1, 1024);
1997
1998             if (!avio_open2(pb, filename, AVIO_FLAG_READ, int_cb, NULL))
1999                 return 0;
2000         }
2001     } else if (use_absolute_path) {
2002         av_log(fc, AV_LOG_WARNING, "Using absolute path on user request, "
2003                "this is a possible security issue\n");
2004         if (!avio_open2(pb, ref->path, AVIO_FLAG_READ, int_cb, NULL))
2005             return 0;
2006     }
2007
2008     return AVERROR(ENOENT);
2009 }
2010
2011 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2012 {
2013     AVStream *st;
2014     MOVStreamContext *sc;
2015     int ret;
2016
2017     st = avformat_new_stream(c->fc, NULL);
2018     if (!st) return AVERROR(ENOMEM);
2019     st->id = c->fc->nb_streams;
2020     sc = av_mallocz(sizeof(MOVStreamContext));
2021     if (!sc) return AVERROR(ENOMEM);
2022
2023     st->priv_data = sc;
2024     st->codec->codec_type = AVMEDIA_TYPE_DATA;
2025     sc->ffindex = st->index;
2026
2027     if ((ret = mov_read_default(c, pb, atom)) < 0)
2028         return ret;
2029
2030     /* sanity checks */
2031     if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
2032                             (!sc->sample_size && !sc->sample_count))) {
2033         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
2034                st->index);
2035         return 0;
2036     }
2037
2038     if (sc->time_scale <= 0) {
2039         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", st->index);
2040         sc->time_scale = c->time_scale;
2041         if (sc->time_scale <= 0)
2042             sc->time_scale = 1;
2043     }
2044
2045     avpriv_set_pts_info(st, 64, 1, sc->time_scale);
2046
2047     mov_build_index(c, st);
2048
2049     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
2050         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
2051         if (mov_open_dref(&sc->pb, c->fc->filename, dref, &c->fc->interrupt_callback,
2052             c->use_absolute_path, c->fc) < 0)
2053             av_log(c->fc, AV_LOG_ERROR,
2054                    "stream %d, error opening alias: path='%s', dir='%s', "
2055                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
2056                    st->index, dref->path, dref->dir, dref->filename,
2057                    dref->volume, dref->nlvl_from, dref->nlvl_to);
2058     } else
2059         sc->pb = c->fc->pb;
2060
2061     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2062         if (!st->sample_aspect_ratio.num &&
2063             (st->codec->width != sc->width || st->codec->height != sc->height)) {
2064             st->sample_aspect_ratio = av_d2q(((double)st->codec->height * sc->width) /
2065                                              ((double)st->codec->width * sc->height), INT_MAX);
2066         }
2067
2068         av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
2069                   sc->time_scale*st->nb_frames, st->duration, INT_MAX);
2070
2071 #if FF_API_R_FRAME_RATE
2072         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
2073             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
2074                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
2075 #endif
2076     }
2077
2078     switch (st->codec->codec_id) {
2079 #if CONFIG_H261_DECODER
2080     case AV_CODEC_ID_H261:
2081 #endif
2082 #if CONFIG_H263_DECODER
2083     case AV_CODEC_ID_H263:
2084 #endif
2085 #if CONFIG_MPEG4_DECODER
2086     case AV_CODEC_ID_MPEG4:
2087 #endif
2088         st->codec->width = 0; /* let decoder init width/height */
2089         st->codec->height= 0;
2090         break;
2091     }
2092
2093     /* Do not need those anymore. */
2094     av_freep(&sc->chunk_offsets);
2095     av_freep(&sc->stsc_data);
2096     av_freep(&sc->sample_sizes);
2097     av_freep(&sc->keyframes);
2098     av_freep(&sc->stts_data);
2099     av_freep(&sc->stps_data);
2100
2101     return 0;
2102 }
2103
2104 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2105 {
2106     int ret;
2107     c->itunes_metadata = 1;
2108     ret = mov_read_default(c, pb, atom);
2109     c->itunes_metadata = 0;
2110     return ret;
2111 }
2112
2113 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2114 {
2115     while (atom.size > 8) {
2116         uint32_t tag = avio_rl32(pb);
2117         atom.size -= 4;
2118         if (tag == MKTAG('h','d','l','r')) {
2119             avio_seek(pb, -8, SEEK_CUR);
2120             atom.size += 8;
2121             return mov_read_default(c, pb, atom);
2122         }
2123     }
2124     return 0;
2125 }
2126
2127 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2128 {
2129     int i;
2130     int width;
2131     int height;
2132     int64_t disp_transform[2];
2133     int display_matrix[3][2];
2134     AVStream *st;
2135     MOVStreamContext *sc;
2136     int version;
2137
2138     if (c->fc->nb_streams < 1)
2139         return 0;
2140     st = c->fc->streams[c->fc->nb_streams-1];
2141     sc = st->priv_data;
2142
2143     version = avio_r8(pb);
2144     avio_rb24(pb); /* flags */
2145     /*
2146     MOV_TRACK_ENABLED 0x0001
2147     MOV_TRACK_IN_MOVIE 0x0002
2148     MOV_TRACK_IN_PREVIEW 0x0004
2149     MOV_TRACK_IN_POSTER 0x0008
2150     */
2151
2152     if (version == 1) {
2153         avio_rb64(pb);
2154         avio_rb64(pb);
2155     } else {
2156         avio_rb32(pb); /* creation time */
2157         avio_rb32(pb); /* modification time */
2158     }
2159     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
2160     avio_rb32(pb); /* reserved */
2161
2162     /* highlevel (considering edits) duration in movie timebase */
2163     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
2164     avio_rb32(pb); /* reserved */
2165     avio_rb32(pb); /* reserved */
2166
2167     avio_rb16(pb); /* layer */
2168     avio_rb16(pb); /* alternate group */
2169     avio_rb16(pb); /* volume */
2170     avio_rb16(pb); /* reserved */
2171
2172     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
2173     // they're kept in fixed point format through all calculations
2174     // ignore u,v,z b/c we don't need the scale factor to calc aspect ratio
2175     for (i = 0; i < 3; i++) {
2176         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
2177         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
2178         avio_rb32(pb);           // 2.30 fixed point (not used)
2179     }
2180
2181     width = avio_rb32(pb);       // 16.16 fixed point track width
2182     height = avio_rb32(pb);      // 16.16 fixed point track height
2183     sc->width = width >> 16;
2184     sc->height = height >> 16;
2185
2186     //Assign clockwise rotate values based on transform matrix so that
2187     //we can compensate for iPhone orientation during capture.
2188
2189     if (display_matrix[1][0] == -65536 && display_matrix[0][1] == 65536) {
2190          av_dict_set(&st->metadata, "rotate", "90", 0);
2191     }
2192
2193     if (display_matrix[0][0] == -65536 && display_matrix[1][1] == -65536) {
2194          av_dict_set(&st->metadata, "rotate", "180", 0);
2195     }
2196
2197     if (display_matrix[1][0] == 65536 && display_matrix[0][1] == -65536) {
2198          av_dict_set(&st->metadata, "rotate", "270", 0);
2199     }
2200
2201     // transform the display width/height according to the matrix
2202     // skip this if the display matrix is the default identity matrix
2203     // or if it is rotating the picture, ex iPhone 3GS
2204     // to keep the same scale, use [width height 1<<16]
2205     if (width && height &&
2206         ((display_matrix[0][0] != 65536  ||
2207           display_matrix[1][1] != 65536) &&
2208          !display_matrix[0][1] &&
2209          !display_matrix[1][0] &&
2210          !display_matrix[2][0] && !display_matrix[2][1])) {
2211         for (i = 0; i < 2; i++)
2212             disp_transform[i] =
2213                 (int64_t)  width  * display_matrix[0][i] +
2214                 (int64_t)  height * display_matrix[1][i] +
2215                 ((int64_t) display_matrix[2][i] << 16);
2216
2217         //sample aspect ratio is new width/height divided by old width/height
2218         st->sample_aspect_ratio = av_d2q(
2219             ((double) disp_transform[0] * height) /
2220             ((double) disp_transform[1] * width), INT_MAX);
2221     }
2222     return 0;
2223 }
2224
2225 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2226 {
2227     MOVFragment *frag = &c->fragment;
2228     MOVTrackExt *trex = NULL;
2229     int flags, track_id, i;
2230
2231     avio_r8(pb); /* version */
2232     flags = avio_rb24(pb);
2233
2234     track_id = avio_rb32(pb);
2235     if (!track_id)
2236         return AVERROR_INVALIDDATA;
2237     frag->track_id = track_id;
2238     for (i = 0; i < c->trex_count; i++)
2239         if (c->trex_data[i].track_id == frag->track_id) {
2240             trex = &c->trex_data[i];
2241             break;
2242         }
2243     if (!trex) {
2244         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
2245         return AVERROR_INVALIDDATA;
2246     }
2247
2248     frag->base_data_offset = flags & MOV_TFHD_BASE_DATA_OFFSET ?
2249                              avio_rb64(pb) : frag->moof_offset;
2250     frag->stsd_id  = flags & MOV_TFHD_STSD_ID ? avio_rb32(pb) : trex->stsd_id;
2251
2252     frag->duration = flags & MOV_TFHD_DEFAULT_DURATION ?
2253                      avio_rb32(pb) : trex->duration;
2254     frag->size     = flags & MOV_TFHD_DEFAULT_SIZE ?
2255                      avio_rb32(pb) : trex->size;
2256     frag->flags    = flags & MOV_TFHD_DEFAULT_FLAGS ?
2257                      avio_rb32(pb) : trex->flags;
2258     av_dlog(c->fc, "frag flags 0x%x\n", frag->flags);
2259     return 0;
2260 }
2261
2262 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2263 {
2264     c->chapter_track = avio_rb32(pb);
2265     return 0;
2266 }
2267
2268 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2269 {
2270     MOVTrackExt *trex;
2271
2272     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
2273         return AVERROR_INVALIDDATA;
2274     trex = av_realloc(c->trex_data, (c->trex_count+1)*sizeof(*c->trex_data));
2275     if (!trex)
2276         return AVERROR(ENOMEM);
2277
2278     c->fc->duration = AV_NOPTS_VALUE; // the duration from mvhd is not representing the whole file when fragments are used.
2279
2280     c->trex_data = trex;
2281     trex = &c->trex_data[c->trex_count++];
2282     avio_r8(pb); /* version */
2283     avio_rb24(pb); /* flags */
2284     trex->track_id = avio_rb32(pb);
2285     trex->stsd_id  = avio_rb32(pb);
2286     trex->duration = avio_rb32(pb);
2287     trex->size     = avio_rb32(pb);
2288     trex->flags    = avio_rb32(pb);
2289     return 0;
2290 }
2291
2292 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2293 {
2294     MOVFragment *frag = &c->fragment;
2295     AVStream *st = NULL;
2296     MOVStreamContext *sc;
2297     MOVStts *ctts_data;
2298     uint64_t offset;
2299     int64_t dts;
2300     int data_offset = 0;
2301     unsigned entries, first_sample_flags = frag->flags;
2302     int flags, distance, i, found_keyframe = 0;
2303
2304     for (i = 0; i < c->fc->nb_streams; i++) {
2305         if (c->fc->streams[i]->id == frag->track_id) {
2306             st = c->fc->streams[i];
2307             break;
2308         }
2309     }
2310     if (!st) {
2311         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
2312         return AVERROR_INVALIDDATA;
2313     }
2314     sc = st->priv_data;
2315     if (sc->pseudo_stream_id+1 != frag->stsd_id)
2316         return 0;
2317     avio_r8(pb); /* version */
2318     flags = avio_rb24(pb);
2319     entries = avio_rb32(pb);
2320     av_dlog(c->fc, "flags 0x%x entries %d\n", flags, entries);
2321
2322     /* Always assume the presence of composition time offsets.
2323      * Without this assumption, for instance, we cannot deal with a track in fragmented movies that meet the following.
2324      *  1) in the initial movie, there are no samples.
2325      *  2) in the first movie fragment, there is only one sample without composition time offset.
2326      *  3) in the subsequent movie fragments, there are samples with composition time offset. */
2327     if (!sc->ctts_count && sc->sample_count)
2328     {
2329         /* Complement ctts table if moov atom doesn't have ctts atom. */
2330         ctts_data = av_malloc(sizeof(*sc->ctts_data));
2331         if (!ctts_data)
2332             return AVERROR(ENOMEM);
2333         sc->ctts_data = ctts_data;
2334         sc->ctts_data[sc->ctts_count].count = sc->sample_count;
2335         sc->ctts_data[sc->ctts_count].duration = 0;
2336         sc->ctts_count++;
2337     }
2338     if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
2339         return AVERROR_INVALIDDATA;
2340     ctts_data = av_realloc(sc->ctts_data,
2341                            (entries+sc->ctts_count)*sizeof(*sc->ctts_data));
2342     if (!ctts_data)
2343         return AVERROR(ENOMEM);
2344     sc->ctts_data = ctts_data;
2345
2346     if (flags & MOV_TRUN_DATA_OFFSET)        data_offset        = avio_rb32(pb);
2347     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS) first_sample_flags = avio_rb32(pb);
2348     dts    = sc->track_end - sc->time_offset;
2349     offset = frag->base_data_offset + data_offset;
2350     distance = 0;
2351     av_dlog(c->fc, "first sample flags 0x%x\n", first_sample_flags);
2352     for (i = 0; i < entries; i++) {
2353         unsigned sample_size = frag->size;
2354         int sample_flags = i ? frag->flags : first_sample_flags;
2355         unsigned sample_duration = frag->duration;
2356         int keyframe = 0;
2357
2358         if (flags & MOV_TRUN_SAMPLE_DURATION) sample_duration = avio_rb32(pb);
2359         if (flags & MOV_TRUN_SAMPLE_SIZE)     sample_size     = avio_rb32(pb);
2360         if (flags & MOV_TRUN_SAMPLE_FLAGS)    sample_flags    = avio_rb32(pb);
2361         sc->ctts_data[sc->ctts_count].count = 1;
2362         sc->ctts_data[sc->ctts_count].duration = (flags & MOV_TRUN_SAMPLE_CTS) ?
2363                                                   avio_rb32(pb) : 0;
2364         sc->ctts_count++;
2365         if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
2366             keyframe = 1;
2367         else if (!found_keyframe)
2368             keyframe = found_keyframe =
2369                 !(sample_flags & (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC |
2370                                   MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES));
2371         if (keyframe)
2372             distance = 0;
2373         av_add_index_entry(st, offset, dts, sample_size, distance,
2374                            keyframe ? AVINDEX_KEYFRAME : 0);
2375         av_dlog(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
2376                 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i,
2377                 offset, dts, sample_size, distance, keyframe);
2378         distance++;
2379         dts += sample_duration;
2380         offset += sample_size;
2381         sc->data_size += sample_size;
2382     }
2383     frag->moof_offset = offset;
2384     st->duration = sc->track_end = dts + sc->time_offset;
2385     return 0;
2386 }
2387
2388 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
2389 /* like the files created with Adobe Premiere 5.0, for samples see */
2390 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
2391 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2392 {
2393     int err;
2394
2395     if (atom.size < 8)
2396         return 0; /* continue */
2397     if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
2398         avio_skip(pb, atom.size - 4);
2399         return 0;
2400     }
2401     atom.type = avio_rl32(pb);
2402     atom.size -= 8;
2403     if (atom.type != MKTAG('m','d','a','t')) {
2404         avio_skip(pb, atom.size);
2405         return 0;
2406     }
2407     err = mov_read_mdat(c, pb, atom);
2408     return err;
2409 }
2410
2411 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2412 {
2413 #if CONFIG_ZLIB
2414     AVIOContext ctx;
2415     uint8_t *cmov_data;
2416     uint8_t *moov_data; /* uncompressed data */
2417     long cmov_len, moov_len;
2418     int ret = -1;
2419
2420     avio_rb32(pb); /* dcom atom */
2421     if (avio_rl32(pb) != MKTAG('d','c','o','m'))
2422         return AVERROR_INVALIDDATA;
2423     if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
2424         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !");
2425         return AVERROR_INVALIDDATA;
2426     }
2427     avio_rb32(pb); /* cmvd atom */
2428     if (avio_rl32(pb) != MKTAG('c','m','v','d'))
2429         return AVERROR_INVALIDDATA;
2430     moov_len = avio_rb32(pb); /* uncompressed size */
2431     cmov_len = atom.size - 6 * 4;
2432
2433     cmov_data = av_malloc(cmov_len);
2434     if (!cmov_data)
2435         return AVERROR(ENOMEM);
2436     moov_data = av_malloc(moov_len);
2437     if (!moov_data) {
2438         av_free(cmov_data);
2439         return AVERROR(ENOMEM);
2440     }
2441     avio_read(pb, cmov_data, cmov_len);
2442     if (uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
2443         goto free_and_return;
2444     if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
2445         goto free_and_return;
2446     atom.type = MKTAG('m','o','o','v');
2447     atom.size = moov_len;
2448     ret = mov_read_default(c, &ctx, atom);
2449 free_and_return:
2450     av_free(moov_data);
2451     av_free(cmov_data);
2452     return ret;
2453 #else
2454     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
2455     return AVERROR(ENOSYS);
2456 #endif
2457 }
2458
2459 /* edit list atom */
2460 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2461 {
2462     MOVStreamContext *sc;
2463     int i, edit_count, version, edit_start_index = 0;
2464
2465     if (c->fc->nb_streams < 1)
2466         return 0;
2467     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
2468
2469     version = avio_r8(pb); /* version */
2470     avio_rb24(pb); /* flags */
2471     edit_count = avio_rb32(pb); /* entries */
2472
2473     if ((uint64_t)edit_count*12+8 > atom.size)
2474         return AVERROR_INVALIDDATA;
2475
2476     for (i=0; i<edit_count; i++){
2477         int64_t time;
2478         int64_t duration;
2479         if (version == 1) {
2480             duration = avio_rb64(pb);
2481             time     = avio_rb64(pb);
2482         } else {
2483             duration = avio_rb32(pb); /* segment duration */
2484             time     = (int32_t)avio_rb32(pb); /* media time */
2485         }
2486         avio_rb32(pb); /* Media rate */
2487         if (i == 0 && time == -1) {
2488             sc->empty_duration = duration;
2489             edit_start_index = 1;
2490         } else if (i == edit_start_index && time >= 0)
2491             sc->start_time = time;
2492     }
2493
2494     if (edit_count > 1)
2495         av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, "
2496                "a/v desync might occur, patch welcome\n");
2497
2498     av_dlog(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count);
2499     return 0;
2500 }
2501
2502 static int mov_read_chan2(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2503 {
2504     if (atom.size < 16)
2505         return 0;
2506     avio_skip(pb, 4);
2507     ff_mov_read_chan(c->fc,c->fc->streams[0],  atom.size - 4);
2508     return 0;
2509 }
2510
2511 static int mov_read_tref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2512 {
2513     uint32_t i, size;
2514     MOVStreamContext *sc;
2515
2516     if (c->fc->nb_streams < 1)
2517         return AVERROR_INVALIDDATA;
2518     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
2519
2520     size = avio_rb32(pb);
2521     if (size < 12)
2522         return 0;
2523
2524     sc->trefs_count = (size - 4) / 8;
2525     sc->trefs = av_malloc(sc->trefs_count * sizeof(*sc->trefs));
2526     if (!sc->trefs)
2527         return AVERROR(ENOMEM);
2528
2529     sc->tref_type = avio_rl32(pb);
2530     for (i = 0; i < sc->trefs_count; i++)
2531         sc->trefs[i] = avio_rb32(pb);
2532     return 0;
2533 }
2534
2535 static const MOVParseTableEntry mov_default_parse_table[] = {
2536 { MKTAG('A','C','L','R'), mov_read_avid },
2537 { MKTAG('A','P','R','G'), mov_read_avid },
2538 { MKTAG('A','A','L','P'), mov_read_avid },
2539 { MKTAG('A','R','E','S'), mov_read_avid },
2540 { MKTAG('a','v','s','s'), mov_read_avss },
2541 { MKTAG('c','h','p','l'), mov_read_chpl },
2542 { MKTAG('c','o','6','4'), mov_read_stco },
2543 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
2544 { MKTAG('d','i','n','f'), mov_read_default },
2545 { MKTAG('d','r','e','f'), mov_read_dref },
2546 { MKTAG('e','d','t','s'), mov_read_default },
2547 { MKTAG('e','l','s','t'), mov_read_elst },
2548 { MKTAG('e','n','d','a'), mov_read_enda },
2549 { MKTAG('f','i','e','l'), mov_read_fiel },
2550 { MKTAG('f','t','y','p'), mov_read_ftyp },
2551 { MKTAG('g','l','b','l'), mov_read_glbl },
2552 { MKTAG('h','d','l','r'), mov_read_hdlr },
2553 { MKTAG('i','l','s','t'), mov_read_ilst },
2554 { MKTAG('j','p','2','h'), mov_read_jp2h },
2555 { MKTAG('m','d','a','t'), mov_read_mdat },
2556 { MKTAG('m','d','h','d'), mov_read_mdhd },
2557 { MKTAG('m','d','i','a'), mov_read_default },
2558 { MKTAG('m','e','t','a'), mov_read_meta },
2559 { MKTAG('m','i','n','f'), mov_read_default },
2560 { MKTAG('m','o','o','f'), mov_read_moof },
2561 { MKTAG('m','o','o','v'), mov_read_moov },
2562 { MKTAG('m','v','e','x'), mov_read_default },
2563 { MKTAG('m','v','h','d'), mov_read_mvhd },
2564 { MKTAG('S','M','I',' '), mov_read_svq3 },
2565 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
2566 { MKTAG('a','v','c','C'), mov_read_glbl },
2567 { MKTAG('p','a','s','p'), mov_read_pasp },
2568 { MKTAG('s','t','b','l'), mov_read_default },
2569 { MKTAG('s','t','c','o'), mov_read_stco },
2570 { MKTAG('s','t','p','s'), mov_read_stps },
2571 { MKTAG('s','t','r','f'), mov_read_strf },
2572 { MKTAG('s','t','s','c'), mov_read_stsc },
2573 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
2574 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
2575 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
2576 { MKTAG('s','t','t','s'), mov_read_stts },
2577 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
2578 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
2579 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
2580 { MKTAG('t','r','a','k'), mov_read_trak },
2581 { MKTAG('t','r','a','f'), mov_read_default },
2582 { MKTAG('t','r','e','f'), mov_read_tref },
2583 { MKTAG('c','h','a','p'), mov_read_chap },
2584 { MKTAG('t','r','e','x'), mov_read_trex },
2585 { MKTAG('t','r','u','n'), mov_read_trun },
2586 { MKTAG('u','d','t','a'), mov_read_default },
2587 { MKTAG('w','a','v','e'), mov_read_wave },
2588 { MKTAG('e','s','d','s'), mov_read_esds },
2589 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
2590 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
2591 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
2592 { MKTAG('w','f','e','x'), mov_read_wfex },
2593 { MKTAG('c','m','o','v'), mov_read_cmov },
2594 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
2595 { MKTAG('d','v','c','1'), mov_read_dvc1 },
2596 { 0, NULL }
2597 };
2598
2599 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2600 {
2601     int64_t total_size = 0;
2602     MOVAtom a;
2603     int i;
2604
2605     if (atom.size < 0)
2606         atom.size = INT64_MAX;
2607     while (total_size + 8 <= atom.size && !url_feof(pb)) {
2608         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
2609         a.size = atom.size;
2610         a.type=0;
2611         if (atom.size >= 8) {
2612             a.size = avio_rb32(pb);
2613             a.type = avio_rl32(pb);
2614             if (atom.type != MKTAG('r','o','o','t') &&
2615                 atom.type != MKTAG('m','o','o','v'))
2616             {
2617                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
2618                 {
2619                     av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
2620                     avio_skip(pb, -8);
2621                     return 0;
2622                 }
2623             }
2624             total_size += 8;
2625             if (a.size == 1) { /* 64 bit extended size */
2626                 a.size = avio_rb64(pb) - 8;
2627                 total_size += 8;
2628             }
2629         }
2630         av_dlog(c->fc, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
2631                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
2632         if (a.size == 0) {
2633             a.size = atom.size - total_size + 8;
2634         }
2635         a.size -= 8;
2636         if (a.size < 0)
2637             break;
2638         a.size = FFMIN(a.size, atom.size - total_size);
2639
2640         for (i = 0; mov_default_parse_table[i].type; i++)
2641             if (mov_default_parse_table[i].type == a.type) {
2642                 parse = mov_default_parse_table[i].parse;
2643                 break;
2644             }
2645
2646         // container is user data
2647         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
2648                        atom.type == MKTAG('i','l','s','t')))
2649             parse = mov_read_udta_string;
2650
2651         if (!parse) { /* skip leaf atoms data */
2652             avio_skip(pb, a.size);
2653         } else {
2654             int64_t start_pos = avio_tell(pb);
2655             int64_t left;
2656             int err = parse(c, pb, a);
2657             if (err < 0)
2658                 return err;
2659             if (c->found_moov && c->found_mdat &&
2660                 ((!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX) ||
2661                  start_pos + a.size == avio_size(pb))) {
2662                 if (!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX)
2663                     c->next_root_atom = start_pos + a.size;
2664                 return 0;
2665             }
2666             left = a.size - avio_tell(pb) + start_pos;
2667             if (left > 0) /* skip garbage at atom end */
2668                 avio_skip(pb, left);
2669         }
2670
2671         total_size += a.size;
2672     }
2673
2674     if (total_size < atom.size && atom.size < 0x7ffff)
2675         avio_skip(pb, atom.size - total_size);
2676
2677     return 0;
2678 }
2679
2680 static int mov_probe(AVProbeData *p)
2681 {
2682     unsigned int offset;
2683     uint32_t tag;
2684     int score = 0;
2685
2686     /* check file header */
2687     offset = 0;
2688     for (;;) {
2689         /* ignore invalid offset */
2690         if ((offset + 8) > (unsigned int)p->buf_size)
2691             return score;
2692         tag = AV_RL32(p->buf + offset + 4);
2693         switch(tag) {
2694         /* check for obvious tags */
2695         case MKTAG('j','P',' ',' '): /* jpeg 2000 signature */
2696         case MKTAG('m','o','o','v'):
2697         case MKTAG('m','d','a','t'):
2698         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
2699         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
2700         case MKTAG('f','t','y','p'):
2701             return AVPROBE_SCORE_MAX;
2702         /* those are more common words, so rate then a bit less */
2703         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
2704         case MKTAG('w','i','d','e'):
2705         case MKTAG('f','r','e','e'):
2706         case MKTAG('j','u','n','k'):
2707         case MKTAG('p','i','c','t'):
2708             return AVPROBE_SCORE_MAX - 5;
2709         case MKTAG(0x82,0x82,0x7f,0x7d):
2710         case MKTAG('s','k','i','p'):
2711         case MKTAG('u','u','i','d'):
2712         case MKTAG('p','r','f','l'):
2713             offset = AV_RB32(p->buf+offset) + offset;
2714             /* if we only find those cause probedata is too small at least rate them */
2715             score = AVPROBE_SCORE_MAX - 50;
2716             break;
2717         default:
2718             /* unrecognized tag */
2719             return score;
2720         }
2721     }
2722 }
2723
2724 // must be done after parsing all trak because there's no order requirement
2725 static void mov_read_chapters(AVFormatContext *s)
2726 {
2727     MOVContext *mov = s->priv_data;
2728     AVStream *st = NULL;
2729     MOVStreamContext *sc;
2730     int64_t cur_pos;
2731     int i;
2732
2733     for (i = 0; i < s->nb_streams; i++)
2734         if (s->streams[i]->id == mov->chapter_track) {
2735             st = s->streams[i];
2736             break;
2737         }
2738     if (!st) {
2739         av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
2740         return;
2741     }
2742
2743     st->discard = AVDISCARD_ALL;
2744     sc = st->priv_data;
2745     cur_pos = avio_tell(sc->pb);
2746
2747     for (i = 0; i < st->nb_index_entries; i++) {
2748         AVIndexEntry *sample = &st->index_entries[i];
2749         int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
2750         uint8_t *title;
2751         uint16_t ch;
2752         int len, title_len;
2753
2754         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
2755             av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
2756             goto finish;
2757         }
2758
2759         // the first two bytes are the length of the title
2760         len = avio_rb16(sc->pb);
2761         if (len > sample->size-2)
2762             continue;
2763         title_len = 2*len + 1;
2764         if (!(title = av_mallocz(title_len)))
2765             goto finish;
2766
2767         // The samples could theoretically be in any encoding if there's an encd
2768         // atom following, but in practice are only utf-8 or utf-16, distinguished
2769         // instead by the presence of a BOM
2770         if (!len) {
2771             title[0] = 0;
2772         } else {
2773             ch = avio_rb16(sc->pb);
2774             if (ch == 0xfeff)
2775                 avio_get_str16be(sc->pb, len, title, title_len);
2776             else if (ch == 0xfffe)
2777                 avio_get_str16le(sc->pb, len, title, title_len);
2778             else {
2779                 AV_WB16(title, ch);
2780                 if (len == 1 || len == 2)
2781                     title[len] = 0;
2782                 else
2783                     avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
2784             }
2785         }
2786
2787         avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
2788         av_freep(&title);
2789     }
2790 finish:
2791     avio_seek(sc->pb, cur_pos, SEEK_SET);
2792 }
2793
2794 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
2795                                              uint32_t value, int flags)
2796 {
2797     AVTimecode tc;
2798     char buf[AV_TIMECODE_STR_SIZE];
2799     AVRational rate = {st->codec->time_base.den,
2800                        st->codec->time_base.num};
2801     int ret = av_timecode_init(&tc, rate, flags, 0, s);
2802     if (ret < 0)
2803         return ret;
2804     av_dict_set(&st->metadata, "timecode",
2805                 av_timecode_make_string(&tc, buf, value), 0);
2806     return 0;
2807 }
2808
2809 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
2810 {
2811     MOVStreamContext *sc = st->priv_data;
2812     int flags = 0;
2813     int64_t cur_pos = avio_tell(sc->pb);
2814     uint32_t value;
2815
2816     if (!st->nb_index_entries)
2817         return -1;
2818
2819     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
2820     value = avio_rb32(s->pb);
2821
2822     if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
2823     if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
2824     if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
2825
2826     /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
2827      * not the case) and thus assume "frame number format" instead of QT one.
2828      * No sample with tmcd track can be found with a QT timecode at the moment,
2829      * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
2830      * format). */
2831     parse_timecode_in_framenum_format(s, st, value, flags);
2832
2833     avio_seek(sc->pb, cur_pos, SEEK_SET);
2834     return 0;
2835 }
2836
2837 static int mov_read_close(AVFormatContext *s)
2838 {
2839     MOVContext *mov = s->priv_data;
2840     int i, j;
2841
2842     for (i = 0; i < s->nb_streams; i++) {
2843         AVStream *st = s->streams[i];
2844         MOVStreamContext *sc = st->priv_data;
2845
2846         av_freep(&sc->ctts_data);
2847         for (j = 0; j < sc->drefs_count; j++) {
2848             av_freep(&sc->drefs[j].path);
2849             av_freep(&sc->drefs[j].dir);
2850         }
2851         av_freep(&sc->drefs);
2852         av_freep(&sc->trefs);
2853         if (sc->pb && sc->pb != s->pb)
2854             avio_close(sc->pb);
2855         sc->pb = NULL;
2856         av_freep(&sc->chunk_offsets);
2857         av_freep(&sc->keyframes);
2858         av_freep(&sc->sample_sizes);
2859         av_freep(&sc->stps_data);
2860         av_freep(&sc->stsc_data);
2861         av_freep(&sc->stts_data);
2862     }
2863
2864     if (mov->dv_demux) {
2865         for (i = 0; i < mov->dv_fctx->nb_streams; i++) {
2866             av_freep(&mov->dv_fctx->streams[i]->codec);
2867             av_freep(&mov->dv_fctx->streams[i]);
2868         }
2869         av_freep(&mov->dv_fctx);
2870         av_freep(&mov->dv_demux);
2871     }
2872
2873     av_freep(&mov->trex_data);
2874
2875     return 0;
2876 }
2877
2878 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
2879 {
2880     int i, j;
2881
2882     for (i = 0; i < s->nb_streams; i++) {
2883         AVStream *st = s->streams[i];
2884         MOVStreamContext *sc = st->priv_data;
2885
2886         if (s->streams[i]->codec->codec_type != AVMEDIA_TYPE_VIDEO)
2887             continue;
2888         for (j = 0; j < sc->trefs_count; j++)
2889             if (tmcd_id == sc->trefs[j])
2890                 return 1;
2891     }
2892     return 0;
2893 }
2894
2895 /* look for a tmcd track not referenced by any video track, and export it globally */
2896 static void export_orphan_timecode(AVFormatContext *s)
2897 {
2898     int i;
2899
2900     for (i = 0; i < s->nb_streams; i++) {
2901         AVStream *st = s->streams[i];
2902
2903         if (st->codec->codec_tag  == MKTAG('t','m','c','d') &&
2904             !tmcd_is_referenced(s, i + 1)) {
2905             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
2906             if (tcr) {
2907                 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
2908                 break;
2909             }
2910         }
2911     }
2912 }
2913
2914 static int mov_read_header(AVFormatContext *s)
2915 {
2916     MOVContext *mov = s->priv_data;
2917     AVIOContext *pb = s->pb;
2918     int i, err;
2919     MOVAtom atom = { AV_RL32("root") };
2920
2921     mov->fc = s;
2922     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
2923     if (pb->seekable)
2924         atom.size = avio_size(pb);
2925     else
2926         atom.size = INT64_MAX;
2927
2928     /* check MOV header */
2929     if ((err = mov_read_default(mov, pb, atom)) < 0) {
2930         av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err);
2931         mov_read_close(s);
2932         return err;
2933     }
2934     if (!mov->found_moov) {
2935         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
2936         mov_read_close(s);
2937         return AVERROR_INVALIDDATA;
2938     }
2939     av_dlog(mov->fc, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
2940
2941     if (pb->seekable) {
2942         if (mov->chapter_track > 0)
2943             mov_read_chapters(s);
2944         for (i = 0; i < s->nb_streams; i++)
2945             if (s->streams[i]->codec->codec_tag == AV_RL32("tmcd"))
2946                 mov_read_timecode_track(s, s->streams[i]);
2947     }
2948
2949     /* copy timecode metadata from tmcd tracks to the related video streams */
2950     for (i = 0; i < s->nb_streams; i++) {
2951         AVStream *st = s->streams[i];
2952         MOVStreamContext *sc = st->priv_data;
2953         if (sc->tref_type == AV_RL32("tmcd") && sc->trefs_count) {
2954             AVDictionaryEntry *tcr;
2955             int tmcd_st_id = sc->trefs[0] - 1;
2956
2957             if (tmcd_st_id < 0 || tmcd_st_id >= s->nb_streams)
2958                 continue;
2959             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
2960             if (tcr)
2961                 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
2962         }
2963     }
2964     export_orphan_timecode(s);
2965
2966     for (i = 0; i < s->nb_streams; i++) {
2967         AVStream *st = s->streams[i];
2968         MOVStreamContext *sc = st->priv_data;
2969         if(st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->codec->codec_id == AV_CODEC_ID_AAC) {
2970             sc->start_pad = 2112;
2971             st->skip_samples = sc->start_pad;
2972         }
2973     }
2974
2975     if (mov->trex_data) {
2976         for (i = 0; i < s->nb_streams; i++) {
2977             AVStream *st = s->streams[i];
2978             MOVStreamContext *sc = st->priv_data;
2979             if (st->duration)
2980                 st->codec->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
2981         }
2982     }
2983
2984     return 0;
2985 }
2986
2987 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
2988 {
2989     AVIndexEntry *sample = NULL;
2990     int64_t best_dts = INT64_MAX;
2991     int i;
2992     for (i = 0; i < s->nb_streams; i++) {
2993         AVStream *avst = s->streams[i];
2994         MOVStreamContext *msc = avst->priv_data;
2995         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
2996             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
2997             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
2998             av_dlog(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
2999             if (!sample || (!s->pb->seekable && current_sample->pos < sample->pos) ||
3000                 (s->pb->seekable &&
3001                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
3002                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
3003                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
3004                 sample = current_sample;
3005                 best_dts = dts;
3006                 *st = avst;
3007             }
3008         }
3009     }
3010     return sample;
3011 }
3012
3013 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
3014 {
3015     MOVContext *mov = s->priv_data;
3016     MOVStreamContext *sc;
3017     AVIndexEntry *sample;
3018     AVStream *st = NULL;
3019     int ret;
3020     mov->fc = s;
3021  retry:
3022     sample = mov_find_next_sample(s, &st);
3023     if (!sample) {
3024         mov->found_mdat = 0;
3025         if (!mov->next_root_atom)
3026             return AVERROR_EOF;
3027         avio_seek(s->pb, mov->next_root_atom, SEEK_SET);
3028         mov->next_root_atom = 0;
3029         if (mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX }) < 0 ||
3030             url_feof(s->pb))
3031             return AVERROR_EOF;
3032         av_dlog(s, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
3033         goto retry;
3034     }
3035     sc = st->priv_data;
3036     /* must be done just before reading, to avoid infinite loop on sample */
3037     sc->current_sample++;
3038
3039     if (st->discard != AVDISCARD_ALL) {
3040         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
3041             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
3042                    sc->ffindex, sample->pos);
3043             return AVERROR_INVALIDDATA;
3044         }
3045         ret = av_get_packet(sc->pb, pkt, sample->size);
3046         if (ret < 0)
3047             return ret;
3048         if (sc->has_palette) {
3049             uint8_t *pal;
3050
3051             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
3052             if (!pal) {
3053                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
3054             } else {
3055                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
3056                 sc->has_palette = 0;
3057             }
3058         }
3059 #if CONFIG_DV_DEMUXER
3060         if (mov->dv_demux && sc->dv_audio_container) {
3061             avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
3062             av_free(pkt->data);
3063             pkt->size = 0;
3064             ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
3065             if (ret < 0)
3066                 return ret;
3067         }
3068 #endif
3069     }
3070
3071     pkt->stream_index = sc->ffindex;
3072     pkt->dts = sample->timestamp;
3073     if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
3074         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
3075         /* update ctts context */
3076         sc->ctts_sample++;
3077         if (sc->ctts_index < sc->ctts_count &&
3078             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
3079             sc->ctts_index++;
3080             sc->ctts_sample = 0;
3081         }
3082         if (sc->wrong_dts)
3083             pkt->dts = AV_NOPTS_VALUE;
3084     } else {
3085         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
3086             st->index_entries[sc->current_sample].timestamp : st->duration;
3087         pkt->duration = next_dts - pkt->dts;
3088         pkt->pts = pkt->dts;
3089     }
3090     if (st->discard == AVDISCARD_ALL)
3091         goto retry;
3092     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
3093     pkt->pos = sample->pos;
3094     av_dlog(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n",
3095             pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
3096     return 0;
3097 }
3098
3099 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
3100 {
3101     MOVStreamContext *sc = st->priv_data;
3102     int sample, time_sample;
3103     int i;
3104
3105     sample = av_index_search_timestamp(st, timestamp, flags);
3106     av_dlog(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
3107     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
3108         sample = 0;
3109     if (sample < 0) /* not sure what to do */
3110         return AVERROR_INVALIDDATA;
3111     sc->current_sample = sample;
3112     av_dlog(s, "stream %d, found sample %d\n", st->index, sc->current_sample);
3113     /* adjust ctts index */
3114     if (sc->ctts_data) {
3115         time_sample = 0;
3116         for (i = 0; i < sc->ctts_count; i++) {
3117             int next = time_sample + sc->ctts_data[i].count;
3118             if (next > sc->current_sample) {
3119                 sc->ctts_index = i;
3120                 sc->ctts_sample = sc->current_sample - time_sample;
3121                 break;
3122             }
3123             time_sample = next;
3124         }
3125     }
3126     return sample;
3127 }
3128
3129 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
3130 {
3131     AVStream *st;
3132     int64_t seek_timestamp, timestamp;
3133     int sample;
3134     int i;
3135
3136     if (stream_index >= s->nb_streams)
3137         return AVERROR_INVALIDDATA;
3138
3139     st = s->streams[stream_index];
3140     sample = mov_seek_stream(s, st, sample_time, flags);
3141     if (sample < 0)
3142         return sample;
3143
3144     /* adjust seek timestamp to found sample timestamp */
3145     seek_timestamp = st->index_entries[sample].timestamp;
3146
3147     for (i = 0; i < s->nb_streams; i++) {
3148         MOVStreamContext *sc = s->streams[i]->priv_data;
3149         st = s->streams[i];
3150         st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
3151
3152         if (stream_index == i)
3153             continue;
3154
3155         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
3156         mov_seek_stream(s, st, timestamp, flags);
3157     }
3158     return 0;
3159 }
3160
3161 static const AVOption options[] = {
3162     {"use_absolute_path",
3163         "allow using absolute path when opening alias, this is a possible security issue",
3164         offsetof(MOVContext, use_absolute_path), FF_OPT_TYPE_INT, {.dbl = 0},
3165         0, 1, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_DECODING_PARAM},
3166     {NULL}
3167 };
3168
3169 static const AVClass class = {
3170     .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
3171     .item_name  = av_default_item_name,
3172     .option     = options,
3173     .version    = LIBAVUTIL_VERSION_INT,
3174 };
3175
3176 AVInputFormat ff_mov_demuxer = {
3177     .name           = "mov,mp4,m4a,3gp,3g2,mj2",
3178     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
3179     .priv_data_size = sizeof(MOVContext),
3180     .read_probe     = mov_probe,
3181     .read_header    = mov_read_header,
3182     .read_packet    = mov_read_packet,
3183     .read_close     = mov_read_close,
3184     .read_seek      = mov_read_seek,
3185     .priv_class     = &class,
3186 };