]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
avformat/mov: change conjugation for "Duplicate"
[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  * first version by Francois Revol <revol@free.fr>
7  * seek function by Gael Chardon <gael.dev@4now.net>
8  *
9  * This file is part of FFmpeg.
10  *
11  * FFmpeg is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * FFmpeg is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with FFmpeg; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24  */
25
26 #include <inttypes.h>
27 #include <limits.h>
28 #include <stdint.h>
29
30 //#define MOV_EXPORT_ALL_METADATA
31
32 #include "libavutil/attributes.h"
33 #include "libavutil/channel_layout.h"
34 #include "libavutil/display.h"
35 #include "libavutil/intreadwrite.h"
36 #include "libavutil/intfloat.h"
37 #include "libavutil/mathematics.h"
38 #include "libavutil/time_internal.h"
39 #include "libavutil/avstring.h"
40 #include "libavutil/dict.h"
41 #include "libavutil/opt.h"
42 #include "libavutil/timecode.h"
43 #include "libavcodec/ac3tab.h"
44 #include "avformat.h"
45 #include "internal.h"
46 #include "avio_internal.h"
47 #include "riff.h"
48 #include "isom.h"
49 #include "libavcodec/get_bits.h"
50 #include "id3v1.h"
51 #include "mov_chan.h"
52 #include "replaygain.h"
53
54 #if CONFIG_ZLIB
55 #include <zlib.h>
56 #endif
57
58 #include "qtpalette.h"
59
60
61 #undef NDEBUG
62 #include <assert.h>
63
64 /* those functions parse an atom */
65 /* links atom IDs to parse functions */
66 typedef struct MOVParseTableEntry {
67     uint32_t type;
68     int (*parse)(MOVContext *ctx, AVIOContext *pb, MOVAtom atom);
69 } MOVParseTableEntry;
70
71 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom);
72 static int mov_read_mfra(MOVContext *c, AVIOContext *f);
73
74 static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb,
75                                              unsigned len, const char *key)
76 {
77     char buf[16];
78
79     short current, total = 0;
80     avio_rb16(pb); // unknown
81     current = avio_rb16(pb);
82     if (len >= 6)
83         total = avio_rb16(pb);
84     if (!total)
85         snprintf(buf, sizeof(buf), "%d", current);
86     else
87         snprintf(buf, sizeof(buf), "%d/%d", current, total);
88     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
89     av_dict_set(&c->fc->metadata, key, buf, 0);
90
91     return 0;
92 }
93
94 static int mov_metadata_int8_bypass_padding(MOVContext *c, AVIOContext *pb,
95                                             unsigned len, const char *key)
96 {
97     /* bypass padding bytes */
98     avio_r8(pb);
99     avio_r8(pb);
100     avio_r8(pb);
101
102     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
103     av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
104
105     return 0;
106 }
107
108 static int mov_metadata_int8_no_padding(MOVContext *c, AVIOContext *pb,
109                                         unsigned len, const char *key)
110 {
111     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
112     av_dict_set_int(&c->fc->metadata, key, avio_r8(pb), 0);
113
114     return 0;
115 }
116
117 static int mov_metadata_gnre(MOVContext *c, AVIOContext *pb,
118                              unsigned len, const char *key)
119 {
120     short genre;
121
122     avio_r8(pb); // unknown
123
124     genre = avio_r8(pb);
125     if (genre < 1 || genre > ID3v1_GENRE_MAX)
126         return 0;
127     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
128     av_dict_set(&c->fc->metadata, key, ff_id3v1_genre_str[genre-1], 0);
129
130     return 0;
131 }
132
133 static const uint32_t mac_to_unicode[128] = {
134     0x00C4,0x00C5,0x00C7,0x00C9,0x00D1,0x00D6,0x00DC,0x00E1,
135     0x00E0,0x00E2,0x00E4,0x00E3,0x00E5,0x00E7,0x00E9,0x00E8,
136     0x00EA,0x00EB,0x00ED,0x00EC,0x00EE,0x00EF,0x00F1,0x00F3,
137     0x00F2,0x00F4,0x00F6,0x00F5,0x00FA,0x00F9,0x00FB,0x00FC,
138     0x2020,0x00B0,0x00A2,0x00A3,0x00A7,0x2022,0x00B6,0x00DF,
139     0x00AE,0x00A9,0x2122,0x00B4,0x00A8,0x2260,0x00C6,0x00D8,
140     0x221E,0x00B1,0x2264,0x2265,0x00A5,0x00B5,0x2202,0x2211,
141     0x220F,0x03C0,0x222B,0x00AA,0x00BA,0x03A9,0x00E6,0x00F8,
142     0x00BF,0x00A1,0x00AC,0x221A,0x0192,0x2248,0x2206,0x00AB,
143     0x00BB,0x2026,0x00A0,0x00C0,0x00C3,0x00D5,0x0152,0x0153,
144     0x2013,0x2014,0x201C,0x201D,0x2018,0x2019,0x00F7,0x25CA,
145     0x00FF,0x0178,0x2044,0x20AC,0x2039,0x203A,0xFB01,0xFB02,
146     0x2021,0x00B7,0x201A,0x201E,0x2030,0x00C2,0x00CA,0x00C1,
147     0x00CB,0x00C8,0x00CD,0x00CE,0x00CF,0x00CC,0x00D3,0x00D4,
148     0xF8FF,0x00D2,0x00DA,0x00DB,0x00D9,0x0131,0x02C6,0x02DC,
149     0x00AF,0x02D8,0x02D9,0x02DA,0x00B8,0x02DD,0x02DB,0x02C7,
150 };
151
152 static int mov_read_mac_string(MOVContext *c, AVIOContext *pb, int len,
153                                char *dst, int dstlen)
154 {
155     char *p = dst;
156     char *end = dst+dstlen-1;
157     int i;
158
159     for (i = 0; i < len; i++) {
160         uint8_t t, c = avio_r8(pb);
161         if (c < 0x80 && p < end)
162             *p++ = c;
163         else if (p < end)
164             PUT_UTF8(mac_to_unicode[c-0x80], t, if (p < end) *p++ = t;);
165     }
166     *p = 0;
167     return p - dst;
168 }
169
170 static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
171 {
172     AVPacket pkt;
173     AVStream *st;
174     MOVStreamContext *sc;
175     enum AVCodecID id;
176     int ret;
177
178     switch (type) {
179     case 0xd:  id = AV_CODEC_ID_MJPEG; break;
180     case 0xe:  id = AV_CODEC_ID_PNG;   break;
181     case 0x1b: id = AV_CODEC_ID_BMP;   break;
182     default:
183         av_log(c->fc, AV_LOG_WARNING, "Unknown cover type: 0x%x.\n", type);
184         avio_skip(pb, len);
185         return 0;
186     }
187
188     st = avformat_new_stream(c->fc, NULL);
189     if (!st)
190         return AVERROR(ENOMEM);
191     sc = av_mallocz(sizeof(*sc));
192     if (!sc)
193         return AVERROR(ENOMEM);
194     st->priv_data = sc;
195
196     ret = av_get_packet(pb, &pkt, len);
197     if (ret < 0)
198         return ret;
199
200     st->disposition              |= AV_DISPOSITION_ATTACHED_PIC;
201
202     st->attached_pic              = pkt;
203     st->attached_pic.stream_index = st->index;
204     st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
205
206     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
207     st->codec->codec_id   = id;
208
209     return 0;
210 }
211
212 static int mov_metadata_raw(MOVContext *c, AVIOContext *pb,
213                             unsigned len, const char *key)
214 {
215     char *value = av_malloc(len + 1);
216     if (!value)
217         return AVERROR(ENOMEM);
218     avio_read(pb, value, len);
219     value[len] = 0;
220     return av_dict_set(&c->fc->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
221 }
222
223 static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
224 {
225     char language[4] = { 0 };
226     char buf[100];
227     uint16_t langcode = 0;
228     double longitude, latitude;
229     const char *key = "location";
230
231     if (len < 4 + 2 + 1 + 1 + 4 + 4 + 4)
232         return AVERROR_INVALIDDATA;
233
234     avio_skip(pb, 4); // version+flags
235     langcode = avio_rb16(pb);
236     ff_mov_lang_to_iso639(langcode, language);
237     len -= 6;
238
239     len -= avio_get_str(pb, len, buf, sizeof(buf)); // place name
240     if (len < 1)
241         return AVERROR_INVALIDDATA;
242     avio_skip(pb, 1); // role
243     len -= 1;
244
245     if (len < 14)
246         return AVERROR_INVALIDDATA;
247     longitude = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
248     latitude  = ((int32_t) avio_rb32(pb)) / (float) (1 << 16);
249
250     // Try to output in the same format as the ?xyz field
251     snprintf(buf, sizeof(buf), "%+08.4f%+09.4f/", latitude, longitude);
252     if (*language && strcmp(language, "und")) {
253         char key2[16];
254         snprintf(key2, sizeof(key2), "%s-%s", key, language);
255         av_dict_set(&c->fc->metadata, key2, buf, 0);
256     }
257     c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
258     return av_dict_set(&c->fc->metadata, key, buf, 0);
259 }
260
261 static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom)
262 {
263 #ifdef MOV_EXPORT_ALL_METADATA
264     char tmp_key[5];
265 #endif
266     char key2[16], language[4] = {0};
267     char *str = NULL;
268     const char *key = NULL;
269     uint16_t langcode = 0;
270     uint32_t data_type = 0, str_size, str_size_alloc;
271     int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL;
272
273     switch (atom.type) {
274     case MKTAG(0xa9,'n','a','m'): key = "title";     break;
275     case MKTAG(0xa9,'a','u','t'):
276     case MKTAG(0xa9,'A','R','T'): key = "artist";    break;
277     case MKTAG( 'a','A','R','T'): key = "album_artist";    break;
278     case MKTAG(0xa9,'w','r','t'): key = "composer";  break;
279     case MKTAG( 'c','p','i','l'): key = "compilation";
280         parse = mov_metadata_int8_no_padding; break;
281     case MKTAG( 'c','p','r','t'):
282     case MKTAG(0xa9,'c','p','y'): key = "copyright"; break;
283     case MKTAG(0xa9,'g','r','p'): key = "grouping"; break;
284     case MKTAG(0xa9,'l','y','r'): key = "lyrics"; break;
285     case MKTAG(0xa9,'c','m','t'):
286     case MKTAG(0xa9,'i','n','f'): key = "comment";   break;
287     case MKTAG(0xa9,'a','l','b'): key = "album";     break;
288     case MKTAG(0xa9,'d','a','y'): key = "date";      break;
289     case MKTAG(0xa9,'g','e','n'): key = "genre";     break;
290     case MKTAG( 'g','n','r','e'): key = "genre";
291         parse = mov_metadata_gnre; break;
292     case MKTAG(0xa9,'t','o','o'):
293     case MKTAG(0xa9,'s','w','r'): key = "encoder";   break;
294     case MKTAG(0xa9,'e','n','c'): key = "encoder";   break;
295     case MKTAG(0xa9,'m','a','k'): key = "make";      break;
296     case MKTAG(0xa9,'m','o','d'): key = "model";     break;
297     case MKTAG(0xa9,'x','y','z'): key = "location";  break;
298     case MKTAG( 'd','e','s','c'): key = "description";break;
299     case MKTAG( 'l','d','e','s'): key = "synopsis";  break;
300     case MKTAG( 't','v','s','h'): key = "show";      break;
301     case MKTAG( 't','v','e','n'): key = "episode_id";break;
302     case MKTAG( 't','v','n','n'): key = "network";   break;
303     case MKTAG( 't','r','k','n'): key = "track";
304         parse = mov_metadata_track_or_disc_number; break;
305     case MKTAG( 'd','i','s','k'): key = "disc";
306         parse = mov_metadata_track_or_disc_number; break;
307     case MKTAG( 't','v','e','s'): key = "episode_sort";
308         parse = mov_metadata_int8_bypass_padding; break;
309     case MKTAG( 't','v','s','n'): key = "season_number";
310         parse = mov_metadata_int8_bypass_padding; break;
311     case MKTAG( 's','t','i','k'): key = "media_type";
312         parse = mov_metadata_int8_no_padding; break;
313     case MKTAG( 'h','d','v','d'): key = "hd_video";
314         parse = mov_metadata_int8_no_padding; break;
315     case MKTAG( 'p','g','a','p'): key = "gapless_playback";
316         parse = mov_metadata_int8_no_padding; break;
317     case MKTAG( '@','P','R','M'):
318         return mov_metadata_raw(c, pb, atom.size, "premiere_version");
319     case MKTAG( '@','P','R','Q'):
320         return mov_metadata_raw(c, pb, atom.size, "quicktime_version");
321     case MKTAG( 'l','o','c','i'):
322         return mov_metadata_loci(c, pb, atom.size);
323     case MKTAG( 'X','M','P','_'):
324         return mov_metadata_raw(c, pb, atom.size, "xmp");
325     }
326
327     if (c->itunes_metadata && atom.size > 8) {
328         int data_size = avio_rb32(pb);
329         int tag = avio_rl32(pb);
330         if (tag == MKTAG('d','a','t','a')) {
331             data_type = avio_rb32(pb); // type
332             avio_rb32(pb); // unknown
333             str_size = data_size - 16;
334             atom.size -= 16;
335
336             if (atom.type == MKTAG('c', 'o', 'v', 'r')) {
337                 int ret = mov_read_covr(c, pb, data_type, str_size);
338                 if (ret < 0) {
339                     av_log(c->fc, AV_LOG_ERROR, "Error parsing cover art.\n");
340                 }
341                 return ret;
342             }
343         } else return 0;
344     } else if (atom.size > 4 && key && !c->itunes_metadata) {
345         str_size = avio_rb16(pb); // string length
346         langcode = avio_rb16(pb);
347         ff_mov_lang_to_iso639(langcode, language);
348         atom.size -= 4;
349     } else
350         str_size = atom.size;
351
352 #ifdef MOV_EXPORT_ALL_METADATA
353     if (!key) {
354         snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
355         key = tmp_key;
356     }
357 #endif
358
359     if (!key)
360         return 0;
361     if (atom.size < 0)
362         return AVERROR_INVALIDDATA;
363
364     str_size_alloc = str_size << 1; // worst-case requirement for output string in case of utf8 coded input
365     str = av_malloc(str_size_alloc);
366     if (!str)
367         return AVERROR(ENOMEM);
368
369     if (parse)
370         parse(c, pb, str_size, key);
371     else {
372         if (data_type == 3 || (data_type == 0 && (langcode < 0x400 || langcode == 0x7fff))) { // MAC Encoded
373             mov_read_mac_string(c, pb, str_size, str, str_size_alloc);
374         } else {
375             int ret = avio_read(pb, str, str_size);
376             if (ret != str_size) {
377                 av_freep(&str);
378                 return ret < 0 ? ret : AVERROR_INVALIDDATA;
379             }
380             str[str_size] = 0;
381         }
382         c->fc->event_flags |= AVFMT_EVENT_FLAG_METADATA_UPDATED;
383         av_dict_set(&c->fc->metadata, key, str, 0);
384         if (*language && strcmp(language, "und")) {
385             snprintf(key2, sizeof(key2), "%s-%s", key, language);
386             av_dict_set(&c->fc->metadata, key2, str, 0);
387         }
388     }
389     av_dlog(c->fc, "lang \"%3s\" ", language);
390     av_dlog(c->fc, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64"\n",
391             key, str, (char*)&atom.type, str_size_alloc, atom.size);
392
393     av_freep(&str);
394
395     return 0;
396 }
397
398 static int mov_read_chpl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
399 {
400     int64_t start;
401     int i, nb_chapters, str_len, version;
402     char str[256+1];
403
404     if ((atom.size -= 5) < 0)
405         return 0;
406
407     version = avio_r8(pb);
408     avio_rb24(pb);
409     if (version)
410         avio_rb32(pb); // ???
411     nb_chapters = avio_r8(pb);
412
413     for (i = 0; i < nb_chapters; i++) {
414         if (atom.size < 9)
415             return 0;
416
417         start = avio_rb64(pb);
418         str_len = avio_r8(pb);
419
420         if ((atom.size -= 9+str_len) < 0)
421             return 0;
422
423         avio_read(pb, str, str_len);
424         str[str_len] = 0;
425         avpriv_new_chapter(c->fc, i, (AVRational){1,10000000}, start, AV_NOPTS_VALUE, str);
426     }
427     return 0;
428 }
429
430 #define MIN_DATA_ENTRY_BOX_SIZE 12
431 static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom)
432 {
433     AVStream *st;
434     MOVStreamContext *sc;
435     int entries, i, j;
436
437     if (c->fc->nb_streams < 1)
438         return 0;
439     st = c->fc->streams[c->fc->nb_streams-1];
440     sc = st->priv_data;
441
442     avio_rb32(pb); // version + flags
443     entries = avio_rb32(pb);
444     if (entries >  (atom.size - 1) / MIN_DATA_ENTRY_BOX_SIZE + 1 ||
445         entries >= UINT_MAX / sizeof(*sc->drefs))
446         return AVERROR_INVALIDDATA;
447     av_free(sc->drefs);
448     sc->drefs_count = 0;
449     sc->drefs = av_mallocz(entries * sizeof(*sc->drefs));
450     if (!sc->drefs)
451         return AVERROR(ENOMEM);
452     sc->drefs_count = entries;
453
454     for (i = 0; i < sc->drefs_count; i++) {
455         MOVDref *dref = &sc->drefs[i];
456         uint32_t size = avio_rb32(pb);
457         int64_t next = avio_tell(pb) + size - 4;
458
459         if (size < 12)
460             return AVERROR_INVALIDDATA;
461
462         dref->type = avio_rl32(pb);
463         avio_rb32(pb); // version + flags
464         av_dlog(c->fc, "type %.4s size %d\n", (char*)&dref->type, size);
465
466         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
467             /* macintosh alias record */
468             uint16_t volume_len, len;
469             int16_t type;
470
471             avio_skip(pb, 10);
472
473             volume_len = avio_r8(pb);
474             volume_len = FFMIN(volume_len, 27);
475             avio_read(pb, dref->volume, 27);
476             dref->volume[volume_len] = 0;
477             av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len);
478
479             avio_skip(pb, 12);
480
481             len = avio_r8(pb);
482             len = FFMIN(len, 63);
483             avio_read(pb, dref->filename, 63);
484             dref->filename[len] = 0;
485             av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len);
486
487             avio_skip(pb, 16);
488
489             /* read next level up_from_alias/down_to_target */
490             dref->nlvl_from = avio_rb16(pb);
491             dref->nlvl_to   = avio_rb16(pb);
492             av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n",
493                    dref->nlvl_from, dref->nlvl_to);
494
495             avio_skip(pb, 16);
496
497             for (type = 0; type != -1 && avio_tell(pb) < next; ) {
498                 if(avio_feof(pb))
499                     return AVERROR_EOF;
500                 type = avio_rb16(pb);
501                 len = avio_rb16(pb);
502                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
503                 if (len&1)
504                     len += 1;
505                 if (type == 2) { // absolute path
506                     av_free(dref->path);
507                     dref->path = av_mallocz(len+1);
508                     if (!dref->path)
509                         return AVERROR(ENOMEM);
510                     avio_read(pb, dref->path, len);
511                     if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) {
512                         len -= volume_len;
513                         memmove(dref->path, dref->path+volume_len, len);
514                         dref->path[len] = 0;
515                     }
516                     for (j = 0; j < len; j++)
517                         if (dref->path[j] == ':')
518                             dref->path[j] = '/';
519                     av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path);
520                 } else if (type == 0) { // directory name
521                     av_free(dref->dir);
522                     dref->dir = av_malloc(len+1);
523                     if (!dref->dir)
524                         return AVERROR(ENOMEM);
525                     if (avio_read(pb, dref->dir, len) != len)
526                         return AVERROR_INVALIDDATA;
527                     dref->dir[len] = 0;
528                     for (j = 0; j < len; j++)
529                         if (dref->dir[j] == ':')
530                             dref->dir[j] = '/';
531                     av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir);
532                 } else
533                     avio_skip(pb, len);
534             }
535         }
536         avio_seek(pb, next, SEEK_SET);
537     }
538     return 0;
539 }
540
541 static int mov_read_hdlr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
542 {
543     AVStream *st;
544     uint32_t type;
545     uint32_t av_unused ctype;
546     int title_size;
547     char *title_str;
548
549     if (c->fc->nb_streams < 1) // meta before first trak
550         return 0;
551
552     st = c->fc->streams[c->fc->nb_streams-1];
553
554     avio_r8(pb); /* version */
555     avio_rb24(pb); /* flags */
556
557     /* component type */
558     ctype = avio_rl32(pb);
559     type = avio_rl32(pb); /* component subtype */
560
561     av_dlog(c->fc, "ctype= %.4s (0x%08x)\n", (char*)&ctype, ctype);
562     av_dlog(c->fc, "stype= %.4s\n", (char*)&type);
563
564     if     (type == MKTAG('v','i','d','e'))
565         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
566     else if (type == MKTAG('s','o','u','n'))
567         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
568     else if (type == MKTAG('m','1','a',' '))
569         st->codec->codec_id = AV_CODEC_ID_MP2;
570     else if ((type == MKTAG('s','u','b','p')) || (type == MKTAG('c','l','c','p')))
571         st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
572
573     avio_rb32(pb); /* component  manufacture */
574     avio_rb32(pb); /* component flags */
575     avio_rb32(pb); /* component flags mask */
576
577     title_size = atom.size - 24;
578     if (title_size > 0) {
579         title_str = av_malloc(title_size + 1); /* Add null terminator */
580         if (!title_str)
581             return AVERROR(ENOMEM);
582         avio_read(pb, title_str, title_size);
583         title_str[title_size] = 0;
584         if (title_str[0])
585             av_dict_set(&st->metadata, "handler_name", title_str +
586                         (!c->isom && title_str[0] == title_size - 1), 0);
587         av_freep(&title_str);
588     }
589
590     return 0;
591 }
592
593 int ff_mov_read_esds(AVFormatContext *fc, AVIOContext *pb)
594 {
595     AVStream *st;
596     int tag;
597
598     if (fc->nb_streams < 1)
599         return 0;
600     st = fc->streams[fc->nb_streams-1];
601
602     avio_rb32(pb); /* version + flags */
603     ff_mp4_read_descr(fc, pb, &tag);
604     if (tag == MP4ESDescrTag) {
605         ff_mp4_parse_es_descr(pb, NULL);
606     } else
607         avio_rb16(pb); /* ID */
608
609     ff_mp4_read_descr(fc, pb, &tag);
610     if (tag == MP4DecConfigDescrTag)
611         ff_mp4_read_dec_config_descr(fc, st, pb);
612     return 0;
613 }
614
615 static int mov_read_esds(MOVContext *c, AVIOContext *pb, MOVAtom atom)
616 {
617     return ff_mov_read_esds(c->fc, pb);
618 }
619
620 static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
621 {
622     AVStream *st;
623     int ac3info, acmod, lfeon, bsmod;
624
625     if (c->fc->nb_streams < 1)
626         return 0;
627     st = c->fc->streams[c->fc->nb_streams-1];
628
629     ac3info = avio_rb24(pb);
630     bsmod = (ac3info >> 14) & 0x7;
631     acmod = (ac3info >> 11) & 0x7;
632     lfeon = (ac3info >> 10) & 0x1;
633     st->codec->channels = ((int[]){2,1,2,3,3,4,4,5})[acmod] + lfeon;
634     st->codec->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
635     if (lfeon)
636         st->codec->channel_layout |= AV_CH_LOW_FREQUENCY;
637     st->codec->audio_service_type = bsmod;
638     if (st->codec->channels > 1 && bsmod == 0x7)
639         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
640
641     return 0;
642 }
643
644 static int mov_read_dec3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
645 {
646     AVStream *st;
647     int eac3info, acmod, lfeon, bsmod;
648
649     if (c->fc->nb_streams < 1)
650         return 0;
651     st = c->fc->streams[c->fc->nb_streams-1];
652
653     /* No need to parse fields for additional independent substreams and its
654      * associated dependent substreams since libavcodec's E-AC-3 decoder
655      * does not support them yet. */
656     avio_rb16(pb); /* data_rate and num_ind_sub */
657     eac3info = avio_rb24(pb);
658     bsmod = (eac3info >> 12) & 0x1f;
659     acmod = (eac3info >>  9) & 0x7;
660     lfeon = (eac3info >>  8) & 0x1;
661     st->codec->channel_layout = avpriv_ac3_channel_layout_tab[acmod];
662     if (lfeon)
663         st->codec->channel_layout |= AV_CH_LOW_FREQUENCY;
664     st->codec->channels = av_get_channel_layout_nb_channels(st->codec->channel_layout);
665     st->codec->audio_service_type = bsmod;
666     if (st->codec->channels > 1 && bsmod == 0x7)
667         st->codec->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
668
669     return 0;
670 }
671
672 static int mov_read_chan(MOVContext *c, AVIOContext *pb, MOVAtom atom)
673 {
674     AVStream *st;
675
676     if (c->fc->nb_streams < 1)
677         return 0;
678     st = c->fc->streams[c->fc->nb_streams-1];
679
680     if (atom.size < 16)
681         return 0;
682
683     /* skip version and flags */
684     avio_skip(pb, 4);
685
686     ff_mov_read_chan(c->fc, pb, st, atom.size - 4);
687
688     return 0;
689 }
690
691 static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
692 {
693     AVStream *st;
694     int ret;
695
696     if (c->fc->nb_streams < 1)
697         return 0;
698     st = c->fc->streams[c->fc->nb_streams-1];
699
700     if ((ret = ff_get_wav_header(pb, st->codec, atom.size)) < 0)
701         av_log(c->fc, AV_LOG_WARNING, "get_wav_header failed\n");
702
703     return ret;
704 }
705
706 static int mov_read_pasp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
707 {
708     const int num = avio_rb32(pb);
709     const int den = avio_rb32(pb);
710     AVStream *st;
711
712     if (c->fc->nb_streams < 1)
713         return 0;
714     st = c->fc->streams[c->fc->nb_streams-1];
715
716     if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default
717         (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) {
718         av_log(c->fc, AV_LOG_WARNING,
719                "sample aspect ratio already set to %d:%d, ignoring 'pasp' atom (%d:%d)\n",
720                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
721                num, den);
722     } else if (den != 0) {
723         st->sample_aspect_ratio.num = num;
724         st->sample_aspect_ratio.den = den;
725     }
726     return 0;
727 }
728
729 /* this atom contains actual media data */
730 static int mov_read_mdat(MOVContext *c, AVIOContext *pb, MOVAtom atom)
731 {
732     if (atom.size == 0) /* wrong one (MP4) */
733         return 0;
734     c->found_mdat=1;
735     return 0; /* now go for moov */
736 }
737
738 /* read major brand, minor version and compatible brands and store them as metadata */
739 static int mov_read_ftyp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
740 {
741     uint32_t minor_ver;
742     int comp_brand_size;
743     char* comp_brands_str;
744     uint8_t type[5] = {0};
745
746     avio_read(pb, type, 4);
747     if (strcmp(type, "qt  "))
748         c->isom = 1;
749     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
750     av_dict_set(&c->fc->metadata, "major_brand", type, 0);
751     minor_ver = avio_rb32(pb); /* minor version */
752     av_dict_set_int(&c->fc->metadata, "minor_version", minor_ver, 0);
753
754     comp_brand_size = atom.size - 8;
755     if (comp_brand_size < 0)
756         return AVERROR_INVALIDDATA;
757     comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */
758     if (!comp_brands_str)
759         return AVERROR(ENOMEM);
760     avio_read(pb, comp_brands_str, comp_brand_size);
761     comp_brands_str[comp_brand_size] = 0;
762     av_dict_set(&c->fc->metadata, "compatible_brands", comp_brands_str, 0);
763     av_freep(&comp_brands_str);
764
765     return 0;
766 }
767
768 /* this atom should contain all header atoms */
769 static int mov_read_moov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
770 {
771     int ret;
772
773     if (c->found_moov) {
774         av_log(c->fc, AV_LOG_WARNING, "Found duplicated MOOV Atom. Skipped it\n");
775         avio_skip(pb, atom.size);
776         return 0;
777     }
778
779     if ((ret = mov_read_default(c, pb, atom)) < 0)
780         return ret;
781     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
782     /* so we don't parse the whole file if over a network */
783     c->found_moov=1;
784     return 0; /* now go for mdat */
785 }
786
787 static int mov_read_moof(MOVContext *c, AVIOContext *pb, MOVAtom atom)
788 {
789     if (!c->has_looked_for_mfra && c->use_mfra_for > 0) {
790         c->has_looked_for_mfra = 1;
791         if (pb->seekable) {
792             int ret;
793             av_log(c->fc, AV_LOG_VERBOSE, "stream has moof boxes, will look "
794                     "for a mfra\n");
795             if ((ret = mov_read_mfra(c, pb)) < 0) {
796                 av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but failed to "
797                         "read the mfra (may be a live ismv)\n");
798             }
799         } else {
800             av_log(c->fc, AV_LOG_VERBOSE, "found a moof box but stream is not "
801                     "seekable, can not look for mfra\n");
802         }
803     }
804     c->fragment.moof_offset = c->fragment.implicit_offset = avio_tell(pb) - 8;
805     av_dlog(c->fc, "moof offset %"PRIx64"\n", c->fragment.moof_offset);
806     return mov_read_default(c, pb, atom);
807 }
808
809 static void mov_metadata_creation_time(AVDictionary **metadata, int64_t time)
810 {
811     char buffer[32];
812     if (time) {
813         struct tm *ptm, tmbuf;
814         time_t timet;
815         if(time >= 2082844800)
816             time -= 2082844800;  /* seconds between 1904-01-01 and Epoch */
817         timet = time;
818         ptm = gmtime_r(&timet, &tmbuf);
819         if (!ptm) return;
820         if (strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", ptm))
821             av_dict_set(metadata, "creation_time", buffer, 0);
822     }
823 }
824
825 static int mov_read_mdhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
826 {
827     AVStream *st;
828     MOVStreamContext *sc;
829     int version;
830     char language[4] = {0};
831     unsigned lang;
832     int64_t creation_time;
833
834     if (c->fc->nb_streams < 1)
835         return 0;
836     st = c->fc->streams[c->fc->nb_streams-1];
837     sc = st->priv_data;
838
839     if (sc->time_scale) {
840         av_log(c->fc, AV_LOG_ERROR, "Multiple mdhd?\n");
841         return AVERROR_INVALIDDATA;
842     }
843
844     version = avio_r8(pb);
845     if (version > 1) {
846         avpriv_request_sample(c->fc, "Version %d", version);
847         return AVERROR_PATCHWELCOME;
848     }
849     avio_rb24(pb); /* flags */
850     if (version == 1) {
851         creation_time = avio_rb64(pb);
852         avio_rb64(pb);
853     } else {
854         creation_time = avio_rb32(pb);
855         avio_rb32(pb); /* modification time */
856     }
857     mov_metadata_creation_time(&st->metadata, creation_time);
858
859     sc->time_scale = avio_rb32(pb);
860     st->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
861
862     lang = avio_rb16(pb); /* language */
863     if (ff_mov_lang_to_iso639(lang, language))
864         av_dict_set(&st->metadata, "language", language, 0);
865     avio_rb16(pb); /* quality */
866
867     return 0;
868 }
869
870 static int mov_read_mvhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
871 {
872     int64_t creation_time;
873     int version = avio_r8(pb); /* version */
874     avio_rb24(pb); /* flags */
875
876     if (version == 1) {
877         creation_time = avio_rb64(pb);
878         avio_rb64(pb);
879     } else {
880         creation_time = avio_rb32(pb);
881         avio_rb32(pb); /* modification time */
882     }
883     mov_metadata_creation_time(&c->fc->metadata, creation_time);
884     c->time_scale = avio_rb32(pb); /* time scale */
885
886     av_dlog(c->fc, "time scale = %i\n", c->time_scale);
887
888     c->duration = (version == 1) ? avio_rb64(pb) : avio_rb32(pb); /* duration */
889     // set the AVCodecContext duration because the duration of individual tracks
890     // may be inaccurate
891     if (c->time_scale > 0 && !c->trex_data)
892         c->fc->duration = av_rescale(c->duration, AV_TIME_BASE, c->time_scale);
893     avio_rb32(pb); /* preferred scale */
894
895     avio_rb16(pb); /* preferred volume */
896
897     avio_skip(pb, 10); /* reserved */
898
899     avio_skip(pb, 36); /* display matrix */
900
901     avio_rb32(pb); /* preview time */
902     avio_rb32(pb); /* preview duration */
903     avio_rb32(pb); /* poster time */
904     avio_rb32(pb); /* selection time */
905     avio_rb32(pb); /* selection duration */
906     avio_rb32(pb); /* current time */
907     avio_rb32(pb); /* next track ID */
908     return 0;
909 }
910
911 static int mov_read_enda(MOVContext *c, AVIOContext *pb, MOVAtom atom)
912 {
913     AVStream *st;
914     int little_endian;
915
916     if (c->fc->nb_streams < 1)
917         return 0;
918     st = c->fc->streams[c->fc->nb_streams-1];
919
920     little_endian = avio_rb16(pb) & 0xFF;
921     av_dlog(c->fc, "enda %d\n", little_endian);
922     if (little_endian == 1) {
923         switch (st->codec->codec_id) {
924         case AV_CODEC_ID_PCM_S24BE:
925             st->codec->codec_id = AV_CODEC_ID_PCM_S24LE;
926             break;
927         case AV_CODEC_ID_PCM_S32BE:
928             st->codec->codec_id = AV_CODEC_ID_PCM_S32LE;
929             break;
930         case AV_CODEC_ID_PCM_F32BE:
931             st->codec->codec_id = AV_CODEC_ID_PCM_F32LE;
932             break;
933         case AV_CODEC_ID_PCM_F64BE:
934             st->codec->codec_id = AV_CODEC_ID_PCM_F64LE;
935             break;
936         default:
937             break;
938         }
939     }
940     return 0;
941 }
942
943 static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
944 {
945     AVStream *st;
946     char color_parameter_type[5] = { 0 };
947     int color_primaries, color_trc, color_matrix;
948
949     if (c->fc->nb_streams < 1)
950         return 0;
951     st = c->fc->streams[c->fc->nb_streams - 1];
952
953     avio_read(pb, color_parameter_type, 4);
954     if (strncmp(color_parameter_type, "nclx", 4) &&
955         strncmp(color_parameter_type, "nclc", 4)) {
956         av_log(c->fc, AV_LOG_WARNING, "unsupported color_parameter_type %s\n",
957                color_parameter_type);
958         return 0;
959     }
960
961     color_primaries = avio_rb16(pb);
962     color_trc = avio_rb16(pb);
963     color_matrix = avio_rb16(pb);
964
965     av_dlog(c->fc, "%s: pri %d trc %d matrix %d",
966             color_parameter_type, color_primaries, color_trc, color_matrix);
967
968     if (c->isom) {
969         uint8_t color_range = avio_r8(pb) >> 7;
970         av_dlog(c->fc, " full %"PRIu8"", color_range);
971         if (color_range)
972             st->codec->color_range = AVCOL_RANGE_JPEG;
973         else
974             st->codec->color_range = AVCOL_RANGE_MPEG;
975         /* 14496-12 references JPEG XR specs (rather than the more complete
976          * 23001-8) so some adjusting is required */
977         if (color_primaries >= AVCOL_PRI_FILM)
978             color_primaries = AVCOL_PRI_UNSPECIFIED;
979         if ((color_trc >= AVCOL_TRC_LINEAR &&
980              color_trc <= AVCOL_TRC_LOG_SQRT) ||
981             color_trc >= AVCOL_TRC_BT2020_10)
982             color_trc = AVCOL_TRC_UNSPECIFIED;
983         if (color_matrix >= AVCOL_SPC_BT2020_NCL)
984             color_matrix = AVCOL_SPC_UNSPECIFIED;
985         st->codec->color_primaries = color_primaries;
986         st->codec->color_trc = color_trc;
987         st->codec->colorspace = color_matrix;
988     } else {
989         /* color primaries, Table 4-4 */
990         switch (color_primaries) {
991         case 1: st->codec->color_primaries = AVCOL_PRI_BT709; break;
992         case 5: st->codec->color_primaries = AVCOL_PRI_SMPTE170M; break;
993         case 6: st->codec->color_primaries = AVCOL_PRI_SMPTE240M; break;
994         }
995         /* color transfer, Table 4-5 */
996         switch (color_trc) {
997         case 1: st->codec->color_trc = AVCOL_TRC_BT709; break;
998         case 7: st->codec->color_trc = AVCOL_TRC_SMPTE240M; break;
999         }
1000         /* color matrix, Table 4-6 */
1001         switch (color_matrix) {
1002         case 1: st->codec->colorspace = AVCOL_SPC_BT709; break;
1003         case 6: st->codec->colorspace = AVCOL_SPC_BT470BG; break;
1004         case 7: st->codec->colorspace = AVCOL_SPC_SMPTE240M; break;
1005         }
1006     }
1007     av_dlog(c->fc, "\n");
1008
1009     return 0;
1010 }
1011
1012 static int mov_read_fiel(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1013 {
1014     AVStream *st;
1015     unsigned mov_field_order;
1016     enum AVFieldOrder decoded_field_order = AV_FIELD_UNKNOWN;
1017
1018     if (c->fc->nb_streams < 1) // will happen with jp2 files
1019         return 0;
1020     st = c->fc->streams[c->fc->nb_streams-1];
1021     if (atom.size < 2)
1022         return AVERROR_INVALIDDATA;
1023     mov_field_order = avio_rb16(pb);
1024     if ((mov_field_order & 0xFF00) == 0x0100)
1025         decoded_field_order = AV_FIELD_PROGRESSIVE;
1026     else if ((mov_field_order & 0xFF00) == 0x0200) {
1027         switch (mov_field_order & 0xFF) {
1028         case 0x01: decoded_field_order = AV_FIELD_TT;
1029                    break;
1030         case 0x06: decoded_field_order = AV_FIELD_BB;
1031                    break;
1032         case 0x09: decoded_field_order = AV_FIELD_TB;
1033                    break;
1034         case 0x0E: decoded_field_order = AV_FIELD_BT;
1035                    break;
1036         }
1037     }
1038     if (decoded_field_order == AV_FIELD_UNKNOWN && mov_field_order) {
1039         av_log(NULL, AV_LOG_ERROR, "Unknown MOV field order 0x%04x\n", mov_field_order);
1040     }
1041     st->codec->field_order = decoded_field_order;
1042
1043     return 0;
1044 }
1045
1046 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
1047 static int mov_read_extradata(MOVContext *c, AVIOContext *pb, MOVAtom atom,
1048                               enum AVCodecID codec_id)
1049 {
1050     AVStream *st;
1051     uint64_t size;
1052     uint8_t *buf;
1053     int err;
1054
1055     if (c->fc->nb_streams < 1) // will happen with jp2 files
1056         return 0;
1057     st= c->fc->streams[c->fc->nb_streams-1];
1058
1059     if (st->codec->codec_id != codec_id)
1060         return 0; /* unexpected codec_id - don't mess with extradata */
1061
1062     size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE;
1063     if (size > INT_MAX || (uint64_t)atom.size > INT_MAX)
1064         return AVERROR_INVALIDDATA;
1065     if ((err = av_reallocp(&st->codec->extradata, size)) < 0) {
1066         st->codec->extradata_size = 0;
1067         return err;
1068     }
1069     buf = st->codec->extradata + st->codec->extradata_size;
1070     st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE;
1071     AV_WB32(       buf    , atom.size + 8);
1072     AV_WL32(       buf + 4, atom.type);
1073     err = avio_read(pb, buf + 8, atom.size);
1074     if (err < 0) {
1075         return err;
1076     } else if (err < atom.size) {
1077         av_log(c->fc, AV_LOG_WARNING, "truncated extradata\n");
1078         st->codec->extradata_size -= atom.size - err;
1079     }
1080     memset(buf + 8 + err, 0, FF_INPUT_BUFFER_PADDING_SIZE);
1081     return 0;
1082 }
1083
1084 /* wrapper functions for reading ALAC/AVS/MJPEG/MJPEG2000 extradata atoms only for those codecs */
1085 static int mov_read_alac(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1086 {
1087     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_ALAC);
1088 }
1089
1090 static int mov_read_avss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1091 {
1092     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVS);
1093 }
1094
1095 static int mov_read_jp2h(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1096 {
1097     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_JPEG2000);
1098 }
1099
1100 static int mov_read_avid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1101 {
1102     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_AVUI);
1103     if(ret == 0)
1104         ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_DNXHD);
1105     return ret;
1106 }
1107
1108 static int mov_read_targa_y216(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1109 {
1110     int ret = mov_read_extradata(c, pb, atom, AV_CODEC_ID_TARGA_Y216);
1111
1112     if (!ret && c->fc->nb_streams >= 1) {
1113         AVCodecContext *avctx = c->fc->streams[c->fc->nb_streams-1]->codec;
1114         if (avctx->extradata_size >= 40) {
1115             avctx->height = AV_RB16(&avctx->extradata[36]);
1116             avctx->width  = AV_RB16(&avctx->extradata[38]);
1117         }
1118     }
1119     return ret;
1120 }
1121
1122 static int mov_read_ares(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1123 {
1124     if (c->fc->nb_streams >= 1) {
1125         AVCodecContext *codec = c->fc->streams[c->fc->nb_streams-1]->codec;
1126         if (codec->codec_tag == MKTAG('A', 'V', 'i', 'n') &&
1127             codec->codec_id == AV_CODEC_ID_H264 &&
1128             atom.size > 11) {
1129             avio_skip(pb, 10);
1130             /* For AVID AVCI50, force width of 1440 to be able to select the correct SPS and PPS */
1131             if (avio_rb16(pb) == 0xd4d)
1132                 codec->width = 1440;
1133             return 0;
1134         }
1135     }
1136
1137     return mov_read_avid(c, pb, atom);
1138 }
1139
1140 static int mov_read_svq3(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1141 {
1142     return mov_read_extradata(c, pb, atom, AV_CODEC_ID_SVQ3);
1143 }
1144
1145 static int mov_read_wave(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1146 {
1147     AVStream *st;
1148
1149     if (c->fc->nb_streams < 1)
1150         return 0;
1151     st = c->fc->streams[c->fc->nb_streams-1];
1152
1153     if ((uint64_t)atom.size > (1<<30))
1154         return AVERROR_INVALIDDATA;
1155
1156     if (st->codec->codec_id == AV_CODEC_ID_QDM2 ||
1157         st->codec->codec_id == AV_CODEC_ID_QDMC ||
1158         st->codec->codec_id == AV_CODEC_ID_SPEEX) {
1159         // pass all frma atom to codec, needed at least for QDMC and QDM2
1160         av_free(st->codec->extradata);
1161         if (ff_get_extradata(st->codec, pb, atom.size) < 0)
1162             return AVERROR(ENOMEM);
1163     } else if (atom.size > 8) { /* to read frma, esds atoms */
1164         int ret;
1165         if ((ret = mov_read_default(c, pb, atom)) < 0)
1166             return ret;
1167     } else
1168         avio_skip(pb, atom.size);
1169     return 0;
1170 }
1171
1172 /**
1173  * This function reads atom content and puts data in extradata without tag
1174  * nor size unlike mov_read_extradata.
1175  */
1176 static int mov_read_glbl(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1177 {
1178     AVStream *st;
1179
1180     if (c->fc->nb_streams < 1)
1181         return 0;
1182     st = c->fc->streams[c->fc->nb_streams-1];
1183
1184     if ((uint64_t)atom.size > (1<<30))
1185         return AVERROR_INVALIDDATA;
1186
1187     if (atom.size >= 10) {
1188         // Broken files created by legacy versions of libavformat will
1189         // wrap a whole fiel atom inside of a glbl atom.
1190         unsigned size = avio_rb32(pb);
1191         unsigned type = avio_rl32(pb);
1192         avio_seek(pb, -8, SEEK_CUR);
1193         if (type == MKTAG('f','i','e','l') && size == atom.size)
1194             return mov_read_default(c, pb, atom);
1195     }
1196     if (st->codec->extradata_size > 1 && st->codec->extradata) {
1197         av_log(c, AV_LOG_WARNING, "ignoring multiple glbl\n");
1198         return 0;
1199     }
1200     av_free(st->codec->extradata);
1201     if (ff_get_extradata(st->codec, pb, atom.size) < 0)
1202         return AVERROR(ENOMEM);
1203
1204     return 0;
1205 }
1206
1207 static int mov_read_dvc1(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1208 {
1209     AVStream *st;
1210     uint8_t profile_level;
1211     int ret;
1212
1213     if (c->fc->nb_streams < 1)
1214         return 0;
1215     st = c->fc->streams[c->fc->nb_streams-1];
1216
1217     if (atom.size >= (1<<28) || atom.size < 7)
1218         return AVERROR_INVALIDDATA;
1219
1220     profile_level = avio_r8(pb);
1221     if ((profile_level & 0xf0) != 0xc0)
1222         return 0;
1223
1224     avio_seek(pb, 6, SEEK_CUR);
1225     av_free(st->codec->extradata);
1226     if ((ret = ff_get_extradata(st->codec, pb, atom.size - 7)) < 0)
1227         return ret;
1228
1229     return 0;
1230 }
1231
1232 /**
1233  * An strf atom is a BITMAPINFOHEADER struct. This struct is 40 bytes itself,
1234  * but can have extradata appended at the end after the 40 bytes belonging
1235  * to the struct.
1236  */
1237 static int mov_read_strf(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1238 {
1239     AVStream *st;
1240
1241     if (c->fc->nb_streams < 1)
1242         return 0;
1243     if (atom.size <= 40)
1244         return 0;
1245     st = c->fc->streams[c->fc->nb_streams-1];
1246
1247     if ((uint64_t)atom.size > (1<<30))
1248         return AVERROR_INVALIDDATA;
1249
1250     avio_skip(pb, 40);
1251     av_free(st->codec->extradata);
1252     if (ff_get_extradata(st->codec, pb, atom.size - 40) < 0)
1253         return AVERROR(ENOMEM);
1254     return 0;
1255 }
1256
1257 static int mov_read_stco(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1258 {
1259     AVStream *st;
1260     MOVStreamContext *sc;
1261     unsigned int i, entries;
1262
1263     if (c->fc->nb_streams < 1)
1264         return 0;
1265     st = c->fc->streams[c->fc->nb_streams-1];
1266     sc = st->priv_data;
1267
1268     avio_r8(pb); /* version */
1269     avio_rb24(pb); /* flags */
1270
1271     entries = avio_rb32(pb);
1272
1273     if (!entries)
1274         return 0;
1275
1276     if (sc->chunk_offsets)
1277         av_log(c->fc, AV_LOG_WARNING, "Duplicated STCO atom\n");
1278     av_free(sc->chunk_offsets);
1279     sc->chunk_count = 0;
1280     sc->chunk_offsets = av_malloc_array(entries, sizeof(*sc->chunk_offsets));
1281     if (!sc->chunk_offsets)
1282         return AVERROR(ENOMEM);
1283     sc->chunk_count = entries;
1284
1285     if      (atom.type == MKTAG('s','t','c','o'))
1286         for (i = 0; i < entries && !pb->eof_reached; i++)
1287             sc->chunk_offsets[i] = avio_rb32(pb);
1288     else if (atom.type == MKTAG('c','o','6','4'))
1289         for (i = 0; i < entries && !pb->eof_reached; i++)
1290             sc->chunk_offsets[i] = avio_rb64(pb);
1291     else
1292         return AVERROR_INVALIDDATA;
1293
1294     sc->chunk_count = i;
1295
1296     if (pb->eof_reached)
1297         return AVERROR_EOF;
1298
1299     return 0;
1300 }
1301
1302 /**
1303  * Compute codec id for 'lpcm' tag.
1304  * See CoreAudioTypes and AudioStreamBasicDescription at Apple.
1305  */
1306 enum AVCodecID ff_mov_get_lpcm_codec_id(int bps, int flags)
1307 {
1308     /* lpcm flags:
1309      * 0x1 = float
1310      * 0x2 = big-endian
1311      * 0x4 = signed
1312      */
1313     return ff_get_pcm_codec_id(bps, flags & 1, flags & 2, flags & 4 ? -1 : 0);
1314 }
1315
1316 static int mov_codec_id(AVStream *st, uint32_t format)
1317 {
1318     int id = ff_codec_get_id(ff_codec_movaudio_tags, format);
1319
1320     if (id <= 0 &&
1321         ((format & 0xFFFF) == 'm' + ('s' << 8) ||
1322          (format & 0xFFFF) == 'T' + ('S' << 8)))
1323         id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format) & 0xFFFF);
1324
1325     if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
1326         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1327     } else if (st->codec->codec_type != AVMEDIA_TYPE_AUDIO &&
1328                /* skip old asf mpeg4 tag */
1329                format && format != MKTAG('m','p','4','s')) {
1330         id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1331         if (id <= 0)
1332             id = ff_codec_get_id(ff_codec_bmp_tags, format);
1333         if (id > 0)
1334             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1335         else if (st->codec->codec_type == AVMEDIA_TYPE_DATA ||
1336                     (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1337                     st->codec->codec_id == AV_CODEC_ID_NONE)) {
1338             id = ff_codec_get_id(ff_codec_movsubtitle_tags, format);
1339             if (id > 0)
1340                 st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
1341         }
1342     }
1343
1344     st->codec->codec_tag = format;
1345
1346     return id;
1347 }
1348
1349 static void mov_parse_stsd_video(MOVContext *c, AVIOContext *pb,
1350                                  AVStream *st, MOVStreamContext *sc)
1351 {
1352     uint8_t codec_name[32];
1353     unsigned int color_depth, len, j;
1354     int color_greyscale;
1355     int color_table_id;
1356
1357     avio_rb16(pb); /* version */
1358     avio_rb16(pb); /* revision level */
1359     avio_rb32(pb); /* vendor */
1360     avio_rb32(pb); /* temporal quality */
1361     avio_rb32(pb); /* spatial quality */
1362
1363     st->codec->width  = avio_rb16(pb); /* width */
1364     st->codec->height = avio_rb16(pb); /* height */
1365
1366     avio_rb32(pb); /* horiz resolution */
1367     avio_rb32(pb); /* vert resolution */
1368     avio_rb32(pb); /* data size, always 0 */
1369     avio_rb16(pb); /* frames per samples */
1370
1371     len = avio_r8(pb); /* codec name, pascal string */
1372     if (len > 31)
1373         len = 31;
1374     mov_read_mac_string(c, pb, len, codec_name, sizeof(codec_name));
1375     if (len < 31)
1376         avio_skip(pb, 31 - len);
1377
1378     if (codec_name[0])
1379         av_dict_set(&st->metadata, "encoder", codec_name, 0);
1380
1381     /* codec_tag YV12 triggers an UV swap in rawdec.c */
1382     if (!memcmp(codec_name, "Planar Y'CbCr 8-bit 4:2:0", 25)) {
1383         st->codec->codec_tag = MKTAG('I', '4', '2', '0');
1384         st->codec->width &= ~1;
1385         st->codec->height &= ~1;
1386     }
1387     /* Flash Media Server uses tag H263 with Sorenson Spark */
1388     if (st->codec->codec_tag == MKTAG('H','2','6','3') &&
1389         !memcmp(codec_name, "Sorenson H263", 13))
1390         st->codec->codec_id = AV_CODEC_ID_FLV1;
1391
1392     st->codec->bits_per_coded_sample = avio_rb16(pb); /* depth */
1393     color_table_id = avio_rb16(pb); /* colortable id */
1394     av_dlog(c->fc, "depth %d, ctab id %d\n",
1395             st->codec->bits_per_coded_sample, color_table_id);
1396     /* figure out the palette situation */
1397     color_depth     = st->codec->bits_per_coded_sample & 0x1F;
1398     color_greyscale = st->codec->bits_per_coded_sample & 0x20;
1399     /* Do not create a greyscale palette for cinepak */
1400     if (color_greyscale && st->codec->codec_id == AV_CODEC_ID_CINEPAK)
1401         return;
1402
1403     /* if the depth is 2, 4, or 8 bpp, file is palettized */
1404     if ((color_depth == 2) || (color_depth == 4) || (color_depth == 8)) {
1405         /* for palette traversal */
1406         unsigned int color_start, color_count, color_end;
1407         unsigned char a, r, g, b;
1408
1409         if (color_greyscale) {
1410             int color_index, color_dec;
1411             /* compute the greyscale palette */
1412             st->codec->bits_per_coded_sample = color_depth;
1413             color_count = 1 << color_depth;
1414             color_index = 255;
1415             color_dec   = 256 / (color_count - 1);
1416             for (j = 0; j < color_count; j++) {
1417                 r = g = b = color_index;
1418                 sc->palette[j] = (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1419                 color_index -= color_dec;
1420                 if (color_index < 0)
1421                     color_index = 0;
1422             }
1423         } else if (color_table_id) {
1424             const uint8_t *color_table;
1425             /* if flag bit 3 is set, use the default palette */
1426             color_count = 1 << color_depth;
1427             if (color_depth == 2)
1428                 color_table = ff_qt_default_palette_4;
1429             else if (color_depth == 4)
1430                 color_table = ff_qt_default_palette_16;
1431             else
1432                 color_table = ff_qt_default_palette_256;
1433
1434             for (j = 0; j < color_count; j++) {
1435                 r = color_table[j * 3 + 0];
1436                 g = color_table[j * 3 + 1];
1437                 b = color_table[j * 3 + 2];
1438                 sc->palette[j] = (0xFFU << 24) | (r << 16) | (g << 8) | (b);
1439             }
1440         } else {
1441             /* load the palette from the file */
1442             color_start = avio_rb32(pb);
1443             color_count = avio_rb16(pb);
1444             color_end   = avio_rb16(pb);
1445             if ((color_start <= 255) && (color_end <= 255)) {
1446                 for (j = color_start; j <= color_end; j++) {
1447                     /* each A, R, G, or B component is 16 bits;
1448                         * only use the top 8 bits */
1449                     a = avio_r8(pb);
1450                     avio_r8(pb);
1451                     r = avio_r8(pb);
1452                     avio_r8(pb);
1453                     g = avio_r8(pb);
1454                     avio_r8(pb);
1455                     b = avio_r8(pb);
1456                     avio_r8(pb);
1457                     sc->palette[j] = (a << 24 ) | (r << 16) | (g << 8) | (b);
1458                 }
1459             }
1460         }
1461         sc->has_palette = 1;
1462     }
1463 }
1464
1465 static void mov_parse_stsd_audio(MOVContext *c, AVIOContext *pb,
1466                                  AVStream *st, MOVStreamContext *sc)
1467 {
1468     int bits_per_sample, flags;
1469     uint16_t version = avio_rb16(pb);
1470     AVDictionaryEntry *compatible_brands = av_dict_get(c->fc->metadata, "compatible_brands", NULL, AV_DICT_MATCH_CASE);
1471
1472     avio_rb16(pb); /* revision level */
1473     avio_rb32(pb); /* vendor */
1474
1475     st->codec->channels              = avio_rb16(pb); /* channel count */
1476     st->codec->bits_per_coded_sample = avio_rb16(pb); /* sample size */
1477     av_dlog(c->fc, "audio channels %d\n", st->codec->channels);
1478
1479     sc->audio_cid = avio_rb16(pb);
1480     avio_rb16(pb); /* packet size = 0 */
1481
1482     st->codec->sample_rate = ((avio_rb32(pb) >> 16));
1483
1484     // Read QT version 1 fields. In version 0 these do not exist.
1485     av_dlog(c->fc, "version =%d, isom =%d\n", version, c->isom);
1486     if (!c->isom ||
1487         (compatible_brands && strstr(compatible_brands->value, "qt  "))) {
1488
1489         if (version == 1) {
1490             sc->samples_per_frame = avio_rb32(pb);
1491             avio_rb32(pb); /* bytes per packet */
1492             sc->bytes_per_frame = avio_rb32(pb);
1493             avio_rb32(pb); /* bytes per sample */
1494         } else if (version == 2) {
1495             avio_rb32(pb); /* sizeof struct only */
1496             st->codec->sample_rate = av_int2double(avio_rb64(pb));
1497             st->codec->channels    = avio_rb32(pb);
1498             avio_rb32(pb); /* always 0x7F000000 */
1499             st->codec->bits_per_coded_sample = avio_rb32(pb);
1500
1501             flags = avio_rb32(pb); /* lpcm format specific flag */
1502             sc->bytes_per_frame   = avio_rb32(pb);
1503             sc->samples_per_frame = avio_rb32(pb);
1504             if (st->codec->codec_tag == MKTAG('l','p','c','m'))
1505                 st->codec->codec_id =
1506                     ff_mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample,
1507                                              flags);
1508         }
1509     }
1510
1511     switch (st->codec->codec_id) {
1512     case AV_CODEC_ID_PCM_S8:
1513     case AV_CODEC_ID_PCM_U8:
1514         if (st->codec->bits_per_coded_sample == 16)
1515             st->codec->codec_id = AV_CODEC_ID_PCM_S16BE;
1516         break;
1517     case AV_CODEC_ID_PCM_S16LE:
1518     case AV_CODEC_ID_PCM_S16BE:
1519         if (st->codec->bits_per_coded_sample == 8)
1520             st->codec->codec_id = AV_CODEC_ID_PCM_S8;
1521         else if (st->codec->bits_per_coded_sample == 24)
1522             st->codec->codec_id =
1523                 st->codec->codec_id == AV_CODEC_ID_PCM_S16BE ?
1524                 AV_CODEC_ID_PCM_S24BE : AV_CODEC_ID_PCM_S24LE;
1525         else if (st->codec->bits_per_coded_sample == 32)
1526              st->codec->codec_id =
1527                 st->codec->codec_id == AV_CODEC_ID_PCM_S16BE ?
1528                 AV_CODEC_ID_PCM_S32BE : AV_CODEC_ID_PCM_S32LE;
1529         break;
1530     /* set values for old format before stsd version 1 appeared */
1531     case AV_CODEC_ID_MACE3:
1532         sc->samples_per_frame = 6;
1533         sc->bytes_per_frame   = 2 * st->codec->channels;
1534         break;
1535     case AV_CODEC_ID_MACE6:
1536         sc->samples_per_frame = 6;
1537         sc->bytes_per_frame   = 1 * st->codec->channels;
1538         break;
1539     case AV_CODEC_ID_ADPCM_IMA_QT:
1540         sc->samples_per_frame = 64;
1541         sc->bytes_per_frame   = 34 * st->codec->channels;
1542         break;
1543     case AV_CODEC_ID_GSM:
1544         sc->samples_per_frame = 160;
1545         sc->bytes_per_frame   = 33;
1546         break;
1547     default:
1548         break;
1549     }
1550
1551     bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
1552     if (bits_per_sample) {
1553         st->codec->bits_per_coded_sample = bits_per_sample;
1554         sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
1555     }
1556 }
1557
1558 static void mov_parse_stsd_subtitle(MOVContext *c, AVIOContext *pb,
1559                                     AVStream *st, MOVStreamContext *sc,
1560                                     int size)
1561 {
1562     // ttxt stsd contains display flags, justification, background
1563     // color, fonts, and default styles, so fake an atom to read it
1564     MOVAtom fake_atom = { .size = size };
1565     // mp4s contains a regular esds atom
1566     if (st->codec->codec_tag != AV_RL32("mp4s"))
1567         mov_read_glbl(c, pb, fake_atom);
1568     st->codec->width  = sc->width;
1569     st->codec->height = sc->height;
1570 }
1571
1572 static uint32_t yuv_to_rgba(uint32_t ycbcr)
1573 {
1574     uint8_t r, g, b;
1575     int y, cb, cr;
1576
1577     y  = (ycbcr >> 16) & 0xFF;
1578     cr = (ycbcr >> 8)  & 0xFF;
1579     cb =  ycbcr        & 0xFF;
1580
1581     b = av_clip_uint8(1.164 * (y - 16)                      + 2.018 * (cb - 128));
1582     g = av_clip_uint8(1.164 * (y - 16) - 0.813 * (cr - 128) - 0.391 * (cb - 128));
1583     r = av_clip_uint8(1.164 * (y - 16) + 1.596 * (cr - 128));
1584
1585     return (r << 16) | (g << 8) | b;
1586 }
1587
1588 static int mov_rewrite_dvd_sub_extradata(AVStream *st)
1589 {
1590     char buf[256] = {0};
1591     uint8_t *src = st->codec->extradata;
1592     int i;
1593
1594     if (st->codec->extradata_size != 64)
1595         return 0;
1596
1597     if (st->codec->width > 0 &&  st->codec->height > 0)
1598         snprintf(buf, sizeof(buf), "size: %dx%d\n",
1599                  st->codec->width, st->codec->height);
1600     av_strlcat(buf, "palette: ", sizeof(buf));
1601
1602     for (i = 0; i < 16; i++) {
1603         uint32_t yuv = AV_RB32(src + i * 4);
1604         uint32_t rgba = yuv_to_rgba(yuv);
1605
1606         av_strlcatf(buf, sizeof(buf), "%06"PRIx32"%s", rgba, i != 15 ? ", " : "");
1607     }
1608
1609     if (av_strlcat(buf, "\n", sizeof(buf)) >= sizeof(buf))
1610         return 0;
1611
1612     av_freep(&st->codec->extradata);
1613     st->codec->extradata_size = 0;
1614     st->codec->extradata = av_mallocz(strlen(buf) + FF_INPUT_BUFFER_PADDING_SIZE);
1615     if (!st->codec->extradata)
1616         return AVERROR(ENOMEM);
1617     st->codec->extradata_size = strlen(buf);
1618     memcpy(st->codec->extradata, buf, st->codec->extradata_size);
1619
1620     return 0;
1621 }
1622
1623 static int mov_parse_stsd_data(MOVContext *c, AVIOContext *pb,
1624                                 AVStream *st, MOVStreamContext *sc,
1625                                 int size)
1626 {
1627     if (st->codec->codec_tag == MKTAG('t','m','c','d')) {
1628         if (ff_get_extradata(st->codec, pb, size) < 0)
1629             return AVERROR(ENOMEM);
1630         if (size > 16) {
1631             MOVStreamContext *tmcd_ctx = st->priv_data;
1632             int val;
1633             val = AV_RB32(st->codec->extradata + 4);
1634             tmcd_ctx->tmcd_flags = val;
1635             if (val & 1)
1636                 st->codec->flags2 |= CODEC_FLAG2_DROP_FRAME_TIMECODE;
1637             st->codec->time_base.den = st->codec->extradata[16]; /* number of frame */
1638             st->codec->time_base.num = 1;
1639             if (size > 30) {
1640                 uint32_t len = AV_RB32(st->codec->extradata + 18); /* name atom length */
1641                 uint32_t format = AV_RB32(st->codec->extradata + 22);
1642                 if (format == AV_RB32("name") && (int64_t)size >= (int64_t)len + 18) {
1643                     uint16_t str_size = AV_RB16(st->codec->extradata + 26); /* string length */
1644                     if (str_size > 0 && size >= (int)str_size + 26) {
1645                         char *reel_name = av_malloc(str_size + 1);
1646                         if (!reel_name)
1647                             return AVERROR(ENOMEM);
1648                         memcpy(reel_name, st->codec->extradata + 30, str_size);
1649                         reel_name[str_size] = 0; /* Add null terminator */
1650                         /* don't add reel_name if emtpy string */
1651                         if (*reel_name == 0) {
1652                             av_free(reel_name);
1653                         } else {
1654                             av_dict_set(&st->metadata, "reel_name", reel_name,  AV_DICT_DONT_STRDUP_VAL);
1655                         }
1656                     }
1657                 }
1658             }
1659         }
1660     } else {
1661         /* other codec type, just skip (rtp, mp4s ...) */
1662         avio_skip(pb, size);
1663     }
1664     return 0;
1665 }
1666
1667 static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb,
1668                                    AVStream *st, MOVStreamContext *sc)
1669 {
1670     if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1671         !st->codec->sample_rate && sc->time_scale > 1)
1672         st->codec->sample_rate = sc->time_scale;
1673
1674     /* special codec parameters handling */
1675     switch (st->codec->codec_id) {
1676 #if CONFIG_DV_DEMUXER
1677     case AV_CODEC_ID_DVAUDIO:
1678         c->dv_fctx  = avformat_alloc_context();
1679         c->dv_demux = avpriv_dv_init_demux(c->dv_fctx);
1680         if (!c->dv_demux) {
1681             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
1682             return AVERROR(ENOMEM);
1683         }
1684         sc->dv_audio_container = 1;
1685         st->codec->codec_id    = AV_CODEC_ID_PCM_S16LE;
1686         break;
1687 #endif
1688     /* no ifdef since parameters are always those */
1689     case AV_CODEC_ID_QCELP:
1690         st->codec->channels = 1;
1691         // force sample rate for qcelp when not stored in mov
1692         if (st->codec->codec_tag != MKTAG('Q','c','l','p'))
1693             st->codec->sample_rate = 8000;
1694         // FIXME: Why is the following needed for some files?
1695         sc->samples_per_frame = 160;
1696         if (!sc->bytes_per_frame)
1697             sc->bytes_per_frame = 35;
1698         break;
1699     case AV_CODEC_ID_AMR_NB:
1700         st->codec->channels    = 1;
1701         /* force sample rate for amr, stsd in 3gp does not store sample rate */
1702         st->codec->sample_rate = 8000;
1703         break;
1704     case AV_CODEC_ID_AMR_WB:
1705         st->codec->channels    = 1;
1706         st->codec->sample_rate = 16000;
1707         break;
1708     case AV_CODEC_ID_MP2:
1709     case AV_CODEC_ID_MP3:
1710         /* force type after stsd for m1a hdlr */
1711         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1712         st->need_parsing      = AVSTREAM_PARSE_FULL;
1713         break;
1714     case AV_CODEC_ID_GSM:
1715     case AV_CODEC_ID_ADPCM_MS:
1716     case AV_CODEC_ID_ADPCM_IMA_WAV:
1717     case AV_CODEC_ID_ILBC:
1718     case AV_CODEC_ID_MACE3:
1719     case AV_CODEC_ID_MACE6:
1720     case AV_CODEC_ID_QDM2:
1721         st->codec->block_align = sc->bytes_per_frame;
1722         break;
1723     case AV_CODEC_ID_ALAC:
1724         if (st->codec->extradata_size == 36) {
1725             st->codec->channels    = AV_RB8 (st->codec->extradata + 21);
1726             st->codec->sample_rate = AV_RB32(st->codec->extradata + 32);
1727         }
1728         break;
1729     case AV_CODEC_ID_AC3:
1730     case AV_CODEC_ID_EAC3:
1731     case AV_CODEC_ID_MPEG1VIDEO:
1732     case AV_CODEC_ID_VC1:
1733         st->need_parsing = AVSTREAM_PARSE_FULL;
1734         break;
1735     default:
1736         break;
1737     }
1738     return 0;
1739 }
1740
1741 static int mov_skip_multiple_stsd(MOVContext *c, AVIOContext *pb,
1742                                   int codec_tag, int format,
1743                                   int64_t size)
1744 {
1745     int video_codec_id = ff_codec_get_id(ff_codec_movvideo_tags, format);
1746
1747     if (codec_tag &&
1748          (codec_tag != format &&
1749           (c->fc->video_codec_id ? video_codec_id != c->fc->video_codec_id
1750                                  : codec_tag != MKTAG('j','p','e','g')))) {
1751         /* Multiple fourcc, we skip JPEG. This is not correct, we should
1752          * export it as a separate AVStream but this needs a few changes
1753          * in the MOV demuxer, patch welcome. */
1754
1755         av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n");
1756         avio_skip(pb, size);
1757         return 1;
1758     }
1759     if ( codec_tag == AV_RL32("avc1") ||
1760          codec_tag == AV_RL32("hvc1") ||
1761          codec_tag == AV_RL32("hev1")
1762     )
1763         av_log(c->fc, AV_LOG_WARNING, "Concatenated H.264 or H.265 might not play correctly.\n");
1764
1765     return 0;
1766 }
1767
1768 int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
1769 {
1770     AVStream *st;
1771     MOVStreamContext *sc;
1772     int pseudo_stream_id;
1773
1774     if (c->fc->nb_streams < 1)
1775         return 0;
1776     st = c->fc->streams[c->fc->nb_streams-1];
1777     sc = st->priv_data;
1778
1779     for (pseudo_stream_id = 0;
1780          pseudo_stream_id < entries && !pb->eof_reached;
1781          pseudo_stream_id++) {
1782         //Parsing Sample description table
1783         enum AVCodecID id;
1784         int ret, dref_id = 1;
1785         MOVAtom a = { AV_RL32("stsd") };
1786         int64_t start_pos = avio_tell(pb);
1787         int64_t size = avio_rb32(pb); /* size */
1788         uint32_t format = avio_rl32(pb); /* data format */
1789
1790         if (size >= 16) {
1791             avio_rb32(pb); /* reserved */
1792             avio_rb16(pb); /* reserved */
1793             dref_id = avio_rb16(pb);
1794         }else if (size <= 7){
1795             av_log(c->fc, AV_LOG_ERROR, "invalid size %"PRId64" in stsd\n", size);
1796             return AVERROR_INVALIDDATA;
1797         }
1798
1799         if (mov_skip_multiple_stsd(c, pb, st->codec->codec_tag, format,
1800                                    size - (avio_tell(pb) - start_pos)))
1801             continue;
1802
1803         sc->pseudo_stream_id = st->codec->codec_tag ? -1 : pseudo_stream_id;
1804         sc->dref_id= dref_id;
1805
1806         id = mov_codec_id(st, format);
1807
1808         av_dlog(c->fc, "size=%"PRId64" 4CC= %c%c%c%c codec_type=%d\n", size,
1809                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff,
1810                 (format >> 24) & 0xff, st->codec->codec_type);
1811
1812         if (st->codec->codec_type==AVMEDIA_TYPE_VIDEO) {
1813             st->codec->codec_id = id;
1814             mov_parse_stsd_video(c, pb, st, sc);
1815         } else if (st->codec->codec_type==AVMEDIA_TYPE_AUDIO) {
1816             st->codec->codec_id = id;
1817             mov_parse_stsd_audio(c, pb, st, sc);
1818         } else if (st->codec->codec_type==AVMEDIA_TYPE_SUBTITLE){
1819             st->codec->codec_id = id;
1820             mov_parse_stsd_subtitle(c, pb, st, sc,
1821                                     size - (avio_tell(pb) - start_pos));
1822         } else {
1823             ret = mov_parse_stsd_data(c, pb, st, sc,
1824                                       size - (avio_tell(pb) - start_pos));
1825             if (ret < 0)
1826                 return ret;
1827         }
1828         /* this will read extra atoms at the end (wave, alac, damr, avcC, hvcC, SMI ...) */
1829         a.size = size - (avio_tell(pb) - start_pos);
1830         if (a.size > 8) {
1831             if ((ret = mov_read_default(c, pb, a)) < 0)
1832                 return ret;
1833         } else if (a.size > 0)
1834             avio_skip(pb, a.size);
1835     }
1836
1837     if (pb->eof_reached)
1838         return AVERROR_EOF;
1839
1840     return mov_finalize_stsd_codec(c, pb, st, sc);
1841 }
1842
1843 static int mov_read_stsd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1844 {
1845     int entries;
1846
1847     avio_r8(pb); /* version */
1848     avio_rb24(pb); /* flags */
1849     entries = avio_rb32(pb);
1850
1851     return ff_mov_read_stsd_entries(c, pb, entries);
1852 }
1853
1854 static int mov_read_stsc(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1855 {
1856     AVStream *st;
1857     MOVStreamContext *sc;
1858     unsigned int i, entries;
1859
1860     if (c->fc->nb_streams < 1)
1861         return 0;
1862     st = c->fc->streams[c->fc->nb_streams-1];
1863     sc = st->priv_data;
1864
1865     avio_r8(pb); /* version */
1866     avio_rb24(pb); /* flags */
1867
1868     entries = avio_rb32(pb);
1869
1870     av_dlog(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
1871
1872     if (!entries)
1873         return 0;
1874     if (sc->stsc_data)
1875         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSC atom\n");
1876     av_free(sc->stsc_data);
1877     sc->stsc_count = 0;
1878     sc->stsc_data = av_malloc_array(entries, sizeof(*sc->stsc_data));
1879     if (!sc->stsc_data)
1880         return AVERROR(ENOMEM);
1881
1882     for (i = 0; i < entries && !pb->eof_reached; i++) {
1883         sc->stsc_data[i].first = avio_rb32(pb);
1884         sc->stsc_data[i].count = avio_rb32(pb);
1885         sc->stsc_data[i].id = avio_rb32(pb);
1886     }
1887
1888     sc->stsc_count = i;
1889
1890     if (pb->eof_reached)
1891         return AVERROR_EOF;
1892
1893     return 0;
1894 }
1895
1896 static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1897 {
1898     AVStream *st;
1899     MOVStreamContext *sc;
1900     unsigned i, entries;
1901
1902     if (c->fc->nb_streams < 1)
1903         return 0;
1904     st = c->fc->streams[c->fc->nb_streams-1];
1905     sc = st->priv_data;
1906
1907     avio_rb32(pb); // version + flags
1908
1909     entries = avio_rb32(pb);
1910     if (sc->stps_data)
1911         av_log(c->fc, AV_LOG_WARNING, "Duplicated STPS atom\n");
1912     av_free(sc->stps_data);
1913     sc->stps_count = 0;
1914     sc->stps_data = av_malloc_array(entries, sizeof(*sc->stps_data));
1915     if (!sc->stps_data)
1916         return AVERROR(ENOMEM);
1917
1918     for (i = 0; i < entries && !pb->eof_reached; i++) {
1919         sc->stps_data[i] = avio_rb32(pb);
1920         //av_dlog(c->fc, "stps %d\n", sc->stps_data[i]);
1921     }
1922
1923     sc->stps_count = i;
1924
1925     if (pb->eof_reached)
1926         return AVERROR_EOF;
1927
1928     return 0;
1929 }
1930
1931 static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1932 {
1933     AVStream *st;
1934     MOVStreamContext *sc;
1935     unsigned int i, entries;
1936
1937     if (c->fc->nb_streams < 1)
1938         return 0;
1939     st = c->fc->streams[c->fc->nb_streams-1];
1940     sc = st->priv_data;
1941
1942     avio_r8(pb); /* version */
1943     avio_rb24(pb); /* flags */
1944
1945     entries = avio_rb32(pb);
1946
1947     av_dlog(c->fc, "keyframe_count = %d\n", entries);
1948
1949     if (!entries)
1950     {
1951         sc->keyframe_absent = 1;
1952         if (!st->need_parsing && st->codec->codec_type == AVMEDIA_TYPE_VIDEO)
1953             st->need_parsing = AVSTREAM_PARSE_HEADERS;
1954         return 0;
1955     }
1956     if (sc->keyframes)
1957         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSS atom\n");
1958     av_free(sc->keyframes);
1959     sc->keyframe_count = 0;
1960     sc->keyframes = av_malloc_array(entries, sizeof(*sc->keyframes));
1961     if (!sc->keyframes)
1962         return AVERROR(ENOMEM);
1963
1964     for (i = 0; i < entries && !pb->eof_reached; i++) {
1965         sc->keyframes[i] = avio_rb32(pb);
1966         //av_dlog(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
1967     }
1968
1969     sc->keyframe_count = i;
1970
1971     if (pb->eof_reached)
1972         return AVERROR_EOF;
1973
1974     return 0;
1975 }
1976
1977 static int mov_read_stsz(MOVContext *c, AVIOContext *pb, MOVAtom atom)
1978 {
1979     AVStream *st;
1980     MOVStreamContext *sc;
1981     unsigned int i, entries, sample_size, field_size, num_bytes;
1982     GetBitContext gb;
1983     unsigned char* buf;
1984
1985     if (c->fc->nb_streams < 1)
1986         return 0;
1987     st = c->fc->streams[c->fc->nb_streams-1];
1988     sc = st->priv_data;
1989
1990     avio_r8(pb); /* version */
1991     avio_rb24(pb); /* flags */
1992
1993     if (atom.type == MKTAG('s','t','s','z')) {
1994         sample_size = avio_rb32(pb);
1995         if (!sc->sample_size) /* do not overwrite value computed in stsd */
1996             sc->sample_size = sample_size;
1997         sc->stsz_sample_size = sample_size;
1998         field_size = 32;
1999     } else {
2000         sample_size = 0;
2001         avio_rb24(pb); /* reserved */
2002         field_size = avio_r8(pb);
2003     }
2004     entries = avio_rb32(pb);
2005
2006     av_dlog(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, entries);
2007
2008     sc->sample_count = entries;
2009     if (sample_size)
2010         return 0;
2011
2012     if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) {
2013         av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size);
2014         return AVERROR_INVALIDDATA;
2015     }
2016
2017     if (!entries)
2018         return 0;
2019     if (entries >= (UINT_MAX - 4) / field_size)
2020         return AVERROR_INVALIDDATA;
2021     if (sc->sample_sizes)
2022         av_log(c->fc, AV_LOG_WARNING, "Duplicated STSZ atom\n");
2023     av_free(sc->sample_sizes);
2024     sc->sample_count = 0;
2025     sc->sample_sizes = av_malloc_array(entries, sizeof(*sc->sample_sizes));
2026     if (!sc->sample_sizes)
2027         return AVERROR(ENOMEM);
2028
2029     num_bytes = (entries*field_size+4)>>3;
2030
2031     buf = av_malloc(num_bytes+FF_INPUT_BUFFER_PADDING_SIZE);
2032     if (!buf) {
2033         av_freep(&sc->sample_sizes);
2034         return AVERROR(ENOMEM);
2035     }
2036
2037     if (avio_read(pb, buf, num_bytes) < num_bytes) {
2038         av_freep(&sc->sample_sizes);
2039         av_free(buf);
2040         return AVERROR_INVALIDDATA;
2041     }
2042
2043     init_get_bits(&gb, buf, 8*num_bytes);
2044
2045     for (i = 0; i < entries && !pb->eof_reached; i++) {
2046         sc->sample_sizes[i] = get_bits_long(&gb, field_size);
2047         sc->data_size += sc->sample_sizes[i];
2048     }
2049
2050     sc->sample_count = i;
2051
2052     if (pb->eof_reached)
2053         return AVERROR_EOF;
2054
2055     av_free(buf);
2056     return 0;
2057 }
2058
2059 static int mov_read_stts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2060 {
2061     AVStream *st;
2062     MOVStreamContext *sc;
2063     unsigned int i, entries;
2064     int64_t duration=0;
2065     int64_t total_sample_count=0;
2066
2067     if (c->fc->nb_streams < 1)
2068         return 0;
2069     st = c->fc->streams[c->fc->nb_streams-1];
2070     sc = st->priv_data;
2071
2072     avio_r8(pb); /* version */
2073     avio_rb24(pb); /* flags */
2074     entries = avio_rb32(pb);
2075
2076     av_dlog(c->fc, "track[%i].stts.entries = %i\n",
2077             c->fc->nb_streams-1, entries);
2078
2079     if (sc->stts_data)
2080         av_log(c->fc, AV_LOG_WARNING, "Duplicated STTS atom\n");
2081     av_free(sc->stts_data);
2082     sc->stts_count = 0;
2083     sc->stts_data = av_malloc_array(entries, sizeof(*sc->stts_data));
2084     if (!sc->stts_data)
2085         return AVERROR(ENOMEM);
2086
2087     for (i = 0; i < entries && !pb->eof_reached; i++) {
2088         int sample_duration;
2089         int sample_count;
2090
2091         sample_count=avio_rb32(pb);
2092         sample_duration = avio_rb32(pb);
2093
2094         /* sample_duration < 0 is invalid based on the spec */
2095         if (sample_duration < 0) {
2096             av_log(c->fc, AV_LOG_ERROR, "Invalid SampleDelta %d in STTS, at %d st:%d\n",
2097                    sample_duration, i, c->fc->nb_streams-1);
2098             sample_duration = 1;
2099         }
2100         if (sample_count < 0) {
2101             av_log(c->fc, AV_LOG_ERROR, "Invalid sample_count=%d\n", sample_count);
2102             return AVERROR_INVALIDDATA;
2103         }
2104         sc->stts_data[i].count= sample_count;
2105         sc->stts_data[i].duration= sample_duration;
2106
2107         av_dlog(c->fc, "sample_count=%d, sample_duration=%d\n",
2108                 sample_count, sample_duration);
2109
2110         if (   i+1 == entries
2111             && i
2112             && sample_count == 1
2113             && total_sample_count > 100
2114             && sample_duration/10 > duration / total_sample_count)
2115             sample_duration = duration / total_sample_count;
2116         duration+=(int64_t)sample_duration*sample_count;
2117         total_sample_count+=sample_count;
2118     }
2119
2120     sc->stts_count = i;
2121
2122     sc->duration_for_fps  += duration;
2123     sc->nb_frames_for_fps += total_sample_count;
2124
2125     if (pb->eof_reached)
2126         return AVERROR_EOF;
2127
2128     st->nb_frames= total_sample_count;
2129     if (duration)
2130         st->duration= duration;
2131     sc->track_end = duration;
2132     return 0;
2133 }
2134
2135 static void mov_update_dts_shift(MOVStreamContext *sc, int duration)
2136 {
2137     if (duration < 0) {
2138         sc->dts_shift = FFMAX(sc->dts_shift, -duration);
2139     }
2140 }
2141
2142 static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2143 {
2144     AVStream *st;
2145     MOVStreamContext *sc;
2146     unsigned int i, entries;
2147
2148     if (c->fc->nb_streams < 1)
2149         return 0;
2150     st = c->fc->streams[c->fc->nb_streams-1];
2151     sc = st->priv_data;
2152
2153     avio_r8(pb); /* version */
2154     avio_rb24(pb); /* flags */
2155     entries = avio_rb32(pb);
2156
2157     av_dlog(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
2158
2159     if (!entries)
2160         return 0;
2161     if (entries >= UINT_MAX / sizeof(*sc->ctts_data))
2162         return AVERROR_INVALIDDATA;
2163     sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data));
2164     if (!sc->ctts_data)
2165         return AVERROR(ENOMEM);
2166
2167     for (i = 0; i < entries && !pb->eof_reached; i++) {
2168         int count    =avio_rb32(pb);
2169         int duration =avio_rb32(pb);
2170
2171         sc->ctts_data[i].count   = count;
2172         sc->ctts_data[i].duration= duration;
2173
2174         av_dlog(c->fc, "count=%d, duration=%d\n",
2175                 count, duration);
2176
2177         if (FFABS(duration) > (1<<28) && i+2<entries) {
2178             av_log(c->fc, AV_LOG_WARNING, "CTTS invalid\n");
2179             av_freep(&sc->ctts_data);
2180             sc->ctts_count = 0;
2181             return 0;
2182         }
2183
2184         if (i+2<entries)
2185             mov_update_dts_shift(sc, duration);
2186     }
2187
2188     sc->ctts_count = i;
2189
2190     if (pb->eof_reached)
2191         return AVERROR_EOF;
2192
2193     av_dlog(c->fc, "dts shift %d\n", sc->dts_shift);
2194
2195     return 0;
2196 }
2197
2198 static int mov_read_sbgp(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2199 {
2200     AVStream *st;
2201     MOVStreamContext *sc;
2202     unsigned int i, entries;
2203     uint8_t version;
2204     uint32_t grouping_type;
2205
2206     if (c->fc->nb_streams < 1)
2207         return 0;
2208     st = c->fc->streams[c->fc->nb_streams-1];
2209     sc = st->priv_data;
2210
2211     version = avio_r8(pb); /* version */
2212     avio_rb24(pb); /* flags */
2213     grouping_type = avio_rl32(pb);
2214     if (grouping_type != MKTAG( 'r','a','p',' '))
2215         return 0; /* only support 'rap ' grouping */
2216     if (version == 1)
2217         avio_rb32(pb); /* grouping_type_parameter */
2218
2219     entries = avio_rb32(pb);
2220     if (!entries)
2221         return 0;
2222     if (sc->rap_group)
2223         av_log(c->fc, AV_LOG_WARNING, "Duplicated SBGP atom\n");
2224     av_free(sc->rap_group);
2225     sc->rap_group_count = 0;
2226     sc->rap_group = av_malloc_array(entries, sizeof(*sc->rap_group));
2227     if (!sc->rap_group)
2228         return AVERROR(ENOMEM);
2229
2230     for (i = 0; i < entries && !pb->eof_reached; i++) {
2231         sc->rap_group[i].count = avio_rb32(pb); /* sample_count */
2232         sc->rap_group[i].index = avio_rb32(pb); /* group_description_index */
2233     }
2234
2235     sc->rap_group_count = i;
2236
2237     return pb->eof_reached ? AVERROR_EOF : 0;
2238 }
2239
2240 static void mov_build_index(MOVContext *mov, AVStream *st)
2241 {
2242     MOVStreamContext *sc = st->priv_data;
2243     int64_t current_offset;
2244     int64_t current_dts = 0;
2245     unsigned int stts_index = 0;
2246     unsigned int stsc_index = 0;
2247     unsigned int stss_index = 0;
2248     unsigned int stps_index = 0;
2249     unsigned int i, j;
2250     uint64_t stream_size = 0;
2251
2252     /* adjust first dts according to edit list */
2253     if ((sc->empty_duration || sc->start_time) && mov->time_scale > 0) {
2254         if (sc->empty_duration)
2255             sc->empty_duration = av_rescale(sc->empty_duration, sc->time_scale, mov->time_scale);
2256         sc->time_offset = sc->start_time - sc->empty_duration;
2257         current_dts = -sc->time_offset;
2258         if (sc->ctts_count>0 && sc->stts_count>0 &&
2259             sc->ctts_data[0].duration / FFMAX(sc->stts_data[0].duration, 1) > 16) {
2260             /* more than 16 frames delay, dts are likely wrong
2261                this happens with files created by iMovie */
2262             sc->wrong_dts = 1;
2263             st->codec->has_b_frames = 1;
2264         }
2265     }
2266
2267     /* only use old uncompressed audio chunk demuxing when stts specifies it */
2268     if (!(st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
2269           sc->stts_count == 1 && sc->stts_data[0].duration == 1)) {
2270         unsigned int current_sample = 0;
2271         unsigned int stts_sample = 0;
2272         unsigned int sample_size;
2273         unsigned int distance = 0;
2274         unsigned int rap_group_index = 0;
2275         unsigned int rap_group_sample = 0;
2276         int rap_group_present = sc->rap_group_count && sc->rap_group;
2277         int key_off = (sc->keyframe_count && sc->keyframes[0] > 0) || (sc->stps_count && sc->stps_data[0] > 0);
2278
2279         current_dts -= sc->dts_shift;
2280
2281         if (!sc->sample_count || st->nb_index_entries)
2282             return;
2283         if (sc->sample_count >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
2284             return;
2285         if (av_reallocp_array(&st->index_entries,
2286                               st->nb_index_entries + sc->sample_count,
2287                               sizeof(*st->index_entries)) < 0) {
2288             st->nb_index_entries = 0;
2289             return;
2290         }
2291         st->index_entries_allocated_size = (st->nb_index_entries + sc->sample_count) * sizeof(*st->index_entries);
2292
2293         for (i = 0; i < sc->chunk_count; i++) {
2294             int64_t next_offset = i+1 < sc->chunk_count ? sc->chunk_offsets[i+1] : INT64_MAX;
2295             current_offset = sc->chunk_offsets[i];
2296             while (stsc_index + 1 < sc->stsc_count &&
2297                 i + 1 == sc->stsc_data[stsc_index + 1].first)
2298                 stsc_index++;
2299
2300             if (next_offset > current_offset && sc->sample_size>0 && sc->sample_size < sc->stsz_sample_size &&
2301                 sc->stsc_data[stsc_index].count * (int64_t)sc->stsz_sample_size > next_offset - current_offset) {
2302                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too large), ignoring\n", sc->stsz_sample_size);
2303                 sc->stsz_sample_size = sc->sample_size;
2304             }
2305             if (sc->stsz_sample_size>0 && sc->stsz_sample_size < sc->sample_size) {
2306                 av_log(mov->fc, AV_LOG_WARNING, "STSZ sample size %d invalid (too small), ignoring\n", sc->stsz_sample_size);
2307                 sc->stsz_sample_size = sc->sample_size;
2308             }
2309
2310             for (j = 0; j < sc->stsc_data[stsc_index].count; j++) {
2311                 int keyframe = 0;
2312                 if (current_sample >= sc->sample_count) {
2313                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
2314                     return;
2315                 }
2316
2317                 if (!sc->keyframe_absent && (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index])) {
2318                     keyframe = 1;
2319                     if (stss_index + 1 < sc->keyframe_count)
2320                         stss_index++;
2321                 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) {
2322                     keyframe = 1;
2323                     if (stps_index + 1 < sc->stps_count)
2324                         stps_index++;
2325                 }
2326                 if (rap_group_present && rap_group_index < sc->rap_group_count) {
2327                     if (sc->rap_group[rap_group_index].index > 0)
2328                         keyframe = 1;
2329                     if (++rap_group_sample == sc->rap_group[rap_group_index].count) {
2330                         rap_group_sample = 0;
2331                         rap_group_index++;
2332                     }
2333                 }
2334                 if (sc->keyframe_absent
2335                     && !sc->stps_count
2336                     && !rap_group_present
2337                     && (st->codec->codec_type == AVMEDIA_TYPE_AUDIO || (i==0 && j==0)))
2338                      keyframe = 1;
2339                 if (keyframe)
2340                     distance = 0;
2341                 sample_size = sc->stsz_sample_size > 0 ? sc->stsz_sample_size : sc->sample_sizes[current_sample];
2342                 if (sc->pseudo_stream_id == -1 ||
2343                    sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) {
2344                     AVIndexEntry *e = &st->index_entries[st->nb_index_entries++];
2345                     e->pos = current_offset;
2346                     e->timestamp = current_dts;
2347                     e->size = sample_size;
2348                     e->min_distance = distance;
2349                     e->flags = keyframe ? AVINDEX_KEYFRAME : 0;
2350                     av_dlog(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
2351                             "size %d, distance %d, keyframe %d\n", st->index, current_sample,
2352                             current_offset, current_dts, sample_size, distance, keyframe);
2353                     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->nb_index_entries < 100)
2354                         ff_rfps_add_frame(mov->fc, st, current_dts);
2355                 }
2356
2357                 current_offset += sample_size;
2358                 stream_size += sample_size;
2359                 current_dts += sc->stts_data[stts_index].duration;
2360                 distance++;
2361                 stts_sample++;
2362                 current_sample++;
2363                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
2364                     stts_sample = 0;
2365                     stts_index++;
2366                 }
2367             }
2368         }
2369         if (st->duration > 0)
2370             st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration;
2371     } else {
2372         unsigned chunk_samples, total = 0;
2373
2374         // compute total chunk count
2375         for (i = 0; i < sc->stsc_count; i++) {
2376             unsigned count, chunk_count;
2377
2378             chunk_samples = sc->stsc_data[i].count;
2379             if (i != sc->stsc_count - 1 &&
2380                 sc->samples_per_frame && chunk_samples % sc->samples_per_frame) {
2381                 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n");
2382                 return;
2383             }
2384
2385             if (sc->samples_per_frame >= 160) { // gsm
2386                 count = chunk_samples / sc->samples_per_frame;
2387             } else if (sc->samples_per_frame > 1) {
2388                 unsigned samples = (1024/sc->samples_per_frame)*sc->samples_per_frame;
2389                 count = (chunk_samples+samples-1) / samples;
2390             } else {
2391                 count = (chunk_samples+1023) / 1024;
2392             }
2393
2394             if (i < sc->stsc_count - 1)
2395                 chunk_count = sc->stsc_data[i+1].first - sc->stsc_data[i].first;
2396             else
2397                 chunk_count = sc->chunk_count - (sc->stsc_data[i].first - 1);
2398             total += chunk_count * count;
2399         }
2400
2401         av_dlog(mov->fc, "chunk count %d\n", total);
2402         if (total >= UINT_MAX / sizeof(*st->index_entries) - st->nb_index_entries)
2403             return;
2404         if (av_reallocp_array(&st->index_entries,
2405                               st->nb_index_entries + total,
2406                               sizeof(*st->index_entries)) < 0) {
2407             st->nb_index_entries = 0;
2408             return;
2409         }
2410         st->index_entries_allocated_size = (st->nb_index_entries + total) * sizeof(*st->index_entries);
2411
2412         // populate index
2413         for (i = 0; i < sc->chunk_count; i++) {
2414             current_offset = sc->chunk_offsets[i];
2415             if (stsc_index + 1 < sc->stsc_count &&
2416                 i + 1 == sc->stsc_data[stsc_index + 1].first)
2417                 stsc_index++;
2418             chunk_samples = sc->stsc_data[stsc_index].count;
2419
2420             while (chunk_samples > 0) {
2421                 AVIndexEntry *e;
2422                 unsigned size, samples;
2423
2424                 if (sc->samples_per_frame >= 160) { // gsm
2425                     samples = sc->samples_per_frame;
2426                     size = sc->bytes_per_frame;
2427                 } else {
2428                     if (sc->samples_per_frame > 1) {
2429                         samples = FFMIN((1024 / sc->samples_per_frame)*
2430                                         sc->samples_per_frame, chunk_samples);
2431                         size = (samples / sc->samples_per_frame) * sc->bytes_per_frame;
2432                     } else {
2433                         samples = FFMIN(1024, chunk_samples);
2434                         size = samples * sc->sample_size;
2435                     }
2436                 }
2437
2438                 if (st->nb_index_entries >= total) {
2439                     av_log(mov->fc, AV_LOG_ERROR, "wrong chunk count %d\n", total);
2440                     return;
2441                 }
2442                 e = &st->index_entries[st->nb_index_entries++];
2443                 e->pos = current_offset;
2444                 e->timestamp = current_dts;
2445                 e->size = size;
2446                 e->min_distance = 0;
2447                 e->flags = AVINDEX_KEYFRAME;
2448                 av_dlog(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", "
2449                         "size %d, duration %d\n", st->index, i, current_offset, current_dts,
2450                         size, samples);
2451
2452                 current_offset += size;
2453                 current_dts += samples;
2454                 chunk_samples -= samples;
2455             }
2456         }
2457     }
2458 }
2459
2460 static int mov_open_dref(AVIOContext **pb, const char *src, MOVDref *ref,
2461                          AVIOInterruptCB *int_cb, int use_absolute_path, AVFormatContext *fc)
2462 {
2463     /* try relative path, we do not try the absolute because it can leak information about our
2464        system to an attacker */
2465     if (ref->nlvl_to > 0 && ref->nlvl_from > 0) {
2466         char filename[1024];
2467         const char *src_path;
2468         int i, l;
2469
2470         /* find a source dir */
2471         src_path = strrchr(src, '/');
2472         if (src_path)
2473             src_path++;
2474         else
2475             src_path = src;
2476
2477         /* find a next level down to target */
2478         for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--)
2479             if (ref->path[l] == '/') {
2480                 if (i == ref->nlvl_to - 1)
2481                     break;
2482                 else
2483                     i++;
2484             }
2485
2486         /* compose filename if next level down to target was found */
2487         if (i == ref->nlvl_to - 1 && src_path - src  < sizeof(filename)) {
2488             memcpy(filename, src, src_path - src);
2489             filename[src_path - src] = 0;
2490
2491             for (i = 1; i < ref->nlvl_from; i++)
2492                 av_strlcat(filename, "../", 1024);
2493
2494             av_strlcat(filename, ref->path + l + 1, 1024);
2495
2496             if (!avio_open2(pb, filename, AVIO_FLAG_READ, int_cb, NULL))
2497                 return 0;
2498         }
2499     } else if (use_absolute_path) {
2500         av_log(fc, AV_LOG_WARNING, "Using absolute path on user request, "
2501                "this is a possible security issue\n");
2502         if (!avio_open2(pb, ref->path, AVIO_FLAG_READ, int_cb, NULL))
2503             return 0;
2504     }
2505
2506     return AVERROR(ENOENT);
2507 }
2508
2509 static void fix_timescale(MOVContext *c, MOVStreamContext *sc)
2510 {
2511     if (sc->time_scale <= 0) {
2512         av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", sc->ffindex);
2513         sc->time_scale = c->time_scale;
2514         if (sc->time_scale <= 0)
2515             sc->time_scale = 1;
2516     }
2517 }
2518
2519 static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2520 {
2521     AVStream *st;
2522     MOVStreamContext *sc;
2523     int ret;
2524
2525     st = avformat_new_stream(c->fc, NULL);
2526     if (!st) return AVERROR(ENOMEM);
2527     st->id = c->fc->nb_streams;
2528     sc = av_mallocz(sizeof(MOVStreamContext));
2529     if (!sc) return AVERROR(ENOMEM);
2530
2531     st->priv_data = sc;
2532     st->codec->codec_type = AVMEDIA_TYPE_DATA;
2533     sc->ffindex = st->index;
2534
2535     if ((ret = mov_read_default(c, pb, atom)) < 0)
2536         return ret;
2537
2538     /* sanity checks */
2539     if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count ||
2540                             (!sc->sample_size && !sc->sample_count))) {
2541         av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n",
2542                st->index);
2543         return 0;
2544     }
2545
2546     fix_timescale(c, sc);
2547
2548     avpriv_set_pts_info(st, 64, 1, sc->time_scale);
2549
2550     mov_build_index(c, st);
2551
2552     if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) {
2553         MOVDref *dref = &sc->drefs[sc->dref_id - 1];
2554         if (mov_open_dref(&sc->pb, c->fc->filename, dref, &c->fc->interrupt_callback,
2555             c->use_absolute_path, c->fc) < 0)
2556             av_log(c->fc, AV_LOG_ERROR,
2557                    "stream %d, error opening alias: path='%s', dir='%s', "
2558                    "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n",
2559                    st->index, dref->path, dref->dir, dref->filename,
2560                    dref->volume, dref->nlvl_from, dref->nlvl_to);
2561     } else {
2562         sc->pb = c->fc->pb;
2563         sc->pb_is_copied = 1;
2564     }
2565
2566     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
2567         if (!st->sample_aspect_ratio.num &&
2568             (st->codec->width != sc->width || st->codec->height != sc->height)) {
2569             st->sample_aspect_ratio = av_d2q(((double)st->codec->height * sc->width) /
2570                                              ((double)st->codec->width * sc->height), INT_MAX);
2571         }
2572
2573 #if FF_API_R_FRAME_RATE
2574         if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
2575             av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
2576                       sc->time_scale, sc->stts_data[0].duration, INT_MAX);
2577 #endif
2578     }
2579
2580     // done for ai5q, ai52, ai55, ai1q, ai12 and ai15.
2581     if (!st->codec->extradata_size && st->codec->codec_id == AV_CODEC_ID_H264 &&
2582         TAG_IS_AVCI(st->codec->codec_tag)) {
2583         ret = ff_generate_avci_extradata(st);
2584         if (ret < 0)
2585             return ret;
2586     }
2587
2588     switch (st->codec->codec_id) {
2589 #if CONFIG_H261_DECODER
2590     case AV_CODEC_ID_H261:
2591 #endif
2592 #if CONFIG_H263_DECODER
2593     case AV_CODEC_ID_H263:
2594 #endif
2595 #if CONFIG_MPEG4_DECODER
2596     case AV_CODEC_ID_MPEG4:
2597 #endif
2598         st->codec->width = 0; /* let decoder init width/height */
2599         st->codec->height= 0;
2600         break;
2601     }
2602
2603     /* Do not need those anymore. */
2604     av_freep(&sc->chunk_offsets);
2605     av_freep(&sc->stsc_data);
2606     av_freep(&sc->sample_sizes);
2607     av_freep(&sc->keyframes);
2608     av_freep(&sc->stts_data);
2609     av_freep(&sc->stps_data);
2610     av_freep(&sc->rap_group);
2611
2612     return 0;
2613 }
2614
2615 static int mov_read_ilst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2616 {
2617     int ret;
2618     c->itunes_metadata = 1;
2619     ret = mov_read_default(c, pb, atom);
2620     c->itunes_metadata = 0;
2621     return ret;
2622 }
2623
2624 static int mov_read_custom_2plus(MOVContext *c, AVIOContext *pb, int size)
2625 {
2626     int64_t end = avio_tell(pb) + size;
2627     uint8_t *key = NULL, *val = NULL;
2628     int i;
2629     AVStream *st;
2630     MOVStreamContext *sc;
2631
2632     if (c->fc->nb_streams < 1)
2633         return 0;
2634     st = c->fc->streams[c->fc->nb_streams-1];
2635     sc = st->priv_data;
2636
2637     for (i = 0; i < 2; i++) {
2638         uint8_t **p;
2639         uint32_t len, tag;
2640
2641         if (end - avio_tell(pb) <= 12)
2642             break;
2643
2644         len = avio_rb32(pb);
2645         tag = avio_rl32(pb);
2646         avio_skip(pb, 4); // flags
2647
2648         if (len < 12 || len - 12 > end - avio_tell(pb))
2649             break;
2650         len -= 12;
2651
2652         if (tag == MKTAG('n', 'a', 'm', 'e'))
2653             p = &key;
2654         else if (tag == MKTAG('d', 'a', 't', 'a') && len > 4) {
2655             avio_skip(pb, 4);
2656             len -= 4;
2657             p = &val;
2658         } else
2659             break;
2660
2661         *p = av_malloc(len + 1);
2662         if (!*p)
2663             break;
2664         avio_read(pb, *p, len);
2665         (*p)[len] = 0;
2666     }
2667
2668     if (key && val) {
2669         if (strcmp(key, "iTunSMPB") == 0) {
2670             int priming, remainder, samples;
2671             if(sscanf(val, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
2672                 if(priming>0 && priming<16384)
2673                     sc->start_pad = priming;
2674             }
2675         }
2676         if (strcmp(key, "cdec") != 0) {
2677             av_dict_set(&c->fc->metadata, key, val,
2678                         AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
2679             key = val = NULL;
2680         }
2681     }
2682
2683     avio_seek(pb, end, SEEK_SET);
2684     av_freep(&key);
2685     av_freep(&val);
2686     return 0;
2687 }
2688
2689 static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2690 {
2691     int64_t end = avio_tell(pb) + atom.size;
2692     uint32_t tag, len;
2693
2694     if (atom.size < 8)
2695         goto fail;
2696
2697     len = avio_rb32(pb);
2698     tag = avio_rl32(pb);
2699
2700     if (len > atom.size)
2701         goto fail;
2702
2703     if (tag == MKTAG('m', 'e', 'a', 'n') && len > 12) {
2704         uint8_t domain[128];
2705         int domain_len;
2706
2707         avio_skip(pb, 4); // flags
2708         len -= 12;
2709
2710         domain_len = avio_get_str(pb, len, domain, sizeof(domain));
2711         avio_skip(pb, len - domain_len);
2712         return mov_read_custom_2plus(c, pb, end - avio_tell(pb));
2713     }
2714
2715 fail:
2716     av_log(c->fc, AV_LOG_VERBOSE,
2717            "Unhandled or malformed custom metadata of size %"PRId64"\n", atom.size);
2718     return 0;
2719 }
2720
2721 static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2722 {
2723     while (atom.size > 8) {
2724         uint32_t tag = avio_rl32(pb);
2725         atom.size -= 4;
2726         if (tag == MKTAG('h','d','l','r')) {
2727             avio_seek(pb, -8, SEEK_CUR);
2728             atom.size += 8;
2729             return mov_read_default(c, pb, atom);
2730         }
2731     }
2732     return 0;
2733 }
2734
2735 static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2736 {
2737     int i;
2738     int width;
2739     int height;
2740     int64_t disp_transform[2];
2741     int display_matrix[3][3];
2742     AVStream *st;
2743     MOVStreamContext *sc;
2744     int version;
2745     int flags;
2746
2747     if (c->fc->nb_streams < 1)
2748         return 0;
2749     st = c->fc->streams[c->fc->nb_streams-1];
2750     sc = st->priv_data;
2751
2752     version = avio_r8(pb);
2753     flags = avio_rb24(pb);
2754     st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0;
2755
2756     if (version == 1) {
2757         avio_rb64(pb);
2758         avio_rb64(pb);
2759     } else {
2760         avio_rb32(pb); /* creation time */
2761         avio_rb32(pb); /* modification time */
2762     }
2763     st->id = (int)avio_rb32(pb); /* track id (NOT 0 !)*/
2764     avio_rb32(pb); /* reserved */
2765
2766     /* highlevel (considering edits) duration in movie timebase */
2767     (version == 1) ? avio_rb64(pb) : avio_rb32(pb);
2768     avio_rb32(pb); /* reserved */
2769     avio_rb32(pb); /* reserved */
2770
2771     avio_rb16(pb); /* layer */
2772     avio_rb16(pb); /* alternate group */
2773     avio_rb16(pb); /* volume */
2774     avio_rb16(pb); /* reserved */
2775
2776     //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2)
2777     // they're kept in fixed point format through all calculations
2778     // save u,v,z to store the whole matrix in the AV_PKT_DATA_DISPLAYMATRIX
2779     // side data, but the scale factor is not needed to calculate aspect ratio
2780     for (i = 0; i < 3; i++) {
2781         display_matrix[i][0] = avio_rb32(pb);   // 16.16 fixed point
2782         display_matrix[i][1] = avio_rb32(pb);   // 16.16 fixed point
2783         display_matrix[i][2] = avio_rb32(pb);   //  2.30 fixed point
2784     }
2785
2786     width = avio_rb32(pb);       // 16.16 fixed point track width
2787     height = avio_rb32(pb);      // 16.16 fixed point track height
2788     sc->width = width >> 16;
2789     sc->height = height >> 16;
2790
2791     // save the matrix and add rotate metadata when it is not the default
2792     // identity
2793     if (display_matrix[0][0] != (1 << 16) ||
2794         display_matrix[1][1] != (1 << 16) ||
2795         display_matrix[2][2] != (1 << 30) ||
2796         display_matrix[0][1] || display_matrix[0][2] ||
2797         display_matrix[1][0] || display_matrix[1][2] ||
2798         display_matrix[2][0] || display_matrix[2][1]) {
2799         int i, j;
2800         double rotate;
2801
2802         av_freep(&sc->display_matrix);
2803         sc->display_matrix = av_malloc(sizeof(int32_t) * 9);
2804         if (!sc->display_matrix)
2805             return AVERROR(ENOMEM);
2806
2807         for (i = 0; i < 3; i++)
2808             for (j = 0; j < 3; j++)
2809                 sc->display_matrix[i * 3 + j] = display_matrix[j][i];
2810
2811         rotate = av_display_rotation_get(sc->display_matrix);
2812         if (!isnan(rotate)) {
2813             char rotate_buf[64];
2814             rotate = -rotate;
2815             if (rotate < 0) // for backward compatibility
2816                 rotate += 360;
2817             snprintf(rotate_buf, sizeof(rotate_buf), "%g", rotate);
2818             av_dict_set(&st->metadata, "rotate", rotate_buf, 0);
2819         }
2820     }
2821
2822     // transform the display width/height according to the matrix
2823     // skip this if the display matrix is the default identity matrix
2824     // or if it is rotating the picture, ex iPhone 3GS
2825     // to keep the same scale, use [width height 1<<16]
2826     if (width && height &&
2827         ((display_matrix[0][0] != 65536  ||
2828           display_matrix[1][1] != 65536) &&
2829          !display_matrix[0][1] &&
2830          !display_matrix[1][0] &&
2831          !display_matrix[2][0] && !display_matrix[2][1])) {
2832         for (i = 0; i < 2; i++)
2833             disp_transform[i] =
2834                 (int64_t)  width  * display_matrix[0][i] +
2835                 (int64_t)  height * display_matrix[1][i] +
2836                 ((int64_t) display_matrix[2][i] << 16);
2837
2838         //sample aspect ratio is new width/height divided by old width/height
2839         st->sample_aspect_ratio = av_d2q(
2840             ((double) disp_transform[0] * height) /
2841             ((double) disp_transform[1] * width), INT_MAX);
2842     }
2843     return 0;
2844 }
2845
2846 static int mov_read_tfhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2847 {
2848     MOVFragment *frag = &c->fragment;
2849     MOVTrackExt *trex = NULL;
2850     MOVFragmentIndex* index = NULL;
2851     int flags, track_id, i;
2852
2853     avio_r8(pb); /* version */
2854     flags = avio_rb24(pb);
2855
2856     track_id = avio_rb32(pb);
2857     if (!track_id)
2858         return AVERROR_INVALIDDATA;
2859     frag->track_id = track_id;
2860     for (i = 0; i < c->trex_count; i++)
2861         if (c->trex_data[i].track_id == frag->track_id) {
2862             trex = &c->trex_data[i];
2863             break;
2864         }
2865     if (!trex) {
2866         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n");
2867         return AVERROR_INVALIDDATA;
2868     }
2869     for (i = 0; i < c->fragment_index_count; i++) {
2870         MOVFragmentIndex* candidate = c->fragment_index_data[i];
2871         if (candidate->track_id == frag->track_id) {
2872             av_log(c->fc, AV_LOG_DEBUG,
2873                    "found fragment index for track %u\n", frag->track_id);
2874             index = candidate;
2875             break;
2876         }
2877     }
2878
2879     frag->base_data_offset = flags & MOV_TFHD_BASE_DATA_OFFSET ?
2880                              avio_rb64(pb) : flags & MOV_TFHD_DEFAULT_BASE_IS_MOOF ?
2881                              frag->moof_offset : frag->implicit_offset;
2882     frag->stsd_id  = flags & MOV_TFHD_STSD_ID ? avio_rb32(pb) : trex->stsd_id;
2883
2884     frag->duration = flags & MOV_TFHD_DEFAULT_DURATION ?
2885                      avio_rb32(pb) : trex->duration;
2886     frag->size     = flags & MOV_TFHD_DEFAULT_SIZE ?
2887                      avio_rb32(pb) : trex->size;
2888     frag->flags    = flags & MOV_TFHD_DEFAULT_FLAGS ?
2889                      avio_rb32(pb) : trex->flags;
2890     frag->time     = AV_NOPTS_VALUE;
2891     if (index) {
2892         int i, found = 0;
2893         for (i = index->current_item; i < index->item_count; i++) {
2894             if (frag->implicit_offset == index->items[i].moof_offset) {
2895                 av_log(c->fc, AV_LOG_DEBUG, "found fragment index entry "
2896                         "for track %u and moof_offset %"PRId64"\n",
2897                         frag->track_id, index->items[i].moof_offset);
2898                 frag->time = index->items[i].time;
2899                 index->current_item = i + 1;
2900                 found = 1;
2901             }
2902         }
2903         if (!found) {
2904             av_log(c->fc, AV_LOG_WARNING, "track %u has a fragment index "
2905                    "but it doesn't have an (in-order) entry for moof_offset "
2906                    "%"PRId64"\n", frag->track_id, frag->implicit_offset);
2907         }
2908     }
2909     av_dlog(c->fc, "frag flags 0x%x\n", frag->flags);
2910     return 0;
2911 }
2912
2913 static int mov_read_chap(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2914 {
2915     c->chapter_track = avio_rb32(pb);
2916     return 0;
2917 }
2918
2919 static int mov_read_trex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2920 {
2921     MOVTrackExt *trex;
2922     int err;
2923
2924     if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data))
2925         return AVERROR_INVALIDDATA;
2926     if ((err = av_reallocp_array(&c->trex_data, c->trex_count + 1,
2927                                  sizeof(*c->trex_data))) < 0) {
2928         c->trex_count = 0;
2929         return err;
2930     }
2931
2932     c->fc->duration = AV_NOPTS_VALUE; // the duration from mvhd is not representing the whole file when fragments are used.
2933
2934     trex = &c->trex_data[c->trex_count++];
2935     avio_r8(pb); /* version */
2936     avio_rb24(pb); /* flags */
2937     trex->track_id = avio_rb32(pb);
2938     trex->stsd_id  = avio_rb32(pb);
2939     trex->duration = avio_rb32(pb);
2940     trex->size     = avio_rb32(pb);
2941     trex->flags    = avio_rb32(pb);
2942     return 0;
2943 }
2944
2945 static int mov_read_tfdt(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2946 {
2947     MOVFragment *frag = &c->fragment;
2948     AVStream *st = NULL;
2949     MOVStreamContext *sc;
2950     int version, i;
2951
2952     for (i = 0; i < c->fc->nb_streams; i++) {
2953         if (c->fc->streams[i]->id == frag->track_id) {
2954             st = c->fc->streams[i];
2955             break;
2956         }
2957     }
2958     if (!st) {
2959         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
2960         return AVERROR_INVALIDDATA;
2961     }
2962     sc = st->priv_data;
2963     if (sc->pseudo_stream_id + 1 != frag->stsd_id)
2964         return 0;
2965     version = avio_r8(pb);
2966     avio_rb24(pb); /* flags */
2967     if (version) {
2968         sc->track_end = avio_rb64(pb);
2969     } else {
2970         sc->track_end = avio_rb32(pb);
2971     }
2972     return 0;
2973 }
2974
2975 static int mov_read_trun(MOVContext *c, AVIOContext *pb, MOVAtom atom)
2976 {
2977     MOVFragment *frag = &c->fragment;
2978     AVStream *st = NULL;
2979     MOVStreamContext *sc;
2980     MOVStts *ctts_data;
2981     uint64_t offset;
2982     int64_t dts;
2983     int data_offset = 0;
2984     unsigned entries, first_sample_flags = frag->flags;
2985     int flags, distance, i, found_keyframe = 0, err;
2986
2987     for (i = 0; i < c->fc->nb_streams; i++) {
2988         if (c->fc->streams[i]->id == frag->track_id) {
2989             st = c->fc->streams[i];
2990             break;
2991         }
2992     }
2993     if (!st) {
2994         av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id);
2995         return AVERROR_INVALIDDATA;
2996     }
2997     sc = st->priv_data;
2998     if (sc->pseudo_stream_id+1 != frag->stsd_id && sc->pseudo_stream_id != -1)
2999         return 0;
3000     avio_r8(pb); /* version */
3001     flags = avio_rb24(pb);
3002     entries = avio_rb32(pb);
3003     av_dlog(c->fc, "flags 0x%x entries %d\n", flags, entries);
3004
3005     /* Always assume the presence of composition time offsets.
3006      * Without this assumption, for instance, we cannot deal with a track in fragmented movies that meet the following.
3007      *  1) in the initial movie, there are no samples.
3008      *  2) in the first movie fragment, there is only one sample without composition time offset.
3009      *  3) in the subsequent movie fragments, there are samples with composition time offset. */
3010     if (!sc->ctts_count && sc->sample_count)
3011     {
3012         /* Complement ctts table if moov atom doesn't have ctts atom. */
3013         ctts_data = av_realloc(NULL, sizeof(*sc->ctts_data));
3014         if (!ctts_data)
3015             return AVERROR(ENOMEM);
3016         sc->ctts_data = ctts_data;
3017         sc->ctts_data[sc->ctts_count].count = sc->sample_count;
3018         sc->ctts_data[sc->ctts_count].duration = 0;
3019         sc->ctts_count++;
3020     }
3021     if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data))
3022         return AVERROR_INVALIDDATA;
3023     if ((err = av_reallocp_array(&sc->ctts_data, entries + sc->ctts_count,
3024                                  sizeof(*sc->ctts_data))) < 0) {
3025         sc->ctts_count = 0;
3026         return err;
3027     }
3028     if (flags & MOV_TRUN_DATA_OFFSET)        data_offset        = avio_rb32(pb);
3029     if (flags & MOV_TRUN_FIRST_SAMPLE_FLAGS) first_sample_flags = avio_rb32(pb);
3030     dts    = sc->track_end - sc->time_offset;
3031     offset = frag->base_data_offset + data_offset;
3032     distance = 0;
3033     av_dlog(c->fc, "first sample flags 0x%x\n", first_sample_flags);
3034     for (i = 0; i < entries && !pb->eof_reached; i++) {
3035         unsigned sample_size = frag->size;
3036         int sample_flags = i ? frag->flags : first_sample_flags;
3037         unsigned sample_duration = frag->duration;
3038         int keyframe = 0;
3039
3040         if (flags & MOV_TRUN_SAMPLE_DURATION) sample_duration = avio_rb32(pb);
3041         if (flags & MOV_TRUN_SAMPLE_SIZE)     sample_size     = avio_rb32(pb);
3042         if (flags & MOV_TRUN_SAMPLE_FLAGS)    sample_flags    = avio_rb32(pb);
3043         sc->ctts_data[sc->ctts_count].count = 1;
3044         sc->ctts_data[sc->ctts_count].duration = (flags & MOV_TRUN_SAMPLE_CTS) ?
3045                                                   avio_rb32(pb) : 0;
3046         mov_update_dts_shift(sc, sc->ctts_data[sc->ctts_count].duration);
3047         if (frag->time != AV_NOPTS_VALUE) {
3048             if (c->use_mfra_for == FF_MOV_FLAG_MFRA_PTS) {
3049                 int64_t pts = frag->time;
3050                 av_log(c->fc, AV_LOG_DEBUG, "found frag time %"PRId64
3051                         " sc->dts_shift %d ctts.duration %d"
3052                         " sc->time_offset %"PRId64" flags & MOV_TRUN_SAMPLE_CTS %d\n", pts,
3053                         sc->dts_shift, sc->ctts_data[sc->ctts_count].duration,
3054                         sc->time_offset, flags & MOV_TRUN_SAMPLE_CTS);
3055                 dts = pts - sc->dts_shift;
3056                 if (flags & MOV_TRUN_SAMPLE_CTS) {
3057                     dts -= sc->ctts_data[sc->ctts_count].duration;
3058                 } else {
3059                     dts -= sc->time_offset;
3060                 }
3061                 av_log(c->fc, AV_LOG_DEBUG, "calculated into dts %"PRId64"\n", dts);
3062             } else {
3063                 dts = frag->time;
3064                 av_log(c->fc, AV_LOG_DEBUG, "found frag time %"PRId64
3065                         ", using it for dts\n", dts);
3066             }
3067             frag->time = AV_NOPTS_VALUE;
3068         }
3069         sc->ctts_count++;
3070         if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
3071             keyframe = 1;
3072         else if (!found_keyframe)
3073             keyframe = found_keyframe =
3074                 !(sample_flags & (MOV_FRAG_SAMPLE_FLAG_IS_NON_SYNC |
3075                                   MOV_FRAG_SAMPLE_FLAG_DEPENDS_YES));
3076         if (keyframe)
3077             distance = 0;
3078         av_add_index_entry(st, offset, dts, sample_size, distance,
3079                            keyframe ? AVINDEX_KEYFRAME : 0);
3080         av_dlog(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", "
3081                 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i,
3082                 offset, dts, sample_size, distance, keyframe);
3083         distance++;
3084         dts += sample_duration;
3085         offset += sample_size;
3086         sc->data_size += sample_size;
3087         sc->duration_for_fps += sample_duration;
3088         sc->nb_frames_for_fps ++;
3089     }
3090
3091     if (pb->eof_reached)
3092         return AVERROR_EOF;
3093
3094     frag->implicit_offset = offset;
3095     st->duration = sc->track_end = dts + sc->time_offset;
3096     return 0;
3097 }
3098
3099 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
3100 /* like the files created with Adobe Premiere 5.0, for samples see */
3101 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
3102 static int mov_read_wide(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3103 {
3104     int err;
3105
3106     if (atom.size < 8)
3107         return 0; /* continue */
3108     if (avio_rb32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
3109         avio_skip(pb, atom.size - 4);
3110         return 0;
3111     }
3112     atom.type = avio_rl32(pb);
3113     atom.size -= 8;
3114     if (atom.type != MKTAG('m','d','a','t')) {
3115         avio_skip(pb, atom.size);
3116         return 0;
3117     }
3118     err = mov_read_mdat(c, pb, atom);
3119     return err;
3120 }
3121
3122 static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3123 {
3124 #if CONFIG_ZLIB
3125     AVIOContext ctx;
3126     uint8_t *cmov_data;
3127     uint8_t *moov_data; /* uncompressed data */
3128     long cmov_len, moov_len;
3129     int ret = -1;
3130
3131     avio_rb32(pb); /* dcom atom */
3132     if (avio_rl32(pb) != MKTAG('d','c','o','m'))
3133         return AVERROR_INVALIDDATA;
3134     if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
3135         av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !\n");
3136         return AVERROR_INVALIDDATA;
3137     }
3138     avio_rb32(pb); /* cmvd atom */
3139     if (avio_rl32(pb) != MKTAG('c','m','v','d'))
3140         return AVERROR_INVALIDDATA;
3141     moov_len = avio_rb32(pb); /* uncompressed size */
3142     cmov_len = atom.size - 6 * 4;
3143
3144     cmov_data = av_malloc(cmov_len);
3145     if (!cmov_data)
3146         return AVERROR(ENOMEM);
3147     moov_data = av_malloc(moov_len);
3148     if (!moov_data) {
3149         av_free(cmov_data);
3150         return AVERROR(ENOMEM);
3151     }
3152     avio_read(pb, cmov_data, cmov_len);
3153     if (uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
3154         goto free_and_return;
3155     if (ffio_init_context(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
3156         goto free_and_return;
3157     atom.type = MKTAG('m','o','o','v');
3158     atom.size = moov_len;
3159     ret = mov_read_default(c, &ctx, atom);
3160 free_and_return:
3161     av_free(moov_data);
3162     av_free(cmov_data);
3163     return ret;
3164 #else
3165     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
3166     return AVERROR(ENOSYS);
3167 #endif
3168 }
3169
3170 /* edit list atom */
3171 static int mov_read_elst(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3172 {
3173     MOVStreamContext *sc;
3174     int i, edit_count, version, edit_start_index = 0;
3175     int unsupported = 0;
3176
3177     if (c->fc->nb_streams < 1 || c->ignore_editlist)
3178         return 0;
3179     sc = c->fc->streams[c->fc->nb_streams-1]->priv_data;
3180
3181     version = avio_r8(pb); /* version */
3182     avio_rb24(pb); /* flags */
3183     edit_count = avio_rb32(pb); /* entries */
3184
3185     if ((uint64_t)edit_count*12+8 > atom.size)
3186         return AVERROR_INVALIDDATA;
3187
3188     av_dlog(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count);
3189     for (i=0; i<edit_count; i++){
3190         int64_t time;
3191         int64_t duration;
3192         int rate;
3193         if (version == 1) {
3194             duration = avio_rb64(pb);
3195             time     = avio_rb64(pb);
3196         } else {
3197             duration = avio_rb32(pb); /* segment duration */
3198             time     = (int32_t)avio_rb32(pb); /* media time */
3199         }
3200         rate = avio_rb32(pb);
3201         if (i == 0 && time == -1) {
3202             sc->empty_duration = duration;
3203             edit_start_index = 1;
3204         } else if (i == edit_start_index && time >= 0)
3205             sc->start_time = time;
3206         else
3207             unsupported = 1;
3208
3209         av_dlog(c->fc, "duration=%"PRId64" time=%"PRId64" rate=%f\n",
3210                 duration, time, rate / 65536.0);
3211     }
3212
3213     if (unsupported)
3214         av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, "
3215                "a/v desync might occur, patch welcome\n");
3216
3217     return 0;
3218 }
3219
3220 static int mov_read_tmcd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3221 {
3222     MOVStreamContext *sc;
3223
3224     if (c->fc->nb_streams < 1)
3225         return AVERROR_INVALIDDATA;
3226     sc = c->fc->streams[c->fc->nb_streams - 1]->priv_data;
3227     sc->timecode_track = avio_rb32(pb);
3228     return 0;
3229 }
3230
3231 static int mov_read_uuid(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3232 {
3233     int ret;
3234     uint8_t uuid[16];
3235     static const uint8_t uuid_isml_manifest[] = {
3236         0xa5, 0xd4, 0x0b, 0x30, 0xe8, 0x14, 0x11, 0xdd,
3237         0xba, 0x2f, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66
3238     };
3239
3240     if (atom.size < sizeof(uuid) || atom.size == INT64_MAX)
3241         return AVERROR_INVALIDDATA;
3242
3243     ret = avio_read(pb, uuid, sizeof(uuid));
3244     if (ret < 0) {
3245         return ret;
3246     } else if (ret != sizeof(uuid)) {
3247         return AVERROR_INVALIDDATA;
3248     }
3249     if (!memcmp(uuid, uuid_isml_manifest, sizeof(uuid))) {
3250         uint8_t *buffer, *ptr;
3251         char *endptr;
3252         size_t len = atom.size - sizeof(uuid);
3253
3254         if (len < 4) {
3255             return AVERROR_INVALIDDATA;
3256         }
3257         ret = avio_skip(pb, 4); // zeroes
3258         len -= 4;
3259
3260         buffer = av_mallocz(len + 1);
3261         if (!buffer) {
3262             return AVERROR(ENOMEM);
3263         }
3264         ret = avio_read(pb, buffer, len);
3265         if (ret < 0) {
3266             av_free(buffer);
3267             return ret;
3268         } else if (ret != len) {
3269             av_free(buffer);
3270             return AVERROR_INVALIDDATA;
3271         }
3272
3273         ptr = buffer;
3274         while ((ptr = av_stristr(ptr, "systemBitrate=\""))) {
3275             ptr += sizeof("systemBitrate=\"") - 1;
3276             c->bitrates_count++;
3277             c->bitrates = av_realloc_f(c->bitrates, c->bitrates_count, sizeof(*c->bitrates));
3278             if (!c->bitrates) {
3279                 c->bitrates_count = 0;
3280                 av_free(buffer);
3281                 return AVERROR(ENOMEM);
3282             }
3283             errno = 0;
3284             ret = strtol(ptr, &endptr, 10);
3285             if (ret < 0 || errno || *endptr != '"') {
3286                 c->bitrates[c->bitrates_count - 1] = 0;
3287             } else {
3288                 c->bitrates[c->bitrates_count - 1] = ret;
3289             }
3290         }
3291
3292         av_free(buffer);
3293     }
3294     return 0;
3295 }
3296
3297 static int mov_read_free(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3298 {
3299     int ret;
3300     uint8_t content[16];
3301
3302     if (atom.size < 8)
3303         return 0;
3304
3305     ret = avio_read(pb, content, FFMIN(sizeof(content), atom.size));
3306     if (ret < 0)
3307         return ret;
3308
3309     if (   !c->found_moov
3310         && !c->found_mdat
3311         && !memcmp(content, "Anevia\x1A\x1A", 8)
3312         && c->use_mfra_for == FF_MOV_FLAG_MFRA_AUTO) {
3313         c->use_mfra_for = FF_MOV_FLAG_MFRA_PTS;
3314     }
3315
3316     return 0;
3317 }
3318
3319 static const MOVParseTableEntry mov_default_parse_table[] = {
3320 { MKTAG('A','C','L','R'), mov_read_avid },
3321 { MKTAG('A','P','R','G'), mov_read_avid },
3322 { MKTAG('A','A','L','P'), mov_read_avid },
3323 { MKTAG('A','R','E','S'), mov_read_ares },
3324 { MKTAG('a','v','s','s'), mov_read_avss },
3325 { MKTAG('c','h','p','l'), mov_read_chpl },
3326 { MKTAG('c','o','6','4'), mov_read_stco },
3327 { MKTAG('c','o','l','r'), mov_read_colr },
3328 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */
3329 { MKTAG('d','i','n','f'), mov_read_default },
3330 { MKTAG('d','r','e','f'), mov_read_dref },
3331 { MKTAG('e','d','t','s'), mov_read_default },
3332 { MKTAG('e','l','s','t'), mov_read_elst },
3333 { MKTAG('e','n','d','a'), mov_read_enda },
3334 { MKTAG('f','i','e','l'), mov_read_fiel },
3335 { MKTAG('f','t','y','p'), mov_read_ftyp },
3336 { MKTAG('g','l','b','l'), mov_read_glbl },
3337 { MKTAG('h','d','l','r'), mov_read_hdlr },
3338 { MKTAG('i','l','s','t'), mov_read_ilst },
3339 { MKTAG('j','p','2','h'), mov_read_jp2h },
3340 { MKTAG('m','d','a','t'), mov_read_mdat },
3341 { MKTAG('m','d','h','d'), mov_read_mdhd },
3342 { MKTAG('m','d','i','a'), mov_read_default },
3343 { MKTAG('m','e','t','a'), mov_read_meta },
3344 { MKTAG('m','i','n','f'), mov_read_default },
3345 { MKTAG('m','o','o','f'), mov_read_moof },
3346 { MKTAG('m','o','o','v'), mov_read_moov },
3347 { MKTAG('m','v','e','x'), mov_read_default },
3348 { MKTAG('m','v','h','d'), mov_read_mvhd },
3349 { MKTAG('S','M','I',' '), mov_read_svq3 },
3350 { MKTAG('a','l','a','c'), mov_read_alac }, /* alac specific atom */
3351 { MKTAG('a','v','c','C'), mov_read_glbl },
3352 { MKTAG('p','a','s','p'), mov_read_pasp },
3353 { MKTAG('s','t','b','l'), mov_read_default },
3354 { MKTAG('s','t','c','o'), mov_read_stco },
3355 { MKTAG('s','t','p','s'), mov_read_stps },
3356 { MKTAG('s','t','r','f'), mov_read_strf },
3357 { MKTAG('s','t','s','c'), mov_read_stsc },
3358 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */
3359 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */
3360 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */
3361 { MKTAG('s','t','t','s'), mov_read_stts },
3362 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */
3363 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */
3364 { MKTAG('t','f','d','t'), mov_read_tfdt },
3365 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */
3366 { MKTAG('t','r','a','k'), mov_read_trak },
3367 { MKTAG('t','r','a','f'), mov_read_default },
3368 { MKTAG('t','r','e','f'), mov_read_default },
3369 { MKTAG('t','m','c','d'), mov_read_tmcd },
3370 { MKTAG('c','h','a','p'), mov_read_chap },
3371 { MKTAG('t','r','e','x'), mov_read_trex },
3372 { MKTAG('t','r','u','n'), mov_read_trun },
3373 { MKTAG('u','d','t','a'), mov_read_default },
3374 { MKTAG('w','a','v','e'), mov_read_wave },
3375 { MKTAG('e','s','d','s'), mov_read_esds },
3376 { MKTAG('d','a','c','3'), mov_read_dac3 }, /* AC-3 info */
3377 { MKTAG('d','e','c','3'), mov_read_dec3 }, /* EAC-3 info */
3378 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */
3379 { MKTAG('w','f','e','x'), mov_read_wfex },
3380 { MKTAG('c','m','o','v'), mov_read_cmov },
3381 { MKTAG('c','h','a','n'), mov_read_chan }, /* channel layout */
3382 { MKTAG('d','v','c','1'), mov_read_dvc1 },
3383 { MKTAG('s','b','g','p'), mov_read_sbgp },
3384 { MKTAG('h','v','c','C'), mov_read_glbl },
3385 { MKTAG('u','u','i','d'), mov_read_uuid },
3386 { MKTAG('C','i','n', 0x8e), mov_read_targa_y216 },
3387 { MKTAG('f','r','e','e'), mov_read_free },
3388 { MKTAG('-','-','-','-'), mov_read_custom },
3389 { 0, NULL }
3390 };
3391
3392 static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
3393 {
3394     int64_t total_size = 0;
3395     MOVAtom a;
3396     int i;
3397
3398     if (atom.size < 0)
3399         atom.size = INT64_MAX;
3400     while (total_size + 8 <= atom.size && !avio_feof(pb)) {
3401         int (*parse)(MOVContext*, AVIOContext*, MOVAtom) = NULL;
3402         a.size = atom.size;
3403         a.type=0;
3404         if (atom.size >= 8) {
3405             a.size = avio_rb32(pb);
3406             a.type = avio_rl32(pb);
3407             if (a.type == MKTAG('f','r','e','e') &&
3408                 a.size >= 8 &&
3409                 c->moov_retry) {
3410                 uint8_t buf[8];
3411                 uint32_t *type = (uint32_t *)buf + 1;
3412                 avio_read(pb, buf, 8);
3413                 avio_seek(pb, -8, SEEK_CUR);
3414                 if (*type == MKTAG('m','v','h','d') ||
3415                     *type == MKTAG('c','m','o','v')) {
3416                     av_log(c->fc, AV_LOG_ERROR, "Detected moov in a free atom.\n");
3417                     a.type = MKTAG('m','o','o','v');
3418                 }
3419             }
3420             if (atom.type != MKTAG('r','o','o','t') &&
3421                 atom.type != MKTAG('m','o','o','v'))
3422             {
3423                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
3424                 {
3425                     av_log(c->fc, AV_LOG_ERROR, "Broken file, trak/mdat not at top-level\n");
3426                     avio_skip(pb, -8);
3427                     return 0;
3428                 }
3429             }
3430             total_size += 8;
3431             if (a.size == 1) { /* 64 bit extended size */
3432                 a.size = avio_rb64(pb) - 8;
3433                 total_size += 8;
3434             }
3435         }
3436         av_dlog(c->fc, "type: %08x '%.4s' parent:'%.4s' sz: %"PRId64" %"PRId64" %"PRId64"\n",
3437                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
3438         if (a.size == 0) {
3439             a.size = atom.size - total_size + 8;
3440         }
3441         a.size -= 8;
3442         if (a.size < 0)
3443             break;
3444         a.size = FFMIN(a.size, atom.size - total_size);
3445
3446         for (i = 0; mov_default_parse_table[i].type; i++)
3447             if (mov_default_parse_table[i].type == a.type) {
3448                 parse = mov_default_parse_table[i].parse;
3449                 break;
3450             }
3451
3452         // container is user data
3453         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
3454                        atom.type == MKTAG('i','l','s','t')))
3455             parse = mov_read_udta_string;
3456
3457         if (!parse) { /* skip leaf atoms data */
3458             avio_skip(pb, a.size);
3459         } else {
3460             int64_t start_pos = avio_tell(pb);
3461             int64_t left;
3462             int err = parse(c, pb, a);
3463             if (err < 0)
3464                 return err;
3465             if (c->found_moov && c->found_mdat &&
3466                 ((!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX) ||
3467                  start_pos + a.size == avio_size(pb))) {
3468                 if (!pb->seekable || c->fc->flags & AVFMT_FLAG_IGNIDX)
3469                     c->next_root_atom = start_pos + a.size;
3470                 return 0;
3471             }
3472             left = a.size - avio_tell(pb) + start_pos;
3473             if (left > 0) /* skip garbage at atom end */
3474                 avio_skip(pb, left);
3475             else if (left < 0) {
3476                 av_log(c->fc, AV_LOG_WARNING,
3477                        "overread end of atom '%.4s' by %"PRId64" bytes\n",
3478                        (char*)&a.type, -left);
3479                 avio_seek(pb, left, SEEK_CUR);
3480             }
3481         }
3482
3483         total_size += a.size;
3484     }
3485
3486     if (total_size < atom.size && atom.size < 0x7ffff)
3487         avio_skip(pb, atom.size - total_size);
3488
3489     return 0;
3490 }
3491
3492 static int mov_probe(AVProbeData *p)
3493 {
3494     int64_t offset;
3495     uint32_t tag;
3496     int score = 0;
3497     int moov_offset = -1;
3498
3499     /* check file header */
3500     offset = 0;
3501     for (;;) {
3502         /* ignore invalid offset */
3503         if ((offset + 8) > (unsigned int)p->buf_size)
3504             break;
3505         tag = AV_RL32(p->buf + offset + 4);
3506         switch(tag) {
3507         /* check for obvious tags */
3508         case MKTAG('m','o','o','v'):
3509             moov_offset = offset + 4;
3510         case MKTAG('m','d','a','t'):
3511         case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */
3512         case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */
3513         case MKTAG('f','t','y','p'):
3514             if (AV_RB32(p->buf+offset) < 8 &&
3515                 (AV_RB32(p->buf+offset) != 1 ||
3516                  offset + 12 > (unsigned int)p->buf_size ||
3517                  AV_RB64(p->buf+offset + 8) == 0)) {
3518                 score = FFMAX(score, AVPROBE_SCORE_EXTENSION);
3519             } else if (tag == MKTAG('f','t','y','p') &&
3520                        AV_RL32(p->buf + offset + 8) == MKTAG('j','p','2',' ')) {
3521                 score = FFMAX(score, 5);
3522             } else {
3523                 score = AVPROBE_SCORE_MAX;
3524             }
3525             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3526             break;
3527         /* those are more common words, so rate then a bit less */
3528         case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */
3529         case MKTAG('w','i','d','e'):
3530         case MKTAG('f','r','e','e'):
3531         case MKTAG('j','u','n','k'):
3532         case MKTAG('p','i','c','t'):
3533             score  = FFMAX(score, AVPROBE_SCORE_MAX - 5);
3534             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3535             break;
3536         case MKTAG(0x82,0x82,0x7f,0x7d):
3537         case MKTAG('s','k','i','p'):
3538         case MKTAG('u','u','i','d'):
3539         case MKTAG('p','r','f','l'):
3540             /* if we only find those cause probedata is too small at least rate them */
3541             score  = FFMAX(score, AVPROBE_SCORE_EXTENSION);
3542             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3543             break;
3544         default:
3545             offset = FFMAX(4, AV_RB32(p->buf+offset)) + offset;
3546         }
3547     }
3548     if(score > AVPROBE_SCORE_MAX - 50 && moov_offset != -1) {
3549         /* moov atom in the header - we should make sure that this is not a
3550          * MOV-packed MPEG-PS */
3551         offset = moov_offset;
3552
3553         while(offset < (p->buf_size - 16)){ /* Sufficient space */
3554                /* We found an actual hdlr atom */
3555             if(AV_RL32(p->buf + offset     ) == MKTAG('h','d','l','r') &&
3556                AV_RL32(p->buf + offset +  8) == MKTAG('m','h','l','r') &&
3557                AV_RL32(p->buf + offset + 12) == MKTAG('M','P','E','G')){
3558                 av_log(NULL, AV_LOG_WARNING, "Found media data tag MPEG indicating this is a MOV-packed MPEG-PS.\n");
3559                 /* We found a media handler reference atom describing an
3560                  * MPEG-PS-in-MOV, return a
3561                  * low score to force expanding the probe window until
3562                  * mpegps_probe finds what it needs */
3563                 return 5;
3564             }else
3565                 /* Keep looking */
3566                 offset+=2;
3567         }
3568     }
3569
3570     return score;
3571 }
3572
3573 // must be done after parsing all trak because there's no order requirement
3574 static void mov_read_chapters(AVFormatContext *s)
3575 {
3576     MOVContext *mov = s->priv_data;
3577     AVStream *st = NULL;
3578     MOVStreamContext *sc;
3579     int64_t cur_pos;
3580     int i;
3581
3582     for (i = 0; i < s->nb_streams; i++)
3583         if (s->streams[i]->id == mov->chapter_track) {
3584             st = s->streams[i];
3585             break;
3586         }
3587     if (!st) {
3588         av_log(s, AV_LOG_ERROR, "Referenced QT chapter track not found\n");
3589         return;
3590     }
3591
3592     st->discard = AVDISCARD_ALL;
3593     sc = st->priv_data;
3594     cur_pos = avio_tell(sc->pb);
3595
3596     for (i = 0; i < st->nb_index_entries; i++) {
3597         AVIndexEntry *sample = &st->index_entries[i];
3598         int64_t end = i+1 < st->nb_index_entries ? st->index_entries[i+1].timestamp : st->duration;
3599         uint8_t *title;
3600         uint16_t ch;
3601         int len, title_len;
3602
3603         if (end < sample->timestamp) {
3604             av_log(s, AV_LOG_WARNING, "ignoring stream duration which is shorter than chapters\n");
3605             end = AV_NOPTS_VALUE;
3606         }
3607
3608         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
3609             av_log(s, AV_LOG_ERROR, "Chapter %d not found in file\n", i);
3610             goto finish;
3611         }
3612
3613         // the first two bytes are the length of the title
3614         len = avio_rb16(sc->pb);
3615         if (len > sample->size-2)
3616             continue;
3617         title_len = 2*len + 1;
3618         if (!(title = av_mallocz(title_len)))
3619             goto finish;
3620
3621         // The samples could theoretically be in any encoding if there's an encd
3622         // atom following, but in practice are only utf-8 or utf-16, distinguished
3623         // instead by the presence of a BOM
3624         if (!len) {
3625             title[0] = 0;
3626         } else {
3627             ch = avio_rb16(sc->pb);
3628             if (ch == 0xfeff)
3629                 avio_get_str16be(sc->pb, len, title, title_len);
3630             else if (ch == 0xfffe)
3631                 avio_get_str16le(sc->pb, len, title, title_len);
3632             else {
3633                 AV_WB16(title, ch);
3634                 if (len == 1 || len == 2)
3635                     title[len] = 0;
3636                 else
3637                     avio_get_str(sc->pb, INT_MAX, title + 2, len - 1);
3638             }
3639         }
3640
3641         avpriv_new_chapter(s, i, st->time_base, sample->timestamp, end, title);
3642         av_freep(&title);
3643     }
3644 finish:
3645     avio_seek(sc->pb, cur_pos, SEEK_SET);
3646 }
3647
3648 static int parse_timecode_in_framenum_format(AVFormatContext *s, AVStream *st,
3649                                              uint32_t value, int flags)
3650 {
3651     AVTimecode tc;
3652     char buf[AV_TIMECODE_STR_SIZE];
3653     AVRational rate = {st->codec->time_base.den,
3654                        st->codec->time_base.num};
3655     int ret = av_timecode_init(&tc, rate, flags, 0, s);
3656     if (ret < 0)
3657         return ret;
3658     av_dict_set(&st->metadata, "timecode",
3659                 av_timecode_make_string(&tc, buf, value), 0);
3660     return 0;
3661 }
3662
3663 static int mov_read_timecode_track(AVFormatContext *s, AVStream *st)
3664 {
3665     MOVStreamContext *sc = st->priv_data;
3666     int flags = 0;
3667     int64_t cur_pos = avio_tell(sc->pb);
3668     uint32_t value;
3669
3670     if (!st->nb_index_entries)
3671         return -1;
3672
3673     avio_seek(sc->pb, st->index_entries->pos, SEEK_SET);
3674     value = avio_rb32(s->pb);
3675
3676     if (sc->tmcd_flags & 0x0001) flags |= AV_TIMECODE_FLAG_DROPFRAME;
3677     if (sc->tmcd_flags & 0x0002) flags |= AV_TIMECODE_FLAG_24HOURSMAX;
3678     if (sc->tmcd_flags & 0x0004) flags |= AV_TIMECODE_FLAG_ALLOWNEGATIVE;
3679
3680     /* Assume Counter flag is set to 1 in tmcd track (even though it is likely
3681      * not the case) and thus assume "frame number format" instead of QT one.
3682      * No sample with tmcd track can be found with a QT timecode at the moment,
3683      * despite what the tmcd track "suggests" (Counter flag set to 0 means QT
3684      * format). */
3685     parse_timecode_in_framenum_format(s, st, value, flags);
3686
3687     avio_seek(sc->pb, cur_pos, SEEK_SET);
3688     return 0;
3689 }
3690
3691 static int mov_read_close(AVFormatContext *s)
3692 {
3693     MOVContext *mov = s->priv_data;
3694     int i, j;
3695
3696     for (i = 0; i < s->nb_streams; i++) {
3697         AVStream *st = s->streams[i];
3698         MOVStreamContext *sc = st->priv_data;
3699
3700         av_freep(&sc->ctts_data);
3701         for (j = 0; j < sc->drefs_count; j++) {
3702             av_freep(&sc->drefs[j].path);
3703             av_freep(&sc->drefs[j].dir);
3704         }
3705         av_freep(&sc->drefs);
3706
3707         sc->drefs_count = 0;
3708
3709         if (!sc->pb_is_copied)
3710             avio_close(sc->pb);
3711
3712         sc->pb = NULL;
3713         av_freep(&sc->chunk_offsets);
3714         av_freep(&sc->stsc_data);
3715         av_freep(&sc->sample_sizes);
3716         av_freep(&sc->keyframes);
3717         av_freep(&sc->stts_data);
3718         av_freep(&sc->stps_data);
3719         av_freep(&sc->rap_group);
3720         av_freep(&sc->display_matrix);
3721     }
3722
3723     if (mov->dv_demux) {
3724         avformat_free_context(mov->dv_fctx);
3725         mov->dv_fctx = NULL;
3726     }
3727
3728     av_freep(&mov->trex_data);
3729     av_freep(&mov->bitrates);
3730
3731     for (i = 0; i < mov->fragment_index_count; i++) {
3732         MOVFragmentIndex* index = mov->fragment_index_data[i];
3733         av_freep(&index->items);
3734         av_freep(&mov->fragment_index_data[i]);
3735     }
3736     av_freep(&mov->fragment_index_data);
3737
3738     return 0;
3739 }
3740
3741 static int tmcd_is_referenced(AVFormatContext *s, int tmcd_id)
3742 {
3743     int i;
3744
3745     for (i = 0; i < s->nb_streams; i++) {
3746         AVStream *st = s->streams[i];
3747         MOVStreamContext *sc = st->priv_data;
3748
3749         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
3750             sc->timecode_track == tmcd_id)
3751             return 1;
3752     }
3753     return 0;
3754 }
3755
3756 /* look for a tmcd track not referenced by any video track, and export it globally */
3757 static void export_orphan_timecode(AVFormatContext *s)
3758 {
3759     int i;
3760
3761     for (i = 0; i < s->nb_streams; i++) {
3762         AVStream *st = s->streams[i];
3763
3764         if (st->codec->codec_tag  == MKTAG('t','m','c','d') &&
3765             !tmcd_is_referenced(s, i + 1)) {
3766             AVDictionaryEntry *tcr = av_dict_get(st->metadata, "timecode", NULL, 0);
3767             if (tcr) {
3768                 av_dict_set(&s->metadata, "timecode", tcr->value, 0);
3769                 break;
3770             }
3771         }
3772     }
3773 }
3774
3775 static int read_tfra(MOVContext *mov, AVIOContext *f)
3776 {
3777     MOVFragmentIndex* index = NULL;
3778     int version, fieldlength, i, j, err;
3779     int64_t pos = avio_tell(f);
3780     uint32_t size = avio_rb32(f);
3781     if (avio_rb32(f) != MKBETAG('t', 'f', 'r', 'a')) {
3782         return -1;
3783     }
3784     av_log(mov->fc, AV_LOG_VERBOSE, "found tfra\n");
3785     index = av_mallocz(sizeof(MOVFragmentIndex));
3786     if (!index) {
3787         return AVERROR(ENOMEM);
3788     }
3789     mov->fragment_index_count++;
3790     if ((err = av_reallocp(&mov->fragment_index_data,
3791                            mov->fragment_index_count *
3792                            sizeof(MOVFragmentIndex*))) < 0) {
3793         av_freep(&index);
3794         return err;
3795     }
3796     mov->fragment_index_data[mov->fragment_index_count - 1] =
3797         index;
3798
3799     version = avio_r8(f);
3800     avio_rb24(f);
3801     index->track_id = avio_rb32(f);
3802     fieldlength = avio_rb32(f);
3803     index->item_count = avio_rb32(f);
3804     index->items = av_mallocz(
3805             index->item_count * sizeof(MOVFragmentIndexItem));
3806     if (!index->items) {
3807         return AVERROR(ENOMEM);
3808     }
3809     for (i = 0; i < index->item_count; i++) {
3810         int64_t time, offset;
3811         if (version == 1) {
3812             time   = avio_rb64(f);
3813             offset = avio_rb64(f);
3814         } else {
3815             time   = avio_rb32(f);
3816             offset = avio_rb32(f);
3817         }
3818         index->items[i].time = time;
3819         index->items[i].moof_offset = offset;
3820         for (j = 0; j < ((fieldlength >> 4) & 3) + 1; j++)
3821             avio_r8(f);
3822         for (j = 0; j < ((fieldlength >> 2) & 3) + 1; j++)
3823             avio_r8(f);
3824         for (j = 0; j < ((fieldlength >> 0) & 3) + 1; j++)
3825             avio_r8(f);
3826     }
3827
3828     avio_seek(f, pos + size, SEEK_SET);
3829     return 0;
3830 }
3831
3832 static int mov_read_mfra(MOVContext *c, AVIOContext *f)
3833 {
3834     int64_t stream_size = avio_size(f);
3835     int64_t original_pos = avio_tell(f);
3836     int64_t seek_ret;
3837     int32_t mfra_size;
3838     int ret = -1;
3839     if ((seek_ret = avio_seek(f, stream_size - 4, SEEK_SET)) < 0) {
3840         ret = seek_ret;
3841         goto fail;
3842     }
3843     mfra_size = avio_rb32(f);
3844     if (mfra_size < 0 || mfra_size > stream_size) {
3845         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (unreasonable size)\n");
3846         goto fail;
3847     }
3848     if ((seek_ret = avio_seek(f, -mfra_size, SEEK_CUR)) < 0) {
3849         ret = seek_ret;
3850         goto fail;
3851     }
3852     if (avio_rb32(f) != mfra_size) {
3853         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (size mismatch)\n");
3854         goto fail;
3855     }
3856     if (avio_rb32(f) != MKBETAG('m', 'f', 'r', 'a')) {
3857         av_log(c->fc, AV_LOG_DEBUG, "doesn't look like mfra (tag mismatch)\n");
3858         goto fail;
3859     }
3860     ret = 0;
3861     av_log(c->fc, AV_LOG_VERBOSE, "stream has mfra\n");
3862     while (!read_tfra(c, f)) {
3863         /* Empty */
3864     }
3865 fail:
3866     seek_ret = avio_seek(f, original_pos, SEEK_SET);
3867     if (seek_ret < 0) {
3868         av_log(c->fc, AV_LOG_ERROR,
3869                "failed to seek back after looking for mfra\n");
3870         ret = seek_ret;
3871     }
3872     return ret;
3873 }
3874
3875 static int mov_read_header(AVFormatContext *s)
3876 {
3877     MOVContext *mov = s->priv_data;
3878     AVIOContext *pb = s->pb;
3879     int j, err;
3880     MOVAtom atom = { AV_RL32("root") };
3881     int i;
3882
3883     mov->fc = s;
3884     /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
3885     if (pb->seekable)
3886         atom.size = avio_size(pb);
3887     else
3888         atom.size = INT64_MAX;
3889
3890     /* check MOV header */
3891     do {
3892     if (mov->moov_retry)
3893         avio_seek(pb, 0, SEEK_SET);
3894     if ((err = mov_read_default(mov, pb, atom)) < 0) {
3895         av_log(s, AV_LOG_ERROR, "error reading header\n");
3896         mov_read_close(s);
3897         return err;
3898     }
3899     } while (pb->seekable && !mov->found_moov && !mov->moov_retry++);
3900     if (!mov->found_moov) {
3901         av_log(s, AV_LOG_ERROR, "moov atom not found\n");
3902         mov_read_close(s);
3903         return AVERROR_INVALIDDATA;
3904     }
3905     av_dlog(mov->fc, "on_parse_exit_offset=%"PRId64"\n", avio_tell(pb));
3906
3907     if (pb->seekable) {
3908         if (mov->chapter_track > 0)
3909             mov_read_chapters(s);
3910         for (i = 0; i < s->nb_streams; i++)
3911             if (s->streams[i]->codec->codec_tag == AV_RL32("tmcd"))
3912                 mov_read_timecode_track(s, s->streams[i]);
3913     }
3914
3915     /* copy timecode metadata from tmcd tracks to the related video streams */
3916     for (i = 0; i < s->nb_streams; i++) {
3917         AVStream *st = s->streams[i];
3918         MOVStreamContext *sc = st->priv_data;
3919         if (sc->timecode_track > 0) {
3920             AVDictionaryEntry *tcr;
3921             int tmcd_st_id = -1;
3922
3923             for (j = 0; j < s->nb_streams; j++)
3924                 if (s->streams[j]->id == sc->timecode_track)
3925                     tmcd_st_id = j;
3926
3927             if (tmcd_st_id < 0 || tmcd_st_id == i)
3928                 continue;
3929             tcr = av_dict_get(s->streams[tmcd_st_id]->metadata, "timecode", NULL, 0);
3930             if (tcr)
3931                 av_dict_set(&st->metadata, "timecode", tcr->value, 0);
3932         }
3933     }
3934     export_orphan_timecode(s);
3935
3936     for (i = 0; i < s->nb_streams; i++) {
3937         AVStream *st = s->streams[i];
3938         MOVStreamContext *sc = st->priv_data;
3939         fix_timescale(mov, sc);
3940         if(st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->codec->codec_id == AV_CODEC_ID_AAC) {
3941             st->skip_samples = sc->start_pad;
3942         }
3943         if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && sc->nb_frames_for_fps > 0 && sc->duration_for_fps > 0)
3944             av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
3945                       sc->time_scale*(int64_t)sc->nb_frames_for_fps, sc->duration_for_fps, INT_MAX);
3946         if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
3947             if (st->codec->width <= 0 || st->codec->height <= 0) {
3948                 st->codec->width  = sc->width;
3949                 st->codec->height = sc->height;
3950             }
3951             if (st->codec->codec_id == AV_CODEC_ID_DVD_SUBTITLE) {
3952                 if ((err = mov_rewrite_dvd_sub_extradata(st)) < 0)
3953                     return err;
3954             }
3955         }
3956     }
3957
3958     if (mov->trex_data) {
3959         for (i = 0; i < s->nb_streams; i++) {
3960             AVStream *st = s->streams[i];
3961             MOVStreamContext *sc = st->priv_data;
3962             if (st->duration > 0)
3963                 st->codec->bit_rate = sc->data_size * 8 * sc->time_scale / st->duration;
3964         }
3965     }
3966
3967     if (mov->use_mfra_for > 0) {
3968         for (i = 0; i < s->nb_streams; i++) {
3969             AVStream *st = s->streams[i];
3970             MOVStreamContext *sc = st->priv_data;
3971             if (sc->duration_for_fps > 0) {
3972                 st->codec->bit_rate = sc->data_size * 8 * sc->time_scale /
3973                     sc->duration_for_fps;
3974             }
3975         }
3976     }
3977
3978     for (i = 0; i < mov->bitrates_count && i < s->nb_streams; i++) {
3979         if (mov->bitrates[i]) {
3980             s->streams[i]->codec->bit_rate = mov->bitrates[i];
3981         }
3982     }
3983
3984     ff_rfps_calculate(s);
3985
3986     for (i = 0; i < s->nb_streams; i++) {
3987         AVStream *st = s->streams[i];
3988         MOVStreamContext *sc = st->priv_data;
3989
3990         switch (st->codec->codec_type) {
3991         case AVMEDIA_TYPE_AUDIO:
3992             err = ff_replaygain_export(st, s->metadata);
3993             if (err < 0) {
3994                 mov_read_close(s);
3995                 return err;
3996             }
3997             break;
3998         case AVMEDIA_TYPE_VIDEO:
3999             if (sc->display_matrix) {
4000                 AVPacketSideData *sd, *tmp;
4001
4002                 tmp = av_realloc_array(st->side_data,
4003                                        st->nb_side_data + 1, sizeof(*tmp));
4004                 if (!tmp)
4005                     return AVERROR(ENOMEM);
4006
4007                 st->side_data = tmp;
4008                 st->nb_side_data++;
4009
4010                 sd = &st->side_data[st->nb_side_data - 1];
4011                 sd->type = AV_PKT_DATA_DISPLAYMATRIX;
4012                 sd->size = sizeof(int32_t) * 9;
4013                 sd->data = (uint8_t*)sc->display_matrix;
4014                 sc->display_matrix = NULL;
4015             }
4016             break;
4017         }
4018     }
4019
4020     return 0;
4021 }
4022
4023 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st)
4024 {
4025     AVIndexEntry *sample = NULL;
4026     int64_t best_dts = INT64_MAX;
4027     int i;
4028     for (i = 0; i < s->nb_streams; i++) {
4029         AVStream *avst = s->streams[i];
4030         MOVStreamContext *msc = avst->priv_data;
4031         if (msc->pb && msc->current_sample < avst->nb_index_entries) {
4032             AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample];
4033             int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale);
4034             av_dlog(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
4035             if (!sample || (!s->pb->seekable && current_sample->pos < sample->pos) ||
4036                 (s->pb->seekable &&
4037                  ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb &&
4038                  ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) ||
4039                   (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) {
4040                 sample = current_sample;
4041                 best_dts = dts;
4042                 *st = avst;
4043             }
4044         }
4045     }
4046     return sample;
4047 }
4048
4049 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
4050 {
4051     MOVContext *mov = s->priv_data;
4052     MOVStreamContext *sc;
4053     AVIndexEntry *sample;
4054     AVStream *st = NULL;
4055     int ret;
4056     mov->fc = s;
4057  retry:
4058     sample = mov_find_next_sample(s, &st);
4059     if (!sample) {
4060         mov->found_mdat = 0;
4061         if (!mov->next_root_atom)
4062             return AVERROR_EOF;
4063         avio_seek(s->pb, mov->next_root_atom, SEEK_SET);
4064         mov->next_root_atom = 0;
4065         if (mov_read_default(mov, s->pb, (MOVAtom){ AV_RL32("root"), INT64_MAX }) < 0 ||
4066             avio_feof(s->pb))
4067             return AVERROR_EOF;
4068         av_dlog(s, "read fragments, offset 0x%"PRIx64"\n", avio_tell(s->pb));
4069         goto retry;
4070     }
4071     sc = st->priv_data;
4072     /* must be done just before reading, to avoid infinite loop on sample */
4073     sc->current_sample++;
4074
4075     if (mov->next_root_atom) {
4076         sample->pos = FFMIN(sample->pos, mov->next_root_atom);
4077         sample->size = FFMIN(sample->size, (mov->next_root_atom - sample->pos));
4078     }
4079
4080     if (st->discard != AVDISCARD_ALL) {
4081         if (avio_seek(sc->pb, sample->pos, SEEK_SET) != sample->pos) {
4082             av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n",
4083                    sc->ffindex, sample->pos);
4084             return AVERROR_INVALIDDATA;
4085         }
4086         ret = av_get_packet(sc->pb, pkt, sample->size);
4087         if (ret < 0)
4088             return ret;
4089         if (sc->has_palette) {
4090             uint8_t *pal;
4091
4092             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, AVPALETTE_SIZE);
4093             if (!pal) {
4094                 av_log(mov->fc, AV_LOG_ERROR, "Cannot append palette to packet\n");
4095             } else {
4096                 memcpy(pal, sc->palette, AVPALETTE_SIZE);
4097                 sc->has_palette = 0;
4098             }
4099         }
4100 #if CONFIG_DV_DEMUXER
4101         if (mov->dv_demux && sc->dv_audio_container) {
4102             avpriv_dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size, pkt->pos);
4103             av_free(pkt->data);
4104             pkt->size = 0;
4105             ret = avpriv_dv_get_packet(mov->dv_demux, pkt);
4106             if (ret < 0)
4107                 return ret;
4108         }
4109 #endif
4110     }
4111
4112     pkt->stream_index = sc->ffindex;
4113     pkt->dts = sample->timestamp;
4114     if (sc->ctts_data && sc->ctts_index < sc->ctts_count) {
4115         pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration;
4116         /* update ctts context */
4117         sc->ctts_sample++;
4118         if (sc->ctts_index < sc->ctts_count &&
4119             sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) {
4120             sc->ctts_index++;
4121             sc->ctts_sample = 0;
4122         }
4123         if (sc->wrong_dts)
4124             pkt->dts = AV_NOPTS_VALUE;
4125     } else {
4126         int64_t next_dts = (sc->current_sample < st->nb_index_entries) ?
4127             st->index_entries[sc->current_sample].timestamp : st->duration;
4128         pkt->duration = next_dts - pkt->dts;
4129         pkt->pts = pkt->dts;
4130     }
4131     if (st->discard == AVDISCARD_ALL)
4132         goto retry;
4133     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? AV_PKT_FLAG_KEY : 0;
4134     pkt->pos = sample->pos;
4135     av_dlog(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n",
4136             pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
4137     return 0;
4138 }
4139
4140 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags)
4141 {
4142     MOVStreamContext *sc = st->priv_data;
4143     int sample, time_sample;
4144     int i;
4145
4146     sample = av_index_search_timestamp(st, timestamp, flags);
4147     av_dlog(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
4148     if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
4149         sample = 0;
4150     if (sample < 0) /* not sure what to do */
4151         return AVERROR_INVALIDDATA;
4152     sc->current_sample = sample;
4153     av_dlog(s, "stream %d, found sample %d\n", st->index, sc->current_sample);
4154     /* adjust ctts index */
4155     if (sc->ctts_data) {
4156         time_sample = 0;
4157         for (i = 0; i < sc->ctts_count; i++) {
4158             int next = time_sample + sc->ctts_data[i].count;
4159             if (next > sc->current_sample) {
4160                 sc->ctts_index = i;
4161                 sc->ctts_sample = sc->current_sample - time_sample;
4162                 break;
4163             }
4164             time_sample = next;
4165         }
4166     }
4167     return sample;
4168 }
4169
4170 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
4171 {
4172     AVStream *st;
4173     int64_t seek_timestamp, timestamp;
4174     int sample;
4175     int i;
4176
4177     if (stream_index >= s->nb_streams)
4178         return AVERROR_INVALIDDATA;
4179
4180     st = s->streams[stream_index];
4181     sample = mov_seek_stream(s, st, sample_time, flags);
4182     if (sample < 0)
4183         return sample;
4184
4185     /* adjust seek timestamp to found sample timestamp */
4186     seek_timestamp = st->index_entries[sample].timestamp;
4187
4188     for (i = 0; i < s->nb_streams; i++) {
4189         MOVStreamContext *sc = s->streams[i]->priv_data;
4190         st = s->streams[i];
4191         st->skip_samples = (sample_time <= 0) ? sc->start_pad : 0;
4192
4193         if (stream_index == i)
4194             continue;
4195
4196         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
4197         mov_seek_stream(s, st, timestamp, flags);
4198     }
4199     return 0;
4200 }
4201
4202 static const AVOption options[] = {
4203     {"use_absolute_path",
4204         "allow using absolute path when opening alias, this is a possible security issue",
4205         offsetof(MOVContext, use_absolute_path), FF_OPT_TYPE_INT, {.i64 = 0},
4206         0, 1, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_DECODING_PARAM},
4207     {"ignore_editlist", "", offsetof(MOVContext, ignore_editlist), FF_OPT_TYPE_INT, {.i64 = 0},
4208         0, 1, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_DECODING_PARAM},
4209     {"use_mfra_for",
4210         "use mfra for fragment timestamps",
4211         offsetof(MOVContext, use_mfra_for), FF_OPT_TYPE_INT, {.i64 = FF_MOV_FLAG_MFRA_AUTO},
4212         -1, FF_MOV_FLAG_MFRA_PTS, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_DECODING_PARAM,
4213         "use_mfra_for"},
4214     {"auto", "auto", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_AUTO}, 0, 0,
4215         AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_DECODING_PARAM, "use_mfra_for" },
4216     {"dts", "dts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_DTS}, 0, 0,
4217         AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_DECODING_PARAM, "use_mfra_for" },
4218     {"pts", "pts", 0, AV_OPT_TYPE_CONST, {.i64 = FF_MOV_FLAG_MFRA_PTS}, 0, 0,
4219         AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_DECODING_PARAM, "use_mfra_for" },
4220     {NULL}
4221 };
4222
4223 static const AVClass mov_class = {
4224     .class_name = "mov,mp4,m4a,3gp,3g2,mj2",
4225     .item_name  = av_default_item_name,
4226     .option     = options,
4227     .version    = LIBAVUTIL_VERSION_INT,
4228 };
4229
4230 AVInputFormat ff_mov_demuxer = {
4231     .name           = "mov,mp4,m4a,3gp,3g2,mj2",
4232     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
4233     .priv_data_size = sizeof(MOVContext),
4234     .extensions     = "mov,mp4,m4a,3gp,3g2,mj2",
4235     .read_probe     = mov_probe,
4236     .read_header    = mov_read_header,
4237     .read_packet    = mov_read_packet,
4238     .read_close     = mov_read_close,
4239     .read_seek      = mov_read_seek,
4240     .priv_class     = &mov_class,
4241     .flags          = AVFMT_NO_BYTE_SEEK,
4242 };