Merge svn changes up to r28549
[mplayer.git] / libmpdemux / demux_mov.c
blobfb271e1e49cd1e2252cf0a0ab77c2d97f347c097
1 // QuickTime MOV file parser by A'rpi
2 // additional work by Atmos
3 // based on TOOLS/movinfo.c by A'rpi & Al3x
4 // compressed header support from moov.c of the openquicktime lib.
5 // References: http://openquicktime.sf.net/, http://www.heroinewarrior.com/
6 // http://www.geocities.com/SiliconValley/Lakes/2160/fformats/files/mov.pdf
7 // (above url no longer works, file mirrored somewhere? ::atmos)
8 // The QuickTime File Format PDF from Apple:
9 // http://developer.apple.com/techpubs/quicktime/qtdevdocs/PDF/QTFileFormat.pdf
10 // (Complete list of documentation at http://developer.apple.com/quicktime/)
11 // MP4-Lib sources from http://mpeg4ip.sf.net/ might be useful for .mp4
12 // as well as .mov specific stuff.
13 // All sort of Stuff about MPEG4:
14 // http://www.cmlab.csie.ntu.edu.tw/~pkhsiao/thesis.html
15 // I really recommend N4270-1.doc and N4270-2.doc which are exact specs
16 // of the MP4-File Format and the MPEG4 Specific extensions. ::atmos
17 // TSGS#15(02)0088
18 // http://www.3gpp.org/ftp/tsg_sa/TSG_SA/TSGS_15/Docs/pdf/SP-020088.pdf
19 // http://www.3gpp2.org/Public_html/specs/C.S0050-0_v1.0_121503.pdf
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <inttypes.h>
26 #include "config.h"
28 #ifdef CONFIG_QUICKTIME
29 #include <QuickTime/QuickTime.h>
30 #include <QuickTime/ImageCompression.h>
31 #include <QuickTime/ImageCodec.h>
32 #else
33 #include "loader/qtx/qtxsdk/components.h"
34 #endif
36 #include "mp_msg.h"
37 #include "help_mp.h"
39 #include "stream/stream.h"
40 #include "demuxer.h"
41 #include "stheader.h"
43 #include "libmpcodecs/img_format.h"
44 #include "libavutil/common.h"
45 #include "libavutil/intreadwrite.h"
47 #include "libvo/sub.h"
49 #include "qtpalette.h"
50 #include "parse_mp4.h" // .MP4 specific stuff
52 #if CONFIG_ZLIB
53 #include <zlib.h>
54 #endif
56 #ifndef _FCNTL_H
57 #include <fcntl.h>
58 #endif
60 #define char2short(x,y) AV_RB16(&(x)[(y)])
61 #define char2int(x,y) AV_RB32(&(x)[(y)])
63 typedef struct {
64 unsigned int pts; // duration
65 unsigned int size;
66 off_t pos;
67 } mov_sample_t;
69 typedef struct {
70 unsigned int sample; // number of the first sample in the chunk
71 unsigned int size; // number of samples in the chunk
72 int desc; // for multiple codecs mode - not used
73 off_t pos;
74 } mov_chunk_t;
76 typedef struct {
77 unsigned int first;
78 unsigned int spc;
79 unsigned int sdid;
80 } mov_chunkmap_t;
82 typedef struct {
83 unsigned int num;
84 unsigned int dur;
85 } mov_durmap_t;
87 typedef struct {
88 unsigned int dur;
89 unsigned int pos;
90 int speed;
92 int frames;
93 int start_sample;
94 int start_frame;
95 int pts_offset;
96 } mov_editlist_t;
98 #define MOV_TRAK_UNKNOWN 0
99 #define MOV_TRAK_VIDEO 1
100 #define MOV_TRAK_AUDIO 2
101 #define MOV_TRAK_FLASH 3
102 #define MOV_TRAK_GENERIC 4
103 #define MOV_TRAK_CODE 5
105 typedef struct {
106 int id;
107 int type;
108 off_t pos;
110 unsigned int media_handler;
111 unsigned int data_handler;
113 int timescale;
114 unsigned int length;
115 int samplesize; // 0 = variable
116 int duration; // 0 = variable
117 int width,height; // for video
118 unsigned int fourcc;
119 unsigned int nchannels;
120 unsigned int samplebytes;
122 int tkdata_len; // track data
123 unsigned char* tkdata;
124 int stdata_len; // stream data
125 unsigned char* stdata;
127 unsigned char* stream_header;
128 int stream_header_len; // if >0, this header should be sent before the 1st frame
130 int samples_size;
131 mov_sample_t* samples;
132 int chunks_size;
133 mov_chunk_t* chunks;
134 int chunkmap_size;
135 mov_chunkmap_t* chunkmap;
136 int durmap_size;
137 mov_durmap_t* durmap;
138 int keyframes_size;
139 unsigned int* keyframes;
140 int editlist_size;
141 mov_editlist_t* editlist;
142 int editlist_pos;
144 void* desc; // image/sound/etc description (pointer to ImageDescription etc)
145 } mov_track_t;
147 static void mov_build_index(mov_track_t* trak,int timescale){
148 int i,j,s;
149 int last=trak->chunks_size;
150 unsigned int pts=0;
152 #if 0
153 if (trak->chunks_size <= 0)
155 mp_msg(MSGT_DEMUX, MSGL_WARN, "No chunk offset table, trying to build one!\n");
157 trak->chunks_size = trak->samples_size; /* XXX: FIXME ! */
158 // audit: this code will be vulnerable if it is reenabled (currently #if 0)
159 trak->chunks = realloc(trak->chunks, sizeof(mov_chunk_t)*trak->chunks_size);
161 for (i=0; i < trak->chunks_size; i++)
162 trak->chunks[i].pos = -1;
164 #endif
166 mp_msg(MSGT_DEMUX, MSGL_V, "MOV track #%d: %d chunks, %d samples\n",trak->id,trak->chunks_size,trak->samples_size);
167 mp_msg(MSGT_DEMUX, MSGL_V, "pts=%d scale=%d time=%5.3f\n",trak->length,trak->timescale,(float)trak->length/(float)trak->timescale);
169 // process chunkmap:
170 i=trak->chunkmap_size;
171 while(i>0){
172 --i;
173 j=trak->chunkmap[i].first;
174 for(;j>=0 && j<last;j++){
175 trak->chunks[j].desc=trak->chunkmap[i].sdid;
176 trak->chunks[j].size=trak->chunkmap[i].spc;
178 last=FFMIN(trak->chunkmap[i].first, trak->chunks_size);
181 #if 0
182 for (i=0; i < trak->chunks_size; i++)
184 /* fixup position */
185 if (trak->chunks[i].pos == -1)
186 if (i > 0)
187 trak->chunks[i].pos = trak->chunks[i-1].pos + trak->chunks[i-1].size;
188 else
189 trak->chunks[i].pos = 0; /* FIXME: set initial pos */
190 #endif
192 // calc pts of chunks:
193 s=0;
194 for(j=0;j<trak->chunks_size;j++){
195 trak->chunks[j].sample=s;
196 s+=trak->chunks[j].size;
198 i = 0;
199 for (j = 0; j < trak->durmap_size; j++)
200 i += trak->durmap[j].num;
201 if (i != s) {
202 mp_msg(MSGT_DEMUX, MSGL_WARN,
203 "MOV: durmap and chunkmap sample count differ (%i vs %i)\n", i, s);
204 if (i > s) s = i;
207 // workaround for fixed-size video frames (dv and uncompressed)
208 if(!trak->samples_size && trak->type!=MOV_TRAK_AUDIO){
209 trak->samples=calloc(s, sizeof(mov_sample_t));
210 trak->samples_size=trak->samples ? s : 0;
211 for(i=0;i<trak->samples_size;i++)
212 trak->samples[i].size=trak->samplesize;
213 trak->samplesize=0;
216 if(!trak->samples_size){
217 // constant sampesize
218 if(trak->durmap_size==1 || (trak->durmap_size==2 && trak->durmap[1].num==1)){
219 trak->duration=trak->durmap[0].dur;
220 } else mp_msg(MSGT_DEMUX, MSGL_ERR, "*** constant samplesize & variable duration not yet supported! ***\nContact the author if you have such sample file!\n");
221 return;
224 if (trak->samples_size < s) {
225 mp_msg(MSGT_DEMUX, MSGL_WARN,
226 "MOV: durmap or chunkmap bigger than sample count (%i vs %i)\n",
227 s, trak->samples_size);
228 trak->samples = realloc_struct(trak->samples, s, sizeof(mov_sample_t));
229 trak->samples_size = trak->samples ? s : 0;
232 // calc pts:
233 s=0;
234 for(j=0;j<trak->durmap_size;j++){
235 for(i=0;i<trak->durmap[j].num;i++){
236 if (s >= trak->samples_size)
237 break;
238 trak->samples[s].pts=pts;
239 ++s;
240 pts+=trak->durmap[j].dur;
244 // calc sample offsets
245 s=0;
246 for(j=0;j<trak->chunks_size;j++){
247 off_t pos=trak->chunks[j].pos;
248 for(i=0;i<trak->chunks[j].size;i++){
249 if (s >= trak->samples_size)
250 break;
251 trak->samples[s].pos=pos;
252 mp_msg(MSGT_DEMUX, MSGL_DBG3, "Sample %5d: pts=%8d off=0x%08X size=%d\n",s,
253 trak->samples[s].pts,
254 (int)trak->samples[s].pos,
255 trak->samples[s].size);
256 pos+=trak->samples[s].size;
257 ++s;
261 // precalc editlist entries
262 if(trak->editlist_size>0){
263 int frame=0;
264 int e_pts=0;
265 for(i=0;i<trak->editlist_size;i++){
266 mov_editlist_t* el=&trak->editlist[i];
267 int sample=0;
268 int pts=el->pos;
269 el->start_frame=frame;
270 if(pts<0){
271 // skip!
272 el->frames=0; continue;
274 // find start sample
275 for(;sample<trak->samples_size;sample++){
276 if(pts<=trak->samples[sample].pts) break;
278 el->start_sample=sample;
279 el->pts_offset=((long long)e_pts*(long long)trak->timescale)/(long long)timescale-trak->samples[sample].pts;
280 pts+=((long long)el->dur*(long long)trak->timescale)/(long long)timescale;
281 e_pts+=el->dur;
282 // find end sample
283 for(;sample<trak->samples_size;sample++){
284 if(pts<trak->samples[sample].pts) break;
286 el->frames=sample-el->start_sample;
287 frame+=el->frames;
288 mp_msg(MSGT_DEMUX,MSGL_V,"EL#%d: pts=%d 1st_sample=%d frames=%d (%5.3fs) pts_offs=%d\n",i,
289 el->pos,el->start_sample, el->frames,
290 (float)(el->dur)/(float)timescale, el->pts_offset);
296 #define MOV_MAX_TRACKS 256
297 #define MOV_MAX_SUBLEN 1024
299 typedef struct {
300 off_t moov_start;
301 off_t moov_end;
302 off_t mdat_start;
303 off_t mdat_end;
304 int track_db;
305 mov_track_t* tracks[MOV_MAX_TRACKS];
306 int timescale; // movie timescale
307 int duration; // movie duration (in movie timescale units)
308 subtitle subs;
309 char subtext[MOV_MAX_SUBLEN + 1];
310 int current_sub;
311 } mov_priv_t;
313 #define MOV_FOURCC(a,b,c,d) ((a<<24)|(b<<16)|(c<<8)|(d))
315 static int mov_check_file(demuxer_t* demuxer){
316 int flags=0;
317 int no=0;
318 mov_priv_t* priv=malloc(sizeof(mov_priv_t));
320 mp_msg(MSGT_DEMUX,MSGL_V,"Checking for MOV\n");
322 memset(priv,0,sizeof(mov_priv_t));
323 priv->current_sub = -1;
325 while(1){
326 int i;
327 int skipped=8;
328 off_t len=stream_read_dword(demuxer->stream);
329 unsigned int id=stream_read_dword(demuxer->stream);
330 if(stream_eof(demuxer->stream)) break; // EOF
331 if (len == 1) /* real size is 64bits - cjb */
333 #ifndef _LARGEFILE_SOURCE
334 if (stream_read_dword(demuxer->stream) != 0)
335 mp_msg(MSGT_DEMUX, MSGL_WARN, "64bit file, but you've compiled MPlayer without LARGEFILE support!\n");
336 len = stream_read_dword(demuxer->stream);
337 #else
338 len = stream_read_qword(demuxer->stream);
339 #endif
340 skipped += 8;
342 #if 0
343 else if (len == 0) /* deleted chunk */
345 /* XXX: CJB! is this right? - alex */
346 goto skip_chunk;
348 #endif
349 else if(len<8) break; // invalid chunk
351 switch(id){
352 case MOV_FOURCC('f','t','y','p'): {
353 unsigned int tmp;
354 // File Type Box (ftyp):
355 // char[4] major_brand (eg. 'isom')
356 // int minor_version (eg. 0x00000000)
357 // char[4] compatible_brands[] (eg. 'mp41')
358 // compatible_brands list spans to the end of box
359 #if 1
360 tmp = stream_read_dword(demuxer->stream);
361 switch(tmp) {
362 case MOV_FOURCC('i','s','o','m'):
363 mp_msg(MSGT_DEMUX,MSGL_V,"ISO: File Type Major Brand: ISO Base Media\n");
364 break;
365 case MOV_FOURCC('m','p','4','1'):
366 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: ISO/IEC 14496-1 (MPEG-4 system) v1\n");
367 break;
368 case MOV_FOURCC('m','p','4','2'):
369 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: ISO/IEC 14496-1 (MPEG-4 system) v2\n");
370 break;
371 case MOV_FOURCC('M','4','A',' '):
372 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: Apple iTunes AAC-LC Audio\n");
373 break;
374 case MOV_FOURCC('M','4','P',' '):
375 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: Apple iTunes AAC-LC Protected Audio\n");
376 break;
377 case MOV_FOURCC('q','t',' ',' '):
378 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: Original QuickTime\n");
379 break;
380 case MOV_FOURCC('3','g','p','1'):
381 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: 3GPP Profile 1\n");
382 break;
383 case MOV_FOURCC('3','g','p','2'):
384 case MOV_FOURCC('3','g','2','a'):
385 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: 3GPP Profile 2\n");
386 break;
387 case MOV_FOURCC('3','g','p','3'):
388 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: 3GPP Profile 3\n");
389 break;
390 case MOV_FOURCC('3','g','p','4'):
391 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: 3GPP Profile 4\n");
392 break;
393 case MOV_FOURCC('3','g','p','5'):
394 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: 3GPP Profile 5\n");
395 break;
396 case MOV_FOURCC('m','m','p','4'):
397 mp_msg(MSGT_DEMUX,MSGL_INFO,"ISO: File Type Major Brand: Mobile ISO/IEC 14496-1 (MPEG-4 system)\n");
398 break;
399 default:
400 tmp = be2me_32(tmp);
401 mp_msg(MSGT_DEMUX,MSGL_WARN,"ISO: Unknown File Type Major Brand: %.4s\n",(char *)&tmp);
403 mp_msg(MSGT_DEMUX,MSGL_V,"ISO: File Type Minor Version: %d\n",
404 stream_read_dword(demuxer->stream));
405 skipped += 8;
406 // List all compatible brands
407 for(i = 0; i < ((len-16)/4); i++) {
408 tmp = be2me_32(stream_read_dword(demuxer->stream));
409 mp_msg(MSGT_DEMUX,MSGL_V,"ISO: File Type Compatible Brand #%d: %.4s\n",i,(char *)&tmp);
410 skipped += 4;
412 #endif
413 } break;
414 case MOV_FOURCC('m','o','o','v'):
415 // case MOV_FOURCC('c','m','o','v'):
416 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Movie header found!\n");
417 priv->moov_start=(off_t)stream_tell(demuxer->stream);
418 priv->moov_end=(off_t)priv->moov_start+len-skipped;
419 mp_msg(MSGT_DEMUX,MSGL_DBG2,"MOV: Movie header: start: %"PRIx64" end: %"PRIx64"\n",
420 (int64_t)priv->moov_start, (int64_t)priv->moov_end);
421 skipped+=8;
422 i = stream_read_dword(demuxer->stream)-8;
423 if(stream_read_dword(demuxer->stream)==MOV_FOURCC('r','m','r','a')){
424 skipped+=i;
425 mp_msg(MSGT_DEMUX,MSGL_INFO,"MOV: Reference Media file!!!\n");
426 //set demuxer type to playlist ...
427 demuxer->type=DEMUXER_TYPE_PLAYLIST;
428 while(i>0){
429 int len=stream_read_dword(demuxer->stream)-8;
430 int fcc=stream_read_dword(demuxer->stream);
431 if(len<0) break; // EOF!?
432 i-=8;
433 // printf("i=%d len=%d\n",i,len);
434 switch(fcc){
435 case MOV_FOURCC('r','m','d','a'):
436 continue;
437 case MOV_FOURCC('r','d','r','f'): {
438 av_unused int tmp=stream_read_dword(demuxer->stream);
439 av_unused int type=stream_read_dword_le(demuxer->stream);
440 int slen=stream_read_dword(demuxer->stream);
441 //char* s=malloc(slen+1);
442 //stream_read(demuxer->stream,s,slen);
444 //FIXME: also store type & data_rate ?
445 ds_read_packet(demuxer->video,
446 demuxer->stream,
447 slen,
449 stream_tell(demuxer->stream),
450 0 // no flags
452 flags|=4;
453 mp_msg(MSGT_DEMUX,MSGL_V,"Added reference to playlist\n");
454 //s[slen]=0;
455 //mp_msg(MSGT_DEMUX,MSGL_INFO,"REF: [%.4s] %s\n",&type,s);
456 len-=12+slen;i-=12+slen; break;
458 case MOV_FOURCC('r','m','d','r'): {
459 av_unused int flags=stream_read_dword(demuxer->stream);
460 int rate=stream_read_dword(demuxer->stream);
461 mp_msg(MSGT_DEMUX,MSGL_V," min. data rate: %d bits/sec\n",rate);
462 len-=8; i-=8; break;
464 case MOV_FOURCC('r','m','q','u'): {
465 int q=stream_read_dword(demuxer->stream);
466 mp_msg(MSGT_DEMUX,MSGL_V," quality index: %d\n",q);
467 len-=4; i-=4; break;
470 i-=len;stream_skip(demuxer->stream,len);
473 flags|=1;
474 break;
475 case MOV_FOURCC('w','i','d','e'):
476 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: 'WIDE' chunk found!\n");
477 if(flags&2) break;
478 case MOV_FOURCC('m','d','a','t'):
479 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Movie DATA found!\n");
480 priv->mdat_start=stream_tell(demuxer->stream);
481 priv->mdat_end=priv->mdat_start+len-skipped;
482 mp_msg(MSGT_DEMUX,MSGL_DBG2,"MOV: Movie data: start: %"PRIx64" end: %"PRIx64"\n",
483 (int64_t)priv->mdat_start, (int64_t)priv->mdat_end);
484 flags|=2;
485 if(flags==3){
486 // if we're over the headers, then we can stop parsing here!
487 demuxer->priv=priv;
488 return DEMUXER_TYPE_MOV;
490 break;
491 case MOV_FOURCC('f','r','e','e'):
492 case MOV_FOURCC('s','k','i','p'):
493 case MOV_FOURCC('j','u','n','k'):
494 mp_msg(MSGT_DEMUX,MSGL_DBG2,"MOV: free space (len: %"PRId64")\n", (int64_t)len);
495 /* unused, if you edit a mov, you can use space provided by free atoms (redefining it) */
496 break;
497 case MOV_FOURCC('p','n','o','t'):
498 case MOV_FOURCC('P','I','C','T'):
499 /* dunno what, but we shoudl ignore it */
500 break;
501 default:
502 if(no==0){ free(priv); return 0;} // first chunk is bad!
503 id = be2me_32(id);
504 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",(char *)&id,(int)len);
506 //skip_chunk:
507 if(!stream_skip(demuxer->stream,len-skipped)) break;
508 ++no;
511 if(flags==3){
512 demuxer->priv=priv;
513 return DEMUXER_TYPE_MOV;
515 free(priv);
517 if ((flags==5) || (flags==7)) // reference & header sent
518 return DEMUXER_TYPE_PLAYLIST;
520 if(flags==1)
521 mp_msg(MSGT_DEMUX,MSGL_WARN,"MOV: missing data (mdat) chunk! Maybe broken file...\n");
522 else if(flags==2)
523 mp_msg(MSGT_DEMUX,MSGL_WARN,"MOV: missing header (moov/cmov) chunk! Maybe broken file...\n");
525 return 0;
528 static void demux_close_mov(demuxer_t *demuxer) {
529 mov_priv_t* priv = demuxer->priv;
530 int i;
531 if (!priv)
532 return;
533 for (i = 0; i < MOV_MAX_TRACKS; i++) {
534 mov_track_t *track = priv->tracks[i];
535 if (track) {
536 free(track->tkdata);
537 free(track->stdata);
538 free(track->stream_header);
539 free(track->samples);
540 free(track->chunks);
541 free(track->chunkmap);
542 free(track->durmap);
543 free(track->keyframes);
544 free(track->editlist);
545 free(track->desc);
546 free(track);
549 free(priv);
552 unsigned int store_ughvlc(unsigned char *s, unsigned int v){
553 unsigned int n = 0;
555 while(v >= 0xff) {
556 *s++ = 0xff;
557 v -= 0xff;
558 n++;
560 *s = v;
561 n++;
563 return n;
566 static void init_vobsub(sh_sub_t *sh, mov_track_t *trak) {
567 sh->type = 'v';
568 if (trak->stdata_len < 106)
569 return;
570 sh->extradata_len = 16*4;
571 sh->extradata = malloc(sh->extradata_len);
572 memcpy(sh->extradata, trak->stdata + 42, sh->extradata_len);
575 static int lschunks_intrak(demuxer_t* demuxer, int level, unsigned int id,
576 off_t pos, off_t len, mov_track_t* trak);
578 static int gen_sh_audio(sh_audio_t* sh, mov_track_t* trak, int timescale) {
579 #if 0
580 struct {
581 int16_t version; // 0 or 1 (version 1 is qt3.0+)
582 int16_t revision; // 0
583 int32_t vendor_id; // 0
584 int16_t channels; // 1 or 2 (Mono/Stereo)
585 int16_t samplesize; // 8 or 16 (8Bit/16Bit)
586 int16_t compression_id; // if version 0 then 0
587 // if version 1 and vbr then -2 else 0
588 int16_t packet_size; // 0
589 uint16_t sample_rate; // samplerate (Hz)
590 // qt3.0+ (version == 1)
591 uint32_t samples_per_packet; // 0 or num uncompressed samples in a packet
592 // if 0 below three values are also 0
593 uint32_t bytes_per_packet; // 0 or num compressed bytes for one channel
594 uint32_t bytes_per_frame; // 0 or num compressed bytes for all channels
595 // (channels * bytes_per_packet)
596 uint32_t bytes_per_sample; // 0 or size of uncompressed sample
597 // if samples_per_packet and bytes_per_packet are constant (CBR)
598 // then bytes_per_frame and bytes_per_sample must be 0 (else is VBR)
599 // ---
600 // optional additional atom-based fields
601 // ([int32_t size,int32_t type,some data ],repeat)
602 } my_stdata;
603 #endif
604 int version, adjust;
605 int is_vorbis = 0;
606 sh->format=trak->fourcc;
608 // crude audio delay from editlist0 hack ::atm
609 if(trak->editlist_size>=1) {
610 if(trak->editlist[0].pos == -1) {
611 sh->stream_delay = (float)trak->editlist[0].dur/(float)timescale;
612 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Initial Audio-Delay: %.3f sec\n", sh->stream_delay);
617 switch( sh->format ) {
618 case 0x726D6173: /* samr */
619 /* amr narrowband */
620 trak->samplebytes=sh->samplesize=1;
621 trak->nchannels=sh->channels=1;
622 sh->samplerate=8000;
623 break;
625 case 0x62776173: /* sawb */
626 /* amr wideband */
627 trak->samplebytes=sh->samplesize=1;
628 trak->nchannels=sh->channels=1;
629 sh->samplerate=16000;
630 break;
632 default:
634 // assumptions for below table: short is 16bit, int is 32bit, intfp is 16bit
635 // XXX: 32bit fixed point numbers (intfp) are only 2 Byte!
636 // short values are usually one byte leftpadded by zero
637 // int values are usually two byte leftpadded by zero
638 // stdata[]:
639 // 8 short version
640 // 10 short revision
641 // 12 int vendor_id
642 // 16 short channels
643 // 18 short samplesize
644 // 20 short compression_id
645 // 22 short packet_size (==0)
646 // 24 intfp sample_rate
647 // (26 short) unknown (==0)
648 // ---- qt3.0+ (version>=1)
649 // 28 int samples_per_packet
650 // 32 int bytes_per_packet
651 // 36 int bytes_per_frame
652 // 40 int bytes_per_sample
653 // there may be additional atoms following at 28 (version 0)
654 // or 44 (version 1), eg. esds atom of .MP4 files
655 // esds atom:
656 // 28 int atom size (bytes of int size, int type and data)
657 // 32 char[4] atom type (fourc charater code -> esds)
658 // 36 char[] atom data (len=size-8)
660 // TODO: fix parsing for files using version 2.
661 if (trak->stdata_len < 26) {
662 mp_msg(MSGT_DEMUX, MSGL_WARN, "MOV: broken (too small) sound atom!\n");
663 return 0;
665 version=char2short(trak->stdata,8);
666 if (version > 1)
667 mp_msg(MSGT_DEMUX, MSGL_WARN, "MOV: version %d sound atom may not parse correctly!\n", version);
668 trak->samplebytes=sh->samplesize=char2short(trak->stdata,18)/8;
670 /* I can't find documentation, but so far this is the case. -Corey */
671 switch (char2short(trak->stdata,16)) {
672 case 1:
673 trak->nchannels = 1; break;
674 case 2:
675 trak->nchannels = 2; break;
676 case 3:
677 trak->nchannels = 6; break;
678 default:
679 mp_msg(MSGT_DEMUX, MSGL_WARN,
680 "MOV: unable to determine audio channels, assuming 2 (got %d)\n",
681 char2short(trak->stdata,16));
682 trak->nchannels = 2;
684 sh->channels = trak->nchannels;
686 /*printf("MOV: timescale: %d samplerate: %d durmap: %d (%d) -> %d (%d)\n",
687 trak->timescale, char2short(trak->stdata,24), trak->durmap[0].dur,
688 trak->durmap[0].num, trak->timescale/trak->durmap[0].dur,
689 char2short(trak->stdata,24)/trak->durmap[0].dur);*/
690 sh->samplerate=char2short(trak->stdata,24);
691 if((sh->samplerate < 7000) && trak->durmap && trak->durmap[0].dur > 1) {
692 switch(char2short(trak->stdata,24)/trak->durmap[0].dur) {
693 // TODO: add more cases.
694 case 31:
695 sh->samplerate = 32000; break;
696 case 43:
697 sh->samplerate = 44100; break;
698 case 47:
699 sh->samplerate = 48000; break;
700 default:
701 mp_msg(MSGT_DEMUX, MSGL_WARN,
702 "MOV: unable to determine audio samplerate, "
703 "assuming 44.1kHz (got %d)\n",
704 char2short(trak->stdata,24)/trak->durmap[0].dur);
705 sh->samplerate = 44100;
709 mp_msg(MSGT_DEMUX, MSGL_V, "Audio bits: %d chans: %d rate: %d\n",
710 sh->samplesize*8,sh->channels,sh->samplerate);
712 if(trak->stdata_len >= 44 && trak->stdata[9]>=1){
713 mp_msg(MSGT_DEMUX,MSGL_V,"Audio header: samp/pack=%d bytes/pack=%d bytes/frame=%d bytes/samp=%d \n",
714 char2int(trak->stdata,28),
715 char2int(trak->stdata,32),
716 char2int(trak->stdata,36),
717 char2int(trak->stdata,40));
718 if(trak->stdata_len>=44+8){
719 int len=char2int(trak->stdata,44);
720 int fcc=char2int(trak->stdata,48);
721 // we have extra audio headers!!!
722 mp_msg(MSGT_DEMUX,MSGL_V,"Audio extra header: len=%d fcc=0x%X\n",len,fcc);
723 if((len >= 4) &&
724 (char2int(trak->stdata,52) >= 12) &&
725 (char2int(trak->stdata,52+4) == MOV_FOURCC('f','r','m','a'))) {
726 switch(char2int(trak->stdata,52+8)) {
727 case MOV_FOURCC('a','l','a','c'):
728 if (len >= 36 + char2int(trak->stdata,52)) {
729 sh->codecdata_len = char2int(trak->stdata,52+char2int(trak->stdata,52));
730 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found alac atom (%d)!\n", sh->codecdata_len);
731 sh->codecdata = malloc(sh->codecdata_len);
732 memcpy(sh->codecdata, &trak->stdata[52+char2int(trak->stdata,52)], sh->codecdata_len);
734 break;
735 case MOV_FOURCC('i','n','2','4'):
736 case MOV_FOURCC('i','n','3','2'):
737 case MOV_FOURCC('f','l','3','2'):
738 case MOV_FOURCC('f','l','6','4'):
739 if ((len >= 22) &&
740 (char2int(trak->stdata,52+16)==MOV_FOURCC('e','n','d','a')) &&
741 (char2short(trak->stdata,52+20))) {
742 sh->format=char2int(trak->stdata,52+8);
743 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found little endian PCM data, reversed fourcc:%04x\n", sh->format);
745 break;
746 default:
747 if (len > 8 && len + 44 <= trak->stdata_len) {
748 sh->codecdata_len = len-8;
749 sh->codecdata = malloc(sh->codecdata_len);
750 memcpy(sh->codecdata, trak->stdata+44+8, sh->codecdata_len);
753 } else {
754 if (len > 8 && len + 44 <= trak->stdata_len) {
755 sh->codecdata_len = len-8;
756 sh->codecdata = malloc(sh->codecdata_len);
757 memcpy(sh->codecdata, trak->stdata+44+8, sh->codecdata_len);
763 switch (version) {
764 case 0:
765 adjust = 0; break;
766 case 1:
767 adjust = 48; break;
768 case 2:
769 adjust = 68; break;
770 default:
771 mp_msg(MSGT_DEMUX, MSGL_WARN, "MOV: unknown sound atom version (%d); may not work!\n", version);
772 adjust = 68;
774 if (trak->stdata_len >= 36 + adjust) {
775 int atom_len = char2int(trak->stdata,28+adjust);
776 if (atom_len < 0 || atom_len > trak->stdata_len - 28 - adjust) atom_len = trak->stdata_len - 28 - adjust;
777 switch(char2int(trak->stdata,32+adjust)) { // atom type
778 case MOV_FOURCC('e','s','d','s'): {
779 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found MPEG4 audio Elementary Stream Descriptor atom (%d)!\n", atom_len);
780 if(atom_len > 8) {
781 esds_t esds;
782 if(!mp4_parse_esds(&trak->stdata[36+adjust], atom_len-8, &esds)) {
783 /* 0xdd is a "user private" id, not an official allocated id (see http://www.mp4ra.org/object.html),
784 so perform some extra checks to be sure that this is really vorbis audio */
785 if(esds.objectTypeId==0xdd && esds.streamType==0x15 && sh->format==0x6134706D && esds.decoderConfigLen > 8)
787 //vorbis audio
788 unsigned char *buf[3];
789 unsigned short sizes[3];
790 int offset, len, k;
791 unsigned char *ptr = esds.decoderConfig;
793 if(ptr[0] != 0 || ptr[1] != 30) goto quit_vorbis_block; //wrong extradata layout
795 offset = len = 0;
796 for(k = 0; k < 3; k++)
798 sizes[k] = (ptr[offset]<<8) | ptr[offset+1];
799 len += sizes[k];
800 offset += 2;
801 if(offset + sizes[k] > esds.decoderConfigLen)
803 mp_msg(MSGT_DEMUX, MSGL_FATAL, "MOV: ERROR!, not enough vorbis extradata to read: offset = %d, k=%d, size=%d, len: %d\n", offset, k, sizes[k], esds.decoderConfigLen);
804 goto quit_vorbis_block;
806 buf[k] = malloc(sizes[k]);
807 if(!buf[k]) goto quit_vorbis_block;
808 memcpy(buf[k], &ptr[offset], sizes[k]);
809 offset += sizes[k];
812 sh->codecdata_len = len + len/255 + 64;
813 sh->codecdata = malloc(sh->codecdata_len);
814 ptr = sh->codecdata;
816 ptr[0] = 2;
817 offset = 1;
818 offset += store_ughvlc(&ptr[offset], sizes[0]);
819 offset += store_ughvlc(&ptr[offset], sizes[1]);
820 for(k = 0; k < 3; k++)
822 memcpy(&ptr[offset], buf[k], sizes[k]);
823 offset += sizes[k];
826 sh->codecdata_len = offset;
827 sh->codecdata = realloc(sh->codecdata, offset);
828 mp_msg(MSGT_DEMUX,MSGL_V, "demux_mov, vorbis extradata size: %d\n", offset);
829 is_vorbis = 1;
830 quit_vorbis_block:
831 sh->format = mmioFOURCC('v', 'r', 'b', 's');
833 sh->i_bps = esds.avgBitrate/8;
835 // printf("######## audio format = %d ########\n",esds.objectTypeId);
836 if(esds.objectTypeId==MP4OTI_MPEG1Audio || esds.objectTypeId==MP4OTI_MPEG2AudioPart3)
837 sh->format=0x55; // .mp3
839 if(esds.objectTypeId==MP4OTI_13kVoice) { // 13K Voice, defined by 3GPP2
840 sh->format=mmioFOURCC('Q', 'c', 'l', 'p');
841 trak->nchannels=sh->channels=1;
842 trak->samplebytes=sh->samplesize=1;
845 // dump away the codec specific configuration for the AAC decoder
846 if(esds.decoderConfigLen){
847 if( (esds.decoderConfig[0]>>3) == 29 )
848 sh->format = 0x1d61346d; // request multi-channel mp3 decoder
849 if(!is_vorbis)
851 sh->codecdata_len = esds.decoderConfigLen;
852 sh->codecdata = malloc(sh->codecdata_len);
853 memcpy(sh->codecdata, esds.decoderConfig, sh->codecdata_len);
857 mp4_free_esds(&esds); // freeup esds mem
858 #if 0
859 { FILE* f=fopen("esds.dat","wb");
860 fwrite(&trak->stdata[36],atom_len-8,1,f);
861 fclose(f); }
862 #endif
864 } break;
865 case MOV_FOURCC('a','l','a','c'): {
866 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found alac atom (%d)!\n", atom_len);
867 if(atom_len > 8) {
868 // copy all the atom (not only payload) for lavc alac decoder
869 sh->codecdata_len = atom_len;
870 sh->codecdata = malloc(sh->codecdata_len);
871 memcpy(sh->codecdata, &trak->stdata[28], sh->codecdata_len);
873 } break;
874 case MOV_FOURCC('d','a','m','r'):
875 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found AMR audio atom %c%c%c%c (%d)!\n", trak->stdata[32+adjust],trak->stdata[33+adjust],trak->stdata[34+adjust],trak->stdata[35+adjust], atom_len);
876 if (atom_len>14) {
877 mp_msg(MSGT_DEMUX, MSGL_V, "mov: vendor: %c%c%c%c Version: %d\n",trak->stdata[36+adjust],trak->stdata[37+adjust],trak->stdata[38+adjust], trak->stdata[39+adjust],trak->stdata[40+adjust]);
878 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Modes set: %02x%02x\n",trak->stdata[41+adjust],trak->stdata[42+adjust]);
879 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Mode change period: %d Frames per sample: %d\n",trak->stdata[43+adjust],trak->stdata[44+adjust]);
881 break;
882 default:
883 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unknown audio atom %c%c%c%c (%d)!\n",
884 trak->stdata[32+adjust],trak->stdata[33+adjust],trak->stdata[34+adjust],trak->stdata[35+adjust],
885 atom_len);
888 mp_msg(MSGT_DEMUX, MSGL_V, "Fourcc: %.4s\n",(char *)&trak->fourcc);
889 #if 0
890 { FILE* f=fopen("stdata.dat","wb");
891 fwrite(trak->stdata,trak->stdata_len,1,f);
892 fclose(f); }
893 { FILE* f=fopen("tkdata.dat","wb");
894 fwrite(trak->tkdata,trak->tkdata_len,1,f);
895 fclose(f); }
896 #endif
897 // Emulate WAVEFORMATEX struct:
898 sh->wf=malloc(sizeof(WAVEFORMATEX) + (is_vorbis ? sh->codecdata_len : 0));
899 memset(sh->wf,0,sizeof(WAVEFORMATEX));
900 sh->wf->nChannels=sh->channels;
901 sh->wf->wBitsPerSample=(trak->stdata[18]<<8)+trak->stdata[19];
902 // sh->wf->nSamplesPerSec=trak->timescale;
903 sh->wf->nSamplesPerSec=sh->samplerate;
904 if(trak->stdata_len >= 44 && trak->stdata[9]>=1 && char2int(trak->stdata,28)>0){
905 //Audio header: samp/pack=4096 bytes/pack=743 bytes/frame=1486 bytes/samp=2
906 sh->wf->nAvgBytesPerSec=(sh->wf->nChannels*sh->wf->nSamplesPerSec*
907 char2int(trak->stdata,32)+char2int(trak->stdata,28)/2)
908 /char2int(trak->stdata,28);
909 sh->wf->nBlockAlign=char2int(trak->stdata,36);
910 } else {
911 sh->wf->nAvgBytesPerSec=sh->wf->nChannels*sh->wf->wBitsPerSample*sh->wf->nSamplesPerSec/8;
912 // workaround for ms11 ima4
913 if (sh->format == 0x1100736d && trak->stdata_len >= 36)
914 sh->wf->nBlockAlign=char2int(trak->stdata,36);
917 if(is_vorbis && sh->codecdata_len)
919 memcpy(sh->wf+1, sh->codecdata, sh->codecdata_len);
920 sh->wf->cbSize = sh->codecdata_len;
922 // Selection:
923 // if(demuxer->audio->id==-1 || demuxer->audio->id==priv->track_db){
924 // // (auto)selected audio track:
925 // demuxer->audio->id=priv->track_db;
926 // demuxer->audio->sh=sh; sh->ds=demuxer->audio;
927 // }
928 return 1;
931 static int gen_sh_video(sh_video_t* sh, mov_track_t* trak, int timescale) {
932 int depth, i, entry;
933 int flag, start, count_flag, end, palette_count, gray;
934 int hdr_ptr = 76; // the byte just after depth
935 unsigned char *palette_map;
937 sh->format=trak->fourcc;
939 // crude video delay from editlist0 hack ::atm
940 if(trak->editlist_size>=1) {
941 if(trak->editlist[0].pos == -1) {
942 sh->stream_delay = (float)trak->editlist[0].dur/(float)timescale;
943 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Initial Video-Delay: %.3f sec\n", sh->stream_delay);
948 if (trak->stdata_len < 78) {
949 mp_msg(MSGT_DEMUXER, MSGL_WARN,
950 "MOV: Invalid (%d bytes instead of >= 78) video trak desc\n",
951 trak->stdata_len);
952 return 0;
955 depth = trak->stdata[75] | (trak->stdata[74] << 8);
956 if (trak->fourcc == mmioFOURCC('r', 'a', 'w', ' '))
957 sh->format = IMGFMT_RGB | depth;
959 // stdata[]:
960 // 8 short version
961 // 10 short revision
962 // 12 int vendor_id
963 // 16 int temporal_quality
964 // 20 int spatial_quality
965 // 24 short width
966 // 26 short height
967 // 28 int h_dpi
968 // 32 int v_dpi
969 // 36 int 0
970 // 40 short frames_per_sample
971 // 42 char[4] compressor_name
972 // 74 short depth
973 // 76 short color_table_id
974 // additional atoms may follow,
975 // eg esds atom from .MP4 files
976 // 78 int atom size
977 // 82 char[4] atom type
978 // 86 ... atom data
980 { ImageDescription* id=malloc(8+trak->stdata_len); // safe
981 trak->desc=id;
982 id->idSize=8+trak->stdata_len;
983 // id->cType=bswap_32(trak->fourcc);
984 id->cType=le2me_32(trak->fourcc);
985 id->version=char2short(trak->stdata,8);
986 id->revisionLevel=char2short(trak->stdata,10);
987 id->vendor=char2int(trak->stdata,12);
988 id->temporalQuality=char2int(trak->stdata,16);
989 id->spatialQuality=char2int(trak->stdata,20);
990 id->width=char2short(trak->stdata,24);
991 id->height=char2short(trak->stdata,26);
992 id->hRes=char2int(trak->stdata,28);
993 id->vRes=char2int(trak->stdata,32);
994 id->dataSize=char2int(trak->stdata,36);
995 id->frameCount=char2short(trak->stdata,40);
996 memcpy(&id->name,trak->stdata+42,32);
997 id->depth=char2short(trak->stdata,74);
998 id->clutID=char2short(trak->stdata,76);
999 if(trak->stdata_len>78) memcpy(((char*)&id->clutID)+2,trak->stdata+78,trak->stdata_len-78);
1000 sh->ImageDesc=id;
1001 #if 0
1002 { FILE *f=fopen("ImageDescription","wb");
1003 fwrite(id,id->idSize,1,f);
1004 fclose(f);
1006 #endif
1009 if(trak->stdata_len >= 86) { // extra atoms found
1010 int pos=78;
1011 int atom_len;
1012 while(pos+8<=trak->stdata_len &&
1013 (pos+(atom_len=char2int(trak->stdata,pos)))<=trak->stdata_len){
1014 switch(char2int(trak->stdata,pos+4)) { // switch atom type
1015 case MOV_FOURCC('g','a','m','a'):
1016 // intfp with gamma value at which movie was captured
1017 // can be used to gamma correct movie display
1018 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unsupported Gamma-Correction movie atom (%d)!\n",
1019 atom_len);
1020 break;
1021 case MOV_FOURCC('f','i','e','l'):
1022 // 2 char-values (8bit int) that specify field handling
1023 // see the Apple's QuickTime Fileformat PDF for more info
1024 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unsupported Field-Handling movie atom (%d)!\n",
1025 atom_len);
1026 break;
1027 case MOV_FOURCC('m','j','q','t'):
1028 // Motion-JPEG default quantization table
1029 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unsupported MJPEG-Quantization movie atom (%d)!\n",
1030 atom_len);
1031 break;
1032 case MOV_FOURCC('m','j','h','t'):
1033 // Motion-JPEG default huffman table
1034 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unsupported MJPEG-Huffman movie atom (%d)!\n",
1035 atom_len);
1036 break;
1037 case MOV_FOURCC('e','s','d','s'):
1038 // MPEG4 Elementary Stream Descriptor header
1039 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found MPEG4 movie Elementary Stream Descriptor atom (%d)!\n", atom_len);
1040 // add code here to save esds header of length atom_len-8
1041 // beginning at stdata[86] to some variable to pass it
1042 // on to the decoder ::atmos
1043 if(atom_len > 8) {
1044 esds_t esds;
1045 if(!mp4_parse_esds(trak->stdata+pos+8, atom_len-8, &esds)) {
1047 if(esds.objectTypeId==MP4OTI_MPEG2VisualSimple || esds.objectTypeId==MP4OTI_MPEG2VisualMain ||
1048 esds.objectTypeId==MP4OTI_MPEG2VisualSNR || esds.objectTypeId==MP4OTI_MPEG2VisualSpatial ||
1049 esds.objectTypeId==MP4OTI_MPEG2VisualHigh || esds.objectTypeId==MP4OTI_MPEG2Visual422)
1050 sh->format=mmioFOURCC('m', 'p', 'g', '2');
1051 else if(esds.objectTypeId==MP4OTI_MPEG1Visual)
1052 sh->format=mmioFOURCC('m', 'p', 'g', '1');
1054 // dump away the codec specific configuration for the AAC decoder
1055 trak->stream_header_len = esds.decoderConfigLen;
1056 trak->stream_header = malloc(trak->stream_header_len);
1057 memcpy(trak->stream_header, esds.decoderConfig, trak->stream_header_len);
1059 mp4_free_esds(&esds); // freeup esds mem
1061 break;
1062 case MOV_FOURCC('a','v','c','C'):
1063 // AVC decoder configuration record
1064 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: AVC decoder configuration record atom (%d)!\n", atom_len);
1065 if(atom_len > 8) {
1066 int i, poffs, cnt;
1067 // Parse some parts of avcC, just for fun :)
1068 // real parsing is done by avc1 decoder
1069 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC version: %d\n", *(trak->stdata+pos+8));
1070 if (*(trak->stdata+pos+8) != 1)
1071 mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: unknown avcC version (%d). Expexct problems.\n", *(trak->stdata+pos+9));
1072 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC profile: %d\n", *(trak->stdata+pos+9));
1073 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC profile compatibility: %d\n", *(trak->stdata+pos+10));
1074 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC level: %d\n", *(trak->stdata+pos+11));
1075 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC nal length size: %d\n", ((*(trak->stdata+pos+12))&0x03)+1);
1076 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC number of sequence param sets: %d\n", cnt = (*(trak->stdata+pos+13) & 0x1f));
1077 poffs = pos + 14;
1078 for (i = 0; i < cnt; i++) {
1079 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC sps %d have length %d\n", i, AV_RB16(trak->stdata+poffs));
1080 poffs += AV_RB16(trak->stdata+poffs) + 2;
1082 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC number of picture param sets: %d\n", *(trak->stdata+poffs));
1083 poffs++;
1084 for (i = 0; i < cnt; i++) {
1085 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC pps %d have length %d\n", i, AV_RB16(trak->stdata+poffs));
1086 poffs += AV_RB16(trak->stdata+poffs) + 2;
1088 // Copy avcC for the AVC decoder
1089 // This data will be put in extradata below, where BITMAPINFOHEADER is created
1090 trak->stream_header_len = atom_len-8;
1091 trak->stream_header = malloc(trak->stream_header_len);
1092 memcpy(trak->stream_header, trak->stdata+pos+8, trak->stream_header_len);
1094 break;
1095 case MOV_FOURCC('d','2','6','3'):
1096 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found H.263 decoder atom %c%c%c%c (%d)!\n", trak->stdata[pos+4],trak->stdata[pos+5],trak->stdata[pos+6],trak->stdata[pos+7],atom_len);
1097 if (atom_len>10)
1098 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Vendor: %c%c%c%c H.263 level: %d H.263 profile: %d \n", trak->stdata[pos+8],trak->stdata[pos+9],trak->stdata[pos+10],trak->stdata[pos+11],trak->stdata[pos+12],trak->stdata[pos+13]);
1099 break;
1100 case 0:
1101 break;
1102 default:
1103 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unknown movie atom %c%c%c%c (%d)!\n",
1104 trak->stdata[pos+4],trak->stdata[pos+5],trak->stdata[pos+6],trak->stdata[pos+7],
1105 atom_len);
1107 if(atom_len<8) break;
1108 pos+=atom_len;
1109 // printf("pos=%d max=%d\n",pos,trak->stdata_len);
1112 sh->fps=trak->timescale/
1113 ((trak->durmap_size>=1)?(float)trak->durmap[0].dur:1);
1114 sh->frametime=1.0f/sh->fps;
1116 sh->disp_w=trak->stdata[25]|(trak->stdata[24]<<8);
1117 sh->disp_h=trak->stdata[27]|(trak->stdata[26]<<8);
1118 if(trak->tkdata_len>81) {
1119 // if image size is zero, fallback to display size
1120 if(!sh->disp_w && !sh->disp_h) {
1121 sh->disp_w=trak->tkdata[77]|(trak->tkdata[76]<<8);
1122 sh->disp_h=trak->tkdata[81]|(trak->tkdata[80]<<8);
1123 } else if(sh->disp_w!=(trak->tkdata[77]|(trak->tkdata[76]<<8))){
1124 // codec and display width differ... use display one for aspect
1125 sh->aspect=trak->tkdata[77]|(trak->tkdata[76]<<8);
1126 sh->aspect/=trak->tkdata[81]|(trak->tkdata[80]<<8);
1130 if(depth>32+8) mp_msg(MSGT_DEMUX, MSGL_INFO,"*** depth = 0x%X\n",depth);
1132 // palettized?
1133 gray = 0;
1134 if (depth > 32) { depth&=31; gray = 1; } // depth > 32 means grayscale
1135 if ((depth == 2) || (depth == 4) || (depth == 8))
1136 palette_count = (1 << depth);
1137 else
1138 palette_count = 0;
1140 // emulate BITMAPINFOHEADER:
1141 if (palette_count)
1143 sh->bih=malloc(sizeof(BITMAPINFOHEADER) + palette_count * 4);
1144 memset(sh->bih,0,sizeof(BITMAPINFOHEADER) + palette_count * 4);
1145 sh->bih->biSize=40 + palette_count * 4;
1146 // fetch the relevant fields
1147 flag = AV_RB16(&trak->stdata[hdr_ptr]);
1148 hdr_ptr += 2;
1149 start = AV_RB32(&trak->stdata[hdr_ptr]);
1150 hdr_ptr += 4;
1151 count_flag = AV_RB16(&trak->stdata[hdr_ptr]);
1152 hdr_ptr += 2;
1153 end = AV_RB16(&trak->stdata[hdr_ptr]);
1154 hdr_ptr += 2;
1155 palette_map = (unsigned char *)sh->bih + 40;
1156 mp_msg(MSGT_DEMUX, MSGL_V, "Allocated %d entries for palette\n",
1157 palette_count);
1158 mp_msg(MSGT_DEMUX, MSGL_DBG2, "QT palette: start: %x, end: %x, count flag: %d, flags: %x\n",
1159 start, end, count_flag, flag);
1161 /* XXX: problems with sample (statunit6.mov) with flag&0x4 set! - alex*/
1163 // load default palette
1164 if (flag & 0x08)
1166 if (gray)
1168 mp_msg(MSGT_DEMUX, MSGL_V, "Using default QT grayscale palette\n");
1169 if (palette_count == 16)
1170 memcpy(palette_map, qt_default_grayscale_palette_16, 16 * 4);
1171 else if (palette_count == 256) {
1172 memcpy(palette_map, qt_default_grayscale_palette_256, 256 * 4);
1173 if (trak->fourcc == mmioFOURCC('c','v','i','d')) {
1174 int i;
1175 // Hack for grayscale CVID, negative palette
1176 // If you have samples where this is not required contact me (rxt)
1177 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: greyscale cvid with default palette,"
1178 " enabling negative palette hack.\n");
1179 for (i = 0; i < 256 * 4; i++)
1180 palette_map[i] = palette_map[i] ^ 0xff;
1184 else
1186 mp_msg(MSGT_DEMUX, MSGL_V, "Using default QT colour palette\n");
1187 if (palette_count == 4)
1188 memcpy(palette_map, qt_default_palette_4, 4 * 4);
1189 else if (palette_count == 16)
1190 memcpy(palette_map, qt_default_palette_16, 16 * 4);
1191 else if (palette_count == 256)
1192 memcpy(palette_map, qt_default_palette_256, 256 * 4);
1195 // load palette from file
1196 else
1198 mp_msg(MSGT_DEMUX, MSGL_V, "Loading palette from file\n");
1199 for (i = start; i <= end; i++)
1201 entry = AV_RB16(&trak->stdata[hdr_ptr]);
1202 hdr_ptr += 2;
1203 // apparently, if count_flag is set, entry is same as i
1204 if (count_flag & 0x8000)
1205 entry = i;
1206 // only care about top 8 bits of 16-bit R, G, or B value
1207 if (entry <= palette_count && entry >= 0)
1209 palette_map[entry * 4 + 2] = trak->stdata[hdr_ptr + 0];
1210 palette_map[entry * 4 + 1] = trak->stdata[hdr_ptr + 2];
1211 palette_map[entry * 4 + 0] = trak->stdata[hdr_ptr + 4];
1212 mp_dbg(MSGT_DEMUX, MSGL_DBG2, "QT palette: added entry: %d of %d (colors: R:%x G:%x B:%x)\n",
1213 entry, palette_count,
1214 palette_map[entry * 4 + 2],
1215 palette_map[entry * 4 + 1],
1216 palette_map[entry * 4 + 0]);
1218 else
1219 mp_msg(MSGT_DEMUX, MSGL_V, "QT palette: skipped entry (out of count): %d of %d\n",
1220 entry, palette_count);
1221 hdr_ptr += 6;
1225 else
1227 if (trak->fourcc == mmioFOURCC('a','v','c','1')) {
1228 if (trak->stream_header_len > 0xffffffff - sizeof(BITMAPINFOHEADER)) {
1229 mp_msg(MSGT_DEMUXER, MSGL_ERR, "Invalid extradata size %d, skipping\n",trak->stream_header_len);
1230 trak->stream_header_len = 0;
1232 sh->bih=malloc(sizeof(BITMAPINFOHEADER) + trak->stream_header_len);
1233 memset(sh->bih,0,sizeof(BITMAPINFOHEADER) + trak->stream_header_len);
1234 sh->bih->biSize=40 + trak->stream_header_len;
1235 memcpy(((unsigned char *)sh->bih)+40, trak->stream_header, trak->stream_header_len);
1236 free (trak->stream_header);
1237 trak->stream_header_len = 0;
1238 trak->stream_header = NULL;
1239 } else {
1240 sh->bih=malloc(sizeof(BITMAPINFOHEADER));
1241 memset(sh->bih,0,sizeof(BITMAPINFOHEADER));
1242 sh->bih->biSize=40;
1245 sh->bih->biWidth=sh->disp_w;
1246 sh->bih->biHeight=sh->disp_h;
1247 sh->bih->biPlanes=0;
1248 sh->bih->biBitCount=depth;
1249 sh->bih->biCompression=trak->fourcc;
1250 sh->bih->biSizeImage=sh->bih->biWidth*sh->bih->biHeight;
1252 mp_msg(MSGT_DEMUX, MSGL_V, "Image size: %d x %d (%d bpp)\n",sh->disp_w,sh->disp_h,sh->bih->biBitCount);
1253 if(trak->tkdata_len>81)
1254 mp_msg(MSGT_DEMUX, MSGL_V, "Display size: %d x %d\n",
1255 trak->tkdata[77]|(trak->tkdata[76]<<8),
1256 trak->tkdata[81]|(trak->tkdata[80]<<8));
1257 mp_msg(MSGT_DEMUX, MSGL_V, "Fourcc: %.4s Codec: '%.*s'\n",(char *)&trak->fourcc,trak->stdata[42]&31,trak->stdata+43);
1259 // if(demuxer->video->id==-1 || demuxer->video->id==priv->track_db){
1260 // // (auto)selected video track:
1261 // demuxer->video->id=priv->track_db;
1262 // demuxer->video->sh=sh; sh->ds=demuxer->video;
1263 // }
1264 return 1;
1267 static void lschunks(demuxer_t* demuxer,int level,off_t endpos,mov_track_t* trak){
1268 mov_priv_t* priv=demuxer->priv;
1269 // printf("lschunks (level=%d,endpos=%x)\n", level, endpos);
1270 while(1){
1271 off_t pos;
1272 off_t len;
1273 unsigned int id;
1275 pos=stream_tell(demuxer->stream);
1276 // printf("stream_tell==%d\n",pos);
1277 if(pos>=endpos) return; // END
1278 len=stream_read_dword(demuxer->stream);
1279 // printf("len==%d\n",len);
1280 if(len<8) return; // error
1281 len-=8;
1282 id=stream_read_dword(demuxer->stream);
1284 mp_msg(MSGT_DEMUX,MSGL_DBG2,"lschunks %.4s %d\n",(char *)&id,(int)len);
1286 if(trak){
1287 if (lschunks_intrak(demuxer, level, id, pos, len, trak) < 0)
1288 return;
1289 } else { /* not in track */
1290 switch(id) {
1291 case MOV_FOURCC('m','v','h','d'): {
1292 int version = stream_read_char(demuxer->stream);
1293 stream_skip(demuxer->stream, (version == 1) ? 19 : 11);
1294 priv->timescale=stream_read_dword(demuxer->stream);
1295 if (version == 1)
1296 priv->duration=stream_read_qword(demuxer->stream);
1297 else
1298 priv->duration=stream_read_dword(demuxer->stream);
1299 mp_msg(MSGT_DEMUX, MSGL_V,"MOV: %*sMovie header (%d bytes): tscale=%d dur=%d\n",level,"",(int)len,
1300 (int)priv->timescale,(int)priv->duration);
1301 break;
1303 case MOV_FOURCC('t','r','a','k'): {
1304 // if(trak) printf("MOV: Warning! trak in trak?\n");
1305 if(priv->track_db>=MOV_MAX_TRACKS){
1306 mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_MOVtooManyTrk);
1307 return;
1309 if(!priv->track_db) mp_msg(MSGT_DEMUX, MSGL_V, "--------------\n");
1310 trak=malloc(sizeof(mov_track_t));
1311 memset(trak,0,sizeof(mov_track_t));
1312 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Track #%d:\n",priv->track_db);
1313 trak->id=priv->track_db;
1314 priv->tracks[priv->track_db]=trak;
1315 lschunks(demuxer,level+1,pos+len,trak);
1316 mov_build_index(trak,priv->timescale);
1317 switch(trak->type){
1318 case MOV_TRAK_AUDIO: {
1319 sh_audio_t* sh=new_sh_audio(demuxer,priv->track_db);
1320 mp_msg(MSGT_DEMUX, MSGL_INFO, MSGTR_AudioID, "mov", priv->track_db);
1321 gen_sh_audio(sh, trak, priv->timescale);
1322 break;
1324 case MOV_TRAK_VIDEO: {
1325 sh_video_t* sh=new_sh_video(demuxer,priv->track_db);
1326 mp_msg(MSGT_DEMUX, MSGL_INFO, MSGTR_VideoID, "mov", priv->track_db);
1327 gen_sh_video(sh, trak, priv->timescale);
1328 break;
1330 case MOV_TRAK_GENERIC:
1331 if (trak->fourcc == mmioFOURCC('m','p','4','s') ||
1332 trak->fourcc == mmioFOURCC('t','x','3','g') ||
1333 trak->fourcc == mmioFOURCC('t','e','x','t')) {
1334 sh_sub_t *sh = new_sh_sub(demuxer, priv->track_db);
1335 mp_msg(MSGT_DEMUX, MSGL_INFO, MSGTR_SubtitleID, "mov", priv->track_db);
1336 if (trak->fourcc == mmioFOURCC('m','p','4','s'))
1337 init_vobsub(sh, trak);
1338 else {
1339 sh->type = 'm';
1340 sub_utf8 = 1;
1342 } else
1343 mp_msg(MSGT_DEMUX, MSGL_V, "Generic track - not completely understood! (id: %d)\n",
1344 trak->id);
1345 /* XXX: Also this contains the FLASH data */
1347 #if 0
1349 int pos = stream_tell(demuxer->stream);
1350 int i;
1351 int fd;
1352 char name[20];
1354 for (i=0; i<trak->samples_size; i++)
1356 char buf[trak->samples[i].size];
1357 stream_seek(demuxer->stream, trak->samples[i].pos);
1358 snprintf((char *)&name[0], 20, "samp%d", i);
1359 fd = open((char *)&name[0], O_CREAT|O_WRONLY);
1360 stream_read(demuxer->stream, &buf[0], trak->samples[i].size);
1361 write(fd, &buf[0], trak->samples[i].size);
1362 close(fd);
1364 for (i=0; i<trak->chunks_size; i++)
1366 char buf[trak->length];
1367 stream_seek(demuxer->stream, trak->chunks[i].pos);
1368 snprintf((char *)&name[0], 20, "chunk%d", i);
1369 fd = open((char *)&name[0], O_CREAT|O_WRONLY);
1370 stream_read(demuxer->stream, &buf[0], trak->length);
1371 write(fd, &buf[0], trak->length);
1372 close(fd);
1374 if (trak->samplesize > 0)
1376 char *buf;
1378 buf = malloc(trak->samplesize);
1379 stream_seek(demuxer->stream, trak->chunks[0].pos);
1380 snprintf((char *)&name[0], 20, "trak%d", trak->id);
1381 fd = open((char *)&name[0], O_CREAT|O_WRONLY);
1382 stream_read(demuxer->stream, buf, trak->samplesize);
1383 write(fd, buf, trak->samplesize);
1384 close(fd);
1386 stream_seek(demuxer->stream, pos);
1388 #endif
1389 break;
1390 default:
1391 mp_msg(MSGT_DEMUX, MSGL_V, "Unknown track type found (type: %d)\n", trak->type);
1392 break;
1394 mp_msg(MSGT_DEMUX, MSGL_V, "--------------\n");
1395 priv->track_db++;
1396 trak=NULL;
1397 break;
1399 #if !CONFIG_ZLIB
1400 case MOV_FOURCC('c','m','o','v'): {
1401 mp_msg(MSGT_DEMUX,MSGL_ERR,MSGTR_MOVcomprhdr);
1402 return;
1404 #else
1405 case MOV_FOURCC('m','o','o','v'):
1406 case MOV_FOURCC('c','m','o','v'): {
1407 // mp_msg(MSGT_DEMUX,MSGL_ERR,MSGTR_MOVcomprhdr);
1408 lschunks(demuxer,level+1,pos+len,NULL);
1409 break;
1411 case MOV_FOURCC('d','c','o','m'): {
1412 // int temp=stream_read_dword(demuxer->stream);
1413 unsigned int algo=be2me_32(stream_read_dword(demuxer->stream));
1414 mp_msg(MSGT_DEMUX, MSGL_V, "Compressed header uses %.4s algo!\n",(char *)&algo);
1415 break;
1417 case MOV_FOURCC('c','m','v','d'): {
1418 // int temp=stream_read_dword(demuxer->stream);
1419 unsigned int moov_sz=stream_read_dword(demuxer->stream);
1420 unsigned int cmov_sz=len-4;
1421 unsigned char* cmov_buf;
1422 unsigned char* moov_buf;
1423 int zret;
1424 z_stream zstrm;
1425 stream_t* backup;
1427 if (moov_sz > SIZE_MAX - 16) {
1428 mp_msg(MSGT_DEMUX, MSGL_ERR, "Invalid cmvd atom size %d\n", moov_sz);
1429 break;
1431 cmov_buf=malloc(cmov_sz);
1432 moov_buf=malloc(moov_sz+16);
1433 mp_msg(MSGT_DEMUX, MSGL_V, "Compressed header size: %d / %d\n",cmov_sz,moov_sz);
1435 stream_read(demuxer->stream,cmov_buf,cmov_sz);
1437 zstrm.zalloc = (alloc_func)0;
1438 zstrm.zfree = (free_func)0;
1439 zstrm.opaque = (voidpf)0;
1440 zstrm.next_in = cmov_buf;
1441 zstrm.avail_in = cmov_sz;
1442 zstrm.next_out = moov_buf;
1443 zstrm.avail_out = moov_sz;
1445 zret = inflateInit(&zstrm);
1446 if (zret != Z_OK)
1447 { mp_msg(MSGT_DEMUX, MSGL_ERR, "QT cmov: inflateInit err %d\n",zret);
1448 return;
1450 zret = inflate(&zstrm, Z_NO_FLUSH);
1451 if ((zret != Z_OK) && (zret != Z_STREAM_END))
1452 { mp_msg(MSGT_DEMUX, MSGL_ERR, "QT cmov inflate: ERR %d\n",zret);
1453 return;
1455 #if 0
1456 else {
1457 FILE *DecOut;
1458 DecOut = fopen("Out.bin", "w");
1459 fwrite(moov_buf, 1, moov_sz, DecOut);
1460 fclose(DecOut);
1462 #endif
1463 if(moov_sz != zstrm.total_out)
1464 mp_msg(MSGT_DEMUX, MSGL_WARN, "Warning! moov size differs cmov: %d zlib: %ld\n",moov_sz,zstrm.total_out);
1465 zret = inflateEnd(&zstrm);
1467 backup=demuxer->stream;
1468 demuxer->stream=new_memory_stream(moov_buf,moov_sz);
1469 stream_skip(demuxer->stream,8);
1470 lschunks(demuxer,level+1,moov_sz,NULL); // parse uncompr. 'moov'
1471 //free_stream(demuxer->stream);
1472 demuxer->stream=backup;
1473 free(cmov_buf);
1474 free(moov_buf);
1475 break;
1477 #endif
1478 case MOV_FOURCC('u','d','t','a'):
1480 unsigned int udta_id;
1481 off_t udta_len;
1482 off_t udta_size = len;
1484 mp_msg(MSGT_DEMUX, MSGL_DBG2, "mov: user data record found\n");
1485 mp_msg(MSGT_DEMUX, MSGL_V, "Quicktime Clip Info:\n");
1487 while((len > 8) && (udta_size > 8))
1489 udta_len = stream_read_dword(demuxer->stream);
1490 udta_id = stream_read_dword(demuxer->stream);
1491 udta_size -= 8;
1492 mp_msg(MSGT_DEMUX, MSGL_DBG2, "udta_id: %.4s (len: %"PRId64")\n", (char *)&udta_id, (int64_t)udta_len);
1493 switch (udta_id)
1495 case MOV_FOURCC(0xa9,'c','p','y'):
1496 case MOV_FOURCC(0xa9,'d','a','y'):
1497 case MOV_FOURCC(0xa9,'d','i','r'):
1498 /* 0xa9,'e','d','1' - '9' : edit timestamps */
1499 case MOV_FOURCC(0xa9,'f','m','t'):
1500 case MOV_FOURCC(0xa9,'i','n','f'):
1501 case MOV_FOURCC(0xa9,'p','r','d'):
1502 case MOV_FOURCC(0xa9,'p','r','f'):
1503 case MOV_FOURCC(0xa9,'r','e','q'):
1504 case MOV_FOURCC(0xa9,'s','r','c'):
1505 case MOV_FOURCC('n','a','m','e'):
1506 case MOV_FOURCC(0xa9,'n','a','m'):
1507 case MOV_FOURCC(0xa9,'A','R','T'):
1508 case MOV_FOURCC(0xa9,'c','m','t'):
1509 case MOV_FOURCC(0xa9,'a','u','t'):
1510 case MOV_FOURCC(0xa9,'s','w','r'):
1512 off_t text_len = stream_read_word(demuxer->stream);
1513 char text[text_len+2+1];
1514 stream_read(demuxer->stream, (char *)&text, text_len+2);
1515 text[text_len+2] = 0x0;
1516 switch(udta_id)
1518 case MOV_FOURCC(0xa9,'a','u','t'):
1519 demux_info_add(demuxer, "author", &text[2]);
1520 mp_msg(MSGT_DEMUX, MSGL_V, " Author: %s\n", &text[2]);
1521 break;
1522 case MOV_FOURCC(0xa9,'c','p','y'):
1523 demux_info_add(demuxer, "copyright", &text[2]);
1524 mp_msg(MSGT_DEMUX, MSGL_V, " Copyright: %s\n", &text[2]);
1525 break;
1526 case MOV_FOURCC(0xa9,'i','n','f'):
1527 mp_msg(MSGT_DEMUX, MSGL_V, " Info: %s\n", &text[2]);
1528 break;
1529 case MOV_FOURCC('n','a','m','e'):
1530 case MOV_FOURCC(0xa9,'n','a','m'):
1531 demux_info_add(demuxer, "name", &text[2]);
1532 mp_msg(MSGT_DEMUX, MSGL_V, " Name: %s\n", &text[2]);
1533 break;
1534 case MOV_FOURCC(0xa9,'A','R','T'):
1535 mp_msg(MSGT_DEMUX, MSGL_V, " Artist: %s\n", &text[2]);
1536 break;
1537 case MOV_FOURCC(0xa9,'d','i','r'):
1538 mp_msg(MSGT_DEMUX, MSGL_V, " Director: %s\n", &text[2]);
1539 break;
1540 case MOV_FOURCC(0xa9,'c','m','t'):
1541 demux_info_add(demuxer, "comments", &text[2]);
1542 mp_msg(MSGT_DEMUX, MSGL_V, " Comment: %s\n", &text[2]);
1543 break;
1544 case MOV_FOURCC(0xa9,'r','e','q'):
1545 mp_msg(MSGT_DEMUX, MSGL_V, " Requirements: %s\n", &text[2]);
1546 break;
1547 case MOV_FOURCC(0xa9,'s','w','r'):
1548 demux_info_add(demuxer, "encoder", &text[2]);
1549 mp_msg(MSGT_DEMUX, MSGL_V, " Software: %s\n", &text[2]);
1550 break;
1551 case MOV_FOURCC(0xa9,'d','a','y'):
1552 mp_msg(MSGT_DEMUX, MSGL_V, " Creation timestamp: %s\n", &text[2]);
1553 break;
1554 case MOV_FOURCC(0xa9,'f','m','t'):
1555 mp_msg(MSGT_DEMUX, MSGL_V, " Format: %s\n", &text[2]);
1556 break;
1557 case MOV_FOURCC(0xa9,'p','r','d'):
1558 mp_msg(MSGT_DEMUX, MSGL_V, " Producer: %s\n", &text[2]);
1559 break;
1560 case MOV_FOURCC(0xa9,'p','r','f'):
1561 mp_msg(MSGT_DEMUX, MSGL_V, " Performer(s): %s\n", &text[2]);
1562 break;
1563 case MOV_FOURCC(0xa9,'s','r','c'):
1564 mp_msg(MSGT_DEMUX, MSGL_V, " Source providers: %s\n", &text[2]);
1565 break;
1567 udta_size -= 4+text_len;
1568 break;
1570 /* some other shits: WLOC - window location,
1571 LOOP - looping style,
1572 SelO - play only selected frames
1573 AllF - play all frames
1575 case MOV_FOURCC('W','L','O','C'):
1576 case MOV_FOURCC('L','O','O','P'):
1577 case MOV_FOURCC('S','e','l','O'):
1578 case MOV_FOURCC('A','l','l','F'):
1579 default:
1581 if( udta_len>udta_size)
1582 udta_len=udta_size;
1584 stream_skip(demuxer->stream, udta_len-4-4);
1585 udta_size -= udta_len;
1590 break;
1591 } /* eof udta */
1592 default:
1593 id = be2me_32(id);
1594 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",(char *)&id,(int)len);
1595 } /* endof switch */
1596 } /* endof else */
1598 pos+=len+8;
1599 if(pos>=endpos) break;
1600 if(!stream_seek(demuxer->stream,pos)) break;
1604 static int lschunks_intrak(demuxer_t* demuxer, int level, unsigned int id,
1605 off_t pos, off_t len, mov_track_t* trak)
1607 switch(id) {
1608 case MOV_FOURCC('m','d','a','t'): {
1609 mp_msg(MSGT_DEMUX,MSGL_WARN,"Hmm, strange MOV, parsing mdat in lschunks?\n");
1610 return -1;
1612 case MOV_FOURCC('f','r','e','e'):
1613 case MOV_FOURCC('u','d','t','a'):
1614 /* here not supported :p */
1615 break;
1616 case MOV_FOURCC('t','k','h','d'): {
1617 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sTrack header!\n", level, "");
1618 // read codec data
1619 trak->tkdata_len = len;
1620 trak->tkdata = malloc(trak->tkdata_len);
1621 stream_read(demuxer->stream, trak->tkdata, trak->tkdata_len);
1623 0 1 Version
1624 1 3 Flags
1625 4 4 Creation time
1626 8 4 Modification time
1627 12 4 Track ID
1628 16 4 Reserved
1629 20 4 Duration
1630 24 8 Reserved
1631 32 2 Layer
1632 34 2 Alternate group
1633 36 2 Volume
1634 38 2 Reserved
1635 40 36 Matrix structure
1636 76 4 Track width
1637 80 4 Track height
1639 mp_msg(MSGT_DEMUX, MSGL_V,
1640 "tkhd len=%d ver=%d flags=0x%X id=%d dur=%d lay=%d vol=%d\n",
1641 trak->tkdata_len, trak->tkdata[0], trak->tkdata[1],
1642 char2int(trak->tkdata, 12), // id
1643 char2int(trak->tkdata, 20), // duration
1644 char2short(trak->tkdata, 32), // layer
1645 char2short(trak->tkdata, 36)); // volume
1646 break;
1648 case MOV_FOURCC('m','d','h','d'): {
1649 int version = stream_read_char(demuxer->stream);
1650 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sMedia header!\n", level, "");
1651 stream_skip(demuxer->stream, (version == 1) ? 19 : 11);
1652 // read timescale
1653 trak->timescale = stream_read_dword(demuxer->stream);
1654 // read length
1655 if (version == 1)
1656 trak->length = stream_read_qword(demuxer->stream);
1657 else
1658 trak->length = stream_read_dword(demuxer->stream);
1659 break;
1661 case MOV_FOURCC('h','d','l','r'): {
1662 av_unused unsigned int tmp = stream_read_dword(demuxer->stream);
1663 unsigned int type = stream_read_dword_le(demuxer->stream);
1664 unsigned int subtype = stream_read_dword_le(demuxer->stream);
1665 unsigned int manufact = stream_read_dword_le(demuxer->stream);
1666 av_unused unsigned int comp_flags = stream_read_dword(demuxer->stream);
1667 av_unused unsigned int comp_mask = stream_read_dword(demuxer->stream);
1668 int len = stream_read_char(demuxer->stream);
1669 char* str = malloc(len + 1);
1670 stream_read(demuxer->stream, str, len);
1671 str[len] = 0;
1672 mp_msg(MSGT_DEMUX, MSGL_V,
1673 "MOV: %*sHandler header: %.4s/%.4s (%.4s) %s\n", level, "",
1674 (char *)&type, (char *)&subtype, (char *)&manufact, str);
1675 free(str);
1676 switch(bswap_32(type)) {
1677 case MOV_FOURCC('m','h','l','r'):
1678 trak->media_handler = bswap_32(subtype);
1679 break;
1680 case MOV_FOURCC('d','h','l','r'):
1681 trak->data_handler = bswap_32(subtype);
1682 break;
1683 default:
1684 mp_msg(MSGT_DEMUX, MSGL_V,
1685 "MOV: unknown handler class: 0x%X (%.4s)\n",
1686 bswap_32(type), (char *)&type);
1688 break;
1690 case MOV_FOURCC('v','m','h','d'): {
1691 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sVideo header!\n", level, "");
1692 trak->type = MOV_TRAK_VIDEO;
1693 // read video data
1694 break;
1696 case MOV_FOURCC('s','m','h','d'): {
1697 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sSound header!\n", level, "");
1698 trak->type = MOV_TRAK_AUDIO;
1699 // read audio data
1700 break;
1702 case MOV_FOURCC('g','m','h','d'): {
1703 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sGeneric header!\n", level, "");
1704 trak->type = MOV_TRAK_GENERIC;
1705 break;
1707 case MOV_FOURCC('n','m','h','d'): {
1708 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sGeneric header!\n", level, "");
1709 trak->type = MOV_TRAK_GENERIC;
1710 break;
1712 case MOV_FOURCC('s','t','s','d'): {
1713 int i = stream_read_dword(demuxer->stream); // temp!
1714 int count = stream_read_dword(demuxer->stream);
1715 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sDescription list! (cnt:%d)\n",
1716 level, "", count);
1717 for (i = 0; i < count; i++) {
1718 off_t pos = stream_tell(demuxer->stream);
1719 off_t len = stream_read_dword(demuxer->stream);
1720 unsigned int fourcc = stream_read_dword_le(demuxer->stream);
1721 /* some files created with Broadcast 2000 (e.g. ilacetest.mov)
1722 contain raw I420 video but have a yv12 fourcc */
1723 if (fourcc == mmioFOURCC('y','v','1','2'))
1724 fourcc = mmioFOURCC('I','4','2','0');
1725 if (len < 8)
1726 break; // error
1727 mp_msg(MSGT_DEMUX, MSGL_V,
1728 "MOV: %*s desc #%d: %.4s (%"PRId64" bytes)\n", level, "",
1729 i, (char *)&fourcc, (int64_t)len - 16);
1730 if (fourcc != trak->fourcc && i)
1731 mp_msg(MSGT_DEMUX, MSGL_WARN, MSGTR_MOVvariableFourCC);
1732 // if(!i)
1734 trak->fourcc = fourcc;
1735 // read type specific (audio/video/time/text etc) header
1736 // NOTE: trak type is not yet known at this point :(((
1737 trak->stdata_len = len - 8;
1738 trak->stdata = malloc(trak->stdata_len);
1739 stream_read(demuxer->stream, trak->stdata, trak->stdata_len);
1741 if (!stream_seek(demuxer->stream, pos + len))
1742 break;
1744 break;
1746 case MOV_FOURCC('s','t','t','s'): {
1747 av_unused int temp = stream_read_dword(demuxer->stream);
1748 int len = stream_read_dword(demuxer->stream);
1749 int i;
1750 unsigned int pts = 0;
1751 mp_msg(MSGT_DEMUX, MSGL_V,
1752 "MOV: %*sSample duration table! (%d blocks)\n", level, "",
1753 len);
1754 trak->durmap = calloc(len, sizeof(mov_durmap_t));
1755 trak->durmap_size = trak->durmap ? len : 0;
1756 for (i = 0; i < trak->durmap_size; i++) {
1757 trak->durmap[i].num = stream_read_dword(demuxer->stream);
1758 trak->durmap[i].dur = stream_read_dword(demuxer->stream);
1759 pts += trak->durmap[i].num * trak->durmap[i].dur;
1761 if (trak->length != pts)
1762 mp_msg(MSGT_DEMUX, MSGL_WARN, "Warning! pts=%d length=%d\n",
1763 pts, trak->length);
1764 break;
1766 case MOV_FOURCC('s','t','s','c'): {
1767 int temp = stream_read_dword(demuxer->stream);
1768 int len = stream_read_dword(demuxer->stream);
1769 int ver = (temp << 24);
1770 int flags = (temp << 16) | (temp << 8) | temp;
1771 int i;
1772 mp_msg(MSGT_DEMUX, MSGL_V,
1773 "MOV: %*sSample->Chunk mapping table! (%d blocks) (ver:%d,flags:%d)\n", level, "",
1774 len, ver, flags);
1775 // read data:
1776 trak->chunkmap = calloc(len, sizeof(mov_chunkmap_t));
1777 trak->chunkmap_size = trak->chunkmap ? len : 0;
1778 for (i = 0; i < trak->chunkmap_size; i++) {
1779 trak->chunkmap[i].first = stream_read_dword(demuxer->stream) - 1;
1780 trak->chunkmap[i].spc = stream_read_dword(demuxer->stream);
1781 trak->chunkmap[i].sdid = stream_read_dword(demuxer->stream);
1783 break;
1785 case MOV_FOURCC('s','t','s','z'): {
1786 int temp = stream_read_dword(demuxer->stream);
1787 int ss=stream_read_dword(demuxer->stream);
1788 int ver = (temp << 24);
1789 int flags = (temp << 16) | (temp << 8) | temp;
1790 int entries = stream_read_dword(demuxer->stream);
1791 int i;
1792 mp_msg(MSGT_DEMUX, MSGL_V,
1793 "MOV: %*sSample size table! (entries=%d ss=%d) (ver:%d,flags:%d)\n", level, "",
1794 entries, ss, ver, flags);
1795 trak->samplesize = ss;
1796 if (!ss) {
1797 // variable samplesize
1798 trak->samples = realloc_struct(trak->samples, entries, sizeof(mov_sample_t));
1799 trak->samples_size = entries;
1800 for (i = 0; i < trak->samples_size; i++)
1801 trak->samples[i].size = stream_read_dword(demuxer->stream);
1803 break;
1805 case MOV_FOURCC('s','t','c','o'): {
1806 av_unused int temp = stream_read_dword(demuxer->stream);
1807 int len = stream_read_dword(demuxer->stream);
1808 int i;
1809 mp_msg(MSGT_DEMUX, MSGL_V,
1810 "MOV: %*sChunk offset table! (%d chunks)\n", level, "",
1811 len);
1812 // extend array if needed:
1813 if (len > trak->chunks_size) {
1814 trak->chunks = realloc_struct(trak->chunks, len, sizeof(mov_chunk_t));
1815 trak->chunks_size = trak->chunks ? len : 0;
1817 // read elements:
1818 for(i = 0; i < trak->chunks_size; i++)
1819 trak->chunks[i].pos = stream_read_dword(demuxer->stream);
1820 break;
1822 case MOV_FOURCC('c','o','6','4'): {
1823 av_unused int temp = stream_read_dword(demuxer->stream);
1824 int len = stream_read_dword(demuxer->stream);
1825 int i;
1826 mp_msg(MSGT_DEMUX, MSGL_V,
1827 "MOV: %*s64bit chunk offset table! (%d chunks)\n", level, "",
1828 len);
1829 // extend array if needed:
1830 if (len > trak->chunks_size) {
1831 trak->chunks = realloc_struct(trak->chunks, len, sizeof(mov_chunk_t));
1832 trak->chunks_size = trak->chunks ? len : 0;
1834 // read elements:
1835 for (i = 0; i < trak->chunks_size; i++) {
1836 #ifndef _LARGEFILE_SOURCE
1837 if (stream_read_dword(demuxer->stream) != 0)
1838 mp_msg(MSGT_DEMUX, MSGL_WARN, "Chunk %d has got 64bit address, but you've MPlayer compiled without LARGEFILE support!\n", i);
1839 trak->chunks[i].pos = stream_read_dword(demuxer->stream);
1840 #else
1841 trak->chunks[i].pos = stream_read_qword(demuxer->stream);
1842 #endif
1844 break;
1846 case MOV_FOURCC('s','t','s','s'): {
1847 int temp = stream_read_dword(demuxer->stream);
1848 int entries = stream_read_dword(demuxer->stream);
1849 int ver = (temp << 24);
1850 int flags = (temp << 16) | (temp<<8) | temp;
1851 int i;
1852 mp_msg(MSGT_DEMUX, MSGL_V,
1853 "MOV: %*sSyncing samples (keyframes) table! (%d entries) (ver:%d,flags:%d)\n", level, "",
1854 entries, ver, flags);
1855 trak->keyframes = calloc(entries, sizeof(unsigned int));
1856 trak->keyframes_size = trak->keyframes ? entries : 0;
1857 for (i = 0; i < trak->keyframes_size; i++)
1858 trak->keyframes[i] = stream_read_dword(demuxer->stream) - 1;
1859 break;
1861 case MOV_FOURCC('m','d','i','a'): {
1862 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sMedia stream!\n", level, "");
1863 lschunks(demuxer, level + 1, pos + len, trak);
1864 break;
1866 case MOV_FOURCC('m','i','n','f'): {
1867 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sMedia info!\n", level, "");
1868 lschunks(demuxer, level + 1 ,pos + len, trak);
1869 break;
1871 case MOV_FOURCC('s','t','b','l'): {
1872 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sSample info!\n", level, "");
1873 lschunks(demuxer, level + 1, pos + len, trak);
1874 break;
1876 case MOV_FOURCC('e','d','t','s'): {
1877 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sEdit atom!\n", level, "");
1878 lschunks(demuxer, level + 1, pos + len, trak);
1879 break;
1881 case MOV_FOURCC('e','l','s','t'): {
1882 int temp = stream_read_dword(demuxer->stream);
1883 int entries = stream_read_dword(demuxer->stream);
1884 int ver = (temp << 24);
1885 int flags = (temp << 16) | (temp << 8) | temp;
1886 int i;
1887 mp_msg(MSGT_DEMUX, MSGL_V,
1888 "MOV: %*sEdit list table (%d entries) (ver:%d,flags:%d)\n", level, "",
1889 entries, ver, flags);
1890 #if 1
1891 trak->editlist = calloc(entries, sizeof(mov_editlist_t));
1892 trak->editlist_size = trak->editlist ? entries : 0;
1893 for (i = 0; i < trak->editlist_size; i++) {
1894 int dur = stream_read_dword(demuxer->stream);
1895 int mt = stream_read_dword(demuxer->stream);
1896 int mr = stream_read_dword(demuxer->stream); // 16.16fp
1897 trak->editlist[i].dur = dur;
1898 trak->editlist[i].pos = mt;
1899 trak->editlist[i].speed = mr;
1900 mp_msg(MSGT_DEMUX, MSGL_V,
1901 "MOV: %*s entry#%d: duration: %d start time: %d speed: %3.1fx\n", level, "",
1902 i, dur, mt, (float)mr/65536.0f);
1904 #endif
1905 break;
1907 case MOV_FOURCC('c','o','d','e'): {
1908 /* XXX: Implement atom 'code' for FLASH support */
1909 break;
1911 default:
1912 id = be2me_32(id);
1913 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",(char *)&id,(int)len);
1914 break;
1915 }//switch(id)
1916 return 0;
1919 static demuxer_t* mov_read_header(demuxer_t* demuxer){
1920 struct MPOpts *opts = demuxer->opts;
1921 mov_priv_t* priv=demuxer->priv;
1922 int t_no;
1923 int best_a_id=-1, best_a_len=0;
1924 int best_v_id=-1, best_v_len=0;
1926 mp_msg(MSGT_DEMUX, MSGL_DBG3, "mov_read_header!\n");
1928 // Parse header:
1929 stream_reset(demuxer->stream);
1930 if(!stream_seek(demuxer->stream,priv->moov_start))
1932 mp_msg(MSGT_DEMUX,MSGL_ERR,"MOV: Cannot seek to the beginning of the Movie header (0x%"PRIx64")\n",
1933 (int64_t)priv->moov_start);
1934 return 0;
1936 lschunks(demuxer, 0, priv->moov_end, NULL);
1937 // just in case we have hit eof while parsing...
1938 demuxer->stream->eof = 0;
1939 // mp_msg(MSGT_DEMUX, MSGL_INFO, "--------------\n");
1941 // find the best (longest) streams:
1942 for(t_no=0;t_no<priv->track_db;t_no++){
1943 mov_track_t* trak=priv->tracks[t_no];
1944 int len=(trak->samplesize) ? trak->chunks_size : trak->samples_size;
1945 if(demuxer->a_streams[t_no]){ // need audio
1946 if(len>best_a_len){ best_a_len=len; best_a_id=t_no; }
1948 if(demuxer->v_streams[t_no]){ // need video
1949 if(len>best_v_len){ best_v_len=len; best_v_id=t_no; }
1952 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: longest streams: A: #%d (%d samples) V: #%d (%d samples)\n",
1953 best_a_id,best_a_len,best_v_id,best_v_len);
1954 if(demuxer->audio->id==-1 && best_a_id>=0) demuxer->audio->id=best_a_id;
1955 if(demuxer->video->id==-1 && best_v_id>=0) demuxer->video->id=best_v_id;
1957 // setup sh pointers:
1958 if(demuxer->audio->id>=0){
1959 sh_audio_t* sh=demuxer->a_streams[demuxer->audio->id];
1960 if(sh){
1961 demuxer->audio->sh=sh; sh->ds=demuxer->audio;
1962 } else {
1963 mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected audio stream (%d) does not exist\n",demuxer->audio->id);
1964 demuxer->audio->id=-2;
1967 if(demuxer->video->id>=0){
1968 sh_video_t* sh=demuxer->v_streams[demuxer->video->id];
1969 if(sh){
1970 demuxer->video->sh=sh; sh->ds=demuxer->video;
1971 } else {
1972 mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected video stream (%d) does not exist\n",demuxer->video->id);
1973 demuxer->video->id=-2;
1976 if(demuxer->sub->id>=0){
1977 sh_sub_t* sh=demuxer->s_streams[demuxer->sub->id];
1978 if(sh){
1979 demuxer->sub->sh=sh;
1980 } else {
1981 mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected subtitle stream (%d) does not exist\n",demuxer->sub->id);
1982 demuxer->sub->id=-2;
1986 if(demuxer->video->id<0 && demuxer->audio->id<0) {
1987 /* No AV streams found. Try to find an MPEG stream. */
1988 for(t_no=0;t_no<priv->track_db;t_no++){
1989 mov_track_t* trak=priv->tracks[t_no];
1990 if(trak->media_handler == MOV_FOURCC('M','P','E','G')) {
1991 stream_t *s;
1992 demuxer_t *od;
1994 demuxer->video->id = t_no;
1995 s = new_ds_stream(demuxer->video);
1996 od = demux_open(opts, s, DEMUXER_TYPE_MPEG_PS, -1, -1, -1, NULL);
1997 if(od) return new_demuxers_demuxer(od, od, od);
1998 demuxer->video->id = -2; //new linked demuxer couldn't be allocated
1999 break;
2004 #if 0
2005 if( mp_msg_test(MSGT_DEMUX,MSGL_DBG3) ){
2006 for(t_no=0;t_no<priv->track_db;t_no++){
2007 mov_track_t* trak=priv->tracks[t_no];
2008 if(trak->type==MOV_TRAK_GENERIC){
2009 int i;
2010 int fd;
2011 char name[20];
2012 mp_msg(MSGT_DEMUX, MSGL_INFO, "MOV: Track #%d: Extracting %d data chunks to files\n",t_no,trak->samples_size);
2013 for (i=0; i<trak->samples_size; i++)
2015 int len=trak->samples[i].size;
2016 char buf[len];
2017 stream_seek(demuxer->stream, trak->samples[i].pos);
2018 snprintf(name, 20, "t%02d-s%03d.%s", t_no,i,
2019 (trak->media_handler==MOV_FOURCC('f','l','s','h')) ?
2020 "swf":"dump");
2021 fd = open(name, O_CREAT|O_WRONLY);
2022 // { int j;
2023 // for(j=0;j<trak->stdata_len-3; j++)
2024 // printf("stdata[%d]=0x%X ize=0x%X\n",j,char2int(trak->stdata,j),MOV_FOURCC('z','l','i','b'));
2025 // }
2026 if( //trak->media_handler==MOV_FOURCC('s','p','r','t') &&
2027 trak->stdata_len>=16 &&
2028 char2int(trak->stdata,12)==MOV_FOURCC('z','l','i','b')
2030 int newlen=stream_read_dword(demuxer->stream);
2031 #if CONFIG_ZLIB
2032 // unzip:
2033 z_stream zstrm;
2034 int zret;
2035 char buf2[newlen];
2037 len-=4;
2038 stream_read(demuxer->stream, buf, len);
2040 zstrm.zalloc = (alloc_func)0;
2041 zstrm.zfree = (free_func)0;
2042 zstrm.opaque = (voidpf)0;
2043 zstrm.next_in = buf;
2044 zstrm.avail_in = len;
2045 zstrm.next_out = buf2;
2046 zstrm.avail_out = newlen;
2048 zret = inflateInit(&zstrm);
2049 zret = inflate(&zstrm, Z_NO_FLUSH);
2050 if(newlen != zstrm.total_out)
2051 mp_msg(MSGT_DEMUX, MSGL_WARN, "Warning! unzipped frame size differs hdr: %d zlib: %ld\n",newlen,zstrm.total_out);
2053 write(fd, buf2, newlen);
2054 } else {
2055 #else
2056 len-=4;
2057 mp_msg(MSGT_DEMUX, MSGL_INFO, "******* ZLIB COMPRESSED SAMPLE!!!!! (%d->%d bytes) *******\n",len,newlen);
2060 #endif
2061 stream_read(demuxer->stream, buf, len);
2062 write(fd, buf, len);
2064 close(fd);
2069 demuxer->stream->eof = 0;
2070 #endif
2072 return demuxer;
2076 * \brief return the mov track that belongs to a demuxer stream
2077 * \param ds the demuxer stream, may be NULL
2078 * \return the mov track info structure belonging to the stream,
2079 * NULL if not found
2081 static mov_track_t *stream_track(mov_priv_t *priv, demux_stream_t *ds) {
2082 if (ds && (ds->id >= 0) && (ds->id < priv->track_db))
2083 return priv->tracks[ds->id];
2084 return NULL;
2087 // return value:
2088 // 0 = EOF or no stream found
2089 // 1 = successfully read a packet
2090 static int demux_mov_fill_buffer(demuxer_t *demuxer,demux_stream_t* ds){
2091 mov_priv_t* priv=demuxer->priv;
2092 mov_track_t* trak=NULL;
2093 float pts;
2094 int x;
2095 off_t pos;
2097 if (ds->eof) return 0;
2098 trak = stream_track(priv, ds);
2099 if (!trak) return 0;
2101 if(trak->samplesize){
2102 // read chunk:
2103 if(trak->pos>=trak->chunks_size) return 0; // EOF
2104 stream_seek(demuxer->stream,trak->chunks[trak->pos].pos);
2105 pts=(float)(trak->chunks[trak->pos].sample*trak->duration)/(float)trak->timescale;
2106 if(trak->samplesize!=1)
2108 mp_msg(MSGT_DEMUX, MSGL_DBG2, "WARNING! Samplesize(%d) != 1\n",
2109 trak->samplesize);
2110 if((trak->fourcc != MOV_FOURCC('t','w','o','s')) && (trak->fourcc != MOV_FOURCC('s','o','w','t')))
2111 x=trak->chunks[trak->pos].size*trak->samplesize;
2112 else
2113 x=trak->chunks[trak->pos].size;
2115 else
2116 x=trak->chunks[trak->pos].size;
2117 // printf("X = %d\n", x);
2118 /* the following stuff is audio related */
2119 if (trak->type == MOV_TRAK_AUDIO){
2120 if(trak->stdata_len>=44 && trak->stdata[9]>=1 && char2int(trak->stdata,28)>0){
2121 // stsd version 1 - we have audio compression ratio info:
2122 x/=char2int(trak->stdata,28); // samples/packet
2123 // x*=char2int(trak->stdata,32); // bytes/packet
2124 x*=char2int(trak->stdata,36); // bytes/frame
2125 } else {
2126 if(ds->ss_div && ds->ss_mul){
2127 // workaround for buggy files like 7up-high-traffic-areas.mov,
2128 // with missing stsd v1 header containing compression rate
2129 x/=ds->ss_div; x*=ds->ss_mul; // compression ratio fix ! HACK !
2130 } else {
2131 x*=trak->nchannels;
2132 x*=trak->samplebytes;
2135 mp_msg(MSGT_DEMUX, MSGL_DBG2, "Audio sample %d bytes pts %5.3f\n",trak->chunks[trak->pos].size*trak->samplesize,pts);
2136 } /* MOV_TRAK_AUDIO */
2137 pos=trak->chunks[trak->pos].pos;
2138 } else {
2139 int frame=trak->pos;
2140 // editlist support:
2141 if(trak->type == MOV_TRAK_VIDEO && trak->editlist_size>=1){
2142 // find the right editlist entry:
2143 if(frame<trak->editlist[trak->editlist_pos].start_frame)
2144 trak->editlist_pos=0;
2145 while(trak->editlist_pos<trak->editlist_size-1 &&
2146 frame>=trak->editlist[trak->editlist_pos+1].start_frame)
2147 ++trak->editlist_pos;
2148 if(frame>=trak->editlist[trak->editlist_pos].start_frame+
2149 trak->editlist[trak->editlist_pos].frames) return 0; // EOF
2150 // calc real frame index:
2151 frame-=trak->editlist[trak->editlist_pos].start_frame;
2152 frame+=trak->editlist[trak->editlist_pos].start_sample;
2153 // calc pts:
2154 pts=(float)(trak->samples[frame].pts+
2155 trak->editlist[trak->editlist_pos].pts_offset)/(float)trak->timescale;
2156 } else {
2157 if(frame>=trak->samples_size) return 0; // EOF
2158 pts=(float)trak->samples[frame].pts/(float)trak->timescale;
2160 // read sample:
2161 stream_seek(demuxer->stream,trak->samples[frame].pos);
2162 x=trak->samples[frame].size;
2163 pos=trak->samples[frame].pos;
2165 if(trak->pos==0 && trak->stream_header_len>0){
2166 // we have to append the stream header...
2167 demux_packet_t* dp=new_demux_packet(x+trak->stream_header_len);
2168 memcpy(dp->buffer,trak->stream_header,trak->stream_header_len);
2169 stream_read(demuxer->stream,dp->buffer+trak->stream_header_len,x);
2170 free(trak->stream_header);
2171 trak->stream_header = NULL;
2172 trak->stream_header_len = 0;
2173 dp->pts=pts;
2174 dp->flags=0;
2175 dp->pos=pos; // FIXME?
2176 ds_add_packet(ds,dp);
2177 } else
2178 ds_read_packet(ds,demuxer->stream,x,pts,pos,0);
2180 ++trak->pos;
2182 trak = NULL;
2183 if (demuxer->sub->id >= 0 && demuxer->sub->id < priv->track_db)
2184 trak = priv->tracks[demuxer->sub->id];
2185 if (trak) {
2186 int samplenr = 0;
2187 while (samplenr < trak->samples_size) {
2188 double subpts = (double)trak->samples[samplenr].pts / (double)trak->timescale;
2189 if (subpts >= pts) break;
2190 samplenr++;
2192 samplenr--;
2193 if (samplenr < 0)
2194 vo_sub = NULL;
2195 else if (samplenr != priv->current_sub) {
2196 av_unused sh_sub_t *sh = demuxer->sub->sh;
2197 off_t pos = trak->samples[samplenr].pos;
2198 int len = trak->samples[samplenr].size;
2199 double subpts = (double)trak->samples[samplenr].pts / (double)trak->timescale;
2200 stream_seek(demuxer->stream, pos);
2201 ds_read_packet(demuxer->sub, demuxer->stream, len, subpts, pos, 0);
2202 priv->current_sub = samplenr;
2206 return 1;
2210 static float mov_seek_track(mov_track_t* trak,float pts,int flags){
2212 // printf("MOV track seek called %5.3f \n",pts);
2213 if(flags&SEEK_FACTOR) pts*=trak->length; else pts*=(float)trak->timescale;
2215 if(trak->samplesize){
2216 int sample=pts/trak->duration;
2217 // printf("MOV track seek - chunk: %d (pts: %5.3f dur=%d) \n",sample,pts,trak->duration);
2218 if(!(flags&SEEK_ABSOLUTE)) sample+=trak->chunks[trak->pos].sample; // relative
2219 trak->pos=0;
2220 while(trak->pos<trak->chunks_size && trak->chunks[trak->pos].sample<sample) ++trak->pos;
2221 if (trak->pos == trak->chunks_size) return -1;
2222 pts=(float)(trak->chunks[trak->pos].sample*trak->duration)/(float)trak->timescale;
2223 } else {
2224 unsigned int ipts;
2225 if(!(flags&SEEK_ABSOLUTE)) pts+=trak->samples[trak->pos].pts;
2226 if(pts<0) pts=0;
2227 ipts=pts;
2228 //printf("MOV track seek - sample: %d \n",ipts);
2229 for(trak->pos=0;trak->pos<trak->samples_size;++trak->pos){
2230 if(trak->samples[trak->pos].pts>=ipts) break; // found it!
2232 if (trak->pos == trak->samples_size) return -1;
2233 if(trak->keyframes_size){
2234 // find nearest keyframe
2235 int i;
2236 for(i=0;i<trak->keyframes_size;i++){
2237 if(trak->keyframes[i]>=trak->pos) break;
2239 if (i == trak->keyframes_size) return -1;
2240 if(i>0 && (trak->keyframes[i]-trak->pos) > (trak->pos-trak->keyframes[i-1]))
2241 --i;
2242 trak->pos=trak->keyframes[i];
2243 // printf("nearest keyframe: %d \n",trak->pos);
2245 pts=(float)trak->samples[trak->pos].pts/(float)trak->timescale;
2248 // printf("MOV track seek done: %5.3f \n",pts);
2250 return pts;
2253 static void demux_seek_mov(demuxer_t *demuxer,float pts,float audio_delay,int flags){
2254 mov_priv_t* priv=demuxer->priv;
2255 demux_stream_t* ds;
2256 mov_track_t* trak;
2258 // printf("MOV seek called %5.3f flag=%d \n",pts,flags);
2260 ds=demuxer->video;
2261 trak = stream_track(priv, ds);
2262 if (trak) {
2263 //if(flags&2) pts*=(float)trak->length/(float)trak->timescale;
2264 //if(!(flags&1)) pts+=ds->pts;
2265 ds->pts=mov_seek_track(trak,pts,flags);
2266 if (ds->pts < 0) ds->eof = 1;
2267 else pts = ds->pts;
2268 flags=1; // absolute seconds
2271 ds=demuxer->audio;
2272 trak = stream_track(priv, ds);
2273 if (trak) {
2274 //if(flags&2) pts*=(float)trak->length/(float)trak->timescale;
2275 //if(!(flags&1)) pts+=ds->pts;
2276 ds->pts=mov_seek_track(trak,pts,flags);
2277 if (ds->pts < 0) ds->eof = 1;
2282 static int demux_mov_control(demuxer_t *demuxer, int cmd, void *arg){
2283 mov_track_t* track;
2285 // try the video track
2286 track = stream_track(demuxer->priv, demuxer->video);
2287 if (!track || !track->length)
2288 // otherwise try to get the info from the audio track
2289 track = stream_track(demuxer->priv, demuxer->audio);
2291 if (!track || !track->length)
2292 return DEMUXER_CTRL_DONTKNOW;
2294 switch(cmd) {
2295 case DEMUXER_CTRL_GET_TIME_LENGTH:
2296 if (!track->timescale)
2297 return DEMUXER_CTRL_DONTKNOW;
2298 *((double *)arg) = (double)track->length / track->timescale;
2299 return DEMUXER_CTRL_OK;
2301 case DEMUXER_CTRL_GET_PERCENT_POS:
2303 off_t pos = track->pos;
2304 if (track->durmap_size >= 1)
2305 pos *= track->durmap[0].dur;
2306 *((int *)arg) = (int)(100 * pos / track->length);
2307 return DEMUXER_CTRL_OK;
2310 return DEMUXER_CTRL_NOTIMPL;
2314 const demuxer_desc_t demuxer_desc_mov = {
2315 "Quicktime/MP4 demuxer",
2316 "mov",
2317 "Quicktime/MOV",
2318 "Arpi, Al3x, Atmos, others",
2319 "Handles Quicktime, MP4, 3GP",
2320 DEMUXER_TYPE_MOV,
2321 0, // slow autodetect
2322 mov_check_file,
2323 demux_mov_fill_buffer,
2324 mov_read_header,
2325 demux_close_mov,
2326 demux_seek_mov,
2327 demux_mov_control