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