Mercurial > mplayer.hg
annotate aviheader.c @ 1428:a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
author | arpi |
---|---|
date | Tue, 31 Jul 2001 23:18:16 +0000 |
parents | 20c1ff7da89c |
children | 1728d249c783 |
rev | line source |
---|---|
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
1 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
2 #include "config.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
3 #include <stdio.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
4 #include <stdlib.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
5 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
6 extern int verbose; // defined in mplayer.c |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
7 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
8 #include "stream.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
9 #include "demuxer.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
10 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
11 #include "wine/mmreg.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
12 #include "wine/avifmt.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
13 #include "wine/vfw.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
14 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
15 #include "codec-cfg.h" |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
16 #include "bswap.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
17 #include "stheader.h" |
1342 | 18 #include "aviheader.h" |
1 | 19 |
20 #define MIN(a,b) (((a)<(b))?(a):(b)) | |
21 | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
22 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
23 static MainAVIHeader avih; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
24 |
601 | 25 extern void print_avih(MainAVIHeader *h); |
26 extern void print_strh(AVIStreamHeader *h); | |
27 extern void print_wave_header(WAVEFORMATEX *h); | |
28 extern void print_index(AVIINDEXENTRY *idx,int idx_size); | |
29 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
30 void read_avi_header(demuxer_t *demuxer,int index_mode){ |
426 | 31 sh_audio_t *sh_audio=NULL; |
32 sh_video_t *sh_video=NULL; | |
1 | 33 int stream_id=-1; |
568 | 34 int idxfix_videostream=0; |
35 int idxfix_divx=0; | |
1 | 36 |
37 //---- AVI header: | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
38 demuxer->idx_size=0; |
1 | 39 while(1){ |
40 int id=stream_read_dword_le(demuxer->stream); | |
41 int chunksize,size2; | |
42 static int last_fccType=0; | |
43 // | |
44 if(stream_eof(demuxer->stream)) break; | |
45 // | |
46 if(id==mmioFOURCC('L','I','S','T')){ | |
47 int len=stream_read_dword_le(demuxer->stream)-4; // list size | |
48 id=stream_read_dword_le(demuxer->stream); // list type | |
600 | 49 if(verbose>=2) printf("LIST %.4s len=%d\n",(char *) &id,len); |
1 | 50 if(id==listtypeAVIMOVIE){ |
51 // found MOVI header | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
52 demuxer->movi_start=stream_tell(demuxer->stream); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
53 demuxer->movi_end=demuxer->movi_start+len; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
54 if(verbose>=1) printf("Found movie at 0x%X - 0x%X\n",demuxer->movi_start,demuxer->movi_end); |
692 | 55 if(index_mode==-2) break; // reading from non-seekable source (stdin) |
1 | 56 len=(len+1)&(~1); |
57 stream_skip(demuxer->stream,len); | |
58 } | |
59 continue; | |
60 } | |
61 size2=stream_read_dword_le(demuxer->stream); | |
600 | 62 if(verbose>=2) printf("CHUNK %.4s len=%d\n",(char *) &id,size2); |
1 | 63 chunksize=(size2+1)&(~1); |
64 switch(id){ | |
65 case ckidAVIMAINHDR: // read 'avih' | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
66 stream_read(demuxer->stream,(char*) &avih,MIN(size2,sizeof(avih))); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
67 le2me_MainAVIHeader(&avih); // swap to machine endian |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
68 chunksize-=MIN(size2,sizeof(avih)); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
69 if(verbose) print_avih(&avih); |
1 | 70 break; |
71 case ckidSTREAMHEADER: { // read 'strh' | |
72 AVIStreamHeader h; | |
73 stream_read(demuxer->stream,(char*) &h,MIN(size2,sizeof(h))); | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
74 le2me_AVIStreamHeader(&h); // swap to machine endian |
1 | 75 chunksize-=MIN(size2,sizeof(h)); |
426 | 76 ++stream_id; |
77 if(h.fccType==streamtypeVIDEO){ | |
1289 | 78 sh_video=new_sh_video(demuxer,stream_id); |
426 | 79 memcpy(&sh_video->video,&h,sizeof(h)); |
80 } else | |
81 if(h.fccType==streamtypeAUDIO){ | |
1289 | 82 sh_audio=new_sh_audio(demuxer,stream_id); |
426 | 83 memcpy(&sh_audio->audio,&h,sizeof(h)); |
84 } | |
1 | 85 last_fccType=h.fccType; |
86 if(verbose>=1) print_strh(&h); | |
87 break; } | |
88 case ckidSTREAMFORMAT: { // read 'strf' | |
89 if(last_fccType==streamtypeVIDEO){ | |
433 | 90 sh_video->bih=calloc((chunksize<sizeof(BITMAPINFOHEADER))?sizeof(BITMAPINFOHEADER):chunksize,1); |
91 // sh_video->bih=malloc(chunksize); memset(sh_video->bih,0,chunksize); | |
92 if(verbose>=1) printf("found 'bih', %d bytes of %d\n",chunksize,sizeof(BITMAPINFOHEADER)); | |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
93 stream_read(demuxer->stream,(char*) sh_video->bih,chunksize); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
94 le2me_BITMAPINFOHEADER(sh_video->bih); // swap to machine endian |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
95 chunksize=0; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
96 // sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
97 // sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; |
426 | 98 // if(demuxer->video->id==-1) demuxer->video->id=stream_id; |
568 | 99 // IdxFix: |
100 idxfix_videostream=stream_id; | |
101 switch(sh_video->bih->biCompression){ | |
102 case mmioFOURCC('D', 'I', 'V', '3'): | |
103 case mmioFOURCC('d', 'i', 'v', '3'): | |
104 case mmioFOURCC('D', 'I', 'V', '4'): | |
105 case mmioFOURCC('d', 'i', 'v', '4'): | |
106 case mmioFOURCC('D', 'I', 'V', '5'): | |
107 case mmioFOURCC('d', 'i', 'v', '5'): | |
108 case mmioFOURCC('D', 'I', 'V', '6'): | |
109 case mmioFOURCC('d', 'i', 'v', '6'): | |
110 case mmioFOURCC('M', 'P', '4', '3'): | |
111 case mmioFOURCC('m', 'p', '4', '3'): | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
112 case mmioFOURCC('M', 'P', '4', '2'): |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
113 case mmioFOURCC('m', 'p', '4', '2'): |
773 | 114 case mmioFOURCC('D', 'I', 'V', '2'): |
568 | 115 case mmioFOURCC('A', 'P', '4', '1'): |
116 idxfix_divx=1; // we can fix keyframes only for divx coded files! | |
117 } | |
1 | 118 } else |
119 if(last_fccType==streamtypeAUDIO){ | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
773
diff
changeset
|
120 int wf_size = chunksize<sizeof(WAVEFORMATEX)?sizeof(WAVEFORMATEX):chunksize; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
773
diff
changeset
|
121 sh_audio->wf=calloc(wf_size,1); |
433 | 122 // sh_audio->wf=malloc(chunksize); memset(sh_audio->wf,0,chunksize); |
123 if(verbose>=1) printf("found 'wf', %d bytes of %d\n",chunksize,sizeof(WAVEFORMATEX)); | |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
124 stream_read(demuxer->stream,(char*) sh_audio->wf,chunksize); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
125 le2me_WAVEFORMATEX(sh_audio->wf); |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
773
diff
changeset
|
126 if (sh_audio->wf->cbSize != 0 && |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
773
diff
changeset
|
127 wf_size < sizeof(WAVEFORMATEX)+sh_audio->wf->cbSize) { |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
773
diff
changeset
|
128 sh_audio->wf=realloc(sh_audio->wf, sizeof(WAVEFORMATEX)+sh_audio->wf->cbSize); |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
773
diff
changeset
|
129 } |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
130 chunksize=0; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
131 if(verbose>=1) print_wave_header(sh_audio->wf); |
426 | 132 // if(demuxer->audio->id==-1) demuxer->audio->id=stream_id; |
1 | 133 } |
134 break; | |
135 } | |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
136 case ckidAVINEWINDEX: if(index_mode){ |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
137 int i; |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
138 demuxer->idx_size=size2>>4; |
600 | 139 if(verbose>=1) printf("Reading INDEX block, %d chunks for %ld frames\n", |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
140 demuxer->idx_size,avih.dwTotalFrames); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
141 demuxer->idx=malloc(demuxer->idx_size<<4); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
142 stream_read(demuxer->stream,(char*)demuxer->idx,demuxer->idx_size<<4); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
143 for (i = 0; i < demuxer->idx_size; i++) // swap index to machine endian |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
144 le2me_AVIINDEXENTRY((AVIINDEXENTRY*)demuxer->idx + i); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
145 chunksize-=demuxer->idx_size<<4; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
146 if(verbose>=2) print_index(demuxer->idx,demuxer->idx_size); |
1 | 147 break; |
148 } | |
149 } | |
150 if(chunksize>0) stream_skip(demuxer->stream,chunksize); else | |
600 | 151 if(chunksize<0) printf("WARNING!!! chunksize=%d (id=%.4s)\n",chunksize,(char *) &id); |
1 | 152 |
153 } | |
154 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
155 if(index_mode>=2 || (demuxer->idx_size==0 && index_mode==1)){ |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
156 // build index for file: |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
157 stream_reset(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
158 stream_seek(demuxer->stream,demuxer->movi_start); |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
159 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
160 demuxer->idx_pos=0; |
1392 | 161 demuxer->idx_size=0; |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
162 demuxer->idx=NULL; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
163 |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
164 while(1){ |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
165 int id,len,skip; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
166 AVIINDEXENTRY* idx; |
569 | 167 unsigned char c; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
168 demuxer->filepos=stream_tell(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
169 if(demuxer->filepos>=demuxer->movi_end) break; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
170 id=stream_read_dword_le(demuxer->stream); |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
171 len=stream_read_dword_le(demuxer->stream); |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
172 if(id==mmioFOURCC('L','I','S','T')){ |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
173 id=stream_read_dword_le(demuxer->stream); // list type |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
174 continue; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
175 } |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
176 if(stream_eof(demuxer->stream)) break; |
1392 | 177 if(!id || avi_stream_id(id)==100) goto skip_chunk; // bad ID (or padding?) |
178 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
179 if(demuxer->idx_pos<=demuxer->idx_size){ |
1392 | 180 // demuxer->idx_size+=32; |
181 demuxer->idx_size+=1024; // +16kB | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
182 demuxer->idx=realloc(demuxer->idx,demuxer->idx_size*sizeof(AVIINDEXENTRY)); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
183 if(!demuxer->idx){demuxer->idx_pos=0; break;} // error! |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
184 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
185 idx=&((AVIINDEXENTRY *)demuxer->idx)[demuxer->idx_pos++]; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
186 idx->ckid=id; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
187 idx->dwFlags=AVIIF_KEYFRAME; // FIXME |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
188 idx->dwChunkOffset=demuxer->filepos; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
189 idx->dwChunkLength=len; |
569 | 190 |
191 c=stream_read_char(demuxer->stream); | |
568 | 192 |
193 // Fix keyframes for DivX files: | |
194 if(idxfix_divx) | |
195 if(avi_stream_id(id)==idxfix_videostream){ | |
569 | 196 if(c&0x40) idx->dwFlags=0; |
568 | 197 } |
198 | |
600 | 199 if(verbose>=2) printf("%08X %08X %.4s %02X %X\n",demuxer->filepos,id,(char *) &id,c,(unsigned int) idx->dwFlags); |
568 | 200 #if 0 |
201 { unsigned char tmp[64]; | |
202 int i; | |
203 stream_read(demuxer->stream,tmp,64); | |
204 printf("%.4s",&id); | |
205 for(i=0;i<64;i++) printf(" %02X",tmp[i]); | |
206 printf("\n"); | |
207 } | |
208 #endif | |
1392 | 209 skip_chunk: |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
210 skip=(len+1)&(~1); // total bytes in this chunk |
568 | 211 stream_seek(demuxer->stream,8+demuxer->filepos+skip); |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
212 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
213 demuxer->idx_size=demuxer->idx_pos; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
214 printf("AVI: Generated index table for %d chunks!\n",demuxer->idx_size); |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
215 } |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
216 |
1 | 217 } |
218 | |
219 #undef MIN | |
220 |