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