]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
Add a read_timestamp function to ogg demuxer
[ffmpeg] / libavformat / mov.c
1 /*
2  * MOV demuxer
3  * Copyright (c) 2001 Fabrice Bellard.
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <limits.h>
23
24 //#define DEBUG
25
26 #include "avformat.h"
27 #include "riff.h"
28 #include "isom.h"
29 #include "dv.h"
30
31 #ifdef CONFIG_ZLIB
32 #include <zlib.h>
33 #endif
34
35 /*
36  * First version by Francois Revol revol@free.fr
37  * Seek function by Gael Chardon gael.dev@4now.net
38  *
39  * Features and limitations:
40  * - reads most of the QT files I have (at least the structure),
41  *   Sample QuickTime files with mp3 audio can be found at: http://www.3ivx.com/showcase.html
42  * - the code is quite ugly... maybe I won't do it recursive next time :-)
43  *
44  * Funny I didn't know about http://sourceforge.net/projects/qt-ffmpeg/
45  * when coding this :) (it's a writer anyway)
46  *
47  * Reference documents:
48  * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt
49  * Apple:
50  *  http://developer.apple.com/documentation/QuickTime/QTFF/
51  *  http://developer.apple.com/documentation/QuickTime/QTFF/qtff.pdf
52  * QuickTime is a trademark of Apple (AFAIK :))
53  */
54
55 #include "qtpalette.h"
56
57
58 #undef NDEBUG
59 #include <assert.h>
60
61 /* the QuickTime file format is quite convoluted...
62  * it has lots of index tables, each indexing something in another one...
63  * Here we just use what is needed to read the chunks
64  */
65
66 typedef struct {
67     int first;
68     int count;
69     int id;
70 } MOV_stsc_t;
71
72 typedef struct {
73     uint32_t type;
74     int64_t offset;
75     int64_t size; /* total size (excluding the size and type fields) */
76 } MOV_atom_t;
77
78 typedef struct {
79     offset_t offset;
80     int64_t size;
81 } MOV_mdat_t;
82
83 struct MOVParseTableEntry;
84
85 typedef struct MOVStreamContext {
86     int ffindex; /* the ffmpeg stream id */
87     int next_chunk;
88     unsigned int chunk_count;
89     int64_t *chunk_offsets;
90     unsigned int stts_count;
91     MOV_stts_t *stts_data;
92     unsigned int ctts_count;
93     MOV_stts_t *ctts_data;
94     unsigned int edit_count; /* number of 'edit' (elst atom) */
95     unsigned int sample_to_chunk_sz;
96     MOV_stsc_t *sample_to_chunk;
97     int sample_to_ctime_index;
98     int sample_to_ctime_sample;
99     unsigned int sample_size;
100     unsigned int sample_count;
101     int *sample_sizes;
102     unsigned int keyframe_count;
103     int *keyframes;
104     int time_scale;
105     int time_rate;
106     int current_sample;
107     unsigned int bytes_per_frame;
108     unsigned int samples_per_frame;
109     int dv_audio_container;
110 } MOVStreamContext;
111
112 typedef struct MOVContext {
113     AVFormatContext *fc;
114     int time_scale;
115     int64_t duration; /* duration of the longest track */
116     int found_moov; /* when both 'moov' and 'mdat' sections has been found */
117     int found_mdat; /* we suppose we have enough data to read the file */
118     int64_t mdat_offset;
119     int total_streams;
120     MOVStreamContext *streams[MAX_STREAMS];
121
122     const struct MOVParseTableEntry *parse_table; /* could be eventually used to change the table */
123     /* NOTE: for recursion save to/ restore from local variable! */
124
125     AVPaletteControl palette_control;
126     MOV_mdat_t *mdat_list;
127     int mdat_count;
128     DVDemuxContext *dv_demux;
129     AVFormatContext *dv_fctx;
130     int isom; /* 1 if file is ISO Media (mp4/3gp) */
131 } MOVContext;
132
133
134 /* XXX: it's the first time I make a recursive parser I think... sorry if it's ugly :P */
135
136 /* those functions parse an atom */
137 /* return code:
138  1: found what I wanted, exit
139  0: continue to parse next atom
140  -1: error occured, exit
141  */
142 typedef int (*mov_parse_function)(MOVContext *ctx, ByteIOContext *pb, MOV_atom_t atom);
143
144 /* links atom IDs to parse functions */
145 typedef struct MOVParseTableEntry {
146     uint32_t type;
147     mov_parse_function func;
148 } MOVParseTableEntry;
149
150 static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
151 {
152     int64_t total_size = 0;
153     MOV_atom_t a;
154     int i;
155     int err = 0;
156
157     a.offset = atom.offset;
158
159     if (atom.size < 0)
160         atom.size = INT64_MAX;
161     while(((total_size + 8) < atom.size) && !url_feof(pb) && !err) {
162         a.size = atom.size;
163         a.type=0L;
164         if(atom.size >= 8) {
165             a.size = get_be32(pb);
166             a.type = get_le32(pb);
167         }
168         total_size += 8;
169         a.offset += 8;
170         dprintf(c->fc, "type: %08x  %.4s  sz: %"PRIx64"  %"PRIx64"   %"PRIx64"\n", a.type, (char*)&a.type, a.size, atom.size, total_size);
171         if (a.size == 1) { /* 64 bit extended size */
172             a.size = get_be64(pb) - 8;
173             a.offset += 8;
174             total_size += 8;
175         }
176         if (a.size == 0) {
177             a.size = atom.size - total_size;
178             if (a.size <= 8)
179                 break;
180         }
181         a.size -= 8;
182         if(a.size < 0 || a.size > atom.size - total_size)
183             break;
184
185         for (i = 0; c->parse_table[i].type != 0L
186              && c->parse_table[i].type != a.type; i++)
187             /* empty */;
188
189         if (c->parse_table[i].type == 0) { /* skip leaf atoms data */
190             url_fskip(pb, a.size);
191         } else {
192             offset_t start_pos = url_ftell(pb);
193             int64_t left;
194             err = (c->parse_table[i].func)(c, pb, a);
195             left = a.size - url_ftell(pb) + start_pos;
196             if (left > 0) /* skip garbage at atom end */
197                 url_fskip(pb, left);
198         }
199
200         a.offset += a.size;
201         total_size += a.size;
202     }
203
204     if (!err && total_size < atom.size && atom.size < 0x7ffff) {
205         url_fskip(pb, atom.size - total_size);
206     }
207
208     return err;
209 }
210
211 static int mov_read_hdlr(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
212 {
213     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
214     uint32_t type;
215     uint32_t ctype;
216
217     get_byte(pb); /* version */
218     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
219
220     /* component type */
221     ctype = get_le32(pb);
222     type = get_le32(pb); /* component subtype */
223
224     dprintf(c->fc, "ctype= %c%c%c%c (0x%08x)\n", *((char *)&ctype), ((char *)&ctype)[1], ((char *)&ctype)[2], ((char *)&ctype)[3], (int) ctype);
225     dprintf(c->fc, "stype= %c%c%c%c\n", *((char *)&type), ((char *)&type)[1], ((char *)&type)[2], ((char *)&type)[3]);
226     if(!ctype)
227         c->isom = 1;
228     if(type == MKTAG('v', 'i', 'd', 'e'))
229         st->codec->codec_type = CODEC_TYPE_VIDEO;
230     else if(type == MKTAG('s', 'o', 'u', 'n'))
231         st->codec->codec_type = CODEC_TYPE_AUDIO;
232     else if(type == MKTAG('m', '1', 'a', ' '))
233         st->codec->codec_id = CODEC_ID_MP2;
234     else if(type == MKTAG('s', 'u', 'b', 'p')) {
235         st->codec->codec_type = CODEC_TYPE_SUBTITLE;
236         st->codec->codec_id = CODEC_ID_DVD_SUBTITLE;
237     }
238     get_be32(pb); /* component  manufacture */
239     get_be32(pb); /* component flags */
240     get_be32(pb); /* component flags mask */
241
242     if(atom.size <= 24)
243         return 0; /* nothing left to read */
244
245     url_fskip(pb, atom.size - (url_ftell(pb) - atom.offset));
246     return 0;
247 }
248
249 static int mp4_read_descr_len(ByteIOContext *pb)
250 {
251     int len = 0;
252     int count = 4;
253     while (count--) {
254         int c = get_byte(pb);
255         len = (len << 7) | (c & 0x7f);
256         if (!(c & 0x80))
257             break;
258     }
259     return len;
260 }
261
262 static int mp4_read_descr(MOVContext *c, ByteIOContext *pb, int *tag)
263 {
264     int len;
265     *tag = get_byte(pb);
266     len = mp4_read_descr_len(pb);
267     dprintf(c->fc, "MPEG4 description: tag=0x%02x len=%d\n", *tag, len);
268     return len;
269 }
270
271 #define MP4ESDescrTag                   0x03
272 #define MP4DecConfigDescrTag            0x04
273 #define MP4DecSpecificDescrTag          0x05
274
275 static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
276 {
277     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
278     int tag, len;
279
280     get_be32(pb); /* version + flags */
281     len = mp4_read_descr(c, pb, &tag);
282     if (tag == MP4ESDescrTag) {
283         get_be16(pb); /* ID */
284         get_byte(pb); /* priority */
285     } else
286         get_be16(pb); /* ID */
287
288     len = mp4_read_descr(c, pb, &tag);
289     if (tag == MP4DecConfigDescrTag) {
290         int object_type_id = get_byte(pb);
291         get_byte(pb); /* stream type */
292         get_be24(pb); /* buffer size db */
293         get_be32(pb); /* max bitrate */
294         get_be32(pb); /* avg bitrate */
295
296         st->codec->codec_id= codec_get_id(ff_mp4_obj_type, object_type_id);
297         dprintf(c->fc, "esds object type id %d\n", object_type_id);
298         len = mp4_read_descr(c, pb, &tag);
299         if (tag == MP4DecSpecificDescrTag) {
300             dprintf(c->fc, "Specific MPEG4 header len=%d\n", len);
301             st->codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE);
302             if (st->codec->extradata) {
303                 get_buffer(pb, st->codec->extradata, len);
304                 st->codec->extradata_size = len;
305                 /* from mplayer */
306                 if ((*st->codec->extradata >> 3) == 29) {
307                     st->codec->codec_id = CODEC_ID_MP3ON4;
308                 }
309             }
310         }
311     }
312     return 0;
313 }
314
315 /* this atom contains actual media data */
316 static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
317 {
318     if(atom.size == 0) /* wrong one (MP4) */
319         return 0;
320     c->mdat_list = av_realloc(c->mdat_list, (c->mdat_count + 1) * sizeof(*c->mdat_list));
321     c->mdat_list[c->mdat_count].offset = atom.offset;
322     c->mdat_list[c->mdat_count].size = atom.size;
323     c->mdat_count++;
324     c->found_mdat=1;
325     c->mdat_offset = atom.offset;
326     if(c->found_moov)
327         return 1; /* found both, just go */
328     url_fskip(pb, atom.size);
329     return 0; /* now go for moov */
330 }
331
332 static int mov_read_ftyp(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
333 {
334     uint32_t type = get_le32(pb);
335
336     if (type != MKTAG('q','t',' ',' '))
337         c->isom = 1;
338     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
339     get_be32(pb); /* minor version */
340     url_fskip(pb, atom.size - 8);
341     return 0;
342 }
343
344 /* this atom should contain all header atoms */
345 static int mov_read_moov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
346 {
347     int err;
348
349     err = mov_read_default(c, pb, atom);
350     /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */
351     /* so we don't parse the whole file if over a network */
352     c->found_moov=1;
353     if(c->found_mdat)
354         return 1; /* found both, just go */
355     return 0; /* now go for mdat */
356 }
357
358
359 static int mov_read_mdhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
360 {
361     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
362     MOVStreamContext *sc = st->priv_data;
363     int version = get_byte(pb);
364     int lang;
365
366     if (version > 1)
367         return 1; /* unsupported */
368
369     get_byte(pb); get_byte(pb);
370     get_byte(pb); /* flags */
371
372     if (version == 1) {
373         get_be64(pb);
374         get_be64(pb);
375     } else {
376         get_be32(pb); /* creation time */
377         get_be32(pb); /* modification time */
378     }
379
380     sc->time_scale = get_be32(pb);
381     st->duration = (version == 1) ? get_be64(pb) : get_be32(pb); /* duration */
382
383     lang = get_be16(pb); /* language */
384     ff_mov_lang_to_iso639(lang, st->language);
385     get_be16(pb); /* quality */
386
387     return 0;
388 }
389
390 static int mov_read_mvhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
391 {
392     int version = get_byte(pb); /* version */
393     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
394
395     if (version == 1) {
396         get_be64(pb);
397         get_be64(pb);
398     } else {
399         get_be32(pb); /* creation time */
400         get_be32(pb); /* modification time */
401     }
402     c->time_scale = get_be32(pb); /* time scale */
403
404     dprintf(c->fc, "time scale = %i\n", c->time_scale);
405
406     c->duration = (version == 1) ? get_be64(pb) : get_be32(pb); /* duration */
407     get_be32(pb); /* preferred scale */
408
409     get_be16(pb); /* preferred volume */
410
411     url_fskip(pb, 10); /* reserved */
412
413     url_fskip(pb, 36); /* display matrix */
414
415     get_be32(pb); /* preview time */
416     get_be32(pb); /* preview duration */
417     get_be32(pb); /* poster time */
418     get_be32(pb); /* selection time */
419     get_be32(pb); /* selection duration */
420     get_be32(pb); /* current time */
421     get_be32(pb); /* next track ID */
422
423     return 0;
424 }
425
426 static int mov_read_smi(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
427 {
428     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
429
430     if((uint64_t)atom.size > (1<<30))
431         return -1;
432
433     // currently SVQ3 decoder expect full STSD header - so let's fake it
434     // this should be fixed and just SMI header should be passed
435     av_free(st->codec->extradata);
436     st->codec->extradata_size = 0x5a + atom.size;
437     st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
438
439     if (st->codec->extradata) {
440         memcpy(st->codec->extradata, "SVQ3", 4); // fake
441         get_buffer(pb, st->codec->extradata + 0x5a, atom.size);
442         dprintf(c->fc, "Reading SMI %"PRId64"  %s\n", atom.size, st->codec->extradata + 0x5a);
443     } else
444         url_fskip(pb, atom.size);
445
446     return 0;
447 }
448
449 static int mov_read_enda(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
450 {
451     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
452     int little_endian = get_be16(pb);
453
454     if (little_endian) {
455         switch (st->codec->codec_id) {
456         case CODEC_ID_PCM_S24BE:
457             st->codec->codec_id = CODEC_ID_PCM_S24LE;
458             break;
459         case CODEC_ID_PCM_S32BE:
460             st->codec->codec_id = CODEC_ID_PCM_S32LE;
461             break;
462         default:
463             break;
464         }
465     }
466     return 0;
467 }
468
469 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */
470 static int mov_read_extradata(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
471 {
472     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
473     uint64_t size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE;
474     uint8_t *buf;
475     if(size > INT_MAX || (uint64_t)atom.size > INT_MAX)
476         return -1;
477     buf= av_realloc(st->codec->extradata, size);
478     if(!buf)
479         return -1;
480     st->codec->extradata= buf;
481     buf+= st->codec->extradata_size;
482     st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE;
483     AV_WB32(       buf    , atom.size + 8);
484     AV_WL32(       buf + 4, atom.type);
485     get_buffer(pb, buf + 8, atom.size);
486     return 0;
487 }
488
489 static int mov_read_wave(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
490 {
491     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
492
493     if((uint64_t)atom.size > (1<<30))
494         return -1;
495
496     if (st->codec->codec_id == CODEC_ID_QDM2) {
497         // pass all frma atom to codec, needed at least for QDM2
498         av_free(st->codec->extradata);
499         st->codec->extradata_size = atom.size;
500         st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
501
502         if (st->codec->extradata) {
503             get_buffer(pb, st->codec->extradata, atom.size);
504         } else
505             url_fskip(pb, atom.size);
506     } else if (atom.size > 8) { /* to read frma, esds atoms */
507         mov_read_default(c, pb, atom);
508     } else
509         url_fskip(pb, atom.size);
510     return 0;
511 }
512
513 static int mov_read_avcC(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
514 {
515     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
516
517     if((uint64_t)atom.size > (1<<30))
518         return -1;
519
520     av_free(st->codec->extradata);
521
522     st->codec->extradata_size = atom.size;
523     st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
524
525     if (st->codec->extradata) {
526         get_buffer(pb, st->codec->extradata, atom.size);
527     } else
528         url_fskip(pb, atom.size);
529
530     return 0;
531 }
532
533 static int mov_read_stco(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
534 {
535     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
536     MOVStreamContext *sc = st->priv_data;
537     unsigned int i, entries;
538
539     get_byte(pb); /* version */
540     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
541
542     entries = get_be32(pb);
543
544     if(entries >= UINT_MAX/sizeof(int64_t))
545         return -1;
546
547     sc->chunk_count = entries;
548     sc->chunk_offsets = av_malloc(entries * sizeof(int64_t));
549     if (!sc->chunk_offsets)
550         return -1;
551     if (atom.type == MKTAG('s', 't', 'c', 'o')) {
552         for(i=0; i<entries; i++) {
553             sc->chunk_offsets[i] = get_be32(pb);
554         }
555     } else if (atom.type == MKTAG('c', 'o', '6', '4')) {
556         for(i=0; i<entries; i++) {
557             sc->chunk_offsets[i] = get_be64(pb);
558         }
559     } else
560         return -1;
561
562     return 0;
563 }
564
565 static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
566 {
567     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
568     MOVStreamContext *sc = st->priv_data;
569     int entries, frames_per_sample;
570     uint32_t format;
571     uint8_t codec_name[32];
572
573     /* for palette traversal */
574     int color_depth;
575     int color_start;
576     int color_count;
577     int color_end;
578     int color_index;
579     int color_dec;
580     int color_greyscale;
581     unsigned char *color_table;
582     int j;
583     unsigned char r, g, b;
584
585     get_byte(pb); /* version */
586     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
587
588     entries = get_be32(pb);
589
590     while(entries--) { //Parsing Sample description table
591         enum CodecID id;
592         MOV_atom_t a = { 0, 0, 0 };
593         offset_t start_pos = url_ftell(pb);
594         int size = get_be32(pb); /* size */
595         format = get_le32(pb); /* data format */
596
597         get_be32(pb); /* reserved */
598         get_be16(pb); /* reserved */
599         get_be16(pb); /* index */
600
601         if (st->codec->codec_tag) {
602             /* multiple fourcc, just skip for now */
603             url_fskip(pb, size - (url_ftell(pb) - start_pos));
604             continue;
605         }
606
607         st->codec->codec_tag = format;
608         id = codec_get_id(codec_movaudio_tags, format);
609         if (id<=0 && (format&0xFFFF) == 'm' + ('s'<<8))
610             id = codec_get_id(codec_wav_tags, bswap_32(format)&0xFFFF);
611
612         if (st->codec->codec_type != CODEC_TYPE_VIDEO && id > 0) {
613             st->codec->codec_type = CODEC_TYPE_AUDIO;
614         } else if (st->codec->codec_type != CODEC_TYPE_AUDIO && /* do not overwrite codec type */
615                    format && format != MKTAG('m', 'p', '4', 's')) { /* skip old asf mpeg4 tag */
616             id = codec_get_id(codec_movvideo_tags, format);
617             if (id <= 0)
618                 id = codec_get_id(codec_bmp_tags, format);
619             if (id > 0)
620                 st->codec->codec_type = CODEC_TYPE_VIDEO;
621         }
622
623         dprintf(c->fc, "size=%d 4CC= %c%c%c%c codec_type=%d\n",
624                 size,
625                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff, (format >> 24) & 0xff,
626                 st->codec->codec_type);
627
628         if(st->codec->codec_type==CODEC_TYPE_VIDEO) {
629             st->codec->codec_id = id;
630             get_be16(pb); /* version */
631             get_be16(pb); /* revision level */
632             get_be32(pb); /* vendor */
633             get_be32(pb); /* temporal quality */
634             get_be32(pb); /* spacial quality */
635
636             st->codec->width = get_be16(pb); /* width */
637             st->codec->height = get_be16(pb); /* height */
638
639             get_be32(pb); /* horiz resolution */
640             get_be32(pb); /* vert resolution */
641             get_be32(pb); /* data size, always 0 */
642             frames_per_sample = get_be16(pb); /* frames per samples */
643
644             dprintf(c->fc, "frames/samples = %d\n", frames_per_sample);
645
646             get_buffer(pb, codec_name, 32); /* codec name, pascal string (FIXME: true for mp4?) */
647             if (codec_name[0] <= 31) {
648                 memcpy(st->codec->codec_name, &codec_name[1],codec_name[0]);
649                 st->codec->codec_name[codec_name[0]] = 0;
650             }
651
652             st->codec->bits_per_sample = get_be16(pb); /* depth */
653             st->codec->color_table_id = get_be16(pb); /* colortable id */
654
655             /* figure out the palette situation */
656             color_depth = st->codec->bits_per_sample & 0x1F;
657             color_greyscale = st->codec->bits_per_sample & 0x20;
658
659             /* if the depth is 2, 4, or 8 bpp, file is palettized */
660             if ((color_depth == 2) || (color_depth == 4) ||
661                 (color_depth == 8)) {
662
663                 if (color_greyscale) {
664
665                     /* compute the greyscale palette */
666                     color_count = 1 << color_depth;
667                     color_index = 255;
668                     color_dec = 256 / (color_count - 1);
669                     for (j = 0; j < color_count; j++) {
670                         r = g = b = color_index;
671                         c->palette_control.palette[j] =
672                             (r << 16) | (g << 8) | (b);
673                         color_index -= color_dec;
674                         if (color_index < 0)
675                             color_index = 0;
676                     }
677
678                 } else if (st->codec->color_table_id & 0x08) {
679
680                     /* if flag bit 3 is set, use the default palette */
681                     color_count = 1 << color_depth;
682                     if (color_depth == 2)
683                         color_table = ff_qt_default_palette_4;
684                     else if (color_depth == 4)
685                         color_table = ff_qt_default_palette_16;
686                     else
687                         color_table = ff_qt_default_palette_256;
688
689                     for (j = 0; j < color_count; j++) {
690                         r = color_table[j * 4 + 0];
691                         g = color_table[j * 4 + 1];
692                         b = color_table[j * 4 + 2];
693                         c->palette_control.palette[j] =
694                             (r << 16) | (g << 8) | (b);
695                     }
696
697                 } else {
698
699                     /* load the palette from the file */
700                     color_start = get_be32(pb);
701                     color_count = get_be16(pb);
702                     color_end = get_be16(pb);
703                     for (j = color_start; j <= color_end; j++) {
704                         /* each R, G, or B component is 16 bits;
705                          * only use the top 8 bits; skip alpha bytes
706                          * up front */
707                         get_byte(pb);
708                         get_byte(pb);
709                         r = get_byte(pb);
710                         get_byte(pb);
711                         g = get_byte(pb);
712                         get_byte(pb);
713                         b = get_byte(pb);
714                         get_byte(pb);
715                         c->palette_control.palette[j] =
716                             (r << 16) | (g << 8) | (b);
717                     }
718                 }
719
720                 st->codec->palctrl = &c->palette_control;
721                 st->codec->palctrl->palette_changed = 1;
722             } else
723                 st->codec->palctrl = NULL;
724         } else if(st->codec->codec_type==CODEC_TYPE_AUDIO) {
725             int bits_per_sample;
726             uint16_t version = get_be16(pb);
727
728             st->codec->codec_id = id;
729             get_be16(pb); /* revision level */
730             get_be32(pb); /* vendor */
731
732             st->codec->channels = get_be16(pb);             /* channel count */
733             dprintf(c->fc, "audio channels %d\n", st->codec->channels);
734             st->codec->bits_per_sample = get_be16(pb);      /* sample size */
735             /* do we need to force to 16 for AMR ? */
736
737             /* handle specific s8 codec */
738             get_be16(pb); /* compression id = 0*/
739             get_be16(pb); /* packet size = 0 */
740
741             st->codec->sample_rate = ((get_be32(pb) >> 16));
742
743             switch (st->codec->codec_id) {
744             case CODEC_ID_PCM_S8:
745             case CODEC_ID_PCM_U8:
746                 if (st->codec->bits_per_sample == 16)
747                     st->codec->codec_id = CODEC_ID_PCM_S16BE;
748                 break;
749             case CODEC_ID_PCM_S16LE:
750             case CODEC_ID_PCM_S16BE:
751                 if (st->codec->bits_per_sample == 8)
752                     st->codec->codec_id = CODEC_ID_PCM_S8;
753                 else if (st->codec->bits_per_sample == 24)
754                     st->codec->codec_id = CODEC_ID_PCM_S24BE;
755                 break;
756             default:
757                 break;
758             }
759
760             //Read QT version 1 fields. In version 0 these do not exist.
761             dprintf(c->fc, "version =%d, isom =%d\n",version,c->isom);
762             if(!c->isom) {
763                 if(version==1) {
764                     sc->samples_per_frame = get_be32(pb);
765                     get_be32(pb); /* bytes per packet */
766                     sc->bytes_per_frame = get_be32(pb);
767                     get_be32(pb); /* bytes per sample */
768                 } else if(version==2) {
769                     get_be32(pb); /* sizeof struct only */
770                     st->codec->sample_rate = av_int2dbl(get_be64(pb)); /* float 64 */
771                     st->codec->channels = get_be32(pb);
772                     get_be32(pb); /* always 0x7F000000 */
773                     get_be32(pb); /* bits per channel if sound is uncompressed */
774                     get_be32(pb); /* lcpm format specific flag */
775                     get_be32(pb); /* bytes per audio packet if constant */
776                     get_be32(pb); /* lpcm frames per audio packet if constant */
777                 }
778             }
779
780             bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
781             if (bits_per_sample) {
782                 st->codec->bits_per_sample = bits_per_sample;
783                 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
784             }
785         } else {
786             /* other codec type, just skip (rtp, mp4s, tmcd ...) */
787             url_fskip(pb, size - (url_ftell(pb) - start_pos));
788         }
789         /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
790         a.size = size - (url_ftell(pb) - start_pos);
791         if (a.size > 8)
792             mov_read_default(c, pb, a);
793         else if (a.size > 0)
794             url_fskip(pb, a.size);
795     }
796
797     if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1) {
798         st->codec->sample_rate= sc->time_scale;
799     }
800
801     /* special codec parameters handling */
802     switch (st->codec->codec_id) {
803 #ifdef CONFIG_H261_DECODER
804     case CODEC_ID_H261:
805 #endif
806 #ifdef CONFIG_H263_DECODER
807     case CODEC_ID_H263:
808 #endif
809 #ifdef CONFIG_MPEG4_DECODER
810     case CODEC_ID_MPEG4:
811 #endif
812         st->codec->width= 0; /* let decoder init width/height */
813         st->codec->height= 0;
814         break;
815 #ifdef CONFIG_LIBFAAD
816     case CODEC_ID_AAC:
817 #endif
818 #ifdef CONFIG_VORBIS_DECODER
819     case CODEC_ID_VORBIS:
820 #endif
821     case CODEC_ID_MP3ON4:
822         st->codec->sample_rate= 0; /* let decoder init parameters properly */
823         break;
824 #ifdef CONFIG_DV_DEMUXER
825     case CODEC_ID_DVAUDIO:
826         c->dv_fctx = av_alloc_format_context();
827         c->dv_demux = dv_init_demux(c->dv_fctx);
828         if (!c->dv_demux) {
829             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
830             return -1;
831         }
832         sc->dv_audio_container = 1;
833         st->codec->codec_id = CODEC_ID_PCM_S16LE;
834         break;
835 #endif
836     /* no ifdef since parameters are always those */
837     case CODEC_ID_AMR_WB:
838         st->codec->sample_rate= 16000;
839         st->codec->channels= 1; /* really needed */
840         break;
841     case CODEC_ID_AMR_NB:
842         st->codec->sample_rate= 8000;
843         st->codec->channels= 1; /* really needed */
844         break;
845     case CODEC_ID_MP2:
846     case CODEC_ID_MP3:
847         st->codec->codec_type = CODEC_TYPE_AUDIO; /* force type after stsd for m1a hdlr */
848         st->need_parsing = AVSTREAM_PARSE_FULL;
849         break;
850     case CODEC_ID_ADPCM_MS:
851     case CODEC_ID_ADPCM_IMA_WAV:
852         st->codec->block_align = sc->bytes_per_frame;
853         break;
854     default:
855         break;
856     }
857
858     return 0;
859 }
860
861 static int mov_read_stsc(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
862 {
863     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
864     MOVStreamContext *sc = st->priv_data;
865     unsigned int i, entries;
866
867     get_byte(pb); /* version */
868     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
869
870     entries = get_be32(pb);
871
872     if(entries >= UINT_MAX / sizeof(MOV_stsc_t))
873         return -1;
874
875     dprintf(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
876
877     sc->sample_to_chunk_sz = entries;
878     sc->sample_to_chunk = av_malloc(entries * sizeof(MOV_stsc_t));
879     if (!sc->sample_to_chunk)
880         return -1;
881     for(i=0; i<entries; i++) {
882         sc->sample_to_chunk[i].first = get_be32(pb);
883         sc->sample_to_chunk[i].count = get_be32(pb);
884         sc->sample_to_chunk[i].id = get_be32(pb);
885     }
886     return 0;
887 }
888
889 static int mov_read_stss(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
890 {
891     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
892     MOVStreamContext *sc = st->priv_data;
893     unsigned int i, entries;
894
895     get_byte(pb); /* version */
896     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
897
898     entries = get_be32(pb);
899
900     if(entries >= UINT_MAX / sizeof(int))
901         return -1;
902
903     sc->keyframe_count = entries;
904
905     dprintf(c->fc, "keyframe_count = %d\n", sc->keyframe_count);
906
907     sc->keyframes = av_malloc(entries * sizeof(int));
908     if (!sc->keyframes)
909         return -1;
910     for(i=0; i<entries; i++) {
911         sc->keyframes[i] = get_be32(pb);
912         //dprintf(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
913     }
914     return 0;
915 }
916
917 static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
918 {
919     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
920     MOVStreamContext *sc = st->priv_data;
921     unsigned int i, entries, sample_size;
922
923     get_byte(pb); /* version */
924     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
925
926     sample_size = get_be32(pb);
927     if (!sc->sample_size) /* do not overwrite value computed in stsd */
928         sc->sample_size = sample_size;
929     entries = get_be32(pb);
930     if(entries >= UINT_MAX / sizeof(int))
931         return -1;
932
933     sc->sample_count = entries;
934     if (sample_size)
935         return 0;
936
937     dprintf(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, sc->sample_count);
938
939     sc->sample_sizes = av_malloc(entries * sizeof(int));
940     if (!sc->sample_sizes)
941         return -1;
942     for(i=0; i<entries; i++) {
943         sc->sample_sizes[i] = get_be32(pb);
944         dprintf(c->fc, "sample_sizes[]=%d\n", sc->sample_sizes[i]);
945     }
946     return 0;
947 }
948
949 static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
950 {
951     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
952     MOVStreamContext *sc = st->priv_data;
953     unsigned int i, entries;
954     int64_t duration=0;
955     int64_t total_sample_count=0;
956
957     get_byte(pb); /* version */
958     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
959     entries = get_be32(pb);
960     if(entries >= UINT_MAX / sizeof(MOV_stts_t))
961         return -1;
962
963     sc->stts_count = entries;
964     sc->stts_data = av_malloc(entries * sizeof(MOV_stts_t));
965
966     dprintf(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries);
967
968     sc->time_rate=0;
969
970     for(i=0; i<entries; i++) {
971         int sample_duration;
972         int sample_count;
973
974         sample_count=get_be32(pb);
975         sample_duration = get_be32(pb);
976         sc->stts_data[i].count= sample_count;
977         sc->stts_data[i].duration= sample_duration;
978
979         sc->time_rate= ff_gcd(sc->time_rate, sample_duration);
980
981         dprintf(c->fc, "sample_count=%d, sample_duration=%d\n",sample_count,sample_duration);
982
983         duration+=(int64_t)sample_duration*sample_count;
984         total_sample_count+=sample_count;
985     }
986
987     st->nb_frames= total_sample_count;
988     if(duration)
989         st->duration= duration;
990     return 0;
991 }
992
993 static int mov_read_ctts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
994 {
995     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
996     MOVStreamContext *sc = st->priv_data;
997     unsigned int i, entries;
998
999     get_byte(pb); /* version */
1000     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
1001     entries = get_be32(pb);
1002     if(entries >= UINT_MAX / sizeof(MOV_stts_t))
1003         return -1;
1004
1005     sc->ctts_count = entries;
1006     sc->ctts_data = av_malloc(entries * sizeof(MOV_stts_t));
1007
1008     dprintf(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
1009
1010     for(i=0; i<entries; i++) {
1011         int count    =get_be32(pb);
1012         int duration =get_be32(pb);
1013
1014         if (duration < 0) {
1015             av_log(c->fc, AV_LOG_ERROR, "negative ctts, ignoring\n");
1016             sc->ctts_count = 0;
1017             url_fskip(pb, 8 * (entries - i - 1));
1018             break;
1019         }
1020         sc->ctts_data[i].count   = count;
1021         sc->ctts_data[i].duration= duration;
1022
1023         sc->time_rate= ff_gcd(sc->time_rate, duration);
1024     }
1025     return 0;
1026 }
1027
1028 static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1029 {
1030     AVStream *st;
1031     MOVStreamContext *sc;
1032
1033     st = av_new_stream(c->fc, c->fc->nb_streams);
1034     if (!st) return -2;
1035     sc = av_mallocz(sizeof(MOVStreamContext));
1036     if (!sc) {
1037         av_free(st);
1038         return -1;
1039     }
1040
1041     st->priv_data = sc;
1042     st->codec->codec_type = CODEC_TYPE_DATA;
1043     st->start_time = 0; /* XXX: check */
1044     c->streams[c->fc->nb_streams-1] = sc;
1045
1046     return mov_read_default(c, pb, atom);
1047 }
1048
1049 static void mov_parse_udta_string(ByteIOContext *pb, char *str, int size)
1050 {
1051     uint16_t str_size = get_be16(pb); /* string length */;
1052
1053     get_be16(pb); /* skip language */
1054     get_buffer(pb, str, FFMIN(size, str_size));
1055 }
1056
1057 static int mov_read_udta(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1058 {
1059     uint64_t end = url_ftell(pb) + atom.size;
1060
1061     while (url_ftell(pb) + 8 < end) {
1062         uint32_t tag_size = get_be32(pb);
1063         uint32_t tag      = get_le32(pb);
1064         uint64_t next     = url_ftell(pb) + tag_size - 8;
1065
1066         if (next > end) // stop if tag_size is wrong
1067             break;
1068
1069         switch (tag) {
1070         case MKTAG(0xa9,'n','a','m'):
1071             mov_parse_udta_string(pb, c->fc->title,     sizeof(c->fc->title));
1072             break;
1073         case MKTAG(0xa9,'w','r','t'):
1074             mov_parse_udta_string(pb, c->fc->author,    sizeof(c->fc->author));
1075             break;
1076         case MKTAG(0xa9,'c','p','y'):
1077             mov_parse_udta_string(pb, c->fc->copyright, sizeof(c->fc->copyright));
1078             break;
1079         case MKTAG(0xa9,'i','n','f'):
1080             mov_parse_udta_string(pb, c->fc->comment,   sizeof(c->fc->comment));
1081             break;
1082         default:
1083             break;
1084         }
1085
1086         url_fseek(pb, next, SEEK_SET);
1087     }
1088
1089     return 0;
1090 }
1091
1092 static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1093 {
1094     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
1095     int version = get_byte(pb);
1096
1097     get_byte(pb); get_byte(pb);
1098     get_byte(pb); /* flags */
1099     /*
1100     MOV_TRACK_ENABLED 0x0001
1101     MOV_TRACK_IN_MOVIE 0x0002
1102     MOV_TRACK_IN_PREVIEW 0x0004
1103     MOV_TRACK_IN_POSTER 0x0008
1104     */
1105
1106     if (version == 1) {
1107         get_be64(pb);
1108         get_be64(pb);
1109     } else {
1110         get_be32(pb); /* creation time */
1111         get_be32(pb); /* modification time */
1112     }
1113     st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/
1114     get_be32(pb); /* reserved */
1115     st->start_time = 0; /* check */
1116     (version == 1) ? get_be64(pb) : get_be32(pb); /* highlevel (considering edits) duration in movie timebase */
1117     get_be32(pb); /* reserved */
1118     get_be32(pb); /* reserved */
1119
1120     get_be16(pb); /* layer */
1121     get_be16(pb); /* alternate group */
1122     get_be16(pb); /* volume */
1123     get_be16(pb); /* reserved */
1124
1125     url_fskip(pb, 36); /* display matrix */
1126
1127     /* those are fixed-point */
1128     get_be32(pb); /* track width */
1129     get_be32(pb); /* track height */
1130
1131     return 0;
1132 }
1133
1134 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
1135 /* like the files created with Adobe Premiere 5.0, for samples see */
1136 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
1137 static int mov_read_wide(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1138 {
1139     int err;
1140
1141     if (atom.size < 8)
1142         return 0; /* continue */
1143     if (get_be32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
1144         url_fskip(pb, atom.size - 4);
1145         return 0;
1146     }
1147     atom.type = get_le32(pb);
1148     atom.offset += 8;
1149     atom.size -= 8;
1150     if (atom.type != MKTAG('m', 'd', 'a', 't')) {
1151         url_fskip(pb, atom.size);
1152         return 0;
1153     }
1154     err = mov_read_mdat(c, pb, atom);
1155     return err;
1156 }
1157
1158 static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1159 {
1160 #ifdef CONFIG_ZLIB
1161     ByteIOContext ctx;
1162     uint8_t *cmov_data;
1163     uint8_t *moov_data; /* uncompressed data */
1164     long cmov_len, moov_len;
1165     int ret;
1166
1167     get_be32(pb); /* dcom atom */
1168     if (get_le32(pb) != MKTAG( 'd', 'c', 'o', 'm' ))
1169         return -1;
1170     if (get_le32(pb) != MKTAG( 'z', 'l', 'i', 'b' )) {
1171         av_log(NULL, AV_LOG_ERROR, "unknown compression for cmov atom !");
1172         return -1;
1173     }
1174     get_be32(pb); /* cmvd atom */
1175     if (get_le32(pb) != MKTAG( 'c', 'm', 'v', 'd' ))
1176         return -1;
1177     moov_len = get_be32(pb); /* uncompressed size */
1178     cmov_len = atom.size - 6 * 4;
1179
1180     cmov_data = av_malloc(cmov_len);
1181     if (!cmov_data)
1182         return -1;
1183     moov_data = av_malloc(moov_len);
1184     if (!moov_data) {
1185         av_free(cmov_data);
1186         return -1;
1187     }
1188     get_buffer(pb, cmov_data, cmov_len);
1189     if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
1190         return -1;
1191     if(init_put_byte(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
1192         return -1;
1193     atom.type = MKTAG( 'm', 'o', 'o', 'v' );
1194     atom.offset = 0;
1195     atom.size = moov_len;
1196 #ifdef DEBUG
1197 //    { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); }
1198 #endif
1199     ret = mov_read_default(c, &ctx, atom);
1200     av_free(moov_data);
1201     av_free(cmov_data);
1202     return ret;
1203 #else
1204     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
1205     return -1;
1206 #endif
1207 }
1208
1209 /* edit list atom */
1210 static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1211 {
1212     int i, edit_count;
1213
1214     get_byte(pb); /* version */
1215     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
1216     edit_count= c->streams[c->fc->nb_streams-1]->edit_count = get_be32(pb);     /* entries */
1217
1218     for(i=0; i<edit_count; i++){
1219         get_be32(pb); /* Track duration */
1220         get_be32(pb); /* Media time */
1221         get_be32(pb); /* Media rate */
1222     }
1223     dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, c->streams[c->fc->nb_streams-1]->edit_count);
1224     return 0;
1225 }
1226
1227 static const MOVParseTableEntry mov_default_parse_table[] = {
1228 /* mp4 atoms */
1229 { MKTAG( 'c', 'o', '6', '4' ), mov_read_stco },
1230 { MKTAG( 'c', 't', 't', 's' ), mov_read_ctts }, /* composition time to sample */
1231 { MKTAG( 'e', 'd', 't', 's' ), mov_read_default },
1232 { MKTAG( 'e', 'l', 's', 't' ), mov_read_elst },
1233 { MKTAG( 'e', 'n', 'd', 'a' ), mov_read_enda },
1234 { MKTAG( 'f', 'i', 'e', 'l' ), mov_read_extradata },
1235 { MKTAG( 'f', 't', 'y', 'p' ), mov_read_ftyp },
1236 { MKTAG( 'h', 'd', 'l', 'r' ), mov_read_hdlr },
1237 { MKTAG( 'j', 'p', '2', 'h' ), mov_read_extradata },
1238 { MKTAG( 'm', 'd', 'a', 't' ), mov_read_mdat },
1239 { MKTAG( 'm', 'd', 'h', 'd' ), mov_read_mdhd },
1240 { MKTAG( 'm', 'd', 'i', 'a' ), mov_read_default },
1241 { MKTAG( 'm', 'i', 'n', 'f' ), mov_read_default },
1242 { MKTAG( 'm', 'o', 'o', 'v' ), mov_read_moov },
1243 { MKTAG( 'm', 'v', 'h', 'd' ), mov_read_mvhd },
1244 { MKTAG( 'S', 'M', 'I', ' ' ), mov_read_smi }, /* Sorenson extension ??? */
1245 { MKTAG( 'a', 'l', 'a', 'c' ), mov_read_extradata }, /* alac specific atom */
1246 { MKTAG( 'a', 'v', 'c', 'C' ), mov_read_avcC },
1247 { MKTAG( 's', 't', 'b', 'l' ), mov_read_default },
1248 { MKTAG( 's', 't', 'c', 'o' ), mov_read_stco },
1249 { MKTAG( 's', 't', 's', 'c' ), mov_read_stsc },
1250 { MKTAG( 's', 't', 's', 'd' ), mov_read_stsd }, /* sample description */
1251 { MKTAG( 's', 't', 's', 's' ), mov_read_stss }, /* sync sample */
1252 { MKTAG( 's', 't', 's', 'z' ), mov_read_stsz }, /* sample size */
1253 { MKTAG( 's', 't', 't', 's' ), mov_read_stts },
1254 { MKTAG( 't', 'k', 'h', 'd' ), mov_read_tkhd }, /* track header */
1255 { MKTAG( 't', 'r', 'a', 'k' ), mov_read_trak },
1256 { MKTAG( 'u', 'd', 't', 'a' ), mov_read_udta },
1257 { MKTAG( 'w', 'a', 'v', 'e' ), mov_read_wave },
1258 { MKTAG( 'e', 's', 'd', 's' ), mov_read_esds },
1259 { MKTAG( 'w', 'i', 'd', 'e' ), mov_read_wide }, /* place holder */
1260 { MKTAG( 'c', 'm', 'o', 'v' ), mov_read_cmov },
1261 { 0L, NULL }
1262 };
1263
1264 /* XXX: is it sufficient ? */
1265 static int mov_probe(AVProbeData *p)
1266 {
1267     unsigned int offset;
1268     uint32_t tag;
1269     int score = 0;
1270
1271     /* check file header */
1272     offset = 0;
1273     for(;;) {
1274         /* ignore invalid offset */
1275         if ((offset + 8) > (unsigned int)p->buf_size)
1276             return score;
1277         tag = AV_RL32(p->buf + offset + 4);
1278         switch(tag) {
1279         /* check for obvious tags */
1280         case MKTAG( 'j', 'P', ' ', ' ' ): /* jpeg 2000 signature */
1281         case MKTAG( 'm', 'o', 'o', 'v' ):
1282         case MKTAG( 'm', 'd', 'a', 't' ):
1283         case MKTAG( 'p', 'n', 'o', 't' ): /* detect movs with preview pics like ew.mov and april.mov */
1284         case MKTAG( 'u', 'd', 't', 'a' ): /* Packet Video PVAuthor adds this and a lot of more junk */
1285             return AVPROBE_SCORE_MAX;
1286         /* those are more common words, so rate then a bit less */
1287         case MKTAG( 'e', 'd', 'i', 'w' ): /* xdcam files have reverted first tags */
1288         case MKTAG( 'w', 'i', 'd', 'e' ):
1289         case MKTAG( 'f', 'r', 'e', 'e' ):
1290         case MKTAG( 'j', 'u', 'n', 'k' ):
1291         case MKTAG( 'p', 'i', 'c', 't' ):
1292             return AVPROBE_SCORE_MAX - 5;
1293         case MKTAG( 'f', 't', 'y', 'p' ):
1294         case MKTAG( 's', 'k', 'i', 'p' ):
1295         case MKTAG( 'u', 'u', 'i', 'd' ):
1296             offset = AV_RB32(p->buf+offset) + offset;
1297             /* if we only find those cause probedata is too small at least rate them */
1298             score = AVPROBE_SCORE_MAX - 50;
1299             break;
1300         default:
1301             /* unrecognized tag */
1302             return score;
1303         }
1304     }
1305     return score;
1306 }
1307
1308 static void mov_build_index(MOVContext *mov, AVStream *st)
1309 {
1310     MOVStreamContext *sc = st->priv_data;
1311     offset_t current_offset;
1312     int64_t current_dts = 0;
1313     unsigned int stts_index = 0;
1314     unsigned int stsc_index = 0;
1315     unsigned int stss_index = 0;
1316     unsigned int i, j, k;
1317
1318     if (sc->sample_sizes || st->codec->codec_type == CODEC_TYPE_VIDEO || sc->dv_audio_container) {
1319         unsigned int current_sample = 0;
1320         unsigned int stts_sample = 0;
1321         unsigned int keyframe, sample_size;
1322         unsigned int distance = 0;
1323
1324         st->nb_frames = sc->sample_count;
1325         for (i = 0; i < sc->chunk_count; i++) {
1326             current_offset = sc->chunk_offsets[i];
1327             if (stsc_index + 1 < sc->sample_to_chunk_sz && i + 1 == sc->sample_to_chunk[stsc_index + 1].first)
1328                 stsc_index++;
1329             for (j = 0; j < sc->sample_to_chunk[stsc_index].count; j++) {
1330                 if (current_sample >= sc->sample_count) {
1331                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
1332                     goto out;
1333                 }
1334                 keyframe = !sc->keyframe_count || current_sample + 1 == sc->keyframes[stss_index];
1335                 if (keyframe) {
1336                     distance = 0;
1337                     if (stss_index + 1 < sc->keyframe_count)
1338                         stss_index++;
1339                 }
1340                 sample_size = sc->sample_size > 0 ? sc->sample_size : sc->sample_sizes[current_sample];
1341                 dprintf(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", size %d, distance %d, keyframe %d\n",
1342                         st->index, current_sample, current_offset, current_dts, sample_size, distance, keyframe);
1343                 av_add_index_entry(st, current_offset, current_dts, sample_size, distance, keyframe ? AVINDEX_KEYFRAME : 0);
1344                 current_offset += sample_size;
1345                 assert(sc->stts_data[stts_index].duration % sc->time_rate == 0);
1346                 current_dts += sc->stts_data[stts_index].duration / sc->time_rate;
1347                 distance++;
1348                 stts_sample++;
1349                 current_sample++;
1350                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
1351                     stts_sample = 0;
1352                     stts_index++;
1353                 }
1354             }
1355         }
1356     } else { /* read whole chunk */
1357         unsigned int chunk_samples, chunk_size, chunk_duration;
1358
1359         for (i = 0; i < sc->chunk_count; i++) {
1360             current_offset = sc->chunk_offsets[i];
1361             if (stsc_index + 1 < sc->sample_to_chunk_sz && i + 1 == sc->sample_to_chunk[stsc_index + 1].first)
1362                 stsc_index++;
1363             chunk_samples = sc->sample_to_chunk[stsc_index].count;
1364             /* get chunk size */
1365             if (sc->sample_size > 1 || st->codec->codec_id == CODEC_ID_PCM_U8 || st->codec->codec_id == CODEC_ID_PCM_S8)
1366                 chunk_size = chunk_samples * sc->sample_size;
1367             else if (sc->samples_per_frame > 0 && (chunk_samples * sc->bytes_per_frame % sc->samples_per_frame == 0))
1368                 chunk_size = chunk_samples * sc->bytes_per_frame / sc->samples_per_frame;
1369             else { /* workaround to find nearest next chunk offset */
1370                 chunk_size = INT_MAX;
1371                 for (j = 0; j < mov->total_streams; j++) {
1372                     MOVStreamContext *msc = mov->streams[j];
1373
1374                     for (k = msc->next_chunk; k < msc->chunk_count; k++) {
1375                         if (msc->chunk_offsets[k] > current_offset && msc->chunk_offsets[k] - current_offset < chunk_size) {
1376                             chunk_size = msc->chunk_offsets[k] - current_offset;
1377                             msc->next_chunk = k;
1378                             break;
1379                         }
1380                     }
1381                 }
1382                 /* check for last chunk */
1383                 if (chunk_size == INT_MAX)
1384                     for (j = 0; j < mov->mdat_count; j++) {
1385                         dprintf(mov->fc, "mdat %d, offset %"PRIx64", size %"PRId64", current offset %"PRIx64"\n",
1386                                 j, mov->mdat_list[j].offset, mov->mdat_list[j].size, current_offset);
1387                         if (mov->mdat_list[j].offset <= current_offset && mov->mdat_list[j].offset + mov->mdat_list[j].size > current_offset)
1388                             chunk_size = mov->mdat_list[j].offset + mov->mdat_list[j].size - current_offset;
1389                     }
1390                 assert(chunk_size != INT_MAX);
1391                 for (j = 0; j < mov->total_streams; j++) {
1392                     mov->streams[j]->next_chunk = 0;
1393                 }
1394             }
1395             av_add_index_entry(st, current_offset, current_dts, chunk_size, 0, AVINDEX_KEYFRAME);
1396             /* get chunk duration */
1397             chunk_duration = 0;
1398             while (chunk_samples > 0) {
1399                 if (chunk_samples < sc->stts_data[stts_index].count) {
1400                     chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
1401                     sc->stts_data[stts_index].count -= chunk_samples;
1402                     break;
1403                 } else {
1404                     chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
1405                     chunk_samples -= sc->stts_data[stts_index].count;
1406                     if (stts_index + 1 < sc->stts_count) {
1407                         stts_index++;
1408                     }
1409                 }
1410             }
1411             dprintf(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", size %d, duration %d\n",
1412                     st->index, i, current_offset, current_dts, chunk_size, chunk_duration);
1413             assert(chunk_duration % sc->time_rate == 0);
1414             current_dts += chunk_duration / sc->time_rate;
1415         }
1416     }
1417  out:
1418     /* adjust sample count to avindex entries */
1419     sc->sample_count = st->nb_index_entries;
1420 }
1421
1422 static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
1423 {
1424     MOVContext *mov = s->priv_data;
1425     ByteIOContext *pb = &s->pb;
1426     int i, err;
1427     MOV_atom_t atom = { 0, 0, 0 };
1428
1429     mov->fc = s;
1430     mov->parse_table = mov_default_parse_table;
1431
1432     if(!url_is_streamed(pb)) /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
1433         atom.size = url_fsize(pb);
1434     else
1435         atom.size = INT64_MAX;
1436
1437     /* check MOV header */
1438     err = mov_read_default(mov, pb, atom);
1439     if (err<0 || (!mov->found_moov && !mov->found_mdat)) {
1440         av_log(s, AV_LOG_ERROR, "mov: header not found !!! (err:%d, moov:%d, mdat:%d) pos:%"PRId64"\n",
1441                 err, mov->found_moov, mov->found_mdat, url_ftell(pb));
1442         return -1;
1443     }
1444     dprintf(mov->fc, "on_parse_exit_offset=%d\n", (int) url_ftell(pb));
1445
1446     /* some cleanup : make sure we are on the mdat atom */
1447     if(!url_is_streamed(pb) && (url_ftell(pb) != mov->mdat_offset))
1448         url_fseek(pb, mov->mdat_offset, SEEK_SET);
1449
1450     mov->total_streams = s->nb_streams;
1451
1452     for(i=0; i<mov->total_streams; i++) {
1453         MOVStreamContext *sc = mov->streams[i];
1454         AVStream *st = s->streams[i];
1455         /* sanity checks */
1456         if(!sc->stts_count || !sc->chunk_count || !sc->sample_to_chunk_sz ||
1457            (!sc->sample_size && !sc->sample_count)){
1458             av_log(s, AV_LOG_ERROR, "missing mandatory atoms, broken header\n");
1459             sc->sample_count = 0; //ignore track
1460             continue;
1461         }
1462         if(!sc->time_rate)
1463             sc->time_rate=1;
1464         if(!sc->time_scale)
1465             sc->time_scale= mov->time_scale;
1466         av_set_pts_info(st, 64, sc->time_rate, sc->time_scale);
1467
1468         if (st->codec->codec_type == CODEC_TYPE_AUDIO && sc->stts_count == 1)
1469             st->codec->frame_size = sc->stts_data[0].duration;
1470
1471         if(st->duration != AV_NOPTS_VALUE){
1472             assert(st->duration % sc->time_rate == 0);
1473             st->duration /= sc->time_rate;
1474         }
1475         sc->ffindex = i;
1476         mov_build_index(mov, st);
1477     }
1478
1479     for(i=0; i<mov->total_streams; i++) {
1480         /* Do not need those anymore. */
1481         av_freep(&mov->streams[i]->chunk_offsets);
1482         av_freep(&mov->streams[i]->sample_to_chunk);
1483         av_freep(&mov->streams[i]->sample_sizes);
1484         av_freep(&mov->streams[i]->keyframes);
1485         av_freep(&mov->streams[i]->stts_data);
1486     }
1487     av_freep(&mov->mdat_list);
1488     return 0;
1489 }
1490
1491 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
1492 {
1493     MOVContext *mov = s->priv_data;
1494     MOVStreamContext *sc = 0;
1495     AVIndexEntry *sample = 0;
1496     int64_t best_dts = INT64_MAX;
1497     int i;
1498
1499     for (i = 0; i < mov->total_streams; i++) {
1500         MOVStreamContext *msc = mov->streams[i];
1501
1502         if (s->streams[i]->discard != AVDISCARD_ALL && msc->current_sample < msc->sample_count) {
1503             AVIndexEntry *current_sample = &s->streams[i]->index_entries[msc->current_sample];
1504             int64_t dts = av_rescale(current_sample->timestamp * (int64_t)msc->time_rate, AV_TIME_BASE, msc->time_scale);
1505
1506             dprintf(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
1507             if (dts < best_dts) {
1508                 sample = current_sample;
1509                 best_dts = dts;
1510                 sc = msc;
1511             }
1512         }
1513     }
1514     if (!sample)
1515         return -1;
1516     /* must be done just before reading, to avoid infinite loop on sample */
1517     sc->current_sample++;
1518     if (sample->pos >= url_fsize(&s->pb)) {
1519         av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n", sc->ffindex, sample->pos);
1520         return -1;
1521     }
1522 #ifdef CONFIG_DV_DEMUXER
1523     if (sc->dv_audio_container) {
1524         dv_get_packet(mov->dv_demux, pkt);
1525         dprintf(s, "dv audio pkt size %d\n", pkt->size);
1526     } else {
1527 #endif
1528         url_fseek(&s->pb, sample->pos, SEEK_SET);
1529         av_get_packet(&s->pb, pkt, sample->size);
1530 #ifdef CONFIG_DV_DEMUXER
1531         if (mov->dv_demux) {
1532             void *pkt_destruct_func = pkt->destruct;
1533             dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
1534             pkt->destruct = pkt_destruct_func;
1535         }
1536     }
1537 #endif
1538     pkt->stream_index = sc->ffindex;
1539     pkt->dts = sample->timestamp;
1540     if (sc->ctts_data) {
1541         assert(sc->ctts_data[sc->sample_to_ctime_index].duration % sc->time_rate == 0);
1542         pkt->pts = pkt->dts + sc->ctts_data[sc->sample_to_ctime_index].duration / sc->time_rate;
1543         /* update ctts context */
1544         sc->sample_to_ctime_sample++;
1545         if (sc->sample_to_ctime_index < sc->ctts_count && sc->ctts_data[sc->sample_to_ctime_index].count == sc->sample_to_ctime_sample) {
1546             sc->sample_to_ctime_index++;
1547             sc->sample_to_ctime_sample = 0;
1548         }
1549     } else {
1550         pkt->pts = pkt->dts;
1551     }
1552     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? PKT_FLAG_KEY : 0;
1553     pkt->pos = sample->pos;
1554     dprintf(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n", pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration);
1555     return 0;
1556 }
1557
1558 static int mov_seek_stream(AVStream *st, int64_t timestamp, int flags)
1559 {
1560     MOVStreamContext *sc = st->priv_data;
1561     int sample, time_sample;
1562     int i;
1563
1564     sample = av_index_search_timestamp(st, timestamp, flags);
1565     dprintf(st->codec, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
1566     if (sample < 0) /* not sure what to do */
1567         return -1;
1568     sc->current_sample = sample;
1569     dprintf(st->codec, "stream %d, found sample %d\n", st->index, sc->current_sample);
1570     /* adjust ctts index */
1571     if (sc->ctts_data) {
1572         time_sample = 0;
1573         for (i = 0; i < sc->ctts_count; i++) {
1574             int next = time_sample + sc->ctts_data[i].count;
1575             if (next > sc->current_sample) {
1576                 sc->sample_to_ctime_index = i;
1577                 sc->sample_to_ctime_sample = sc->current_sample - time_sample;
1578                 break;
1579             }
1580             time_sample = next;
1581         }
1582     }
1583     return sample;
1584 }
1585
1586 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
1587 {
1588     AVStream *st;
1589     int64_t seek_timestamp, timestamp;
1590     int sample;
1591     int i;
1592
1593     if (stream_index >= s->nb_streams)
1594         return -1;
1595
1596     st = s->streams[stream_index];
1597     sample = mov_seek_stream(st, sample_time, flags);
1598     if (sample < 0)
1599         return -1;
1600
1601     /* adjust seek timestamp to found sample timestamp */
1602     seek_timestamp = st->index_entries[sample].timestamp;
1603
1604     for (i = 0; i < s->nb_streams; i++) {
1605         st = s->streams[i];
1606         if (stream_index == i || st->discard == AVDISCARD_ALL)
1607             continue;
1608
1609         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
1610         mov_seek_stream(st, timestamp, flags);
1611     }
1612     return 0;
1613 }
1614
1615 static int mov_read_close(AVFormatContext *s)
1616 {
1617     int i;
1618     MOVContext *mov = s->priv_data;
1619     for(i=0; i<mov->total_streams; i++) {
1620         av_freep(&mov->streams[i]->ctts_data);
1621         av_freep(&mov->streams[i]);
1622     }
1623     if(mov->dv_demux){
1624         for(i=0; i<mov->dv_fctx->nb_streams; i++){
1625             av_freep(&mov->dv_fctx->streams[i]->codec);
1626             av_freep(&mov->dv_fctx->streams[i]);
1627         }
1628         av_freep(&mov->dv_fctx);
1629         av_freep(&mov->dv_demux);
1630     }
1631     return 0;
1632 }
1633
1634 AVInputFormat mov_demuxer = {
1635     "mov,mp4,m4a,3gp,3g2,mj2",
1636     "QuickTime/MPEG4/Motion JPEG 2000 format",
1637     sizeof(MOVContext),
1638     mov_probe,
1639     mov_read_header,
1640     mov_read_packet,
1641     mov_read_close,
1642     mov_read_seek,
1643 };