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