Mercurial > mplayer.hg
annotate libmpdemux/demux_mov.c @ 3205:1d2b2885bb8c
Minor fixes
author | nick |
---|---|
date | Thu, 29 Nov 2001 18:37:52 +0000 |
parents | a5f378f982cc |
children | 65fd971932dc |
rev | line source |
---|---|
2148 | 1 // QuickTime MOV file parser by A'rpi |
2 // based on TOOLS/movinfo.c by me & Al3x | |
3 // compressed header support from moov.c of the openquicktime lib. | |
2386 | 4 // References: http://openquicktime.sf.net/, http://www.heroinewarrior.com/ |
2542 | 5 // http://www.geocities.com/SiliconValley/Lakes/2160/fformats/files/mov.pdf |
1490 | 6 |
7 #include <stdio.h> | |
8 #include <stdlib.h> | |
9 #include <unistd.h> | |
10 | |
1567 | 11 #include "config.h" |
12 #include "mp_msg.h" | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1567
diff
changeset
|
13 #include "help_mp.h" |
1490 | 14 |
15 #include "stream.h" | |
16 #include "demuxer.h" | |
17 #include "stheader.h" | |
18 | |
2386 | 19 #include "bswap.h" |
20 | |
2148 | 21 #ifdef HAVE_ZLIB |
22 #include <zlib.h> | |
23 #endif | |
24 | |
2786 | 25 #include <fcntl.h> |
26 | |
1490 | 27 typedef struct { |
2100 | 28 unsigned int pts; // duration |
29 unsigned int size; | |
30 off_t pos; | |
31 } mov_sample_t; | |
32 | |
33 typedef struct { | |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
34 unsigned int sample; // number of the first sample in the chunk |
2115 | 35 unsigned int size; // number of samples in the chunk |
36 int desc; // for multiple codecs mode - not used | |
2100 | 37 off_t pos; |
38 } mov_chunk_t; | |
39 | |
40 typedef struct { | |
41 unsigned int first; | |
42 unsigned int spc; | |
43 unsigned int sdid; | |
44 } mov_chunkmap_t; | |
45 | |
46 typedef struct { | |
2115 | 47 unsigned int num; |
48 unsigned int dur; | |
49 } mov_durmap_t; | |
50 | |
51 typedef struct { | |
1490 | 52 int id; |
53 int type; | |
2101 | 54 int pos; |
55 // | |
1490 | 56 int timescale; |
2100 | 57 unsigned int length; |
2115 | 58 int samplesize; // 0 = variable |
59 int duration; // 0 = variable | |
1490 | 60 int width,height; // for video |
61 unsigned int fourcc; | |
2115 | 62 // |
2101 | 63 int tkdata_len; // track data |
64 unsigned char* tkdata; | |
65 int stdata_len; // stream data | |
66 unsigned char* stdata; | |
2100 | 67 int samples_size; |
68 mov_sample_t* samples; | |
69 int chunks_size; | |
70 mov_chunk_t* chunks; | |
71 int chunkmap_size; | |
72 mov_chunkmap_t* chunkmap; | |
2115 | 73 int durmap_size; |
74 mov_durmap_t* durmap; | |
2544 | 75 int keyframes_size; |
76 unsigned int* keyframes; | |
1490 | 77 } mov_track_t; |
78 | |
2100 | 79 void mov_build_index(mov_track_t* trak){ |
80 int i,j,s; | |
81 int last=trak->chunks_size; | |
2115 | 82 unsigned int pts=0; |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
83 mp_msg(MSGT_DEMUX, MSGL_HINT, "MOV track: %d chunks, %d samples\n",trak->chunks_size,trak->samples_size); |
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
84 mp_msg(MSGT_DEMUX, MSGL_HINT, "pts=%d scale=%d time=%5.3f\n",trak->length,trak->timescale,(float)trak->length/(float)trak->timescale); |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
85 |
2100 | 86 // process chunkmap: |
87 i=trak->chunkmap_size; | |
88 while(i>0){ | |
89 --i; | |
90 for(j=trak->chunkmap[i].first;j<last;j++){ | |
91 trak->chunks[j].desc=trak->chunkmap[i].sdid; | |
92 trak->chunks[j].size=trak->chunkmap[i].spc; | |
93 } | |
94 last=trak->chunkmap[i].first; | |
95 } | |
2115 | 96 |
97 // calc pts of chunks: | |
98 s=0; | |
99 for(j=0;j<trak->chunks_size;j++){ | |
100 trak->chunks[j].sample=s; | |
101 s+=trak->chunks[j].size; | |
102 } | |
103 | |
104 if(!trak->samples_size){ | |
105 // constant sampesize | |
106 if(trak->durmap_size==1 || (trak->durmap_size==2 && trak->durmap[1].num==1)){ | |
2227 | 107 trak->duration=trak->durmap[0].dur; |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
108 } else mp_msg(MSGT_DEMUX, MSGL_ERR, "*** constant samplesize & variable duration not yet supported! ***\nContact the author if you have such sample file!\n"); |
2115 | 109 return; |
110 } | |
111 | |
112 // calc pts: | |
113 s=0; | |
114 for(j=0;j<trak->durmap_size;j++){ | |
115 for(i=0;i<trak->durmap[j].num;i++){ | |
116 trak->samples[s].pts=pts; | |
117 ++s; | |
118 pts+=trak->durmap[j].dur; | |
119 } | |
120 } | |
2100 | 121 |
122 // calc sample offsets | |
123 s=0; | |
124 for(j=0;j<trak->chunks_size;j++){ | |
125 off_t pos=trak->chunks[j].pos; | |
126 for(i=0;i<trak->chunks[j].size;i++){ | |
127 trak->samples[s].pos=pos; | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
128 mp_msg(MSGT_DEMUX, MSGL_DBG3, "Sample %5d: pts=%8d off=0x%08X size=%d\n",s, |
2100 | 129 trak->samples[s].pts, |
130 (int)trak->samples[s].pos, | |
131 trak->samples[s].size); | |
132 pos+=trak->samples[s].size; | |
133 ++s; | |
134 } | |
135 } | |
136 | |
137 } | |
138 | |
1490 | 139 #define MOV_MAX_TRACKS 256 |
140 | |
141 #define MOV_TRAK_UNKNOWN 0 | |
142 #define MOV_TRAK_VIDEO 1 | |
143 #define MOV_TRAK_AUDIO 2 | |
2532 | 144 #define MOV_TRAK_FLASH 3 |
2786 | 145 #define MOV_TRAK_GENERIC 4 |
3071 | 146 #define MOV_TRAK_CODE 5 |
1490 | 147 |
148 typedef struct { | |
149 off_t moov_start; | |
150 off_t moov_end; | |
151 off_t mdat_start; | |
152 off_t mdat_end; | |
153 int track_db; | |
154 mov_track_t* tracks[MOV_MAX_TRACKS]; | |
155 } mov_priv_t; | |
156 | |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
157 #warning "FIXME - mov support is only working perfectly on Little Endian systems?!" |
3071 | 158 //#ifdef WORDS_BIGENDIAN |
159 //#define MOV_FOURCC(a,b,c,d) ((d)|(c<<8)|(b<<16)|(a<<24)) | |
160 //#else | |
1490 | 161 #define MOV_FOURCC(a,b,c,d) ((a<<24)|(b<<16)|(c<<8)|(d)) |
3071 | 162 //#endif |
1490 | 163 |
164 int mov_check_file(demuxer_t* demuxer){ | |
165 int flags=0; | |
2879 | 166 int no=0; |
1490 | 167 mov_priv_t* priv=malloc(sizeof(mov_priv_t)); |
168 | |
1567 | 169 mp_msg(MSGT_DEMUX,MSGL_V,"Checking for MOV\n"); |
1490 | 170 |
171 memset(priv,0,sizeof(mov_priv_t)); | |
172 demuxer->priv=priv; | |
173 | |
174 while(1){ | |
175 off_t len=stream_read_dword(demuxer->stream); | |
176 unsigned int id=stream_read_dword(demuxer->stream); | |
177 if(stream_eof(demuxer->stream)) break; // EOF | |
178 if(len<8) break; // invalid chunk | |
179 switch(id){ | |
180 case MOV_FOURCC('m','o','o','v'): | |
1567 | 181 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Movie header found!\n"); |
1490 | 182 priv->moov_start=stream_tell(demuxer->stream); |
183 priv->moov_end=priv->moov_start+len-8; | |
184 flags|=1; | |
185 break; | |
186 case MOV_FOURCC('m','d','a','t'): | |
1567 | 187 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Movie DATA found!\n"); |
1490 | 188 priv->mdat_start=stream_tell(demuxer->stream); |
189 priv->mdat_end=priv->mdat_start+len-8; | |
190 flags|=2; | |
191 break; | |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
192 case MOV_FOURCC('f','r','e','e'): |
2942 | 193 case MOV_FOURCC('s','k','i','p'): |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
194 /* unused, if you edit a mov, you can use space provided by free atoms (redefining it) */ |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
195 break; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
196 case MOV_FOURCC('w','i','d','e'): |
2879 | 197 break; |
1490 | 198 default: |
2879 | 199 if(no==0) return 0; // first chunk is bad! |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
200 id = bswap_32(id); |
1567 | 201 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",&id,(int)len); |
1490 | 202 } |
203 if(!stream_skip(demuxer->stream,len-8)) break; | |
2879 | 204 ++no; |
1490 | 205 } |
2148 | 206 |
207 if(flags==1) | |
208 mp_msg(MSGT_DEMUX,MSGL_WARN,"MOV: missing data (mdat) chunk! Maybe broken file...\n"); | |
209 else if(flags==2) | |
210 mp_msg(MSGT_DEMUX,MSGL_WARN,"MOV: missing header (moov/cmov) chunk! Maybe broken file...\n"); | |
1490 | 211 |
212 return (flags==3); | |
213 } | |
214 | |
215 static void lschunks(demuxer_t* demuxer,int level,off_t endpos,mov_track_t* trak){ | |
216 mov_priv_t* priv=demuxer->priv; | |
217 while(1){ | |
218 off_t pos; | |
219 off_t len; | |
220 unsigned int id; | |
221 // | |
222 pos=stream_tell(demuxer->stream); | |
2148 | 223 // printf("stream_tell==%d\n",pos); |
1490 | 224 if(pos>=endpos) return; // END |
225 len=stream_read_dword(demuxer->stream); | |
2148 | 226 // printf("len==%d\n",len); |
1490 | 227 if(len<8) return; // error |
228 len-=8; | |
229 id=stream_read_dword(demuxer->stream); | |
230 // | |
1567 | 231 mp_msg(MSGT_DEMUX,MSGL_DBG2,"lschunks %.4s %d\n",&id,(int)len); |
1490 | 232 // |
233 if(trak){ | |
234 switch(id){ | |
3071 | 235 case MOV_FOURCC('f','r','e','e'): |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
236 case MOV_FOURCC('u','d','t','a'): |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
237 /* here not supported :p */ |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
238 break; |
1490 | 239 case MOV_FOURCC('t','k','h','d'): { |
1567 | 240 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sTrack header!\n",level,""); |
2101 | 241 // read codec data |
242 trak->tkdata_len=len; | |
243 trak->tkdata=malloc(trak->tkdata_len); | |
244 stream_read(demuxer->stream,trak->tkdata,trak->tkdata_len); | |
1490 | 245 break; |
246 } | |
247 case MOV_FOURCC('m','d','h','d'): { | |
2100 | 248 unsigned int tmp; |
1567 | 249 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sMedia header!\n",level,""); |
2100 | 250 #if 0 |
251 tmp=stream_read_dword(demuxer->stream); | |
252 printf("dword1: 0x%08X (%d)\n",tmp,tmp); | |
253 tmp=stream_read_dword(demuxer->stream); | |
254 printf("dword2: 0x%08X (%d)\n",tmp,tmp); | |
255 tmp=stream_read_dword(demuxer->stream); | |
256 printf("dword3: 0x%08X (%d)\n",tmp,tmp); | |
257 tmp=stream_read_dword(demuxer->stream); | |
258 printf("dword4: 0x%08X (%d)\n",tmp,tmp); | |
259 tmp=stream_read_dword(demuxer->stream); | |
260 printf("dword5: 0x%08X (%d)\n",tmp,tmp); | |
261 tmp=stream_read_dword(demuxer->stream); | |
262 printf("dword6: 0x%08X (%d)\n",tmp,tmp); | |
263 #endif | |
264 stream_skip(demuxer->stream,12); | |
1490 | 265 // read timescale |
2100 | 266 trak->timescale=stream_read_dword(demuxer->stream); |
267 // read length | |
268 trak->length=stream_read_dword(demuxer->stream); | |
1490 | 269 break; |
270 } | |
271 case MOV_FOURCC('v','m','h','d'): { | |
1567 | 272 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sVideo header!\n",level,""); |
1490 | 273 trak->type=MOV_TRAK_VIDEO; |
274 // read video data | |
275 break; | |
276 } | |
277 case MOV_FOURCC('s','m','h','d'): { | |
1567 | 278 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sSound header!\n",level,""); |
1490 | 279 trak->type=MOV_TRAK_AUDIO; |
280 // read audio data | |
281 break; | |
282 } | |
2786 | 283 case MOV_FOURCC('g','m','h','d'): { |
284 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sGeneric header!\n",level,""); | |
285 trak->type=MOV_TRAK_GENERIC; | |
286 break; | |
287 } | |
1490 | 288 case MOV_FOURCC('s','t','s','d'): { |
289 int i=stream_read_dword(demuxer->stream); // temp! | |
290 int count=stream_read_dword(demuxer->stream); | |
1567 | 291 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sDescription list! (cnt:%d)\n",level,"",count); |
1490 | 292 for(i=0;i<count;i++){ |
293 off_t pos=stream_tell(demuxer->stream); | |
294 off_t len=stream_read_dword(demuxer->stream); | |
295 unsigned int fourcc=stream_read_dword_le(demuxer->stream); | |
296 if(len<8) break; // error | |
1567 | 297 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*s desc #%d: %.4s",level,"",i,&fourcc); |
1490 | 298 if(!i){ |
299 trak->fourcc=fourcc; | |
300 // read codec data | |
2101 | 301 trak->stdata_len=len-8; |
302 trak->stdata=malloc(trak->stdata_len); | |
303 stream_read(demuxer->stream,trak->stdata,trak->stdata_len); | |
304 if(trak->type==MOV_TRAK_VIDEO && trak->stdata_len>43){ | |
305 mp_msg(MSGT_DEMUX,MSGL_V," '%.*s'",trak->stdata_len-43,trak->stdata+43); | |
1490 | 306 } |
307 } | |
1567 | 308 mp_msg(MSGT_DEMUX,MSGL_V,"\n"); |
1490 | 309 if(fourcc!=trak->fourcc && i) |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1567
diff
changeset
|
310 mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_MOVvariableFourCC); |
1490 | 311 if(!stream_seek(demuxer->stream,pos+len)) break; |
312 } | |
313 break; | |
314 } | |
2100 | 315 case MOV_FOURCC('s','t','t','s'): { |
316 int temp=stream_read_dword(demuxer->stream); | |
317 int len=stream_read_dword(demuxer->stream); | |
318 int i; | |
319 int x=0; | |
320 unsigned int pts=0; | |
321 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sSample duration table! (%d blocks)\n",level,"",len); | |
2115 | 322 trak->durmap=malloc(sizeof(mov_durmap_t)*len); |
323 memset(trak->durmap,0,sizeof(mov_durmap_t)*len); | |
324 trak->durmap_size=len; | |
2100 | 325 for(i=0;i<len;i++){ |
2115 | 326 trak->durmap[i].num=stream_read_dword(demuxer->stream); |
327 trak->durmap[i].dur=stream_read_dword(demuxer->stream); | |
328 pts+=trak->durmap[i].num*trak->durmap[i].dur; | |
2386 | 329 |
2786 | 330 if(i==0 && trak->type == MOV_TRAK_VIDEO) |
2386 | 331 { |
332 sh_video_t* sh=new_sh_video(demuxer,priv->track_db); | |
333 if (!sh->fps) | |
334 sh->fps = trak->timescale/trak->durmap[i].dur; | |
335 /* initial fps */ | |
336 } | |
2100 | 337 } |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
338 if(trak->length!=pts) mp_msg(MSGT_DEMUX, MSGL_WARN, "Warning! pts=%d length=%d\n",pts,trak->length); |
2100 | 339 break; |
340 } | |
341 case MOV_FOURCC('s','t','s','c'): { | |
342 int temp=stream_read_dword(demuxer->stream); | |
343 int len=stream_read_dword(demuxer->stream); | |
2533 | 344 int ver = (temp << 24); |
345 int flags = (temp << 16)|(temp<<8)|temp; | |
2100 | 346 int i; |
2533 | 347 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sSample->Chunk mapping table! (%d blocks) (ver:%d,flags:%ld)\n", |
348 level,"",len,ver,flags); | |
2100 | 349 // read data: |
350 trak->chunkmap_size=len; | |
351 trak->chunkmap=malloc(sizeof(mov_chunkmap_t)*len); | |
352 for(i=0;i<len;i++){ | |
2103 | 353 trak->chunkmap[i].first=stream_read_dword(demuxer->stream)-1; |
2100 | 354 trak->chunkmap[i].spc=stream_read_dword(demuxer->stream); |
355 trak->chunkmap[i].sdid=stream_read_dword(demuxer->stream); | |
356 } | |
357 break; | |
358 } | |
359 case MOV_FOURCC('s','t','s','z'): { | |
360 int temp=stream_read_dword(demuxer->stream); | |
361 int ss=stream_read_dword(demuxer->stream); | |
2533 | 362 int ver = (temp << 24); |
363 int flags = (temp << 16)|(temp<<8)|temp; | |
364 int entries=stream_read_dword(demuxer->stream); | |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
365 int i; |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
366 |
2533 | 367 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sSample size table! (entries=%d ss=%d) (ver:%d,flags:%ld)\n", |
368 level,"",entries,ss,ver,flags); | |
2786 | 369 trak->samplesize=ss; |
370 if (!ss) { | |
371 // variable samplesize | |
372 trak->samples=realloc(trak->samples,sizeof(mov_sample_t)*entries); | |
373 trak->samples_size=entries; | |
374 for(i=0;i<entries;i++) | |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
375 trak->samples[i].size=stream_read_dword(demuxer->stream); |
2786 | 376 } |
2100 | 377 break; |
378 } | |
379 case MOV_FOURCC('s','t','c','o'): { | |
380 int temp=stream_read_dword(demuxer->stream); | |
381 int len=stream_read_dword(demuxer->stream); | |
382 int i; | |
383 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sChunk offset table! (%d chunks)\n",level,"",len); | |
384 // extend array if needed: | |
385 if(len>trak->chunks_size){ | |
386 trak->chunks=realloc(trak->chunks,sizeof(mov_chunk_t)*len); | |
387 trak->chunks_size=len; | |
388 } | |
389 // read elements: | |
390 for(i=0;i<len;i++) trak->chunks[i].pos=stream_read_dword(demuxer->stream); | |
391 break; | |
392 } | |
2533 | 393 case MOV_FOURCC('s','t','s','s'): { |
394 int temp=stream_read_dword(demuxer->stream); | |
395 int entries=stream_read_dword(demuxer->stream); | |
396 int ver = (temp << 24); | |
397 int flags = (temp << 16)|(temp<<8)|temp; | |
398 int i; | |
2542 | 399 mp_msg(MSGT_DEMUX, MSGL_V,"MOV: %*sSyncing samples (keyframes) table! (%d entries) (ver:%d,flags:%ld)\n", |
2533 | 400 level, "",entries, ver, flags); |
2544 | 401 trak->keyframes_size=entries; |
402 trak->keyframes=malloc(sizeof(unsigned int)*entries); | |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
403 for (i=0;i<entries;i++) |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
404 trak->keyframes[i]=stream_read_dword(demuxer->stream)-1; |
2544 | 405 // for (i=0;i<entries;i++) printf("%3d: %d\n",i,trak->keyframes[i]); |
2533 | 406 break; |
407 } | |
1490 | 408 case MOV_FOURCC('m','d','i','a'): { |
1567 | 409 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sMedia stream!\n",level,""); |
1490 | 410 lschunks(demuxer,level+1,pos+len,trak); |
411 break; | |
412 } | |
413 case MOV_FOURCC('m','i','n','f'): { | |
1567 | 414 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sMedia info!\n",level,""); |
1490 | 415 lschunks(demuxer,level+1,pos+len,trak); |
416 break; | |
417 } | |
418 case MOV_FOURCC('s','t','b','l'): { | |
1567 | 419 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: %*sSample info!\n",level,""); |
1490 | 420 lschunks(demuxer,level+1,pos+len,trak); |
421 break; | |
422 } | |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
423 case MOV_FOURCC('e','d','t','s'): { |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
424 mp_msg(MSGT_DEMUX, MSGL_V, "MOV: %*sEdit atom!\n", level, ""); |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
425 lschunks(demuxer,level+1,pos+len,trak); |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
426 break; |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
427 } |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
428 case MOV_FOURCC('e','l','s','t'): { |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
429 int temp=stream_read_dword(demuxer->stream); |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
430 int entries=stream_read_dword(demuxer->stream); |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
431 int ver = (temp << 24); |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
432 int flags = (temp << 16)|(temp<<8)|temp; |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
433 int i; |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
434 |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
435 mp_msg(MSGT_DEMUX, MSGL_V,"MOV: %*sEdit list table (%d entries) (ver:%d,flags:%ld)\n", |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
436 level, "",entries, ver, flags); |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
437 #if 0 |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
438 for (i=0;i<entries;i++) |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
439 { |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
440 printf("entry#%d: dur: %ld mtime: %ld mrate: %ld\n", |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
441 i, stream_read_dword(demuxer->stream), |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
442 stream_read_dword(demuxer->stream), |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
443 stream_read_dword(demuxer->stream)); |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
444 } |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
445 #endif |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
446 break; |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
447 } |
2786 | 448 case MOV_FOURCC('c','o','d','e'): |
449 { | |
3071 | 450 #warning "Implement atom 'code' for FLASH support" |
2786 | 451 } |
2532 | 452 default: |
453 id = bswap_32(id); | |
454 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",&id,(int)len); | |
455 break; | |
1490 | 456 }//switch(id) |
2532 | 457 } else { /* not in track */ |
458 switch(id) { | |
459 case MOV_FOURCC('t','r','a','k'): { | |
1490 | 460 // if(trak) printf("MOV: Warning! trak in trak?\n"); |
461 if(priv->track_db>=MOV_MAX_TRACKS){ | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1567
diff
changeset
|
462 mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_MOVtooManyTrk); |
1490 | 463 return; |
464 } | |
465 trak=malloc(sizeof(mov_track_t)); | |
466 memset(trak,0,sizeof(mov_track_t)); | |
1567 | 467 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: Track #%d:\n",priv->track_db); |
1490 | 468 trak->id=priv->track_db; |
2100 | 469 priv->tracks[priv->track_db]=trak; |
1490 | 470 lschunks(demuxer,level+1,pos+len,trak); |
2100 | 471 mov_build_index(trak); |
472 switch(trak->type){ | |
473 case MOV_TRAK_AUDIO: { | |
474 sh_audio_t* sh=new_sh_audio(demuxer,priv->track_db); | |
475 sh->format=trak->fourcc; | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
476 mp_msg(MSGT_DEMUX, MSGL_INFO, "Audio bits: %d chans: %d\n",trak->stdata[19],trak->stdata[17]); |
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
477 mp_msg(MSGT_DEMUX, MSGL_INFO, "Fourcc: %.4s\n",&trak->fourcc); |
2543 | 478 #if 0 |
479 { FILE* f=fopen("stdata.dat","wb"); | |
480 fwrite(trak->stdata,trak->stdata_len,1,f); | |
481 fclose(f); } | |
482 { FILE* f=fopen("tkdata.dat","wb"); | |
483 fwrite(trak->tkdata,trak->tkdata_len,1,f); | |
484 fclose(f); } | |
485 #endif | |
2101 | 486 // Emulate WAVEFORMATEX struct: |
487 sh->wf=malloc(sizeof(WAVEFORMATEX)); | |
488 memset(sh->wf,0,sizeof(WAVEFORMATEX)); | |
2543 | 489 sh->wf->nChannels=(trak->stdata[16]<<8)+trak->stdata[17]; |
490 sh->wf->wBitsPerSample=(trak->stdata[18]<<8)+trak->stdata[19]; | |
491 // sh->wf->nSamplesPerSec=trak->timescale; | |
492 sh->wf->nSamplesPerSec=(trak->stdata[24]<<8)+trak->stdata[25]; | |
493 sh->wf->nAvgBytesPerSec=sh->wf->nChannels*sh->wf->wBitsPerSample*sh->wf->nSamplesPerSec/8; | |
2101 | 494 // Selection: |
495 if(demuxer->audio->id==-1 || demuxer->audio->id==priv->track_db){ | |
496 // (auto)selected audio track: | |
497 demuxer->audio->id=priv->track_db; | |
498 demuxer->audio->sh=sh; sh->ds=demuxer->audio; | |
499 } | |
2100 | 500 break; |
501 } | |
502 case MOV_TRAK_VIDEO: { | |
503 sh_video_t* sh=new_sh_video(demuxer,priv->track_db); | |
504 sh->format=trak->fourcc; | |
2386 | 505 if(!sh->fps) sh->fps=trak->timescale; |
2100 | 506 sh->frametime=1.0f/sh->fps; |
2101 | 507 sh->disp_w=trak->tkdata[77]|(trak->tkdata[76]<<8); |
508 sh->disp_h=trak->tkdata[81]|(trak->tkdata[80]<<8); | |
509 | |
510 // emulate BITMAPINFOHEADER: | |
511 sh->bih=malloc(sizeof(BITMAPINFOHEADER)); | |
512 memset(sh->bih,0,sizeof(BITMAPINFOHEADER)); | |
513 sh->bih->biSize=40; | |
514 sh->bih->biWidth=sh->disp_w; | |
515 sh->bih->biHeight=sh->disp_h; | |
516 sh->bih->biPlanes=0; | |
517 sh->bih->biBitCount=16; | |
518 sh->bih->biCompression=trak->fourcc; | |
519 sh->bih->biSizeImage=sh->bih->biWidth*sh->bih->biHeight; | |
520 | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
521 mp_msg(MSGT_DEMUX, MSGL_INFO, "Image size: %d x %d\n",sh->disp_w,sh->disp_h); |
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
522 mp_msg(MSGT_DEMUX, MSGL_INFO, "Fourcc: %.4s Codec: '%.*s'\n",&trak->fourcc,trak->stdata_len-43,trak->stdata+43); |
2115 | 523 |
2101 | 524 if(demuxer->video->id==-1 || demuxer->video->id==priv->track_db){ |
525 // (auto)selected video track: | |
526 demuxer->video->id=priv->track_db; | |
527 demuxer->video->sh=sh; sh->ds=demuxer->video; | |
528 } | |
2100 | 529 break; |
530 } | |
2786 | 531 case MOV_TRAK_GENERIC: |
532 mp_msg(MSGT_DEMUX, MSGL_INFO, "Generic track - not completly understood! (id: %d)\n", | |
533 trak->id); | |
3071 | 534 #warning "Also this contains the FLASH data" |
2786 | 535 #if 0 |
536 mp_msg(MSGT_DEMUX, MSGL_INFO, "Extracting samples to files (possibly this is an flash anim)\n"); | |
537 { | |
538 int pos = stream_tell(demuxer->stream); | |
539 int i; | |
540 int fd; | |
541 char name[20]; | |
542 | |
543 for (i=0; i<trak->samples_size; i++) | |
544 { | |
545 char buf[trak->samples[i].size]; | |
546 stream_seek(demuxer->stream, trak->samples[i].pos); | |
547 snprintf((char *)&name[0], 20, "samp%d", i); | |
548 fd = open((char *)&name[0], O_CREAT|O_WRONLY); | |
549 stream_read(demuxer->stream, &buf[0], trak->samples[i].size); | |
550 write(fd, &buf[0], trak->samples[i].size); | |
551 close(fd); | |
552 } | |
553 for (i=0; i<trak->chunks_size; i++) | |
554 { | |
555 char buf[trak->length]; | |
556 stream_seek(demuxer->stream, trak->chunks[i].pos); | |
557 snprintf((char *)&name[0], 20, "chunk%d", i); | |
558 fd = open((char *)&name[0], O_CREAT|O_WRONLY); | |
559 stream_read(demuxer->stream, &buf[0], trak->length); | |
560 write(fd, &buf[0], trak->length); | |
561 close(fd); | |
562 } | |
563 if (trak->samplesize > 0) | |
564 { | |
565 char *buf; | |
566 | |
567 buf = malloc(trak->samplesize); | |
568 stream_seek(demuxer->stream, trak->chunks[0].pos); | |
569 snprintf((char *)&name[0], 20, "trak%d", trak->id); | |
570 fd = open((char *)&name[0], O_CREAT|O_WRONLY); | |
571 stream_read(demuxer->stream, buf, trak->samplesize); | |
572 write(fd, buf, trak->samplesize); | |
573 close(fd); | |
574 } | |
575 stream_seek(demuxer->stream, pos); | |
576 } | |
577 #endif | |
578 break; | |
2532 | 579 default: |
580 mp_msg(MSGT_DEMUX, MSGL_INFO, "Unknown track type found (type: %d)\n", trak->type); | |
581 break; | |
2100 | 582 } |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
583 mp_msg(MSGT_DEMUX, MSGL_INFO, "--------------\n"); |
2100 | 584 priv->track_db++; |
1490 | 585 trak=NULL; |
2532 | 586 break; |
587 } | |
2148 | 588 #ifndef HAVE_ZLIB |
2532 | 589 case MOV_FOURCC('c','m','o','v'): { |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1567
diff
changeset
|
590 mp_msg(MSGT_DEMUX,MSGL_ERR,MSGTR_MOVcomprhdr); |
1490 | 591 return; |
592 } | |
2148 | 593 #else |
2532 | 594 case MOV_FOURCC('c','m','o','v'): { |
2148 | 595 // mp_msg(MSGT_DEMUX,MSGL_ERR,MSGTR_MOVcomprhdr); |
596 lschunks(demuxer,level+1,pos+len,NULL); | |
2532 | 597 break; |
598 } | |
599 case MOV_FOURCC('d','c','o','m'): { | |
2148 | 600 // int temp=stream_read_dword(demuxer->stream); |
2386 | 601 unsigned int len=bswap_32(stream_read_dword(demuxer->stream)); |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
602 mp_msg(MSGT_DEMUX, MSGL_INFO, "Compressed header uses %.4s algo!\n",&len); |
2532 | 603 break; |
604 } | |
605 case MOV_FOURCC('c','m','v','d'): { | |
2148 | 606 // int temp=stream_read_dword(demuxer->stream); |
607 unsigned int moov_sz=stream_read_dword(demuxer->stream); | |
608 unsigned int cmov_sz=len-4; | |
609 unsigned char* cmov_buf=malloc(cmov_sz); | |
610 unsigned char* moov_buf=malloc(moov_sz+16); | |
611 int zret; | |
612 z_stream zstrm; | |
613 stream_t* backup; | |
614 | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
615 mp_msg(MSGT_DEMUX, MSGL_INFO, "Compressed header size: %d / %d\n",cmov_sz,moov_sz); |
2148 | 616 |
617 stream_read(demuxer->stream,cmov_buf,cmov_sz); | |
618 | |
619 zstrm.zalloc = (alloc_func)0; | |
620 zstrm.zfree = (free_func)0; | |
621 zstrm.opaque = (voidpf)0; | |
622 zstrm.next_in = cmov_buf; | |
623 zstrm.avail_in = cmov_sz; | |
624 zstrm.next_out = moov_buf; | |
625 zstrm.avail_out = moov_sz; | |
626 | |
627 zret = inflateInit(&zstrm); | |
628 if (zret != Z_OK) | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
629 { mp_msg(MSGT_DEMUX, MSGL_ERR, "QT cmov: inflateInit err %d\n",zret); |
2148 | 630 return; |
631 } | |
632 zret = inflate(&zstrm, Z_NO_FLUSH); | |
633 if ((zret != Z_OK) && (zret != Z_STREAM_END)) | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
634 { mp_msg(MSGT_DEMUX, MSGL_ERR, "QT cmov inflate: ERR %d\n",zret); |
2148 | 635 return; |
636 } | |
637 #if 0 | |
638 else { | |
639 FILE *DecOut; | |
640 DecOut = fopen("Out.bin", "w"); | |
641 fwrite(moov_buf, 1, moov_sz, DecOut); | |
642 fclose(DecOut); | |
643 } | |
644 #endif | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
645 if(moov_sz != zstrm.total_out) |
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
646 mp_msg(MSGT_DEMUX, MSGL_WARN, "Warning! moov size differs cmov: %d zlib: %d\n",moov_sz,zstrm.total_out); |
2148 | 647 zret = inflateEnd(&zstrm); |
648 | |
649 backup=demuxer->stream; | |
650 demuxer->stream=new_memory_stream(moov_buf,moov_sz); | |
651 stream_skip(demuxer->stream,8); | |
652 lschunks(demuxer,level+1,moov_sz,NULL); // parse uncompr. 'moov' | |
653 //free_stream(demuxer->stream); | |
654 demuxer->stream=backup; | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
655 free(cmov_buf); |
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
656 free(moov_buf); |
2532 | 657 break; |
2148 | 658 } |
659 #endif | |
2532 | 660 case MOV_FOURCC('u','d','t','a'): |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
661 { |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
662 unsigned int udta_id; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
663 off_t udta_len; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
664 off_t udta_size = len; |
1490 | 665 |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
666 mp_msg(MSGT_DEMUX, MSGL_DBG2, "mov: user data record found\n"); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
667 mp_msg(MSGT_DEMUX, MSGL_INFO, "Quicktime Clip Info:\n"); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
668 |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
669 while((len > 8) && (udta_size > 8)) |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
670 { |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
671 udta_len = stream_read_dword(demuxer->stream); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
672 udta_id = stream_read_dword(demuxer->stream); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
673 udta_size -= 8; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
674 mp_msg(MSGT_DEMUX, MSGL_DBG2, "udta_id: %.4s (len: %d)\n", &udta_id, udta_len); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
675 switch (udta_id) |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
676 { |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
677 case MOV_FOURCC(0xa9,'c','p','y'): |
2542 | 678 case MOV_FOURCC(0xa9,'d','a','y'): |
679 case MOV_FOURCC(0xa9,'d','i','r'): | |
680 /* 0xa9,'e','d','1' - '9' : edit timestamps */ | |
681 case MOV_FOURCC(0xa9,'f','m','t'): | |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
682 case MOV_FOURCC(0xa9,'i','n','f'): |
2542 | 683 case MOV_FOURCC(0xa9,'p','r','d'): |
684 case MOV_FOURCC(0xa9,'p','r','f'): | |
685 case MOV_FOURCC(0xa9,'r','e','q'): | |
686 case MOV_FOURCC(0xa9,'s','r','c'): | |
687 case MOV_FOURCC('n','a','m','e'): | |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
688 case MOV_FOURCC(0xa9,'n','a','m'): |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
689 case MOV_FOURCC(0xa9,'A','R','T'): |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
690 case MOV_FOURCC(0xa9,'c','m','t'): |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
691 case MOV_FOURCC(0xa9,'a','u','t'): |
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
692 case MOV_FOURCC(0xa9,'s','w','r'): |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
693 { |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
694 off_t text_len = stream_read_word(demuxer->stream); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
695 char text[text_len+2+1]; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
696 stream_read(demuxer->stream, (char *)&text, text_len+2); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
697 text[text_len+2] = 0x0; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
698 switch(udta_id) |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
699 { |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
700 case MOV_FOURCC(0xa9,'a','u','t'): |
3071 | 701 demux_info_add(demuxer, "author", &text[2]); |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
702 mp_msg(MSGT_DEMUX, MSGL_INFO, " Author: %s\n", &text[2]); |
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
703 break; |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
704 case MOV_FOURCC(0xa9,'c','p','y'): |
3071 | 705 demux_info_add(demuxer, "copyright", &text[2]); |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
706 mp_msg(MSGT_DEMUX, MSGL_INFO, " Copyright: %s\n", &text[2]); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
707 break; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
708 case MOV_FOURCC(0xa9,'i','n','f'): |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
709 mp_msg(MSGT_DEMUX, MSGL_INFO, " Info: %s\n", &text[2]); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
710 break; |
2542 | 711 case MOV_FOURCC('n','a','m','e'): |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
712 case MOV_FOURCC(0xa9,'n','a','m'): |
3071 | 713 demux_info_add(demuxer, "name", &text[2]); |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
714 mp_msg(MSGT_DEMUX, MSGL_INFO, " Name: %s\n", &text[2]); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
715 break; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
716 case MOV_FOURCC(0xa9,'A','R','T'): |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
717 mp_msg(MSGT_DEMUX, MSGL_INFO, " Artist: %s\n", &text[2]); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
718 break; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
719 case MOV_FOURCC(0xa9,'d','i','r'): |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
720 mp_msg(MSGT_DEMUX, MSGL_INFO, " Director: %s\n", &text[2]); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
721 break; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
722 case MOV_FOURCC(0xa9,'c','m','t'): |
3071 | 723 demux_info_add(demuxer, "comments", &text[2]); |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
724 mp_msg(MSGT_DEMUX, MSGL_INFO, " Comment: %s\n", &text[2]); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
725 break; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
726 case MOV_FOURCC(0xa9,'r','e','q'): |
2542 | 727 mp_msg(MSGT_DEMUX, MSGL_INFO, " Requirements: %s\n", &text[2]); |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
728 break; |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
729 case MOV_FOURCC(0xa9,'s','w','r'): |
3071 | 730 demux_info_add(demuxer, "encoder", &text[2]); |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
731 mp_msg(MSGT_DEMUX, MSGL_INFO, " Software: %s\n", &text[2]); |
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
732 break; |
2542 | 733 case MOV_FOURCC(0xa9,'d','a','y'): |
734 mp_msg(MSGT_DEMUX, MSGL_INFO, " Creation timestamp: %s\n", &text[2]); | |
735 break; | |
736 case MOV_FOURCC(0xa9,'f','m','t'): | |
737 mp_msg(MSGT_DEMUX, MSGL_INFO, " Format: %s\n", &text[2]); | |
738 break; | |
739 case MOV_FOURCC(0xa9,'p','r','d'): | |
740 mp_msg(MSGT_DEMUX, MSGL_INFO, " Producer: %s\n", &text[2]); | |
741 break; | |
742 case MOV_FOURCC(0xa9,'p','r','f'): | |
743 mp_msg(MSGT_DEMUX, MSGL_INFO, " Performer(s): %s\n", &text[2]); | |
744 break; | |
745 case MOV_FOURCC(0xa9,'s','r','c'): | |
746 mp_msg(MSGT_DEMUX, MSGL_INFO, " Source providers: %s\n", &text[2]); | |
747 break; | |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
748 } |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
749 udta_size -= 4+text_len; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
750 break; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
751 } |
2542 | 752 /* some other shits: WLOC - window location, |
753 LOOP - looping style, | |
754 SelO - play only selected frames | |
755 AllF - play all frames | |
756 */ | |
757 case MOV_FOURCC('W','L','O','C'): | |
758 case MOV_FOURCC('L','O','O','P'): | |
759 case MOV_FOURCC('S','e','l','O'): | |
760 case MOV_FOURCC('A','l','l','F'): | |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
761 default: |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
762 { |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
763 char dump[udta_len-4]; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
764 stream_read(demuxer->stream, (char *)&dump, udta_len-4-4); |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
765 udta_size -= udta_len; |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
766 } |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
767 } |
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
768 } |
2532 | 769 break; |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
770 } /* eof udta */ |
2532 | 771 default: |
772 id = bswap_32(id); | |
773 mp_msg(MSGT_DEMUX,MSGL_V,"MOV: unknown chunk: %.4s %d\n",&id,(int)len); | |
774 } /* endof switch */ | |
775 } /* endof else */ | |
2429
8d00b25169af
handling free chunk (wide needs implementation) and displaying clip info (datas from udta chunk)
alex
parents:
2419
diff
changeset
|
776 |
1490 | 777 pos+=len+8; |
778 if(pos>=endpos) break; | |
779 if(!stream_seek(demuxer->stream,pos)) break; | |
780 } | |
781 } | |
782 | |
783 int mov_read_header(demuxer_t* demuxer){ | |
784 mov_priv_t* priv=demuxer->priv; | |
785 | |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
786 mp_msg(MSGT_DEMUX, MSGL_DBG3, "mov_read_header!\n"); |
1490 | 787 |
788 // Parse header: | |
2100 | 789 stream_reset(demuxer->stream); |
1490 | 790 if(!stream_seek(demuxer->stream,priv->moov_start)) return 0; // ??? |
791 lschunks(demuxer, 0, priv->moov_end, NULL); | |
792 | |
2127 | 793 return 1; |
1490 | 794 } |
2101 | 795 |
796 // return value: | |
797 // 0 = EOF or no stream found | |
798 // 1 = successfully read a packet | |
799 int demux_mov_fill_buffer(demuxer_t *demuxer,demux_stream_t* ds){ | |
800 mov_priv_t* priv=demuxer->priv; | |
801 mov_track_t* trak=NULL; | |
802 float pts; | |
803 | |
804 if(ds->id<0 || ds->id>=priv->track_db) return 0; | |
805 trak=priv->tracks[ds->id]; | |
806 | |
2115 | 807 if(trak->samplesize){ |
808 // read chunk: | |
2419 | 809 int x; |
2115 | 810 if(trak->pos>=trak->chunks_size) return 0; // EOF |
811 stream_seek(demuxer->stream,trak->chunks[trak->pos].pos); | |
812 pts=(float)(trak->chunks[trak->pos].sample*trak->duration)/(float)trak->timescale; | |
3071 | 813 if(trak->samplesize!=1) |
814 { | |
815 mp_msg(MSGT_DEMUX, MSGL_WARN, "WARNING! Samplesize(%d) != 1\n", | |
816 trak->samplesize); | |
817 x=trak->chunks[trak->pos].size*trak->samplesize; | |
818 } | |
819 else | |
820 x=trak->chunks[trak->pos].size; | |
821 printf("X = %d\n", x); | |
2543 | 822 if(trak->stdata_len>=36){ |
823 // extended stsd header - works for CBR MP3: | |
824 x/=(trak->stdata[30]<<8)+trak->stdata[31]; // samples/packet | |
825 // x*=(trak->stdata[34]<<8)+trak->stdata[35]; // bytes/packet | |
826 x*=(trak->stdata[38]<<8)+trak->stdata[39]; // bytes/frame | |
827 } else { | |
828 // works for ima4: -- we should find this info in mov headers! | |
2549 | 829 if(ds->ss_div!=1 || ds->ss_mul!=1){ |
830 x/=ds->ss_div; x*=ds->ss_mul; // compression ratio fix ! HACK ! | |
831 } else { | |
832 x*=(trak->stdata[18]<<8)+trak->stdata[19];x/=8; // bits/sample | |
833 } | |
2543 | 834 } |
2419 | 835 ds_read_packet(ds,demuxer->stream,x,pts,trak->chunks[trak->pos].pos,0); |
2483
22bfa362af42
added two new clip info types, all printf's were upgraded to mp_msg
alex
parents:
2429
diff
changeset
|
836 if(ds==demuxer->audio) mp_msg(MSGT_DEMUX, MSGL_DBG2, "sample %d bytes pts %5.3f\n",trak->chunks[trak->pos].size*trak->samplesize,pts); |
2115 | 837 } else { |
2101 | 838 // read sample: |
839 if(trak->pos>=trak->samples_size) return 0; // EOF | |
840 stream_seek(demuxer->stream,trak->samples[trak->pos].pos); | |
841 pts=(float)trak->samples[trak->pos].pts/(float)trak->timescale; | |
842 ds_read_packet(ds,demuxer->stream,trak->samples[trak->pos].size,pts,trak->samples[trak->pos].pos,0); | |
2115 | 843 } |
2101 | 844 ++trak->pos; |
2115 | 845 |
2101 | 846 return 1; |
847 | |
848 } | |
2227 | 849 |
850 static float mov_seek_track(mov_track_t* trak,float pts,int flags){ | |
851 | |
852 // printf("MOV track seek called %5.3f \n",pts); | |
853 if(flags&2) pts*=trak->length; else pts*=(float)trak->timescale; | |
854 | |
855 if(trak->samplesize){ | |
856 int sample=pts/trak->duration; | |
857 // printf("MOV track seek - chunk: %d (pts: %5.3f dur=%d) \n",sample,pts,trak->duration); | |
858 if(!(flags&1)) sample+=trak->chunks[trak->pos].sample; // relative | |
859 trak->pos=0; | |
860 while(trak->pos<trak->chunks_size && trak->chunks[trak->pos].sample<sample) ++trak->pos; | |
861 pts=(float)(trak->chunks[trak->pos].sample*trak->duration)/(float)trak->timescale; | |
862 } else { | |
2545 | 863 unsigned int ipts; |
864 if(!(flags&1)) pts+=trak->samples[trak->pos].pts; | |
865 if(pts<0) pts=0; | |
866 ipts=pts; | |
867 //printf("MOV track seek - sample: %d \n",ipts); | |
2544 | 868 for(trak->pos=0;trak->pos<trak->samples_size;++trak->pos){ |
869 if(trak->samples[trak->pos].pts>=ipts) break; // found it! | |
870 } | |
871 if(trak->keyframes_size){ | |
872 // find nearest keyframe | |
873 int i; | |
874 for(i=0;i<trak->keyframes_size;i++){ | |
875 if(trak->keyframes[i]>=trak->pos) break; | |
876 } | |
2546
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
877 if(i>0 && (trak->keyframes[i]-trak->pos) > (trak->pos-trak->keyframes[i-1])) |
c9485365537d
added edit atom (edit list), some comments and typos fixes
alex
parents:
2545
diff
changeset
|
878 --i; |
2544 | 879 trak->pos=trak->keyframes[i]; |
880 // printf("nearest keyframe: %d \n",trak->pos); | |
881 } | |
2227 | 882 pts=(float)trak->samples[trak->pos].pts/(float)trak->timescale; |
883 } | |
884 | |
885 // printf("MOV track seek done: %5.3f \n",pts); | |
886 | |
887 return pts; | |
888 } | |
889 | |
890 void demux_seek_mov(demuxer_t *demuxer,float pts,int flags){ | |
891 mov_priv_t* priv=demuxer->priv; | |
892 demux_stream_t* ds; | |
893 | |
894 // printf("MOV seek called %5.3f flag=%d \n",pts,flags); | |
895 | |
896 ds=demuxer->video; | |
897 if(ds && ds->id>=0 && ds->id<priv->track_db){ | |
898 mov_track_t* trak=priv->tracks[ds->id]; | |
899 //if(flags&2) pts*=(float)trak->length/(float)trak->timescale; | |
900 //if(!(flags&1)) pts+=ds->pts; | |
901 pts=ds->pts=mov_seek_track(trak,pts,flags); | |
902 flags=1; // absolute seconds | |
903 } | |
904 | |
905 ds=demuxer->audio; | |
906 if(ds && ds->id>=0 && ds->id<priv->track_db){ | |
907 mov_track_t* trak=priv->tracks[ds->id]; | |
908 //if(flags&2) pts*=(float)trak->length/(float)trak->timescale; | |
909 //if(!(flags&1)) pts+=ds->pts; | |
910 ds->pts=mov_seek_track(trak,pts,flags); | |
911 } | |
912 | |
913 } | |
914 |