Mercurial > mplayer.hg
annotate aviheader.c @ 674:10fc57f7e368
FAQ filename fixed
author | arpi_esp |
---|---|
date | Mon, 30 Apr 2001 02:38:41 +0000 |
parents | 2d3a4339bb5a |
children | 14a2f35921a0 |
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); |
1 | 52 len=(len+1)&(~1); |
53 stream_skip(demuxer->stream,len); | |
54 } | |
55 continue; | |
56 } | |
57 size2=stream_read_dword_le(demuxer->stream); | |
600 | 58 if(verbose>=2) printf("CHUNK %.4s len=%d\n",(char *) &id,size2); |
1 | 59 chunksize=(size2+1)&(~1); |
60 switch(id){ | |
61 case ckidAVIMAINHDR: // read 'avih' | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
62 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
|
63 chunksize-=MIN(size2,sizeof(avih)); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
64 if(verbose) print_avih(&avih); |
1 | 65 break; |
66 case ckidSTREAMHEADER: { // read 'strh' | |
67 AVIStreamHeader h; | |
68 stream_read(demuxer->stream,(char*) &h,MIN(size2,sizeof(h))); | |
69 chunksize-=MIN(size2,sizeof(h)); | |
426 | 70 ++stream_id; |
71 if(h.fccType==streamtypeVIDEO){ | |
72 sh_video=new_sh_video(stream_id); | |
73 memcpy(&sh_video->video,&h,sizeof(h)); | |
74 } else | |
75 if(h.fccType==streamtypeAUDIO){ | |
76 sh_audio=new_sh_audio(stream_id); | |
77 memcpy(&sh_audio->audio,&h,sizeof(h)); | |
78 } | |
1 | 79 last_fccType=h.fccType; |
80 if(verbose>=1) print_strh(&h); | |
81 break; } | |
82 case ckidSTREAMFORMAT: { // read 'strf' | |
83 if(last_fccType==streamtypeVIDEO){ | |
433 | 84 sh_video->bih=calloc((chunksize<sizeof(BITMAPINFOHEADER))?sizeof(BITMAPINFOHEADER):chunksize,1); |
85 // sh_video->bih=malloc(chunksize); memset(sh_video->bih,0,chunksize); | |
86 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
|
87 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
|
88 chunksize=0; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
89 // 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
|
90 // sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; |
426 | 91 // if(demuxer->video->id==-1) demuxer->video->id=stream_id; |
568 | 92 // IdxFix: |
93 idxfix_videostream=stream_id; | |
94 switch(sh_video->bih->biCompression){ | |
95 case mmioFOURCC('D', 'I', 'V', '3'): | |
96 case mmioFOURCC('d', 'i', 'v', '3'): | |
97 case mmioFOURCC('D', 'I', 'V', '4'): | |
98 case mmioFOURCC('d', 'i', 'v', '4'): | |
99 case mmioFOURCC('D', 'I', 'V', '5'): | |
100 case mmioFOURCC('d', 'i', 'v', '5'): | |
101 case mmioFOURCC('D', 'I', 'V', '6'): | |
102 case mmioFOURCC('d', 'i', 'v', '6'): | |
103 case mmioFOURCC('M', 'P', '4', '3'): | |
104 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
|
105 case mmioFOURCC('M', 'P', '4', '2'): |
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'): |
568 | 107 case mmioFOURCC('A', 'P', '4', '1'): |
108 idxfix_divx=1; // we can fix keyframes only for divx coded files! | |
109 } | |
1 | 110 } else |
111 if(last_fccType==streamtypeAUDIO){ | |
433 | 112 sh_audio->wf=calloc((chunksize<sizeof(WAVEFORMATEX))?sizeof(WAVEFORMATEX):chunksize,1); |
113 // sh_audio->wf=malloc(chunksize); memset(sh_audio->wf,0,chunksize); | |
114 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
|
115 stream_read(demuxer->stream,(char*) sh_audio->wf,chunksize); |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
116 chunksize=0; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
117 if(verbose>=1) print_wave_header(sh_audio->wf); |
426 | 118 // if(demuxer->audio->id==-1) demuxer->audio->id=stream_id; |
1 | 119 } |
120 break; | |
121 } | |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
122 case ckidAVINEWINDEX: if(index_mode){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
123 demuxer->idx_size=size2>>4; |
600 | 124 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
|
125 demuxer->idx_size,avih.dwTotalFrames); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
126 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
|
127 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
|
128 chunksize-=demuxer->idx_size<<4; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
129 if(verbose>=2) print_index(demuxer->idx,demuxer->idx_size); |
1 | 130 break; |
131 } | |
132 } | |
133 if(chunksize>0) stream_skip(demuxer->stream,chunksize); else | |
600 | 134 if(chunksize<0) printf("WARNING!!! chunksize=%d (id=%.4s)\n",chunksize,(char *) &id); |
1 | 135 |
136 } | |
137 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
138 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
|
139 // build index for file: |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
140 stream_reset(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
141 stream_seek(demuxer->stream,demuxer->movi_start); |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
142 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
143 demuxer->idx_pos=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
144 demuxer->idx=NULL; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
145 |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
146 while(1){ |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
147 int id,len,skip; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
148 AVIINDEXENTRY* idx; |
569 | 149 unsigned char c; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
150 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
|
151 if(demuxer->filepos>=demuxer->movi_end) break; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
152 id=stream_read_dword_le(demuxer->stream); |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
153 len=stream_read_dword_le(demuxer->stream); |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
154 if(id==mmioFOURCC('L','I','S','T')){ |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
155 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
|
156 continue; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
157 } |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
158 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
|
159 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
|
160 demuxer->idx_size+=32; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
161 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
|
162 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
|
163 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
164 idx=&((AVIINDEXENTRY *)demuxer->idx)[demuxer->idx_pos++]; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
165 idx->ckid=id; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
166 idx->dwFlags=AVIIF_KEYFRAME; // FIXME |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
167 idx->dwChunkOffset=demuxer->filepos; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
168 idx->dwChunkLength=len; |
569 | 169 |
170 c=stream_read_char(demuxer->stream); | |
568 | 171 |
172 // Fix keyframes for DivX files: | |
173 if(idxfix_divx) | |
174 if(avi_stream_id(id)==idxfix_videostream){ | |
569 | 175 if(c&0x40) idx->dwFlags=0; |
568 | 176 } |
177 | |
600 | 178 if(verbose>=2) printf("%08X %08X %.4s %02X %X\n",demuxer->filepos,id,(char *) &id,c,(unsigned int) idx->dwFlags); |
568 | 179 #if 0 |
180 { unsigned char tmp[64]; | |
181 int i; | |
182 stream_read(demuxer->stream,tmp,64); | |
183 printf("%.4s",&id); | |
184 for(i=0;i<64;i++) printf(" %02X",tmp[i]); | |
185 printf("\n"); | |
186 } | |
187 #endif | |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
188 skip=(len+1)&(~1); // total bytes in this chunk |
568 | 189 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
|
190 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
191 demuxer->idx_size=demuxer->idx_pos; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
192 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
|
193 } |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
194 |
1 | 195 } |
196 | |
197 #undef MIN | |
198 |