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