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