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