typo fix
[mplayer/greg.git] / libmpdemux / demux_mov.c
blob73348ea0841a599568e2bd6e76e025186bb52e9a
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 MACOSX
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"
45 #include "libvo/sub.h"
47 #include "qtpalette.h"
48 #include "parse_mp4.h" // .MP4 specific stuff
50 #ifdef HAVE_ZLIB
51 #include <zlib.h>
52 #endif
54 #ifndef _FCNTL_H
55 #include <fcntl.h>
56 #endif
58 #define BE_16(x) (((unsigned char *)(x))[0] << 8 | \
59 ((unsigned char *)(x))[1])
60 #define BE_32(x) (((unsigned char *)(x))[0] << 24 | \
61 ((unsigned char *)(x))[1] << 16 | \
62 ((unsigned char *)(x))[2] << 8 | \
63 ((unsigned char *)(x))[3])
65 #define char2short(x,y) BE_16(&(x)[(y)])
66 #define char2int(x,y) BE_32(&(x)[(y)])
68 typedef struct {
69 unsigned int pts; // duration
70 unsigned int size;
71 off_t pos;
72 } mov_sample_t;
74 typedef struct {
75 unsigned int sample; // number of the first sample in the chunk
76 unsigned int size; // number of samples in the chunk
77 int desc; // for multiple codecs mode - not used
78 off_t pos;
79 } mov_chunk_t;
81 typedef struct {
82 unsigned int first;
83 unsigned int spc;
84 unsigned int sdid;
85 } mov_chunkmap_t;
87 typedef struct {
88 unsigned int num;
89 unsigned int dur;
90 } mov_durmap_t;
92 typedef struct {
93 unsigned int dur;
94 unsigned int pos;
95 int speed;
97 int frames;
98 int start_sample;
99 int start_frame;
100 int pts_offset;
101 } mov_editlist_t;
103 #define MOV_TRAK_UNKNOWN 0
104 #define MOV_TRAK_VIDEO 1
105 #define MOV_TRAK_AUDIO 2
106 #define MOV_TRAK_FLASH 3
107 #define MOV_TRAK_GENERIC 4
108 #define MOV_TRAK_CODE 5
110 typedef struct {
111 int id;
112 int type;
113 off_t pos;
115 unsigned int media_handler;
116 unsigned int data_handler;
118 int timescale;
119 unsigned int length;
120 int samplesize; // 0 = variable
121 int duration; // 0 = variable
122 int width,height; // for video
123 unsigned int fourcc;
124 unsigned int nchannels;
125 unsigned int samplebytes;
127 int tkdata_len; // track data
128 unsigned char* tkdata;
129 int stdata_len; // stream data
130 unsigned char* stdata;
132 unsigned char* stream_header;
133 int stream_header_len; // if >0, this header should be sent before the 1st frame
135 int samples_size;
136 mov_sample_t* samples;
137 int chunks_size;
138 mov_chunk_t* chunks;
139 int chunkmap_size;
140 mov_chunkmap_t* chunkmap;
141 int durmap_size;
142 mov_durmap_t* durmap;
143 int keyframes_size;
144 unsigned int* keyframes;
145 int editlist_size;
146 mov_editlist_t* editlist;
147 int editlist_pos;
149 void* desc; // image/sound/etc description (pointer to ImageDescription etc)
150 } mov_track_t;
152 void mov_build_index(mov_track_t* trak,int timescale){
153 int i,j,s;
154 int last=trak->chunks_size;
155 unsigned int pts=0;
157 #if 0
158 if (trak->chunks_size <= 0)
160 mp_msg(MSGT_DEMUX, MSGL_WARN, "No chunk offset table, trying to build one!\n");
162 trak->chunks_size = trak->samples_size; /* XXX: FIXME ! */
163 // audit: this code will be vulnerable if it is reenabled (currently #if 0)
164 trak->chunks = realloc(trak->chunks, sizeof(mov_chunk_t)*trak->chunks_size);
166 for (i=0; i < trak->chunks_size; i++)
167 trak->chunks[i].pos = -1;
169 #endif
171 mp_msg(MSGT_DEMUX, MSGL_V, "MOV track #%d: %d chunks, %d samples\n",trak->id,trak->chunks_size,trak->samples_size);
172 mp_msg(MSGT_DEMUX, MSGL_V, "pts=%d scale=%d time=%5.3f\n",trak->length,trak->timescale,(float)trak->length/(float)trak->timescale);
174 // process chunkmap:
175 i=trak->chunkmap_size;
176 while(i>0){
177 --i;
178 for(j=trak->chunkmap[i].first;j<last;j++){
179 trak->chunks[j].desc=trak->chunkmap[i].sdid;
180 trak->chunks[j].size=trak->chunkmap[i].spc;
182 last=trak->chunkmap[i].first;
185 #if 0
186 for (i=0; i < trak->chunks_size; i++)
188 /* fixup position */
189 if (trak->chunks[i].pos == -1)
190 if (i > 0)
191 trak->chunks[i].pos = trak->chunks[i-1].pos + trak->chunks[i-1].size;
192 else
193 trak->chunks[i].pos = 0; /* FIXME: set initial pos */
194 #endif
196 // calc pts of chunks:
197 s=0;
198 for(j=0;j<trak->chunks_size;j++){
199 trak->chunks[j].sample=s;
200 s+=trak->chunks[j].size;
202 i = 0;
203 for (j = 0; j < trak->durmap_size; j++)
204 i += trak->durmap[j].num;
205 if (i != s) {
206 mp_msg(MSGT_DEMUX, MSGL_WARN,
207 "MOV: durmap and chunkmap sample count differ (%i vs %i)\n", i, s);
208 if (i > s) s = i;
211 // workaround for fixed-size video frames (dv and uncompressed)
212 if(!trak->samples_size && trak->type!=MOV_TRAK_AUDIO){
213 trak->samples_size=s;
214 trak->samples=calloc(s, sizeof(mov_sample_t));
215 for(i=0;i<s;i++)
216 trak->samples[i].size=trak->samplesize;
217 trak->samplesize=0;
220 if(!trak->samples_size){
221 // constant sampesize
222 if(trak->durmap_size==1 || (trak->durmap_size==2 && trak->durmap[1].num==1)){
223 trak->duration=trak->durmap[0].dur;
224 } else mp_msg(MSGT_DEMUX, MSGL_ERR, "*** constant samplesize & variable duration not yet supported! ***\nContact the author if you have such sample file!\n");
225 return;
228 if (trak->samples_size < s) {
229 mp_msg(MSGT_DEMUX, MSGL_WARN,
230 "MOV: durmap or chunkmap bigger than sample count (%i vs %i)\n",
231 s, trak->samples_size);
232 trak->samples_size = s;
233 trak->samples = realloc_struct(trak->samples, s, sizeof(mov_sample_t));
236 // calc pts:
237 s=0;
238 for(j=0;j<trak->durmap_size;j++){
239 for(i=0;i<trak->durmap[j].num;i++){
240 trak->samples[s].pts=pts;
241 ++s;
242 pts+=trak->durmap[j].dur;
246 // calc sample offsets
247 s=0;
248 for(j=0;j<trak->chunks_size;j++){
249 off_t pos=trak->chunks[j].pos;
250 for(i=0;i<trak->chunks[j].size;i++){
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 int tmp=stream_read_dword(demuxer->stream);
439 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 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 int i;
568 uint8_t *pal = trak->stdata;
569 sh->type = 'v';
570 if (trak->stdata_len < 106)
571 return;
572 sh->has_palette = 1;
573 pal += 42;
574 for (i = 0; i < 16; i++) {
575 sh->palette[i] = BE_32(pal);
576 pal += 4;
580 static int lschunks_intrak(demuxer_t* demuxer, int level, unsigned int id,
581 off_t pos, off_t len, mov_track_t* trak);
583 static int gen_sh_audio(sh_audio_t* sh, mov_track_t* trak, int timescale) {
584 #if 0
585 struct {
586 int16_t version; // 0 or 1 (version 1 is qt3.0+)
587 int16_t revision; // 0
588 int32_t vendor_id; // 0
589 int16_t channels; // 1 or 2 (Mono/Stereo)
590 int16_t samplesize; // 8 or 16 (8Bit/16Bit)
591 int16_t compression_id; // if version 0 then 0
592 // if version 1 and vbr then -2 else 0
593 int16_t packet_size; // 0
594 uint16_t sample_rate; // samplerate (Hz)
595 // qt3.0+ (version == 1)
596 uint32_t samples_per_packet; // 0 or num uncompressed samples in a packet
597 // if 0 below three values are also 0
598 uint32_t bytes_per_packet; // 0 or num compressed bytes for one channel
599 uint32_t bytes_per_frame; // 0 or num compressed bytes for all channels
600 // (channels * bytes_per_packet)
601 uint32_t bytes_per_sample; // 0 or size of uncompressed sample
602 // if samples_per_packet and bytes_per_packet are constant (CBR)
603 // then bytes_per_frame and bytes_per_sample must be 0 (else is VBR)
604 // ---
605 // optional additional atom-based fields
606 // ([int32_t size,int32_t type,some data ],repeat)
607 } my_stdata;
608 #endif
609 int version, adjust;
610 int is_vorbis = 0;
611 sh->format=trak->fourcc;
613 // crude audio delay from editlist0 hack ::atm
614 if(trak->editlist_size>=1) {
615 if(trak->editlist[0].pos == -1) {
616 sh->stream_delay = (float)trak->editlist[0].dur/(float)timescale;
617 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Initial Audio-Delay: %.3f sec\n", sh->stream_delay);
622 switch( sh->format ) {
623 case 0x726D6173: /* samr */
624 /* amr narrowband */
625 trak->samplebytes=sh->samplesize=1;
626 trak->nchannels=sh->channels=1;
627 sh->samplerate=8000;
628 break;
630 case 0x62776173: /* sawb */
631 /* amr wideband */
632 trak->samplebytes=sh->samplesize=1;
633 trak->nchannels=sh->channels=1;
634 sh->samplerate=16000;
635 break;
637 default:
639 // assumptions for below table: short is 16bit, int is 32bit, intfp is 16bit
640 // XXX: 32bit fixed point numbers (intfp) are only 2 Byte!
641 // short values are usually one byte leftpadded by zero
642 // int values are usually two byte leftpadded by zero
643 // stdata[]:
644 // 8 short version
645 // 10 short revision
646 // 12 int vendor_id
647 // 16 short channels
648 // 18 short samplesize
649 // 20 short compression_id
650 // 22 short packet_size (==0)
651 // 24 intfp sample_rate
652 // (26 short) unknown (==0)
653 // ---- qt3.0+ (version>=1)
654 // 28 int samples_per_packet
655 // 32 int bytes_per_packet
656 // 36 int bytes_per_frame
657 // 40 int bytes_per_sample
658 // there may be additional atoms following at 28 (version 0)
659 // or 44 (version 1), eg. esds atom of .MP4 files
660 // esds atom:
661 // 28 int atom size (bytes of int size, int type and data)
662 // 32 char[4] atom type (fourc charater code -> esds)
663 // 36 char[] atom data (len=size-8)
665 // TODO: fix parsing for files using version 2.
666 version=char2short(trak->stdata,8);
667 if (version > 1)
668 mp_msg(MSGT_DEMUX, MSGL_WARN, "MOV: version %d sound atom may not parse correctly!\n", version);
669 trak->samplebytes=sh->samplesize=char2short(trak->stdata,18)/8;
671 /* I can't find documentation, but so far this is the case. -Corey */
672 switch (char2short(trak->stdata,16)) {
673 case 1:
674 trak->nchannels = 1; break;
675 case 2:
676 trak->nchannels = 2; break;
677 case 3:
678 trak->nchannels = 6; break;
679 default:
680 mp_msg(MSGT_DEMUX, MSGL_WARN,
681 "MOV: unable to determine audio channels, assuming 2 (got %d)\n",
682 char2short(trak->stdata,16));
683 trak->nchannels = 2;
685 sh->channels = trak->nchannels;
687 /*printf("MOV: timescale: %d samplerate: %d durmap: %d (%d) -> %d (%d)\n",
688 trak->timescale, char2short(trak->stdata,24), trak->durmap[0].dur,
689 trak->durmap[0].num, trak->timescale/trak->durmap[0].dur,
690 char2short(trak->stdata,24)/trak->durmap[0].dur);*/
691 sh->samplerate=char2short(trak->stdata,24);
692 if((sh->samplerate < 7000) && trak->durmap && trak->durmap[0].dur > 1) {
693 switch(char2short(trak->stdata,24)/trak->durmap[0].dur) {
694 // TODO: add more cases.
695 case 31:
696 sh->samplerate = 32000; break;
697 case 43:
698 sh->samplerate = 44100; break;
699 case 47:
700 sh->samplerate = 48000; break;
701 default:
702 mp_msg(MSGT_DEMUX, MSGL_WARN,
703 "MOV: unable to determine audio samplerate, "
704 "assuming 44.1kHz (got %d)\n",
705 char2short(trak->stdata,24)/trak->durmap[0].dur);
706 sh->samplerate = 44100;
710 mp_msg(MSGT_DEMUX, MSGL_V, "Audio bits: %d chans: %d rate: %d\n",
711 sh->samplesize*8,sh->channels,sh->samplerate);
713 if(trak->stdata_len >= 44 && trak->stdata[9]>=1){
714 mp_msg(MSGT_DEMUX,MSGL_V,"Audio header: samp/pack=%d bytes/pack=%d bytes/frame=%d bytes/samp=%d \n",
715 char2int(trak->stdata,28),
716 char2int(trak->stdata,32),
717 char2int(trak->stdata,36),
718 char2int(trak->stdata,40));
719 if(trak->stdata_len>=44+8){
720 int len=char2int(trak->stdata,44);
721 int fcc=char2int(trak->stdata,48);
722 // we have extra audio headers!!!
723 mp_msg(MSGT_DEMUX,MSGL_V,"Audio extra header: len=%d fcc=0x%X\n",len,fcc);
724 if((len >= 4) &&
725 (char2int(trak->stdata,52) >= 12) &&
726 (char2int(trak->stdata,52+4) == MOV_FOURCC('f','r','m','a'))) {
727 switch(char2int(trak->stdata,52+8)) {
728 case MOV_FOURCC('a','l','a','c'):
729 if (len >= 36 + char2int(trak->stdata,52)) {
730 sh->codecdata_len = char2int(trak->stdata,52+char2int(trak->stdata,52));
731 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found alac atom (%d)!\n", sh->codecdata_len);
732 sh->codecdata = malloc(sh->codecdata_len);
733 memcpy(sh->codecdata, &trak->stdata[52+char2int(trak->stdata,52)], sh->codecdata_len);
735 break;
736 case MOV_FOURCC('i','n','2','4'):
737 case MOV_FOURCC('i','n','3','2'):
738 case MOV_FOURCC('f','l','3','2'):
739 case MOV_FOURCC('f','l','6','4'):
740 if ((len >= 22) &&
741 (char2int(trak->stdata,52+16)==MOV_FOURCC('e','n','d','a')) &&
742 (char2short(trak->stdata,52+20))) {
743 sh->format=char2int(trak->stdata,52+8);
744 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found little endian PCM data, reversed fourcc:%04x\n", sh->format);
746 break;
747 default:
748 if (len > 8 && len + 44 <= trak->stdata_len) {
749 sh->codecdata_len = len-8;
750 sh->codecdata = malloc(sh->codecdata_len);
751 memcpy(sh->codecdata, trak->stdata+44+8, sh->codecdata_len);
754 } else {
755 if (len > 8 && len + 44 <= trak->stdata_len) {
756 sh->codecdata_len = len-8;
757 sh->codecdata = malloc(sh->codecdata_len);
758 memcpy(sh->codecdata, trak->stdata+44+8, sh->codecdata_len);
764 switch (version) {
765 case 0:
766 adjust = 0; break;
767 case 1:
768 adjust = 48; break;
769 case 2:
770 adjust = 68; break;
771 default:
772 mp_msg(MSGT_DEMUX, MSGL_WARN, "MOV: unknown sound atom version (%d); may not work!\n", version);
773 adjust = 68;
775 if (trak->stdata_len >= 36 + adjust) {
776 int atom_len = char2int(trak->stdata,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 depth = trak->stdata[75] | (trak->stdata[74] << 8);
938 if (trak->fourcc == mmioFOURCC('r', 'a', 'w', ' ')) {
939 sh->format = IMGFMT_RGB | depth;
940 } else
941 sh->format=trak->fourcc;
943 // crude video delay from editlist0 hack ::atm
944 if(trak->editlist_size>=1) {
945 if(trak->editlist[0].pos == -1) {
946 sh->stream_delay = (float)trak->editlist[0].dur/(float)timescale;
947 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Initial Video-Delay: %.3f sec\n", sh->stream_delay);
952 if (trak->stdata_len < 78) {
953 mp_msg(MSGT_DEMUXER, MSGL_WARN,
954 "MOV: Invalid (%d bytes instead of >= 78) video trak desc\n",
955 trak->stdata_len);
956 return 0;
958 // stdata[]:
959 // 8 short version
960 // 10 short revision
961 // 12 int vendor_id
962 // 16 int temporal_quality
963 // 20 int spatial_quality
964 // 24 short width
965 // 26 short height
966 // 28 int h_dpi
967 // 32 int v_dpi
968 // 36 int 0
969 // 40 short frames_per_sample
970 // 42 char[4] compressor_name
971 // 74 short depth
972 // 76 short color_table_id
973 // additional atoms may follow,
974 // eg esds atom from .MP4 files
975 // 78 int atom size
976 // 82 char[4] atom type
977 // 86 ... atom data
979 { ImageDescription* id=malloc(8+trak->stdata_len); // safe
980 trak->desc=id;
981 id->idSize=8+trak->stdata_len;
982 // id->cType=bswap_32(trak->fourcc);
983 id->cType=le2me_32(trak->fourcc);
984 id->version=char2short(trak->stdata,8);
985 id->revisionLevel=char2short(trak->stdata,10);
986 id->vendor=char2int(trak->stdata,12);
987 id->temporalQuality=char2int(trak->stdata,16);
988 id->spatialQuality=char2int(trak->stdata,20);
989 id->width=char2short(trak->stdata,24);
990 id->height=char2short(trak->stdata,26);
991 id->hRes=char2int(trak->stdata,28);
992 id->vRes=char2int(trak->stdata,32);
993 id->dataSize=char2int(trak->stdata,36);
994 id->frameCount=char2short(trak->stdata,40);
995 memcpy(&id->name,trak->stdata+42,32);
996 id->depth=char2short(trak->stdata,74);
997 id->clutID=char2short(trak->stdata,76);
998 if(trak->stdata_len>78) memcpy(((char*)&id->clutID)+2,trak->stdata+78,trak->stdata_len-78);
999 sh->ImageDesc=id;
1000 #if 0
1001 { FILE *f=fopen("ImageDescription","wb");
1002 fwrite(id,id->idSize,1,f);
1003 fclose(f);
1005 #endif
1008 if(trak->stdata_len >= 86) { // extra atoms found
1009 int pos=78;
1010 int atom_len;
1011 while(pos+8<=trak->stdata_len &&
1012 (pos+(atom_len=char2int(trak->stdata,pos)))<=trak->stdata_len){
1013 switch(char2int(trak->stdata,pos+4)) { // switch atom type
1014 case MOV_FOURCC('g','a','m','a'):
1015 // intfp with gamma value at which movie was captured
1016 // can be used to gamma correct movie display
1017 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unsupported Gamma-Correction movie atom (%d)!\n",
1018 atom_len);
1019 break;
1020 case MOV_FOURCC('f','i','e','l'):
1021 // 2 char-values (8bit int) that specify field handling
1022 // see the Apple's QuickTime Fileformat PDF for more info
1023 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unsupported Field-Handling movie atom (%d)!\n",
1024 atom_len);
1025 break;
1026 case MOV_FOURCC('m','j','q','t'):
1027 // Motion-JPEG default quantization table
1028 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unsupported MJPEG-Quantization movie atom (%d)!\n",
1029 atom_len);
1030 break;
1031 case MOV_FOURCC('m','j','h','t'):
1032 // Motion-JPEG default huffman table
1033 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unsupported MJPEG-Huffman movie atom (%d)!\n",
1034 atom_len);
1035 break;
1036 case MOV_FOURCC('e','s','d','s'):
1037 // MPEG4 Elementary Stream Descriptor header
1038 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found MPEG4 movie Elementary Stream Descriptor atom (%d)!\n", atom_len);
1039 // add code here to save esds header of length atom_len-8
1040 // beginning at stdata[86] to some variable to pass it
1041 // on to the decoder ::atmos
1042 if(atom_len > 8) {
1043 esds_t esds;
1044 if(!mp4_parse_esds(trak->stdata+pos+8, atom_len-8, &esds)) {
1046 if(esds.objectTypeId==MP4OTI_MPEG2VisualSimple || esds.objectTypeId==MP4OTI_MPEG2VisualMain ||
1047 esds.objectTypeId==MP4OTI_MPEG2VisualSNR || esds.objectTypeId==MP4OTI_MPEG2VisualSpatial ||
1048 esds.objectTypeId==MP4OTI_MPEG2VisualHigh || esds.objectTypeId==MP4OTI_MPEG2Visual422)
1049 sh->format=mmioFOURCC('m', 'p', 'g', '2');
1050 else if(esds.objectTypeId==MP4OTI_MPEG1Visual)
1051 sh->format=mmioFOURCC('m', 'p', 'g', '1');
1053 // dump away the codec specific configuration for the AAC decoder
1054 trak->stream_header_len = esds.decoderConfigLen;
1055 trak->stream_header = malloc(trak->stream_header_len);
1056 memcpy(trak->stream_header, esds.decoderConfig, trak->stream_header_len);
1058 mp4_free_esds(&esds); // freeup esds mem
1060 break;
1061 case MOV_FOURCC('a','v','c','C'):
1062 // AVC decoder configuration record
1063 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: AVC decoder configuration record atom (%d)!\n", atom_len);
1064 if(atom_len > 8) {
1065 int i, poffs, cnt;
1066 // Parse some parts of avcC, just for fun :)
1067 // real parsing is done by avc1 decoder
1068 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC version: %d\n", *(trak->stdata+pos+8));
1069 if (*(trak->stdata+pos+8) != 1)
1070 mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: unknown avcC version (%d). Expexct problems.\n", *(trak->stdata+pos+9));
1071 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC profile: %d\n", *(trak->stdata+pos+9));
1072 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC profile compatibility: %d\n", *(trak->stdata+pos+10));
1073 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC level: %d\n", *(trak->stdata+pos+11));
1074 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC nal length size: %d\n", ((*(trak->stdata+pos+12))&0x03)+1);
1075 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC number of sequence param sets: %d\n", cnt = (*(trak->stdata+pos+13) & 0x1f));
1076 poffs = pos + 14;
1077 for (i = 0; i < cnt; i++) {
1078 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC sps %d have length %d\n", i, BE_16(trak->stdata+poffs));
1079 poffs += BE_16(trak->stdata+poffs) + 2;
1081 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC number of picture param sets: %d\n", *(trak->stdata+poffs));
1082 poffs++;
1083 for (i = 0; i < cnt; i++) {
1084 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: avcC pps %d have length %d\n", i, BE_16(trak->stdata+poffs));
1085 poffs += BE_16(trak->stdata+poffs) + 2;
1087 // Copy avcC for the AVC decoder
1088 // This data will be put in extradata below, where BITMAPINFOHEADER is created
1089 trak->stream_header_len = atom_len-8;
1090 trak->stream_header = malloc(trak->stream_header_len);
1091 memcpy(trak->stream_header, trak->stdata+pos+8, trak->stream_header_len);
1093 break;
1094 case MOV_FOURCC('d','2','6','3'):
1095 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);
1096 if (atom_len>10)
1097 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]);
1098 break;
1099 case 0:
1100 break;
1101 default:
1102 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: Found unknown movie atom %c%c%c%c (%d)!\n",
1103 trak->stdata[pos+4],trak->stdata[pos+5],trak->stdata[pos+6],trak->stdata[pos+7],
1104 atom_len);
1106 if(atom_len<8) break;
1107 pos+=atom_len;
1108 // printf("pos=%d max=%d\n",pos,trak->stdata_len);
1111 sh->fps=trak->timescale/
1112 ((trak->durmap_size>=1)?(float)trak->durmap[0].dur:1);
1113 sh->frametime=1.0f/sh->fps;
1115 sh->disp_w=trak->stdata[25]|(trak->stdata[24]<<8);
1116 sh->disp_h=trak->stdata[27]|(trak->stdata[26]<<8);
1117 // if image size is zero, fallback to display size
1118 if(!sh->disp_w && !sh->disp_h) {
1119 sh->disp_w=trak->tkdata[77]|(trak->tkdata[76]<<8);
1120 sh->disp_h=trak->tkdata[81]|(trak->tkdata[80]<<8);
1121 } else if(sh->disp_w!=(trak->tkdata[77]|(trak->tkdata[76]<<8))){
1122 // codec and display width differ... use display one for aspect
1123 sh->aspect=trak->tkdata[77]|(trak->tkdata[76]<<8);
1124 sh->aspect/=trak->tkdata[81]|(trak->tkdata[80]<<8);
1127 if(depth>32+8) mp_msg(MSGT_DEMUX, MSGL_INFO,"*** depth = 0x%X\n",depth);
1129 // palettized?
1130 gray = 0;
1131 if (depth > 32) { depth&=31; gray = 1; } // depth > 32 means grayscale
1132 if ((depth == 2) || (depth == 4) || (depth == 8))
1133 palette_count = (1 << depth);
1134 else
1135 palette_count = 0;
1137 // emulate BITMAPINFOHEADER:
1138 if (palette_count)
1140 sh->bih=malloc(sizeof(BITMAPINFOHEADER) + palette_count * 4);
1141 memset(sh->bih,0,sizeof(BITMAPINFOHEADER) + palette_count * 4);
1142 sh->bih->biSize=40 + palette_count * 4;
1143 // fetch the relevant fields
1144 flag = BE_16(&trak->stdata[hdr_ptr]);
1145 hdr_ptr += 2;
1146 start = BE_32(&trak->stdata[hdr_ptr]);
1147 hdr_ptr += 4;
1148 count_flag = BE_16(&trak->stdata[hdr_ptr]);
1149 hdr_ptr += 2;
1150 end = BE_16(&trak->stdata[hdr_ptr]);
1151 hdr_ptr += 2;
1152 palette_map = (unsigned char *)sh->bih + 40;
1153 mp_msg(MSGT_DEMUX, MSGL_V, "Allocated %d entries for palette\n",
1154 palette_count);
1155 mp_msg(MSGT_DEMUX, MSGL_DBG2, "QT palette: start: %x, end: %x, count flag: %d, flags: %x\n",
1156 start, end, count_flag, flag);
1158 /* XXX: problems with sample (statunit6.mov) with flag&0x4 set! - alex*/
1160 // load default palette
1161 if (flag & 0x08)
1163 if (gray)
1165 mp_msg(MSGT_DEMUX, MSGL_V, "Using default QT grayscale palette\n");
1166 if (palette_count == 16)
1167 memcpy(palette_map, qt_default_grayscale_palette_16, 16 * 4);
1168 else if (palette_count == 256) {
1169 memcpy(palette_map, qt_default_grayscale_palette_256, 256 * 4);
1170 if (trak->fourcc == mmioFOURCC('c','v','i','d')) {
1171 int i;
1172 // Hack for grayscale CVID, negative palette
1173 // If you have samples where this is not required contact me (rxt)
1174 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: greyscale cvid with default palette,"
1175 " enabling negative palette hack.\n");
1176 for (i = 0; i < 256 * 4; i++)
1177 palette_map[i] = palette_map[i] ^ 0xff;
1181 else
1183 mp_msg(MSGT_DEMUX, MSGL_V, "Using default QT colour palette\n");
1184 if (palette_count == 4)
1185 memcpy(palette_map, qt_default_palette_4, 4 * 4);
1186 else if (palette_count == 16)
1187 memcpy(palette_map, qt_default_palette_16, 16 * 4);
1188 else if (palette_count == 256)
1189 memcpy(palette_map, qt_default_palette_256, 256 * 4);
1192 // load palette from file
1193 else
1195 mp_msg(MSGT_DEMUX, MSGL_V, "Loading palette from file\n");
1196 for (i = start; i <= end; i++)
1198 entry = BE_16(&trak->stdata[hdr_ptr]);
1199 hdr_ptr += 2;
1200 // apparently, if count_flag is set, entry is same as i
1201 if (count_flag & 0x8000)
1202 entry = i;
1203 // only care about top 8 bits of 16-bit R, G, or B value
1204 if (entry <= palette_count && entry >= 0)
1206 palette_map[entry * 4 + 2] = trak->stdata[hdr_ptr + 0];
1207 palette_map[entry * 4 + 1] = trak->stdata[hdr_ptr + 2];
1208 palette_map[entry * 4 + 0] = trak->stdata[hdr_ptr + 4];
1209 mp_dbg(MSGT_DEMUX, MSGL_DBG2, "QT palette: added entry: %d of %d (colors: R:%x G:%x B:%x)\n",
1210 entry, palette_count,
1211 palette_map[entry * 4 + 2],
1212 palette_map[entry * 4 + 1],
1213 palette_map[entry * 4 + 0]);
1215 else
1216 mp_msg(MSGT_DEMUX, MSGL_V, "QT palette: skipped entry (out of count): %d of %d\n",
1217 entry, palette_count);
1218 hdr_ptr += 6;
1222 else
1224 if (trak->fourcc == mmioFOURCC('a','v','c','1')) {
1225 if (trak->stream_header_len > 0xffffffff - sizeof(BITMAPINFOHEADER)) {
1226 mp_msg(MSGT_DEMUXER, MSGL_ERR, "Invalid extradata size %d, skipping\n",trak->stream_header_len);
1227 trak->stream_header_len = 0;
1229 sh->bih=malloc(sizeof(BITMAPINFOHEADER) + trak->stream_header_len);
1230 memset(sh->bih,0,sizeof(BITMAPINFOHEADER) + trak->stream_header_len);
1231 sh->bih->biSize=40 + trak->stream_header_len;
1232 memcpy(((unsigned char *)sh->bih)+40, trak->stream_header, trak->stream_header_len);
1233 free (trak->stream_header);
1234 trak->stream_header_len = 0;
1235 trak->stream_header = NULL;
1236 } else {
1237 sh->bih=malloc(sizeof(BITMAPINFOHEADER));
1238 memset(sh->bih,0,sizeof(BITMAPINFOHEADER));
1239 sh->bih->biSize=40;
1242 sh->bih->biWidth=sh->disp_w;
1243 sh->bih->biHeight=sh->disp_h;
1244 sh->bih->biPlanes=0;
1245 sh->bih->biBitCount=depth;
1246 sh->bih->biCompression=trak->fourcc;
1247 sh->bih->biSizeImage=sh->bih->biWidth*sh->bih->biHeight;
1249 mp_msg(MSGT_DEMUX, MSGL_V, "Image size: %d x %d (%d bpp)\n",sh->disp_w,sh->disp_h,sh->bih->biBitCount);
1250 if(trak->tkdata_len>81)
1251 mp_msg(MSGT_DEMUX, MSGL_V, "Display size: %d x %d\n",
1252 trak->tkdata[77]|(trak->tkdata[76]<<8),
1253 trak->tkdata[81]|(trak->tkdata[80]<<8));
1254 mp_msg(MSGT_DEMUX, MSGL_V, "Fourcc: %.4s Codec: '%.*s'\n",(char *)&trak->fourcc,trak->stdata[42]&31,trak->stdata+43);
1256 // if(demuxer->video->id==-1 || demuxer->video->id==priv->track_db){
1257 // // (auto)selected video track:
1258 // demuxer->video->id=priv->track_db;
1259 // demuxer->video->sh=sh; sh->ds=demuxer->video;
1260 // }
1261 return 1;
1264 static void lschunks(demuxer_t* demuxer,int level,off_t endpos,mov_track_t* trak){
1265 mov_priv_t* priv=demuxer->priv;
1266 // printf("lschunks (level=%d,endpos=%x)\n", level, endpos);
1267 while(1){
1268 off_t pos;
1269 off_t len;
1270 unsigned int id;
1272 pos=stream_tell(demuxer->stream);
1273 // printf("stream_tell==%d\n",pos);
1274 if(pos>=endpos) return; // END
1275 len=stream_read_dword(demuxer->stream);
1276 // printf("len==%d\n",len);
1277 if(len<8) return; // error
1278 len-=8;
1279 id=stream_read_dword(demuxer->stream);
1281 mp_msg(MSGT_DEMUX,MSGL_DBG2,"lschunks %.4s %d\n",(char *)&id,(int)len);
1283 if(trak){
1284 if (lschunks_intrak(demuxer, level, id, pos, len, trak) < 0)
1285 return;
1286 } else { /* not in track */
1287 switch(id) {
1288 case MOV_FOURCC('m','v','h','d'): {
1289 int version = stream_read_char(demuxer->stream);
1290 stream_skip(demuxer->stream, (version == 1) ? 19 : 11);
1291 priv->timescale=stream_read_dword(demuxer->stream);
1292 if (version == 1)
1293 priv->duration=stream_read_qword(demuxer->stream);
1294 else
1295 priv->duration=stream_read_dword(demuxer->stream);
1296 mp_msg(MSGT_DEMUX, MSGL_V,"MOV: %*sMovie header (%d bytes): tscale=%d dur=%d\n",level,"",(int)len,
1297 (int)priv->timescale,(int)priv->duration);
1298 break;
1300 case MOV_FOURCC('t','r','a','k'): {
1301 // if(trak) printf("MOV: Warning! trak in trak?\n");
1302 if(priv->track_db>=MOV_MAX_TRACKS){
1303 mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_MOVtooManyTrk);
1304 return;
1306 if(!priv->track_db) mp_msg(MSGT_DEMUX, MSGL_V, "--------------\n");
1307 trak=malloc(sizeof(mov_track_t));
1308 memset(trak,0,sizeof(mov_track_t));
1309 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Track #%d:\n",priv->track_db);
1310 trak->id=priv->track_db;
1311 priv->tracks[priv->track_db]=trak;
1312 lschunks(demuxer,level+1,pos+len,trak);
1313 mov_build_index(trak,priv->timescale);
1314 switch(trak->type){
1315 case MOV_TRAK_AUDIO: {
1316 sh_audio_t* sh=new_sh_audio(demuxer,priv->track_db);
1317 mp_msg(MSGT_DEMUX, MSGL_INFO, MSGTR_AudioID, "mov", priv->track_db);
1318 gen_sh_audio(sh, trak, priv->timescale);
1319 break;
1321 case MOV_TRAK_VIDEO: {
1322 sh_video_t* sh=new_sh_video(demuxer,priv->track_db);
1323 mp_msg(MSGT_DEMUX, MSGL_INFO, MSGTR_VideoID, "mov", priv->track_db);
1324 gen_sh_video(sh, trak, priv->timescale);
1325 break;
1327 case MOV_TRAK_GENERIC:
1328 if (trak->fourcc == mmioFOURCC('m','p','4','s') ||
1329 trak->fourcc == mmioFOURCC('t','x','3','g') ||
1330 trak->fourcc == mmioFOURCC('t','e','x','t')) {
1331 sh_sub_t *sh = new_sh_sub(demuxer, priv->track_db);
1332 mp_msg(MSGT_DEMUX, MSGL_INFO, MSGTR_SubtitleID, "mov", priv->track_db);
1333 if (trak->fourcc == mmioFOURCC('m','p','4','s'))
1334 init_vobsub(sh, trak);
1335 else
1336 sh->type = 't';
1337 } else
1338 mp_msg(MSGT_DEMUX, MSGL_V, "Generic track - not completely understood! (id: %d)\n",
1339 trak->id);
1340 /* XXX: Also this contains the FLASH data */
1342 #if 0
1344 int pos = stream_tell(demuxer->stream);
1345 int i;
1346 int fd;
1347 char name[20];
1349 for (i=0; i<trak->samples_size; i++)
1351 char buf[trak->samples[i].size];
1352 stream_seek(demuxer->stream, trak->samples[i].pos);
1353 snprintf((char *)&name[0], 20, "samp%d", i);
1354 fd = open((char *)&name[0], O_CREAT|O_WRONLY);
1355 stream_read(demuxer->stream, &buf[0], trak->samples[i].size);
1356 write(fd, &buf[0], trak->samples[i].size);
1357 close(fd);
1359 for (i=0; i<trak->chunks_size; i++)
1361 char buf[trak->length];
1362 stream_seek(demuxer->stream, trak->chunks[i].pos);
1363 snprintf((char *)&name[0], 20, "chunk%d", i);
1364 fd = open((char *)&name[0], O_CREAT|O_WRONLY);
1365 stream_read(demuxer->stream, &buf[0], trak->length);
1366 write(fd, &buf[0], trak->length);
1367 close(fd);
1369 if (trak->samplesize > 0)
1371 char *buf;
1373 buf = malloc(trak->samplesize);
1374 stream_seek(demuxer->stream, trak->chunks[0].pos);
1375 snprintf((char *)&name[0], 20, "trak%d", trak->id);
1376 fd = open((char *)&name[0], O_CREAT|O_WRONLY);
1377 stream_read(demuxer->stream, buf, trak->samplesize);
1378 write(fd, buf, trak->samplesize);
1379 close(fd);
1381 stream_seek(demuxer->stream, pos);
1383 #endif
1384 break;
1385 default:
1386 mp_msg(MSGT_DEMUX, MSGL_V, "Unknown track type found (type: %d)\n", trak->type);
1387 break;
1389 mp_msg(MSGT_DEMUX, MSGL_V, "--------------\n");
1390 priv->track_db++;
1391 trak=NULL;
1392 break;
1394 #ifndef HAVE_ZLIB
1395 case MOV_FOURCC('c','m','o','v'): {
1396 mp_msg(MSGT_DEMUX,MSGL_ERR,MSGTR_MOVcomprhdr);
1397 return;
1399 #else
1400 case MOV_FOURCC('m','o','o','v'):
1401 case MOV_FOURCC('c','m','o','v'): {
1402 // mp_msg(MSGT_DEMUX,MSGL_ERR,MSGTR_MOVcomprhdr);
1403 lschunks(demuxer,level+1,pos+len,NULL);
1404 break;
1406 case MOV_FOURCC('d','c','o','m'): {
1407 // int temp=stream_read_dword(demuxer->stream);
1408 unsigned int algo=be2me_32(stream_read_dword(demuxer->stream));
1409 mp_msg(MSGT_DEMUX, MSGL_V, "Compressed header uses %.4s algo!\n",(char *)&algo);
1410 break;
1412 case MOV_FOURCC('c','m','v','d'): {
1413 // int temp=stream_read_dword(demuxer->stream);
1414 unsigned int moov_sz=stream_read_dword(demuxer->stream);
1415 unsigned int cmov_sz=len-4;
1416 unsigned char* cmov_buf;
1417 unsigned char* moov_buf;
1418 int zret;
1419 z_stream zstrm;
1420 stream_t* backup;
1422 if (moov_sz > SIZE_MAX - 16) {
1423 mp_msg(MSGT_DEMUX, MSGL_ERR, "Invalid cmvd atom size %d\n", moov_sz);
1424 break;
1426 cmov_buf=malloc(cmov_sz);
1427 moov_buf=malloc(moov_sz+16);
1428 mp_msg(MSGT_DEMUX, MSGL_V, "Compressed header size: %d / %d\n",cmov_sz,moov_sz);
1430 stream_read(demuxer->stream,cmov_buf,cmov_sz);
1432 zstrm.zalloc = (alloc_func)0;
1433 zstrm.zfree = (free_func)0;
1434 zstrm.opaque = (voidpf)0;
1435 zstrm.next_in = cmov_buf;
1436 zstrm.avail_in = cmov_sz;
1437 zstrm.next_out = moov_buf;
1438 zstrm.avail_out = moov_sz;
1440 zret = inflateInit(&zstrm);
1441 if (zret != Z_OK)
1442 { mp_msg(MSGT_DEMUX, MSGL_ERR, "QT cmov: inflateInit err %d\n",zret);
1443 return;
1445 zret = inflate(&zstrm, Z_NO_FLUSH);
1446 if ((zret != Z_OK) && (zret != Z_STREAM_END))
1447 { mp_msg(MSGT_DEMUX, MSGL_ERR, "QT cmov inflate: ERR %d\n",zret);
1448 return;
1450 #if 0
1451 else {
1452 FILE *DecOut;
1453 DecOut = fopen("Out.bin", "w");
1454 fwrite(moov_buf, 1, moov_sz, DecOut);
1455 fclose(DecOut);
1457 #endif
1458 if(moov_sz != zstrm.total_out)
1459 mp_msg(MSGT_DEMUX, MSGL_WARN, "Warning! moov size differs cmov: %d zlib: %ld\n",moov_sz,zstrm.total_out);
1460 zret = inflateEnd(&zstrm);
1462 backup=demuxer->stream;
1463 demuxer->stream=new_memory_stream(moov_buf,moov_sz);
1464 stream_skip(demuxer->stream,8);
1465 lschunks(demuxer,level+1,moov_sz,NULL); // parse uncompr. 'moov'
1466 //free_stream(demuxer->stream);
1467 demuxer->stream=backup;
1468 free(cmov_buf);
1469 free(moov_buf);
1470 break;
1472 #endif
1473 case MOV_FOURCC('u','d','t','a'):
1475 unsigned int udta_id;
1476 off_t udta_len;
1477 off_t udta_size = len;
1479 mp_msg(MSGT_DEMUX, MSGL_DBG2, "mov: user data record found\n");
1480 mp_msg(MSGT_DEMUX, MSGL_V, "Quicktime Clip Info:\n");
1482 while((len > 8) && (udta_size > 8))
1484 udta_len = stream_read_dword(demuxer->stream);
1485 udta_id = stream_read_dword(demuxer->stream);
1486 udta_size -= 8;
1487 mp_msg(MSGT_DEMUX, MSGL_DBG2, "udta_id: %.4s (len: %"PRId64")\n", (char *)&udta_id, (int64_t)udta_len);
1488 switch (udta_id)
1490 case MOV_FOURCC(0xa9,'c','p','y'):
1491 case MOV_FOURCC(0xa9,'d','a','y'):
1492 case MOV_FOURCC(0xa9,'d','i','r'):
1493 /* 0xa9,'e','d','1' - '9' : edit timestamps */
1494 case MOV_FOURCC(0xa9,'f','m','t'):
1495 case MOV_FOURCC(0xa9,'i','n','f'):
1496 case MOV_FOURCC(0xa9,'p','r','d'):
1497 case MOV_FOURCC(0xa9,'p','r','f'):
1498 case MOV_FOURCC(0xa9,'r','e','q'):
1499 case MOV_FOURCC(0xa9,'s','r','c'):
1500 case MOV_FOURCC('n','a','m','e'):
1501 case MOV_FOURCC(0xa9,'n','a','m'):
1502 case MOV_FOURCC(0xa9,'A','R','T'):
1503 case MOV_FOURCC(0xa9,'c','m','t'):
1504 case MOV_FOURCC(0xa9,'a','u','t'):
1505 case MOV_FOURCC(0xa9,'s','w','r'):
1507 off_t text_len = stream_read_word(demuxer->stream);
1508 char text[text_len+2+1];
1509 stream_read(demuxer->stream, (char *)&text, text_len+2);
1510 text[text_len+2] = 0x0;
1511 switch(udta_id)
1513 case MOV_FOURCC(0xa9,'a','u','t'):
1514 demux_info_add(demuxer, "author", &text[2]);
1515 mp_msg(MSGT_DEMUX, MSGL_V, " Author: %s\n", &text[2]);
1516 break;
1517 case MOV_FOURCC(0xa9,'c','p','y'):
1518 demux_info_add(demuxer, "copyright", &text[2]);
1519 mp_msg(MSGT_DEMUX, MSGL_V, " Copyright: %s\n", &text[2]);
1520 break;
1521 case MOV_FOURCC(0xa9,'i','n','f'):
1522 mp_msg(MSGT_DEMUX, MSGL_V, " Info: %s\n", &text[2]);
1523 break;
1524 case MOV_FOURCC('n','a','m','e'):
1525 case MOV_FOURCC(0xa9,'n','a','m'):
1526 demux_info_add(demuxer, "name", &text[2]);
1527 mp_msg(MSGT_DEMUX, MSGL_V, " Name: %s\n", &text[2]);
1528 break;
1529 case MOV_FOURCC(0xa9,'A','R','T'):
1530 mp_msg(MSGT_DEMUX, MSGL_V, " Artist: %s\n", &text[2]);
1531 break;
1532 case MOV_FOURCC(0xa9,'d','i','r'):
1533 mp_msg(MSGT_DEMUX, MSGL_V, " Director: %s\n", &text[2]);
1534 break;
1535 case MOV_FOURCC(0xa9,'c','m','t'):
1536 demux_info_add(demuxer, "comments", &text[2]);
1537 mp_msg(MSGT_DEMUX, MSGL_V, " Comment: %s\n", &text[2]);
1538 break;
1539 case MOV_FOURCC(0xa9,'r','e','q'):
1540 mp_msg(MSGT_DEMUX, MSGL_V, " Requirements: %s\n", &text[2]);
1541 break;
1542 case MOV_FOURCC(0xa9,'s','w','r'):
1543 demux_info_add(demuxer, "encoder", &text[2]);
1544 mp_msg(MSGT_DEMUX, MSGL_V, " Software: %s\n", &text[2]);
1545 break;
1546 case MOV_FOURCC(0xa9,'d','a','y'):
1547 mp_msg(MSGT_DEMUX, MSGL_V, " Creation timestamp: %s\n", &text[2]);
1548 break;
1549 case MOV_FOURCC(0xa9,'f','m','t'):
1550 mp_msg(MSGT_DEMUX, MSGL_V, " Format: %s\n", &text[2]);
1551 break;
1552 case MOV_FOURCC(0xa9,'p','r','d'):
1553 mp_msg(MSGT_DEMUX, MSGL_V, " Producer: %s\n", &text[2]);
1554 break;
1555 case MOV_FOURCC(0xa9,'p','r','f'):
1556 mp_msg(MSGT_DEMUX, MSGL_V, " Performer(s): %s\n", &text[2]);
1557 break;
1558 case MOV_FOURCC(0xa9,'s','r','c'):
1559 mp_msg(MSGT_DEMUX, MSGL_V, " Source providers: %s\n", &text[2]);
1560 break;
1562 udta_size -= 4+text_len;
1563 break;
1565 /* some other shits: WLOC - window location,
1566 LOOP - looping style,
1567 SelO - play only selected frames
1568 AllF - play all frames
1570 case MOV_FOURCC('W','L','O','C'):
1571 case MOV_FOURCC('L','O','O','P'):
1572 case MOV_FOURCC('S','e','l','O'):
1573 case MOV_FOURCC('A','l','l','F'):
1574 default:
1576 if( udta_len>udta_size)
1577 udta_len=udta_size;
1579 char dump[udta_len-4];
1580 stream_read(demuxer->stream, (char *)&dump, udta_len-4-4);
1581 udta_size -= udta_len;
1586 break;
1587 } /* eof udta */
1588 default:
1589 id = be2me_32(id);
1590 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",(char *)&id,(int)len);
1591 } /* endof switch */
1592 } /* endof else */
1594 pos+=len+8;
1595 if(pos>=endpos) break;
1596 if(!stream_seek(demuxer->stream,pos)) break;
1600 static int lschunks_intrak(demuxer_t* demuxer, int level, unsigned int id,
1601 off_t pos, off_t len, mov_track_t* trak)
1603 switch(id) {
1604 case MOV_FOURCC('m','d','a','t'): {
1605 mp_msg(MSGT_DEMUX,MSGL_WARN,"Hmm, strange MOV, parsing mdat in lschunks?\n");
1606 return -1;
1608 case MOV_FOURCC('f','r','e','e'):
1609 case MOV_FOURCC('u','d','t','a'):
1610 /* here not supported :p */
1611 break;
1612 case MOV_FOURCC('t','k','h','d'): {
1613 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sTrack header!\n", level, "");
1614 // read codec data
1615 trak->tkdata_len = len;
1616 trak->tkdata = malloc(trak->tkdata_len);
1617 stream_read(demuxer->stream, trak->tkdata, trak->tkdata_len);
1619 0 1 Version
1620 1 3 Flags
1621 4 4 Creation time
1622 8 4 Modification time
1623 12 4 Track ID
1624 16 4 Reserved
1625 20 4 Duration
1626 24 8 Reserved
1627 32 2 Layer
1628 34 2 Alternate group
1629 36 2 Volume
1630 38 2 Reserved
1631 40 36 Matrix structure
1632 76 4 Track width
1633 80 4 Track height
1635 mp_msg(MSGT_DEMUX, MSGL_V,
1636 "tkhd len=%d ver=%d flags=0x%X id=%d dur=%d lay=%d vol=%d\n",
1637 trak->tkdata_len, trak->tkdata[0], trak->tkdata[1],
1638 char2int(trak->tkdata, 12), // id
1639 char2int(trak->tkdata, 20), // duration
1640 char2short(trak->tkdata, 32), // layer
1641 char2short(trak->tkdata, 36)); // volume
1642 break;
1644 case MOV_FOURCC('m','d','h','d'): {
1645 int version = stream_read_char(demuxer->stream);
1646 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sMedia header!\n", level, "");
1647 stream_skip(demuxer->stream, (version == 1) ? 19 : 11);
1648 // read timescale
1649 trak->timescale = stream_read_dword(demuxer->stream);
1650 // read length
1651 if (version == 1)
1652 trak->length = stream_read_qword(demuxer->stream);
1653 else
1654 trak->length = stream_read_dword(demuxer->stream);
1655 break;
1657 case MOV_FOURCC('h','d','l','r'): {
1658 unsigned int tmp = stream_read_dword(demuxer->stream);
1659 unsigned int type = stream_read_dword_le(demuxer->stream);
1660 unsigned int subtype = stream_read_dword_le(demuxer->stream);
1661 unsigned int manufact = stream_read_dword_le(demuxer->stream);
1662 unsigned int comp_flags = stream_read_dword(demuxer->stream);
1663 unsigned int comp_mask = stream_read_dword(demuxer->stream);
1664 int len = stream_read_char(demuxer->stream);
1665 char* str = malloc(len + 1);
1666 stream_read(demuxer->stream, str, len);
1667 str[len] = 0;
1668 mp_msg(MSGT_DEMUX, MSGL_V,
1669 "MOV: %*sHandler header: %.4s/%.4s (%.4s) %s\n", level, "",
1670 (char *)&type, (char *)&subtype, (char *)&manufact, str);
1671 free(str);
1672 switch(bswap_32(type)) {
1673 case MOV_FOURCC('m','h','l','r'):
1674 trak->media_handler = bswap_32(subtype);
1675 break;
1676 case MOV_FOURCC('d','h','l','r'):
1677 trak->data_handler = bswap_32(subtype);
1678 break;
1679 default:
1680 mp_msg(MSGT_DEMUX, MSGL_V,
1681 "MOV: unknown handler class: 0x%X (%.4s)\n",
1682 bswap_32(type), (char *)&type);
1684 break;
1686 case MOV_FOURCC('v','m','h','d'): {
1687 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sVideo header!\n", level, "");
1688 trak->type = MOV_TRAK_VIDEO;
1689 // read video data
1690 break;
1692 case MOV_FOURCC('s','m','h','d'): {
1693 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sSound header!\n", level, "");
1694 trak->type = MOV_TRAK_AUDIO;
1695 // read audio data
1696 break;
1698 case MOV_FOURCC('g','m','h','d'): {
1699 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sGeneric header!\n", level, "");
1700 trak->type = MOV_TRAK_GENERIC;
1701 break;
1703 case MOV_FOURCC('n','m','h','d'): {
1704 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sGeneric header!\n", level, "");
1705 trak->type = MOV_TRAK_GENERIC;
1706 break;
1708 case MOV_FOURCC('s','t','s','d'): {
1709 int i = stream_read_dword(demuxer->stream); // temp!
1710 int count = stream_read_dword(demuxer->stream);
1711 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sDescription list! (cnt:%d)\n",
1712 level, "", count);
1713 for (i = 0; i < count; i++) {
1714 off_t pos = stream_tell(demuxer->stream);
1715 off_t len = stream_read_dword(demuxer->stream);
1716 unsigned int fourcc = stream_read_dword_le(demuxer->stream);
1717 /* some files created with Broadcast 2000 (e.g. ilacetest.mov)
1718 contain raw I420 video but have a yv12 fourcc */
1719 if (fourcc == mmioFOURCC('y','v','1','2'))
1720 fourcc = mmioFOURCC('I','4','2','0');
1721 if (len < 8)
1722 break; // error
1723 mp_msg(MSGT_DEMUX, MSGL_V,
1724 "MOV: %*s desc #%d: %.4s (%"PRId64" bytes)\n", level, "",
1725 i, (char *)&fourcc, (int64_t)len - 16);
1726 if (fourcc != trak->fourcc && i)
1727 mp_msg(MSGT_DEMUX, MSGL_WARN, MSGTR_MOVvariableFourCC);
1728 // if(!i)
1730 trak->fourcc = fourcc;
1731 // read type specific (audio/video/time/text etc) header
1732 // NOTE: trak type is not yet known at this point :(((
1733 trak->stdata_len = len - 8;
1734 trak->stdata = malloc(trak->stdata_len);
1735 stream_read(demuxer->stream, trak->stdata, trak->stdata_len);
1737 if (!stream_seek(demuxer->stream, pos + len))
1738 break;
1740 break;
1742 case MOV_FOURCC('s','t','t','s'): {
1743 int temp = stream_read_dword(demuxer->stream);
1744 int len = stream_read_dword(demuxer->stream);
1745 int i;
1746 unsigned int pts = 0;
1747 mp_msg(MSGT_DEMUX, MSGL_V,
1748 "MOV: %*sSample duration table! (%d blocks)\n", level, "",
1749 len);
1750 trak->durmap = calloc(len, sizeof(mov_durmap_t));
1751 trak->durmap_size = len;
1752 for (i = 0; i < len; i++) {
1753 trak->durmap[i].num = stream_read_dword(demuxer->stream);
1754 trak->durmap[i].dur = stream_read_dword(demuxer->stream);
1755 pts += trak->durmap[i].num * trak->durmap[i].dur;
1757 if (trak->length != pts)
1758 mp_msg(MSGT_DEMUX, MSGL_WARN, "Warning! pts=%d length=%d\n",
1759 pts, trak->length);
1760 break;
1762 case MOV_FOURCC('s','t','s','c'): {
1763 int temp = stream_read_dword(demuxer->stream);
1764 int len = stream_read_dword(demuxer->stream);
1765 int ver = (temp << 24);
1766 int flags = (temp << 16) | (temp << 8) | temp;
1767 int i;
1768 mp_msg(MSGT_DEMUX, MSGL_V,
1769 "MOV: %*sSample->Chunk mapping table! (%d blocks) (ver:%d,flags:%d)\n", level, "",
1770 len, ver, flags);
1771 // read data:
1772 trak->chunkmap_size = len;
1773 trak->chunkmap = calloc(len, sizeof(mov_chunkmap_t));
1774 for (i = 0; i < len; i++) {
1775 trak->chunkmap[i].first = stream_read_dword(demuxer->stream) - 1;
1776 trak->chunkmap[i].spc = stream_read_dword(demuxer->stream);
1777 trak->chunkmap[i].sdid = stream_read_dword(demuxer->stream);
1779 break;
1781 case MOV_FOURCC('s','t','s','z'): {
1782 int temp = stream_read_dword(demuxer->stream);
1783 int ss=stream_read_dword(demuxer->stream);
1784 int ver = (temp << 24);
1785 int flags = (temp << 16) | (temp << 8) | temp;
1786 int entries = stream_read_dword(demuxer->stream);
1787 int i;
1788 mp_msg(MSGT_DEMUX, MSGL_V,
1789 "MOV: %*sSample size table! (entries=%d ss=%d) (ver:%d,flags:%d)\n", level, "",
1790 entries, ss, ver, flags);
1791 trak->samplesize = ss;
1792 if (!ss) {
1793 // variable samplesize
1794 trak->samples = realloc_struct(trak->samples, entries, sizeof(mov_sample_t));
1795 trak->samples_size = entries;
1796 for (i = 0; i < entries; i++)
1797 trak->samples[i].size = stream_read_dword(demuxer->stream);
1799 break;
1801 case MOV_FOURCC('s','t','c','o'): {
1802 int temp = stream_read_dword(demuxer->stream);
1803 int len = stream_read_dword(demuxer->stream);
1804 int i;
1805 mp_msg(MSGT_DEMUX, MSGL_V,
1806 "MOV: %*sChunk offset table! (%d chunks)\n", level, "",
1807 len);
1808 // extend array if needed:
1809 if (len > trak->chunks_size) {
1810 trak->chunks = realloc_struct(trak->chunks, len, sizeof(mov_chunk_t));
1811 trak->chunks_size = len;
1813 // read elements:
1814 for(i = 0; i < len; i++)
1815 trak->chunks[i].pos = stream_read_dword(demuxer->stream);
1816 break;
1818 case MOV_FOURCC('c','o','6','4'): {
1819 int temp = stream_read_dword(demuxer->stream);
1820 int len = stream_read_dword(demuxer->stream);
1821 int i;
1822 mp_msg(MSGT_DEMUX, MSGL_V,
1823 "MOV: %*s64bit chunk offset table! (%d chunks)\n", level, "",
1824 len);
1825 // extend array if needed:
1826 if (len > trak->chunks_size) {
1827 trak->chunks = realloc_struct(trak->chunks, len, sizeof(mov_chunk_t));
1828 trak->chunks_size = len;
1830 // read elements:
1831 for (i = 0; i < len; i++) {
1832 #ifndef _LARGEFILE_SOURCE
1833 if (stream_read_dword(demuxer->stream) != 0)
1834 mp_msg(MSGT_DEMUX, MSGL_WARN, "Chunk %d has got 64bit address, but you've MPlayer compiled without LARGEFILE support!\n", i);
1835 trak->chunks[i].pos = stream_read_dword(demuxer->stream);
1836 #else
1837 trak->chunks[i].pos = stream_read_qword(demuxer->stream);
1838 #endif
1840 break;
1842 case MOV_FOURCC('s','t','s','s'): {
1843 int temp = stream_read_dword(demuxer->stream);
1844 int entries = stream_read_dword(demuxer->stream);
1845 int ver = (temp << 24);
1846 int flags = (temp << 16) | (temp<<8) | temp;
1847 int i;
1848 mp_msg(MSGT_DEMUX, MSGL_V,
1849 "MOV: %*sSyncing samples (keyframes) table! (%d entries) (ver:%d,flags:%d)\n", level, "",
1850 entries, ver, flags);
1851 trak->keyframes_size = entries;
1852 trak->keyframes = calloc(entries, sizeof(unsigned int));
1853 for (i = 0; i < entries; i++)
1854 trak->keyframes[i] = stream_read_dword(demuxer->stream) - 1;
1855 break;
1857 case MOV_FOURCC('m','d','i','a'): {
1858 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sMedia stream!\n", level, "");
1859 lschunks(demuxer, level + 1, pos + len, trak);
1860 break;
1862 case MOV_FOURCC('m','i','n','f'): {
1863 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sMedia info!\n", level, "");
1864 lschunks(demuxer, level + 1 ,pos + len, trak);
1865 break;
1867 case MOV_FOURCC('s','t','b','l'): {
1868 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sSample info!\n", level, "");
1869 lschunks(demuxer, level + 1, pos + len, trak);
1870 break;
1872 case MOV_FOURCC('e','d','t','s'): {
1873 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sEdit atom!\n", level, "");
1874 lschunks(demuxer, level + 1, pos + len, trak);
1875 break;
1877 case MOV_FOURCC('e','l','s','t'): {
1878 int temp = stream_read_dword(demuxer->stream);
1879 int entries = stream_read_dword(demuxer->stream);
1880 int ver = (temp << 24);
1881 int flags = (temp << 16) | (temp << 8) | temp;
1882 int i;
1883 mp_msg(MSGT_DEMUX, MSGL_V,
1884 "MOV: %*sEdit list table (%d entries) (ver:%d,flags:%d)\n", level, "",
1885 entries, ver, flags);
1886 #if 1
1887 trak->editlist_size = entries;
1888 trak->editlist = calloc(trak->editlist_size, sizeof(mov_editlist_t));
1889 for (i = 0; i < entries; i++) {
1890 int dur = stream_read_dword(demuxer->stream);
1891 int mt = stream_read_dword(demuxer->stream);
1892 int mr = stream_read_dword(demuxer->stream); // 16.16fp
1893 trak->editlist[i].dur = dur;
1894 trak->editlist[i].pos = mt;
1895 trak->editlist[i].speed = mr;
1896 mp_msg(MSGT_DEMUX, MSGL_V,
1897 "MOV: %*s entry#%d: duration: %d start time: %d speed: %3.1fx\n", level, "",
1898 i, dur, mt, (float)mr/65536.0f);
1900 #endif
1901 break;
1903 case MOV_FOURCC('c','o','d','e'): {
1904 /* XXX: Implement atom 'code' for FLASH support */
1905 break;
1907 default:
1908 id = be2me_32(id);
1909 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",(char *)&id,(int)len);
1910 break;
1911 }//switch(id)
1912 return 0;
1915 static demuxer_t* mov_read_header(demuxer_t* demuxer){
1916 mov_priv_t* priv=demuxer->priv;
1917 int t_no;
1918 int best_a_id=-1, best_a_len=0;
1919 int best_v_id=-1, best_v_len=0;
1921 mp_msg(MSGT_DEMUX, MSGL_DBG3, "mov_read_header!\n");
1923 // Parse header:
1924 stream_reset(demuxer->stream);
1925 if(!stream_seek(demuxer->stream,priv->moov_start))
1927 mp_msg(MSGT_DEMUX,MSGL_ERR,"MOV: Cannot seek to the beginning of the Movie header (0x%"PRIx64")\n",
1928 (int64_t)priv->moov_start);
1929 return 0;
1931 lschunks(demuxer, 0, priv->moov_end, NULL);
1932 // just in case we have hit eof while parsing...
1933 demuxer->stream->eof = 0;
1934 // mp_msg(MSGT_DEMUX, MSGL_INFO, "--------------\n");
1936 // find the best (longest) streams:
1937 for(t_no=0;t_no<priv->track_db;t_no++){
1938 mov_track_t* trak=priv->tracks[t_no];
1939 int len=(trak->samplesize) ? trak->chunks_size : trak->samples_size;
1940 if(demuxer->a_streams[t_no]){ // need audio
1941 if(len>best_a_len){ best_a_len=len; best_a_id=t_no; }
1943 if(demuxer->v_streams[t_no]){ // need video
1944 if(len>best_v_len){ best_v_len=len; best_v_id=t_no; }
1947 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: longest streams: A: #%d (%d samples) V: #%d (%d samples)\n",
1948 best_a_id,best_a_len,best_v_id,best_v_len);
1949 if(demuxer->audio->id==-1 && best_a_id>=0) demuxer->audio->id=best_a_id;
1950 if(demuxer->video->id==-1 && best_v_id>=0) demuxer->video->id=best_v_id;
1952 // setup sh pointers:
1953 if(demuxer->audio->id>=0){
1954 sh_audio_t* sh=demuxer->a_streams[demuxer->audio->id];
1955 if(sh){
1956 demuxer->audio->sh=sh; sh->ds=demuxer->audio;
1957 } else {
1958 mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected audio stream (%d) does not exist\n",demuxer->audio->id);
1959 demuxer->audio->id=-2;
1962 if(demuxer->video->id>=0){
1963 sh_video_t* sh=demuxer->v_streams[demuxer->video->id];
1964 if(sh){
1965 demuxer->video->sh=sh; sh->ds=demuxer->video;
1966 } else {
1967 mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected video stream (%d) does not exist\n",demuxer->video->id);
1968 demuxer->video->id=-2;
1971 if(demuxer->sub->id>=0){
1972 sh_sub_t* sh=demuxer->s_streams[demuxer->sub->id];
1973 if(sh){
1974 demuxer->sub->sh=sh;
1975 } else {
1976 mp_msg(MSGT_DEMUX, MSGL_ERR, "MOV: selected subtitle stream (%d) does not exist\n",demuxer->sub->id);
1977 demuxer->sub->id=-2;
1981 if(demuxer->video->id<0 && demuxer->audio->id<0) {
1982 /* No AV streams found. Try to find an MPEG stream. */
1983 for(t_no=0;t_no<priv->track_db;t_no++){
1984 mov_track_t* trak=priv->tracks[t_no];
1985 if(trak->media_handler == MOV_FOURCC('M','P','E','G')) {
1986 stream_t *s;
1987 demuxer_t *od;
1989 demuxer->video->id = t_no;
1990 s = new_ds_stream(demuxer->video);
1991 od = demux_open(s, DEMUXER_TYPE_MPEG_PS, -1, -1, -1, NULL);
1992 if(od) return new_demuxers_demuxer(od, od, od);
1993 demuxer->video->id = -2; //new linked demuxer couldn't be allocated
1994 break;
1999 #if 0
2000 if( mp_msg_test(MSGT_DEMUX,MSGL_DBG3) ){
2001 for(t_no=0;t_no<priv->track_db;t_no++){
2002 mov_track_t* trak=priv->tracks[t_no];
2003 if(trak->type==MOV_TRAK_GENERIC){
2004 int i;
2005 int fd;
2006 char name[20];
2007 mp_msg(MSGT_DEMUX, MSGL_INFO, "MOV: Track #%d: Extracting %d data chunks to files\n",t_no,trak->samples_size);
2008 for (i=0; i<trak->samples_size; i++)
2010 int len=trak->samples[i].size;
2011 char buf[len];
2012 stream_seek(demuxer->stream, trak->samples[i].pos);
2013 snprintf(name, 20, "t%02d-s%03d.%s", t_no,i,
2014 (trak->media_handler==MOV_FOURCC('f','l','s','h')) ?
2015 "swf":"dump");
2016 fd = open(name, O_CREAT|O_WRONLY);
2017 // { int j;
2018 // for(j=0;j<trak->stdata_len-3; j++)
2019 // printf("stdata[%d]=0x%X ize=0x%X\n",j,char2int(trak->stdata,j),MOV_FOURCC('z','l','i','b'));
2020 // }
2021 if( //trak->media_handler==MOV_FOURCC('s','p','r','t') &&
2022 trak->stdata_len>=16 &&
2023 char2int(trak->stdata,12)==MOV_FOURCC('z','l','i','b')
2025 int newlen=stream_read_dword(demuxer->stream);
2026 #ifdef HAVE_ZLIB
2027 // unzip:
2028 z_stream zstrm;
2029 int zret;
2030 char buf2[newlen];
2032 len-=4;
2033 stream_read(demuxer->stream, buf, len);
2035 zstrm.zalloc = (alloc_func)0;
2036 zstrm.zfree = (free_func)0;
2037 zstrm.opaque = (voidpf)0;
2038 zstrm.next_in = buf;
2039 zstrm.avail_in = len;
2040 zstrm.next_out = buf2;
2041 zstrm.avail_out = newlen;
2043 zret = inflateInit(&zstrm);
2044 zret = inflate(&zstrm, Z_NO_FLUSH);
2045 if(newlen != zstrm.total_out)
2046 mp_msg(MSGT_DEMUX, MSGL_WARN, "Warning! unzipped frame size differs hdr: %d zlib: %ld\n",newlen,zstrm.total_out);
2048 write(fd, buf2, newlen);
2049 } else {
2050 #else
2051 len-=4;
2052 mp_msg(MSGT_DEMUX, MSGL_INFO, "******* ZLIB COMPRESSED SAMPLE!!!!! (%d->%d bytes) *******\n",len,newlen);
2055 #endif
2056 stream_read(demuxer->stream, buf, len);
2057 write(fd, buf, len);
2059 close(fd);
2064 demuxer->stream->eof = 0;
2065 #endif
2067 return demuxer;
2071 * \brief return the mov track that belongs to a demuxer stream
2072 * \param ds the demuxer stream, may be NULL
2073 * \return the mov track info structure belonging to the stream,
2074 * NULL if not found
2076 static mov_track_t *stream_track(mov_priv_t *priv, demux_stream_t *ds) {
2077 if (ds && (ds->id >= 0) && (ds->id < priv->track_db))
2078 return priv->tracks[ds->id];
2079 return NULL;
2082 // return value:
2083 // 0 = EOF or no stream found
2084 // 1 = successfully read a packet
2085 static int demux_mov_fill_buffer(demuxer_t *demuxer,demux_stream_t* ds){
2086 mov_priv_t* priv=demuxer->priv;
2087 mov_track_t* trak=NULL;
2088 float pts;
2089 int x;
2090 off_t pos;
2092 if (ds->eof) return 0;
2093 trak = stream_track(priv, ds);
2094 if (!trak) return 0;
2096 if(trak->samplesize){
2097 // read chunk:
2098 if(trak->pos>=trak->chunks_size) return 0; // EOF
2099 stream_seek(demuxer->stream,trak->chunks[trak->pos].pos);
2100 pts=(float)(trak->chunks[trak->pos].sample*trak->duration)/(float)trak->timescale;
2101 if(trak->samplesize!=1)
2103 mp_msg(MSGT_DEMUX, MSGL_DBG2, "WARNING! Samplesize(%d) != 1\n",
2104 trak->samplesize);
2105 if((trak->fourcc != MOV_FOURCC('t','w','o','s')) && (trak->fourcc != MOV_FOURCC('s','o','w','t')))
2106 x=trak->chunks[trak->pos].size*trak->samplesize;
2107 else
2108 x=trak->chunks[trak->pos].size;
2110 else
2111 x=trak->chunks[trak->pos].size;
2112 // printf("X = %d\n", x);
2113 /* the following stuff is audio related */
2114 if (trak->type == MOV_TRAK_AUDIO){
2115 if(trak->stdata_len>=44 && trak->stdata[9]>=1 && char2int(trak->stdata,28)>0){
2116 // stsd version 1 - we have audio compression ratio info:
2117 x/=char2int(trak->stdata,28); // samples/packet
2118 // x*=char2int(trak->stdata,32); // bytes/packet
2119 x*=char2int(trak->stdata,36); // bytes/frame
2120 } else {
2121 if(ds->ss_div && ds->ss_mul){
2122 // workaround for buggy files like 7up-high-traffic-areas.mov,
2123 // with missing stsd v1 header containing compression rate
2124 x/=ds->ss_div; x*=ds->ss_mul; // compression ratio fix ! HACK !
2125 } else {
2126 x*=trak->nchannels;
2127 x*=trak->samplebytes;
2130 mp_msg(MSGT_DEMUX, MSGL_DBG2, "Audio sample %d bytes pts %5.3f\n",trak->chunks[trak->pos].size*trak->samplesize,pts);
2131 } /* MOV_TRAK_AUDIO */
2132 pos=trak->chunks[trak->pos].pos;
2133 } else {
2134 int frame=trak->pos;
2135 // editlist support:
2136 if(trak->type == MOV_TRAK_VIDEO && trak->editlist_size>=1){
2137 // find the right editlist entry:
2138 if(frame<trak->editlist[trak->editlist_pos].start_frame)
2139 trak->editlist_pos=0;
2140 while(trak->editlist_pos<trak->editlist_size-1 &&
2141 frame>=trak->editlist[trak->editlist_pos+1].start_frame)
2142 ++trak->editlist_pos;
2143 if(frame>=trak->editlist[trak->editlist_pos].start_frame+
2144 trak->editlist[trak->editlist_pos].frames) return 0; // EOF
2145 // calc real frame index:
2146 frame-=trak->editlist[trak->editlist_pos].start_frame;
2147 frame+=trak->editlist[trak->editlist_pos].start_sample;
2148 // calc pts:
2149 pts=(float)(trak->samples[frame].pts+
2150 trak->editlist[trak->editlist_pos].pts_offset)/(float)trak->timescale;
2151 } else {
2152 if(frame>=trak->samples_size) return 0; // EOF
2153 pts=(float)trak->samples[frame].pts/(float)trak->timescale;
2155 // read sample:
2156 stream_seek(demuxer->stream,trak->samples[frame].pos);
2157 x=trak->samples[frame].size;
2158 pos=trak->samples[frame].pos;
2160 if(trak->pos==0 && trak->stream_header_len>0){
2161 // we have to append the stream header...
2162 demux_packet_t* dp=new_demux_packet(x+trak->stream_header_len);
2163 memcpy(dp->buffer,trak->stream_header,trak->stream_header_len);
2164 stream_read(demuxer->stream,dp->buffer+trak->stream_header_len,x);
2165 free(trak->stream_header);
2166 trak->stream_header = NULL;
2167 trak->stream_header_len = 0;
2168 dp->pts=pts;
2169 dp->flags=0;
2170 dp->pos=pos; // FIXME?
2171 ds_add_packet(ds,dp);
2172 } else
2173 ds_read_packet(ds,demuxer->stream,x,pts,pos,0);
2175 ++trak->pos;
2177 trak = NULL;
2178 if (demuxer->sub->id >= 0 && demuxer->sub->id < priv->track_db)
2179 trak = priv->tracks[demuxer->sub->id];
2180 if (trak) {
2181 int samplenr = 0;
2182 while (samplenr < trak->samples_size) {
2183 double subpts = (double)trak->samples[samplenr].pts / (double)trak->timescale;
2184 if (subpts >= pts) break;
2185 samplenr++;
2187 samplenr--;
2188 if (samplenr < 0)
2189 vo_sub = NULL;
2190 else if (samplenr != priv->current_sub) {
2191 sh_sub_t *sh = demuxer->sub->sh;
2192 off_t pos = trak->samples[samplenr].pos;
2193 int len = trak->samples[samplenr].size;
2194 double subpts = (double)trak->samples[samplenr].pts / (double)trak->timescale;
2195 stream_seek(demuxer->stream, pos);
2196 if (sh->type != 'v') {
2197 stream_skip(demuxer->stream, 2); // size
2198 len -= 2;
2199 if (len < 0) len = 0;
2200 if (len > MOV_MAX_SUBLEN) len = MOV_MAX_SUBLEN;
2201 sub_utf8 = 1;
2203 ds_read_packet(demuxer->sub, demuxer->stream, len, subpts, pos, 0);
2204 priv->current_sub = samplenr;
2208 return 1;
2212 static float mov_seek_track(mov_track_t* trak,float pts,int flags){
2214 // printf("MOV track seek called %5.3f \n",pts);
2215 if(flags&2) pts*=trak->length; else pts*=(float)trak->timescale;
2217 if(trak->samplesize){
2218 int sample=pts/trak->duration;
2219 // printf("MOV track seek - chunk: %d (pts: %5.3f dur=%d) \n",sample,pts,trak->duration);
2220 if(!(flags&1)) sample+=trak->chunks[trak->pos].sample; // relative
2221 trak->pos=0;
2222 while(trak->pos<trak->chunks_size && trak->chunks[trak->pos].sample<sample) ++trak->pos;
2223 if (trak->pos == trak->chunks_size) return -1;
2224 pts=(float)(trak->chunks[trak->pos].sample*trak->duration)/(float)trak->timescale;
2225 } else {
2226 unsigned int ipts;
2227 if(!(flags&1)) pts+=trak->samples[trak->pos].pts;
2228 if(pts<0) pts=0;
2229 ipts=pts;
2230 //printf("MOV track seek - sample: %d \n",ipts);
2231 for(trak->pos=0;trak->pos<trak->samples_size;++trak->pos){
2232 if(trak->samples[trak->pos].pts>=ipts) break; // found it!
2234 if (trak->pos == trak->samples_size) return -1;
2235 if(trak->keyframes_size){
2236 // find nearest keyframe
2237 int i;
2238 for(i=0;i<trak->keyframes_size;i++){
2239 if(trak->keyframes[i]>=trak->pos) break;
2241 if (i == trak->keyframes_size) return -1;
2242 if(i>0 && (trak->keyframes[i]-trak->pos) > (trak->pos-trak->keyframes[i-1]))
2243 --i;
2244 trak->pos=trak->keyframes[i];
2245 // printf("nearest keyframe: %d \n",trak->pos);
2247 pts=(float)trak->samples[trak->pos].pts/(float)trak->timescale;
2250 // printf("MOV track seek done: %5.3f \n",pts);
2252 return pts;
2255 static void demux_seek_mov(demuxer_t *demuxer,float pts,float audio_delay,int flags){
2256 mov_priv_t* priv=demuxer->priv;
2257 demux_stream_t* ds;
2258 mov_track_t* trak;
2260 // printf("MOV seek called %5.3f flag=%d \n",pts,flags);
2262 ds=demuxer->video;
2263 trak = stream_track(priv, ds);
2264 if (trak) {
2265 //if(flags&2) pts*=(float)trak->length/(float)trak->timescale;
2266 //if(!(flags&1)) pts+=ds->pts;
2267 ds->pts=mov_seek_track(trak,pts,flags);
2268 if (ds->pts < 0) ds->eof = 1;
2269 else pts = ds->pts;
2270 flags=1; // absolute seconds
2273 ds=demuxer->audio;
2274 trak = stream_track(priv, ds);
2275 if (trak) {
2276 //if(flags&2) pts*=(float)trak->length/(float)trak->timescale;
2277 //if(!(flags&1)) pts+=ds->pts;
2278 ds->pts=mov_seek_track(trak,pts,flags);
2279 if (ds->pts < 0) ds->eof = 1;
2284 static int demux_mov_control(demuxer_t *demuxer, int cmd, void *arg){
2285 mov_track_t* track;
2287 // try the video track
2288 track = stream_track(demuxer->priv, demuxer->video);
2289 if (!track || !track->length)
2290 // otherwise try to get the info from the audio track
2291 track = stream_track(demuxer->priv, demuxer->audio);
2293 if (!track || !track->length)
2294 return DEMUXER_CTRL_DONTKNOW;
2296 switch(cmd) {
2297 case DEMUXER_CTRL_GET_TIME_LENGTH:
2298 if (!track->timescale)
2299 return DEMUXER_CTRL_DONTKNOW;
2300 *((double *)arg) = (double)track->length / track->timescale;
2301 return DEMUXER_CTRL_OK;
2303 case DEMUXER_CTRL_GET_PERCENT_POS:
2305 off_t pos = track->pos;
2306 if (track->durmap_size >= 1)
2307 pos *= track->durmap[0].dur;
2308 *((int *)arg) = (int)(100 * pos / track->length);
2309 return DEMUXER_CTRL_OK;
2312 return DEMUXER_CTRL_NOTIMPL;
2316 const demuxer_desc_t demuxer_desc_mov = {
2317 "Quicktime/MP4 demuxer",
2318 "mov",
2319 "Quicktime/MOV",
2320 "Arpi, Al3x, Atmos, others",
2321 "Handles Quicktime, MP4, 3GP",
2322 DEMUXER_TYPE_MOV,
2323 0, // slow autodetect
2324 mov_check_file,
2325 demux_mov_fill_buffer,
2326 mov_read_header,
2327 demux_close_mov,
2328 demux_seek_mov,
2329 demux_mov_control