]> git.sesse.net Git - ffmpeg/blob - libavformat/mov.c
bring back h264 build
[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     if((uint64_t)atom.size > (1<<30))
474         return -1;
475     av_free(st->codec->extradata);
476     st->codec->extradata_size = atom.size + 8;
477     st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
478     if (st->codec->extradata) {
479         AV_WL32(st->codec->extradata + 4, atom.type);
480         get_buffer(pb, st->codec->extradata + 8, atom.size);
481     } else
482         url_fskip(pb, atom.size);
483     return 0;
484 }
485
486 static int mov_read_wave(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
487 {
488     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
489
490     if((uint64_t)atom.size > (1<<30))
491         return -1;
492
493     if (st->codec->codec_id == CODEC_ID_QDM2) {
494         // pass all frma atom to codec, needed at least for QDM2
495         av_free(st->codec->extradata);
496         st->codec->extradata_size = atom.size;
497         st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
498
499         if (st->codec->extradata) {
500             get_buffer(pb, st->codec->extradata, atom.size);
501         } else
502             url_fskip(pb, atom.size);
503     } else if (atom.size > 8) { /* to read frma, esds atoms */
504         mov_read_default(c, pb, atom);
505     } else
506         url_fskip(pb, atom.size);
507     return 0;
508 }
509
510 static int mov_read_avcC(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
511 {
512     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
513
514     if((uint64_t)atom.size > (1<<30))
515         return -1;
516
517     av_free(st->codec->extradata);
518
519     st->codec->extradata_size = atom.size;
520     st->codec->extradata = av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
521
522     if (st->codec->extradata) {
523         get_buffer(pb, st->codec->extradata, atom.size);
524     } else
525         url_fskip(pb, atom.size);
526
527     return 0;
528 }
529
530 static int mov_read_stco(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
531 {
532     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
533     MOVStreamContext *sc = st->priv_data;
534     unsigned int i, entries;
535
536     get_byte(pb); /* version */
537     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
538
539     entries = get_be32(pb);
540
541     if(entries >= UINT_MAX/sizeof(int64_t))
542         return -1;
543
544     sc->chunk_count = entries;
545     sc->chunk_offsets = av_malloc(entries * sizeof(int64_t));
546     if (!sc->chunk_offsets)
547         return -1;
548     if (atom.type == MKTAG('s', 't', 'c', 'o')) {
549         for(i=0; i<entries; i++) {
550             sc->chunk_offsets[i] = get_be32(pb);
551         }
552     } else if (atom.type == MKTAG('c', 'o', '6', '4')) {
553         for(i=0; i<entries; i++) {
554             sc->chunk_offsets[i] = get_be64(pb);
555         }
556     } else
557         return -1;
558
559     return 0;
560 }
561
562 static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
563 {
564     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
565     MOVStreamContext *sc = st->priv_data;
566     int entries, frames_per_sample;
567     uint32_t format;
568     uint8_t codec_name[32];
569
570     /* for palette traversal */
571     int color_depth;
572     int color_start;
573     int color_count;
574     int color_end;
575     int color_index;
576     int color_dec;
577     int color_greyscale;
578     unsigned char *color_table;
579     int j;
580     unsigned char r, g, b;
581
582     get_byte(pb); /* version */
583     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
584
585     entries = get_be32(pb);
586
587     while(entries--) { //Parsing Sample description table
588         enum CodecID id;
589         MOV_atom_t a = { 0, 0, 0 };
590         offset_t start_pos = url_ftell(pb);
591         int size = get_be32(pb); /* size */
592         format = get_le32(pb); /* data format */
593
594         get_be32(pb); /* reserved */
595         get_be16(pb); /* reserved */
596         get_be16(pb); /* index */
597
598         if (st->codec->codec_tag) {
599             /* multiple fourcc, just skip for now */
600             url_fskip(pb, size - (url_ftell(pb) - start_pos));
601             continue;
602         }
603
604         st->codec->codec_tag = format;
605         id = codec_get_id(codec_movaudio_tags, format);
606         if (st->codec->codec_type != CODEC_TYPE_VIDEO && id > 0) {
607             st->codec->codec_type = CODEC_TYPE_AUDIO;
608         } else if (st->codec->codec_type != CODEC_TYPE_AUDIO && /* do not overwrite codec type */
609                    format && format != MKTAG('m', 'p', '4', 's')) { /* skip old asf mpeg4 tag */
610             id = codec_get_id(codec_movvideo_tags, format);
611             if (id <= 0)
612                 id = codec_get_id(codec_bmp_tags, format);
613             if (id > 0)
614                 st->codec->codec_type = CODEC_TYPE_VIDEO;
615         }
616
617         dprintf(c->fc, "size=%d 4CC= %c%c%c%c codec_type=%d\n",
618                 size,
619                 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff, (format >> 24) & 0xff,
620                 st->codec->codec_type);
621
622         if(st->codec->codec_type==CODEC_TYPE_VIDEO) {
623             st->codec->codec_id = id;
624             get_be16(pb); /* version */
625             get_be16(pb); /* revision level */
626             get_be32(pb); /* vendor */
627             get_be32(pb); /* temporal quality */
628             get_be32(pb); /* spacial quality */
629
630             st->codec->width = get_be16(pb); /* width */
631             st->codec->height = get_be16(pb); /* height */
632
633             get_be32(pb); /* horiz resolution */
634             get_be32(pb); /* vert resolution */
635             get_be32(pb); /* data size, always 0 */
636             frames_per_sample = get_be16(pb); /* frames per samples */
637
638             dprintf(c->fc, "frames/samples = %d\n", frames_per_sample);
639
640             get_buffer(pb, codec_name, 32); /* codec name, pascal string (FIXME: true for mp4?) */
641             if (codec_name[0] <= 31) {
642                 memcpy(st->codec->codec_name, &codec_name[1],codec_name[0]);
643                 st->codec->codec_name[codec_name[0]] = 0;
644             }
645
646             st->codec->bits_per_sample = get_be16(pb); /* depth */
647             st->codec->color_table_id = get_be16(pb); /* colortable id */
648
649             /* figure out the palette situation */
650             color_depth = st->codec->bits_per_sample & 0x1F;
651             color_greyscale = st->codec->bits_per_sample & 0x20;
652
653             /* if the depth is 2, 4, or 8 bpp, file is palettized */
654             if ((color_depth == 2) || (color_depth == 4) ||
655                 (color_depth == 8)) {
656
657                 if (color_greyscale) {
658
659                     /* compute the greyscale palette */
660                     color_count = 1 << color_depth;
661                     color_index = 255;
662                     color_dec = 256 / (color_count - 1);
663                     for (j = 0; j < color_count; j++) {
664                         r = g = b = color_index;
665                         c->palette_control.palette[j] =
666                             (r << 16) | (g << 8) | (b);
667                         color_index -= color_dec;
668                         if (color_index < 0)
669                             color_index = 0;
670                     }
671
672                 } else if (st->codec->color_table_id & 0x08) {
673
674                     /* if flag bit 3 is set, use the default palette */
675                     color_count = 1 << color_depth;
676                     if (color_depth == 2)
677                         color_table = ff_qt_default_palette_4;
678                     else if (color_depth == 4)
679                         color_table = ff_qt_default_palette_16;
680                     else
681                         color_table = ff_qt_default_palette_256;
682
683                     for (j = 0; j < color_count; j++) {
684                         r = color_table[j * 4 + 0];
685                         g = color_table[j * 4 + 1];
686                         b = color_table[j * 4 + 2];
687                         c->palette_control.palette[j] =
688                             (r << 16) | (g << 8) | (b);
689                     }
690
691                 } else {
692
693                     /* load the palette from the file */
694                     color_start = get_be32(pb);
695                     color_count = get_be16(pb);
696                     color_end = get_be16(pb);
697                     for (j = color_start; j <= color_end; j++) {
698                         /* each R, G, or B component is 16 bits;
699                          * only use the top 8 bits; skip alpha bytes
700                          * up front */
701                         get_byte(pb);
702                         get_byte(pb);
703                         r = get_byte(pb);
704                         get_byte(pb);
705                         g = get_byte(pb);
706                         get_byte(pb);
707                         b = get_byte(pb);
708                         get_byte(pb);
709                         c->palette_control.palette[j] =
710                             (r << 16) | (g << 8) | (b);
711                     }
712                 }
713
714                 st->codec->palctrl = &c->palette_control;
715                 st->codec->palctrl->palette_changed = 1;
716             } else
717                 st->codec->palctrl = NULL;
718         } else if(st->codec->codec_type==CODEC_TYPE_AUDIO) {
719             int bits_per_sample;
720             uint16_t version = get_be16(pb);
721
722             st->codec->codec_id = id;
723             get_be16(pb); /* revision level */
724             get_be32(pb); /* vendor */
725
726             st->codec->channels = get_be16(pb);             /* channel count */
727             dprintf(c->fc, "audio channels %d\n", st->codec->channels);
728             st->codec->bits_per_sample = get_be16(pb);      /* sample size */
729             /* do we need to force to 16 for AMR ? */
730
731             /* handle specific s8 codec */
732             get_be16(pb); /* compression id = 0*/
733             get_be16(pb); /* packet size = 0 */
734
735             st->codec->sample_rate = ((get_be32(pb) >> 16));
736
737             switch (st->codec->codec_id) {
738             case CODEC_ID_PCM_S8:
739             case CODEC_ID_PCM_U8:
740                 if (st->codec->bits_per_sample == 16)
741                     st->codec->codec_id = CODEC_ID_PCM_S16BE;
742                 break;
743             case CODEC_ID_PCM_S16LE:
744             case CODEC_ID_PCM_S16BE:
745                 if (st->codec->bits_per_sample == 8)
746                     st->codec->codec_id = CODEC_ID_PCM_S8;
747                 else if (st->codec->bits_per_sample == 24)
748                     st->codec->codec_id = CODEC_ID_PCM_S24BE;
749                 break;
750             default:
751                 break;
752             }
753
754             //Read QT version 1 fields. In version 0 these do not exist.
755             dprintf(c->fc, "version =%d, isom =%d\n",version,c->isom);
756             if(!c->isom) {
757                 if(version==1) {
758                     sc->samples_per_frame = get_be32(pb);
759                     get_be32(pb); /* bytes per packet */
760                     sc->bytes_per_frame = get_be32(pb);
761                     get_be32(pb); /* bytes per sample */
762                 } else if(version==2) {
763                     get_be32(pb); /* sizeof struct only */
764                     st->codec->sample_rate = av_int2dbl(get_be64(pb)); /* float 64 */
765                     st->codec->channels = get_be32(pb);
766                     get_be32(pb); /* always 0x7F000000 */
767                     get_be32(pb); /* bits per channel if sound is uncompressed */
768                     get_be32(pb); /* lcpm format specific flag */
769                     get_be32(pb); /* bytes per audio packet if constant */
770                     get_be32(pb); /* lpcm frames per audio packet if constant */
771                 }
772             }
773
774             bits_per_sample = av_get_bits_per_sample(st->codec->codec_id);
775             if (bits_per_sample) {
776                 st->codec->bits_per_sample = bits_per_sample;
777                 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels;
778             }
779         } else {
780             /* other codec type, just skip (rtp, mp4s, tmcd ...) */
781             url_fskip(pb, size - (url_ftell(pb) - start_pos));
782         }
783         /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */
784         a.size = size - (url_ftell(pb) - start_pos);
785         if (a.size > 8)
786             mov_read_default(c, pb, a);
787         else if (a.size > 0)
788             url_fskip(pb, a.size);
789     }
790
791     if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1) {
792         st->codec->sample_rate= sc->time_scale;
793     }
794
795     /* special codec parameters handling */
796     switch (st->codec->codec_id) {
797 #ifdef CONFIG_H261_DECODER
798     case CODEC_ID_H261:
799 #endif
800 #ifdef CONFIG_H263_DECODER
801     case CODEC_ID_H263:
802 #endif
803 #ifdef CONFIG_MPEG4_DECODER
804     case CODEC_ID_MPEG4:
805 #endif
806         st->codec->width= 0; /* let decoder init width/height */
807         st->codec->height= 0;
808         break;
809 #ifdef CONFIG_LIBFAAD
810     case CODEC_ID_AAC:
811 #endif
812 #ifdef CONFIG_VORBIS_DECODER
813     case CODEC_ID_VORBIS:
814 #endif
815     case CODEC_ID_MP3ON4:
816         st->codec->sample_rate= 0; /* let decoder init parameters properly */
817         break;
818 #ifdef CONFIG_DV_DEMUXER
819     case CODEC_ID_DVAUDIO:
820         c->dv_fctx = av_alloc_format_context();
821         c->dv_demux = dv_init_demux(c->dv_fctx);
822         if (!c->dv_demux) {
823             av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n");
824             return -1;
825         }
826         sc->dv_audio_container = 1;
827         st->codec->codec_id = CODEC_ID_PCM_S16LE;
828         break;
829 #endif
830     /* no ifdef since parameters are always those */
831     case CODEC_ID_AMR_WB:
832         st->codec->sample_rate= 16000;
833         st->codec->channels= 1; /* really needed */
834         break;
835     case CODEC_ID_AMR_NB:
836         st->codec->sample_rate= 8000;
837         st->codec->channels= 1; /* really needed */
838         break;
839     case CODEC_ID_MP2:
840     case CODEC_ID_MP3:
841         st->codec->codec_type = CODEC_TYPE_AUDIO; /* force type after stsd for m1a hdlr */
842         st->need_parsing = AVSTREAM_PARSE_FULL;
843         break;
844     default:
845         break;
846     }
847
848     return 0;
849 }
850
851 static int mov_read_stsc(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
852 {
853     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
854     MOVStreamContext *sc = st->priv_data;
855     unsigned int i, entries;
856
857     get_byte(pb); /* version */
858     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
859
860     entries = get_be32(pb);
861
862     if(entries >= UINT_MAX / sizeof(MOV_stsc_t))
863         return -1;
864
865     dprintf(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries);
866
867     sc->sample_to_chunk_sz = entries;
868     sc->sample_to_chunk = av_malloc(entries * sizeof(MOV_stsc_t));
869     if (!sc->sample_to_chunk)
870         return -1;
871     for(i=0; i<entries; i++) {
872         sc->sample_to_chunk[i].first = get_be32(pb);
873         sc->sample_to_chunk[i].count = get_be32(pb);
874         sc->sample_to_chunk[i].id = get_be32(pb);
875     }
876     return 0;
877 }
878
879 static int mov_read_stss(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
880 {
881     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
882     MOVStreamContext *sc = st->priv_data;
883     unsigned int i, entries;
884
885     get_byte(pb); /* version */
886     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
887
888     entries = get_be32(pb);
889
890     if(entries >= UINT_MAX / sizeof(int))
891         return -1;
892
893     sc->keyframe_count = entries;
894
895     dprintf(c->fc, "keyframe_count = %d\n", sc->keyframe_count);
896
897     sc->keyframes = av_malloc(entries * sizeof(int));
898     if (!sc->keyframes)
899         return -1;
900     for(i=0; i<entries; i++) {
901         sc->keyframes[i] = get_be32(pb);
902         //dprintf(c->fc, "keyframes[]=%d\n", sc->keyframes[i]);
903     }
904     return 0;
905 }
906
907 static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
908 {
909     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
910     MOVStreamContext *sc = st->priv_data;
911     unsigned int i, entries, sample_size;
912
913     get_byte(pb); /* version */
914     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
915
916     sample_size = get_be32(pb);
917     if (!sc->sample_size) /* do not overwrite value computed in stsd */
918         sc->sample_size = sample_size;
919     entries = get_be32(pb);
920     if(entries >= UINT_MAX / sizeof(int))
921         return -1;
922
923     sc->sample_count = entries;
924     if (sample_size)
925         return 0;
926
927     dprintf(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, sc->sample_count);
928
929     sc->sample_sizes = av_malloc(entries * sizeof(int));
930     if (!sc->sample_sizes)
931         return -1;
932     for(i=0; i<entries; i++) {
933         sc->sample_sizes[i] = get_be32(pb);
934         dprintf(c->fc, "sample_sizes[]=%d\n", sc->sample_sizes[i]);
935     }
936     return 0;
937 }
938
939 static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
940 {
941     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
942     MOVStreamContext *sc = st->priv_data;
943     unsigned int i, entries;
944     int64_t duration=0;
945     int64_t total_sample_count=0;
946
947     get_byte(pb); /* version */
948     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
949     entries = get_be32(pb);
950     if(entries >= UINT_MAX / sizeof(MOV_stts_t))
951         return -1;
952
953     sc->stts_count = entries;
954     sc->stts_data = av_malloc(entries * sizeof(MOV_stts_t));
955
956     dprintf(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries);
957
958     sc->time_rate=0;
959
960     for(i=0; i<entries; i++) {
961         int sample_duration;
962         int sample_count;
963
964         sample_count=get_be32(pb);
965         sample_duration = get_be32(pb);
966         sc->stts_data[i].count= sample_count;
967         sc->stts_data[i].duration= sample_duration;
968
969         sc->time_rate= ff_gcd(sc->time_rate, sample_duration);
970
971         dprintf(c->fc, "sample_count=%d, sample_duration=%d\n",sample_count,sample_duration);
972
973         duration+=(int64_t)sample_duration*sample_count;
974         total_sample_count+=sample_count;
975     }
976
977     st->nb_frames= total_sample_count;
978     if(duration)
979         st->duration= duration;
980     return 0;
981 }
982
983 static int mov_read_ctts(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
984 {
985     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
986     MOVStreamContext *sc = st->priv_data;
987     unsigned int i, entries;
988
989     get_byte(pb); /* version */
990     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
991     entries = get_be32(pb);
992     if(entries >= UINT_MAX / sizeof(MOV_stts_t))
993         return -1;
994
995     sc->ctts_count = entries;
996     sc->ctts_data = av_malloc(entries * sizeof(MOV_stts_t));
997
998     dprintf(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries);
999
1000     for(i=0; i<entries; i++) {
1001         int count    =get_be32(pb);
1002         int duration =get_be32(pb);
1003
1004         if (duration < 0) {
1005             av_log(c->fc, AV_LOG_ERROR, "negative ctts, ignoring\n");
1006             sc->ctts_count = 0;
1007             url_fskip(pb, 8 * (entries - i - 1));
1008             break;
1009         }
1010         sc->ctts_data[i].count   = count;
1011         sc->ctts_data[i].duration= duration;
1012
1013         sc->time_rate= ff_gcd(sc->time_rate, duration);
1014     }
1015     return 0;
1016 }
1017
1018 static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1019 {
1020     AVStream *st;
1021     MOVStreamContext *sc;
1022
1023     st = av_new_stream(c->fc, c->fc->nb_streams);
1024     if (!st) return -2;
1025     sc = av_mallocz(sizeof(MOVStreamContext));
1026     if (!sc) {
1027         av_free(st);
1028         return -1;
1029     }
1030
1031     st->priv_data = sc;
1032     st->codec->codec_type = CODEC_TYPE_DATA;
1033     st->start_time = 0; /* XXX: check */
1034     c->streams[c->fc->nb_streams-1] = sc;
1035
1036     return mov_read_default(c, pb, atom);
1037 }
1038
1039 static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1040 {
1041     AVStream *st = c->fc->streams[c->fc->nb_streams-1];
1042     int version = get_byte(pb);
1043
1044     get_byte(pb); get_byte(pb);
1045     get_byte(pb); /* flags */
1046     /*
1047     MOV_TRACK_ENABLED 0x0001
1048     MOV_TRACK_IN_MOVIE 0x0002
1049     MOV_TRACK_IN_PREVIEW 0x0004
1050     MOV_TRACK_IN_POSTER 0x0008
1051     */
1052
1053     if (version == 1) {
1054         get_be64(pb);
1055         get_be64(pb);
1056     } else {
1057         get_be32(pb); /* creation time */
1058         get_be32(pb); /* modification time */
1059     }
1060     st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/
1061     get_be32(pb); /* reserved */
1062     st->start_time = 0; /* check */
1063     (version == 1) ? get_be64(pb) : get_be32(pb); /* highlevel (considering edits) duration in movie timebase */
1064     get_be32(pb); /* reserved */
1065     get_be32(pb); /* reserved */
1066
1067     get_be16(pb); /* layer */
1068     get_be16(pb); /* alternate group */
1069     get_be16(pb); /* volume */
1070     get_be16(pb); /* reserved */
1071
1072     url_fskip(pb, 36); /* display matrix */
1073
1074     /* those are fixed-point */
1075     get_be32(pb); /* track width */
1076     get_be32(pb); /* track height */
1077
1078     return 0;
1079 }
1080
1081 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */
1082 /* like the files created with Adobe Premiere 5.0, for samples see */
1083 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */
1084 static int mov_read_wide(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1085 {
1086     int err;
1087
1088     if (atom.size < 8)
1089         return 0; /* continue */
1090     if (get_be32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */
1091         url_fskip(pb, atom.size - 4);
1092         return 0;
1093     }
1094     atom.type = get_le32(pb);
1095     atom.offset += 8;
1096     atom.size -= 8;
1097     if (atom.type != MKTAG('m', 'd', 'a', 't')) {
1098         url_fskip(pb, atom.size);
1099         return 0;
1100     }
1101     err = mov_read_mdat(c, pb, atom);
1102     return err;
1103 }
1104
1105 static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1106 {
1107 #ifdef CONFIG_ZLIB
1108     ByteIOContext ctx;
1109     uint8_t *cmov_data;
1110     uint8_t *moov_data; /* uncompressed data */
1111     long cmov_len, moov_len;
1112     int ret;
1113
1114     get_be32(pb); /* dcom atom */
1115     if (get_le32(pb) != MKTAG( 'd', 'c', 'o', 'm' ))
1116         return -1;
1117     if (get_le32(pb) != MKTAG( 'z', 'l', 'i', 'b' )) {
1118         av_log(NULL, AV_LOG_ERROR, "unknown compression for cmov atom !");
1119         return -1;
1120     }
1121     get_be32(pb); /* cmvd atom */
1122     if (get_le32(pb) != MKTAG( 'c', 'm', 'v', 'd' ))
1123         return -1;
1124     moov_len = get_be32(pb); /* uncompressed size */
1125     cmov_len = atom.size - 6 * 4;
1126
1127     cmov_data = av_malloc(cmov_len);
1128     if (!cmov_data)
1129         return -1;
1130     moov_data = av_malloc(moov_len);
1131     if (!moov_data) {
1132         av_free(cmov_data);
1133         return -1;
1134     }
1135     get_buffer(pb, cmov_data, cmov_len);
1136     if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK)
1137         return -1;
1138     if(init_put_byte(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0)
1139         return -1;
1140     atom.type = MKTAG( 'm', 'o', 'o', 'v' );
1141     atom.offset = 0;
1142     atom.size = moov_len;
1143 #ifdef DEBUG
1144 //    { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); }
1145 #endif
1146     ret = mov_read_default(c, &ctx, atom);
1147     av_free(moov_data);
1148     av_free(cmov_data);
1149     return ret;
1150 #else
1151     av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n");
1152     return -1;
1153 #endif
1154 }
1155
1156 /* edit list atom */
1157 static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
1158 {
1159     int i, edit_count;
1160
1161     get_byte(pb); /* version */
1162     get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
1163     edit_count= c->streams[c->fc->nb_streams-1]->edit_count = get_be32(pb);     /* entries */
1164
1165     for(i=0; i<edit_count; i++){
1166         get_be32(pb); /* Track duration */
1167         get_be32(pb); /* Media time */
1168         get_be32(pb); /* Media rate */
1169     }
1170     dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, c->streams[c->fc->nb_streams-1]->edit_count);
1171     return 0;
1172 }
1173
1174 static const MOVParseTableEntry mov_default_parse_table[] = {
1175 /* mp4 atoms */
1176 { MKTAG( 'c', 'o', '6', '4' ), mov_read_stco },
1177 { MKTAG( 'c', 't', 't', 's' ), mov_read_ctts }, /* composition time to sample */
1178 { MKTAG( 'e', 'd', 't', 's' ), mov_read_default },
1179 { MKTAG( 'e', 'l', 's', 't' ), mov_read_elst },
1180 { MKTAG( 'e', 'n', 'd', 'a' ), mov_read_enda },
1181 { MKTAG( 'f', 'i', 'e', 'l' ), mov_read_extradata },
1182 { MKTAG( 'f', 't', 'y', 'p' ), mov_read_ftyp },
1183 { MKTAG( 'h', 'd', 'l', 'r' ), mov_read_hdlr },
1184 { MKTAG( 'j', 'p', '2', 'h' ), mov_read_extradata },
1185 { MKTAG( 'm', 'd', 'a', 't' ), mov_read_mdat },
1186 { MKTAG( 'm', 'd', 'h', 'd' ), mov_read_mdhd },
1187 { MKTAG( 'm', 'd', 'i', 'a' ), mov_read_default },
1188 { MKTAG( 'm', 'i', 'n', 'f' ), mov_read_default },
1189 { MKTAG( 'm', 'o', 'o', 'v' ), mov_read_moov },
1190 { MKTAG( 'm', 'v', 'h', 'd' ), mov_read_mvhd },
1191 { MKTAG( 'S', 'M', 'I', ' ' ), mov_read_smi }, /* Sorenson extension ??? */
1192 { MKTAG( 'a', 'l', 'a', 'c' ), mov_read_extradata }, /* alac specific atom */
1193 { MKTAG( 'a', 'v', 'c', 'C' ), mov_read_avcC },
1194 { MKTAG( 's', 't', 'b', 'l' ), mov_read_default },
1195 { MKTAG( 's', 't', 'c', 'o' ), mov_read_stco },
1196 { MKTAG( 's', 't', 's', 'c' ), mov_read_stsc },
1197 { MKTAG( 's', 't', 's', 'd' ), mov_read_stsd }, /* sample description */
1198 { MKTAG( 's', 't', 's', 's' ), mov_read_stss }, /* sync sample */
1199 { MKTAG( 's', 't', 's', 'z' ), mov_read_stsz }, /* sample size */
1200 { MKTAG( 's', 't', 't', 's' ), mov_read_stts },
1201 { MKTAG( 't', 'k', 'h', 'd' ), mov_read_tkhd }, /* track header */
1202 { MKTAG( 't', 'r', 'a', 'k' ), mov_read_trak },
1203 { MKTAG( 'w', 'a', 'v', 'e' ), mov_read_wave },
1204 { MKTAG( 'e', 's', 'd', 's' ), mov_read_esds },
1205 { MKTAG( 'w', 'i', 'd', 'e' ), mov_read_wide }, /* place holder */
1206 { MKTAG( 'c', 'm', 'o', 'v' ), mov_read_cmov },
1207 { 0L, NULL }
1208 };
1209
1210 /* XXX: is it sufficient ? */
1211 static int mov_probe(AVProbeData *p)
1212 {
1213     unsigned int offset;
1214     uint32_t tag;
1215     int score = 0;
1216
1217     /* check file header */
1218     offset = 0;
1219     for(;;) {
1220         /* ignore invalid offset */
1221         if ((offset + 8) > (unsigned int)p->buf_size)
1222             return score;
1223         tag = AV_RL32(p->buf + offset + 4);
1224         switch(tag) {
1225         /* check for obvious tags */
1226         case MKTAG( 'j', 'P', ' ', ' ' ): /* jpeg 2000 signature */
1227         case MKTAG( 'm', 'o', 'o', 'v' ):
1228         case MKTAG( 'm', 'd', 'a', 't' ):
1229         case MKTAG( 'p', 'n', 'o', 't' ): /* detect movs with preview pics like ew.mov and april.mov */
1230         case MKTAG( 'u', 'd', 't', 'a' ): /* Packet Video PVAuthor adds this and a lot of more junk */
1231             return AVPROBE_SCORE_MAX;
1232         /* those are more common words, so rate then a bit less */
1233         case MKTAG( 'e', 'd', 'i', 'w' ): /* xdcam files have reverted first tags */
1234         case MKTAG( 'w', 'i', 'd', 'e' ):
1235         case MKTAG( 'f', 'r', 'e', 'e' ):
1236         case MKTAG( 'j', 'u', 'n', 'k' ):
1237         case MKTAG( 'p', 'i', 'c', 't' ):
1238             return AVPROBE_SCORE_MAX - 5;
1239         case MKTAG( 'f', 't', 'y', 'p' ):
1240         case MKTAG( 's', 'k', 'i', 'p' ):
1241         case MKTAG( 'u', 'u', 'i', 'd' ):
1242             offset = AV_RB32(p->buf+offset) + offset;
1243             /* if we only find those cause probedata is too small at least rate them */
1244             score = AVPROBE_SCORE_MAX - 50;
1245             break;
1246         default:
1247             /* unrecognized tag */
1248             return score;
1249         }
1250     }
1251     return score;
1252 }
1253
1254 static void mov_build_index(MOVContext *mov, AVStream *st)
1255 {
1256     MOVStreamContext *sc = st->priv_data;
1257     offset_t current_offset;
1258     int64_t current_dts = 0;
1259     unsigned int stts_index = 0;
1260     unsigned int stsc_index = 0;
1261     unsigned int stss_index = 0;
1262     unsigned int i, j, k;
1263
1264     if (sc->sample_sizes || st->codec->codec_type == CODEC_TYPE_VIDEO || sc->dv_audio_container) {
1265         unsigned int current_sample = 0;
1266         unsigned int stts_sample = 0;
1267         unsigned int keyframe, sample_size;
1268         unsigned int distance = 0;
1269
1270         st->nb_frames = sc->sample_count;
1271         for (i = 0; i < sc->chunk_count; i++) {
1272             current_offset = sc->chunk_offsets[i];
1273             if (stsc_index + 1 < sc->sample_to_chunk_sz && i + 1 == sc->sample_to_chunk[stsc_index + 1].first)
1274                 stsc_index++;
1275             for (j = 0; j < sc->sample_to_chunk[stsc_index].count; j++) {
1276                 if (current_sample >= sc->sample_count) {
1277                     av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n");
1278                     goto out;
1279                 }
1280                 keyframe = !sc->keyframe_count || current_sample + 1 == sc->keyframes[stss_index];
1281                 if (keyframe) {
1282                     distance = 0;
1283                     if (stss_index + 1 < sc->keyframe_count)
1284                         stss_index++;
1285                 }
1286                 sample_size = sc->sample_size > 0 ? sc->sample_size : sc->sample_sizes[current_sample];
1287                 dprintf(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", size %d, distance %d, keyframe %d\n",
1288                         st->index, current_sample, current_offset, current_dts, sample_size, distance, keyframe);
1289                 av_add_index_entry(st, current_offset, current_dts, sample_size, distance, keyframe ? AVINDEX_KEYFRAME : 0);
1290                 current_offset += sample_size;
1291                 assert(sc->stts_data[stts_index].duration % sc->time_rate == 0);
1292                 current_dts += sc->stts_data[stts_index].duration / sc->time_rate;
1293                 distance++;
1294                 stts_sample++;
1295                 current_sample++;
1296                 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) {
1297                     stts_sample = 0;
1298                     stts_index++;
1299                 }
1300             }
1301         }
1302     } else { /* read whole chunk */
1303         unsigned int chunk_samples, chunk_size, chunk_duration;
1304
1305         for (i = 0; i < sc->chunk_count; i++) {
1306             current_offset = sc->chunk_offsets[i];
1307             if (stsc_index + 1 < sc->sample_to_chunk_sz && i + 1 == sc->sample_to_chunk[stsc_index + 1].first)
1308                 stsc_index++;
1309             chunk_samples = sc->sample_to_chunk[stsc_index].count;
1310             /* get chunk size */
1311             if (sc->sample_size > 1 || st->codec->codec_id == CODEC_ID_PCM_U8 || st->codec->codec_id == CODEC_ID_PCM_S8)
1312                 chunk_size = chunk_samples * sc->sample_size;
1313             else if (sc->samples_per_frame > 0 && (chunk_samples * sc->bytes_per_frame % sc->samples_per_frame == 0))
1314                 chunk_size = chunk_samples * sc->bytes_per_frame / sc->samples_per_frame;
1315             else { /* workaround to find nearest next chunk offset */
1316                 chunk_size = INT_MAX;
1317                 for (j = 0; j < mov->total_streams; j++) {
1318                     MOVStreamContext *msc = mov->streams[j];
1319
1320                     for (k = msc->next_chunk; k < msc->chunk_count; k++) {
1321                         if (msc->chunk_offsets[k] > current_offset && msc->chunk_offsets[k] - current_offset < chunk_size) {
1322                             chunk_size = msc->chunk_offsets[k] - current_offset;
1323                             msc->next_chunk = k;
1324                             break;
1325                         }
1326                     }
1327                 }
1328                 /* check for last chunk */
1329                 if (chunk_size == INT_MAX)
1330                     for (j = 0; j < mov->mdat_count; j++) {
1331                         dprintf(mov->fc, "mdat %d, offset %"PRIx64", size %"PRId64", current offset %"PRIx64"\n",
1332                                 j, mov->mdat_list[j].offset, mov->mdat_list[j].size, current_offset);
1333                         if (mov->mdat_list[j].offset <= current_offset && mov->mdat_list[j].offset + mov->mdat_list[j].size > current_offset)
1334                             chunk_size = mov->mdat_list[j].offset + mov->mdat_list[j].size - current_offset;
1335                     }
1336                 assert(chunk_size != INT_MAX);
1337                 for (j = 0; j < mov->total_streams; j++) {
1338                     mov->streams[j]->next_chunk = 0;
1339                 }
1340             }
1341             av_add_index_entry(st, current_offset, current_dts, chunk_size, 0, AVINDEX_KEYFRAME);
1342             /* get chunk duration */
1343             chunk_duration = 0;
1344             while (chunk_samples > 0) {
1345                 if (chunk_samples < sc->stts_data[stts_index].count) {
1346                     chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
1347                     sc->stts_data[stts_index].count -= chunk_samples;
1348                     break;
1349                 } else {
1350                     chunk_duration += sc->stts_data[stts_index].duration * chunk_samples;
1351                     chunk_samples -= sc->stts_data[stts_index].count;
1352                     if (stts_index + 1 < sc->stts_count) {
1353                         stts_index++;
1354                     }
1355                 }
1356             }
1357             dprintf(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", size %d, duration %d\n",
1358                     st->index, i, current_offset, current_dts, chunk_size, chunk_duration);
1359             assert(chunk_duration % sc->time_rate == 0);
1360             current_dts += chunk_duration / sc->time_rate;
1361         }
1362     }
1363  out:
1364     /* adjust sample count to avindex entries */
1365     sc->sample_count = st->nb_index_entries;
1366 }
1367
1368 static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
1369 {
1370     MOVContext *mov = s->priv_data;
1371     ByteIOContext *pb = &s->pb;
1372     int i, err;
1373     MOV_atom_t atom = { 0, 0, 0 };
1374
1375     mov->fc = s;
1376     mov->parse_table = mov_default_parse_table;
1377
1378     if(!url_is_streamed(pb)) /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
1379         atom.size = url_fsize(pb);
1380     else
1381         atom.size = INT64_MAX;
1382
1383     /* check MOV header */
1384     err = mov_read_default(mov, pb, atom);
1385     if (err<0 || (!mov->found_moov && !mov->found_mdat)) {
1386         av_log(s, AV_LOG_ERROR, "mov: header not found !!! (err:%d, moov:%d, mdat:%d) pos:%"PRId64"\n",
1387                 err, mov->found_moov, mov->found_mdat, url_ftell(pb));
1388         return -1;
1389     }
1390     dprintf(mov->fc, "on_parse_exit_offset=%d\n", (int) url_ftell(pb));
1391
1392     /* some cleanup : make sure we are on the mdat atom */
1393     if(!url_is_streamed(pb) && (url_ftell(pb) != mov->mdat_offset))
1394         url_fseek(pb, mov->mdat_offset, SEEK_SET);
1395
1396     mov->total_streams = s->nb_streams;
1397
1398     for(i=0; i<mov->total_streams; i++) {
1399         MOVStreamContext *sc = mov->streams[i];
1400         AVStream *st = s->streams[i];
1401         /* sanity checks */
1402         if(!sc->stts_count || !sc->chunk_count || !sc->sample_to_chunk_sz ||
1403            (!sc->sample_size && !sc->sample_count)){
1404             av_log(s, AV_LOG_ERROR, "missing mandatory atoms, broken header\n");
1405             sc->sample_count = 0; //ignore track
1406             continue;
1407         }
1408         if(!sc->time_rate)
1409             sc->time_rate=1;
1410         if(!sc->time_scale)
1411             sc->time_scale= mov->time_scale;
1412         av_set_pts_info(st, 64, sc->time_rate, sc->time_scale);
1413
1414         if (st->codec->codec_type == CODEC_TYPE_AUDIO && sc->stts_count == 1)
1415             st->codec->frame_size = sc->stts_data[0].duration;
1416
1417         if(st->duration != AV_NOPTS_VALUE){
1418             assert(st->duration % sc->time_rate == 0);
1419             st->duration /= sc->time_rate;
1420         }
1421         sc->ffindex = i;
1422         mov_build_index(mov, st);
1423     }
1424
1425     for(i=0; i<mov->total_streams; i++) {
1426         /* Do not need those anymore. */
1427         av_freep(&mov->streams[i]->chunk_offsets);
1428         av_freep(&mov->streams[i]->sample_to_chunk);
1429         av_freep(&mov->streams[i]->sample_sizes);
1430         av_freep(&mov->streams[i]->keyframes);
1431         av_freep(&mov->streams[i]->stts_data);
1432     }
1433     av_freep(&mov->mdat_list);
1434     return 0;
1435 }
1436
1437 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
1438 {
1439     MOVContext *mov = s->priv_data;
1440     MOVStreamContext *sc = 0;
1441     AVIndexEntry *sample = 0;
1442     int64_t best_dts = INT64_MAX;
1443     int i;
1444
1445     for (i = 0; i < mov->total_streams; i++) {
1446         MOVStreamContext *msc = mov->streams[i];
1447
1448         if (s->streams[i]->discard != AVDISCARD_ALL && msc->current_sample < msc->sample_count) {
1449             AVIndexEntry *current_sample = &s->streams[i]->index_entries[msc->current_sample];
1450             int64_t dts = av_rescale(current_sample->timestamp * (int64_t)msc->time_rate, AV_TIME_BASE, msc->time_scale);
1451
1452             dprintf(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts);
1453             if (dts < best_dts) {
1454                 sample = current_sample;
1455                 best_dts = dts;
1456                 sc = msc;
1457             }
1458         }
1459     }
1460     if (!sample)
1461         return -1;
1462     /* must be done just before reading, to avoid infinite loop on sample */
1463     sc->current_sample++;
1464     if (sample->pos >= url_fsize(&s->pb)) {
1465         av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n", sc->ffindex, sample->pos);
1466         return -1;
1467     }
1468 #ifdef CONFIG_DV_DEMUXER
1469     if (sc->dv_audio_container) {
1470         dv_get_packet(mov->dv_demux, pkt);
1471         dprintf(s, "dv audio pkt size %d\n", pkt->size);
1472     } else {
1473 #endif
1474         url_fseek(&s->pb, sample->pos, SEEK_SET);
1475         av_get_packet(&s->pb, pkt, sample->size);
1476 #ifdef CONFIG_DV_DEMUXER
1477         if (mov->dv_demux) {
1478             void *pkt_destruct_func = pkt->destruct;
1479             dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
1480             pkt->destruct = pkt_destruct_func;
1481         }
1482     }
1483 #endif
1484     pkt->stream_index = sc->ffindex;
1485     pkt->dts = sample->timestamp;
1486     if (sc->ctts_data) {
1487         assert(sc->ctts_data[sc->sample_to_ctime_index].duration % sc->time_rate == 0);
1488         pkt->pts = pkt->dts + sc->ctts_data[sc->sample_to_ctime_index].duration / sc->time_rate;
1489         /* update ctts context */
1490         sc->sample_to_ctime_sample++;
1491         if (sc->sample_to_ctime_index < sc->ctts_count && sc->ctts_data[sc->sample_to_ctime_index].count == sc->sample_to_ctime_sample) {
1492             sc->sample_to_ctime_index++;
1493             sc->sample_to_ctime_sample = 0;
1494         }
1495     } else {
1496         pkt->pts = pkt->dts;
1497     }
1498     pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? PKT_FLAG_KEY : 0;
1499     pkt->pos = sample->pos;
1500     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);
1501     return 0;
1502 }
1503
1504 static int mov_seek_stream(AVStream *st, int64_t timestamp, int flags)
1505 {
1506     MOVStreamContext *sc = st->priv_data;
1507     int sample, time_sample;
1508     int i;
1509
1510     sample = av_index_search_timestamp(st, timestamp, flags);
1511     dprintf(st->codec, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
1512     if (sample < 0) /* not sure what to do */
1513         return -1;
1514     sc->current_sample = sample;
1515     dprintf(st->codec, "stream %d, found sample %d\n", st->index, sc->current_sample);
1516     /* adjust ctts index */
1517     if (sc->ctts_data) {
1518         time_sample = 0;
1519         for (i = 0; i < sc->ctts_count; i++) {
1520             int next = time_sample + sc->ctts_data[i].count;
1521             if (next > sc->current_sample) {
1522                 sc->sample_to_ctime_index = i;
1523                 sc->sample_to_ctime_sample = sc->current_sample - time_sample;
1524                 break;
1525             }
1526             time_sample = next;
1527         }
1528     }
1529     return sample;
1530 }
1531
1532 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags)
1533 {
1534     AVStream *st;
1535     int64_t seek_timestamp, timestamp;
1536     int sample;
1537     int i;
1538
1539     if (stream_index >= s->nb_streams)
1540         return -1;
1541
1542     st = s->streams[stream_index];
1543     sample = mov_seek_stream(st, sample_time, flags);
1544     if (sample < 0)
1545         return -1;
1546
1547     /* adjust seek timestamp to found sample timestamp */
1548     seek_timestamp = st->index_entries[sample].timestamp;
1549
1550     for (i = 0; i < s->nb_streams; i++) {
1551         st = s->streams[i];
1552         if (stream_index == i || st->discard == AVDISCARD_ALL)
1553             continue;
1554
1555         timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);
1556         mov_seek_stream(st, timestamp, flags);
1557     }
1558     return 0;
1559 }
1560
1561 static int mov_read_close(AVFormatContext *s)
1562 {
1563     int i;
1564     MOVContext *mov = s->priv_data;
1565     for(i=0; i<mov->total_streams; i++) {
1566         av_freep(&mov->streams[i]->ctts_data);
1567         av_freep(&mov->streams[i]);
1568     }
1569     if(mov->dv_demux){
1570         for(i=0; i<mov->dv_fctx->nb_streams; i++){
1571             av_freep(&mov->dv_fctx->streams[i]->codec);
1572             av_freep(&mov->dv_fctx->streams[i]);
1573         }
1574         av_freep(&mov->dv_fctx);
1575         av_freep(&mov->dv_demux);
1576     }
1577     return 0;
1578 }
1579
1580 AVInputFormat mov_demuxer = {
1581     "mov,mp4,m4a,3gp,3g2,mj2",
1582     "QuickTime/MPEG4/Motion JPEG 2000 format",
1583     sizeof(MOVContext),
1584     mov_probe,
1585     mov_read_header,
1586     mov_read_packet,
1587     mov_read_close,
1588     mov_read_seek,
1589 };