Mercurial > mplayer.hg
annotate libmpdemux/aviheader.c @ 5118:378d60504938
printf to mp_msg by Anders Rune Jensen
author | alex |
---|---|
date | Fri, 15 Mar 2002 23:16:32 +0000 |
parents | 40e8b4b8b250 |
children | 5b852c08473f |
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 #include <stdio.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
3 #include <stdlib.h> |
1430 | 4 #include <unistd.h> |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
5 |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
6 #include "config.h" |
1567 | 7 #include "mp_msg.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
8 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
9 #include "stream.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
10 #include "demuxer.h" |
2338 | 11 #include "stheader.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
12 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
13 #include "bswap.h" |
1342 | 14 #include "aviheader.h" |
1 | 15 |
16 #define MIN(a,b) (((a)<(b))?(a):(b)) | |
17 | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
18 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
19 static MainAVIHeader avih; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
20 |
601 | 21 extern void print_avih(MainAVIHeader *h); |
1456
8c57a5a3c645
printfs cleanup - moved to higher -v level or moved to stderr
arpi
parents:
1430
diff
changeset
|
22 extern void print_avih_flags(MainAVIHeader *h); |
601 | 23 extern void print_strh(AVIStreamHeader *h); |
24 extern void print_wave_header(WAVEFORMATEX *h); | |
1496 | 25 extern void print_video_header(BITMAPINFOHEADER *h); |
601 | 26 extern void print_index(AVIINDEXENTRY *idx,int idx_size); |
27 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
28 void read_avi_header(demuxer_t *demuxer,int index_mode){ |
426 | 29 sh_audio_t *sh_audio=NULL; |
30 sh_video_t *sh_video=NULL; | |
1 | 31 int stream_id=-1; |
568 | 32 int idxfix_videostream=0; |
33 int idxfix_divx=0; | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
34 avi_priv_t* priv=demuxer->priv; |
4664 | 35 off_t list_end=0; |
1 | 36 |
37 //---- AVI header: | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
38 priv->idx_size=0; |
2330 | 39 priv->audio_streams=0; |
1 | 40 while(1){ |
41 int id=stream_read_dword_le(demuxer->stream); | |
42 int chunksize,size2; | |
43 static int last_fccType=0; | |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
44 char* hdr=NULL; |
1 | 45 // |
46 if(stream_eof(demuxer->stream)) break; | |
47 // | |
48 if(id==mmioFOURCC('L','I','S','T')){ | |
49 int len=stream_read_dword_le(demuxer->stream)-4; // list size | |
50 id=stream_read_dword_le(demuxer->stream); // list type | |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
51 mp_msg(MSGT_HEADER,MSGL_DBG2,"LIST %.4s len=%d\n",(char *) &id,len); |
4664 | 52 list_end=stream_tell(demuxer->stream)+((len+1)&(~1)); |
53 printf("list_end=0x%X\n",(int)list_end); | |
1 | 54 if(id==listtypeAVIMOVIE){ |
55 // found MOVI header | |
4154 | 56 if(!demuxer->movi_start) demuxer->movi_start=stream_tell(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
57 demuxer->movi_end=demuxer->movi_start+len; |
1754 | 58 mp_msg(MSGT_HEADER,MSGL_V,"Found movie at 0x%X - 0x%X\n",(int)demuxer->movi_start,(int)demuxer->movi_end); |
4154 | 59 if(demuxer->stream->end_pos) demuxer->movi_end=demuxer->stream->end_pos; |
4621
16cbaff638ac
Don't read index for -forceidx and -nodix (speedup with bad media and not needed anyway)
atmos4
parents:
4225
diff
changeset
|
60 if(index_mode==-2 || index_mode==2 || index_mode==0) |
16cbaff638ac
Don't read index for -forceidx and -nodix (speedup with bad media and not needed anyway)
atmos4
parents:
4225
diff
changeset
|
61 break; // reading from non-seekable source (stdin) or forced index or no index forced |
1 | 62 len=(len+1)&(~1); |
63 stream_skip(demuxer->stream,len); | |
64 } | |
65 continue; | |
66 } | |
67 size2=stream_read_dword_le(demuxer->stream); | |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
68 mp_msg(MSGT_HEADER,MSGL_DBG2,"CHUNK %.4s len=%d\n",(char *) &id,size2); |
1 | 69 chunksize=(size2+1)&(~1); |
70 switch(id){ | |
4664 | 71 |
72 // Indicates where the subject of the file is archived | |
73 case mmioFOURCC('I','A','R','L'): hdr="Archival Location";break; | |
74 // Lists the artist of the original subject of the file; | |
75 // for example, "Michaelangelo." | |
76 case mmioFOURCC('I','A','R','T'): hdr="Artist";break; | |
77 // Lists the name of the person or organization that commissioned | |
78 // the subject of the file; for example "Pope Julian II." | |
79 case mmioFOURCC('I','C','M','S'): hdr="Commissioned";break; | |
80 // Provides general comments about the file or the subject | |
81 // of the file. If the comment is several sentences long, end each | |
82 // sentence with a period. Do not include new-line characters. | |
83 case mmioFOURCC('I','C','M','T'): hdr="Comments";break; | |
84 // Records the copyright information for the file; for example, | |
85 // "Copyright Encyclopedia International 1991." If there are multiple | |
86 // copyrights, separate them by semicolon followed by a space. | |
87 case mmioFOURCC('I','C','O','P'): hdr="Copyright";break; | |
88 // Describes whether an image has been cropped and, if so, how it | |
89 // was cropped; for example, "lower-right corner." | |
90 case mmioFOURCC('I','C','R','D'): hdr="Creation Date";break; | |
91 // Describes whether an image has been cropped and, if so, how it | |
92 // was cropped; for example, "lower-right corner." | |
93 case mmioFOURCC('I','C','R','P'): hdr="Cropped";break; | |
94 // Specifies the size of the original subject of the file; for | |
95 // example, "8.5 in h, 11 in w." | |
96 case mmioFOURCC('I','D','I','M'): hdr="Dimensions";break; | |
97 // Stores dots per inch setting of the digitizer used to | |
98 // produce the file, such as "300." | |
99 case mmioFOURCC('I','D','P','I'): hdr="Dots Per Inch";break; | |
100 // Stores the of the engineer who worked on the file. If there are | |
101 // multiple engineers, separate the names by a semicolon and a blank; | |
102 // for example, "Smith, John; Adams, Joe." | |
103 case mmioFOURCC('I','E','N','G'): hdr="Engineer";break; | |
104 // Describes the original work, such as "landscape,", "portrait," | |
105 // "still liefe," etc. | |
106 case mmioFOURCC('I','G','N','R'): hdr="Genre";break; | |
107 // Provides a list of keywords that refer to the file or subject of the | |
108 // file. Separate multiple keywords with a semicolon and a blank; | |
109 // for example, "Seattle, aerial view; scenery." | |
110 case mmioFOURCC('I','K','E','Y'): hdr="Keywords";break; | |
111 // ILGT - Describes the changes in the lightness settings on the digitizer | |
112 // required to produce the file. Note that the format of this information | |
113 // depends on the hardware used. | |
114 case mmioFOURCC('I','L','G','T'): hdr="Lightness";break; | |
115 // IMED - Decribes the original subject of the file, such as | |
116 // "computer image," "drawing," "lithograph," and so on. | |
117 case mmioFOURCC('I','M','E','D'): hdr="Medium";break; | |
118 // INAM - Stores the title of the subject of the file, such as | |
119 // "Seattle from Above." | |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
120 case mmioFOURCC('I','N','A','M'): hdr="Name";break; |
4664 | 121 // IPLT - Specifies the number of colors requested when digitizing |
122 // an image, such as "256." | |
123 case mmioFOURCC('I','P','L','T'): hdr="Palette Setting";break; | |
124 // IPRD - Specifies the name of title the file was originally intended | |
125 // for, such as "Encyclopedia of Pacific Northwest Geography." | |
126 case mmioFOURCC('I','P','R','D'): hdr="Product";break; | |
127 // ISBJ - Decsribes the contents of the file, such as | |
128 // "Aerial view of Seattle." | |
129 case mmioFOURCC('I','S','B','J'): hdr="Subject";break; | |
130 // ISFT - Identifies the name of the software packages used to create the | |
131 // file, such as "Microsoft WaveEdit" | |
132 case mmioFOURCC('I','S','F','T'): hdr="Software";break; | |
133 // ISHP - Identifies the change in sharpness for the digitizer | |
134 // required to produce the file (the format depends on the hardware used). | |
135 case mmioFOURCC('I','S','H','P'): hdr="Sharpness";break; | |
136 // ISRC - Identifies the name of the person or organization who | |
137 // suplied the original subject of the file; for example, "Try Research." | |
138 case mmioFOURCC('I','S','R','C'): hdr="Source";break; | |
139 // ISRF - Identifies the original form of the material that was digitized, | |
140 // such as "slide," "paper," "map," and so on. This is not necessarily | |
141 // the same as IMED | |
142 case mmioFOURCC('I','S','R','F'): hdr="Source Form";break; | |
143 // ITCH - Identifies the technician who digitized the subject file; | |
144 // for example, "Smith, John." | |
145 case mmioFOURCC('I','T','C','H'): hdr="Technician";break; | |
146 case mmioFOURCC('I','S','M','P'): hdr="Time Code";break; | |
147 case mmioFOURCC('I','D','I','T'): hdr="Digitization Time";break; | |
148 | |
1 | 149 case ckidAVIMAINHDR: // read 'avih' |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
150 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
|
151 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
|
152 chunksize-=MIN(size2,sizeof(avih)); |
1456
8c57a5a3c645
printfs cleanup - moved to higher -v level or moved to stderr
arpi
parents:
1430
diff
changeset
|
153 if(verbose) print_avih(&avih); else print_avih_flags(&avih); |
1 | 154 break; |
155 case ckidSTREAMHEADER: { // read 'strh' | |
156 AVIStreamHeader h; | |
157 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
|
158 le2me_AVIStreamHeader(&h); // swap to machine endian |
1 | 159 chunksize-=MIN(size2,sizeof(h)); |
426 | 160 ++stream_id; |
161 if(h.fccType==streamtypeVIDEO){ | |
1289 | 162 sh_video=new_sh_video(demuxer,stream_id); |
426 | 163 memcpy(&sh_video->video,&h,sizeof(h)); |
164 } else | |
165 if(h.fccType==streamtypeAUDIO){ | |
1289 | 166 sh_audio=new_sh_audio(demuxer,stream_id); |
426 | 167 memcpy(&sh_audio->audio,&h,sizeof(h)); |
168 } | |
1 | 169 last_fccType=h.fccType; |
170 if(verbose>=1) print_strh(&h); | |
171 break; } | |
172 case ckidSTREAMFORMAT: { // read 'strf' | |
173 if(last_fccType==streamtypeVIDEO){ | |
433 | 174 sh_video->bih=calloc((chunksize<sizeof(BITMAPINFOHEADER))?sizeof(BITMAPINFOHEADER):chunksize,1); |
175 // sh_video->bih=malloc(chunksize); memset(sh_video->bih,0,chunksize); | |
1567 | 176 mp_msg(MSGT_HEADER,MSGL_V,"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
|
177 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
|
178 le2me_BITMAPINFOHEADER(sh_video->bih); // swap to machine endian |
1492 | 179 if(verbose>=1) print_video_header(sh_video->bih); |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
180 chunksize=0; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
181 // 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
|
182 // sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; |
426 | 183 // if(demuxer->video->id==-1) demuxer->video->id=stream_id; |
568 | 184 // IdxFix: |
185 idxfix_videostream=stream_id; | |
186 switch(sh_video->bih->biCompression){ | |
187 case mmioFOURCC('D', 'I', 'V', '3'): | |
188 case mmioFOURCC('d', 'i', 'v', '3'): | |
189 case mmioFOURCC('D', 'I', 'V', '4'): | |
190 case mmioFOURCC('d', 'i', 'v', '4'): | |
191 case mmioFOURCC('D', 'I', 'V', '5'): | |
192 case mmioFOURCC('d', 'i', 'v', '5'): | |
193 case mmioFOURCC('D', 'I', 'V', '6'): | |
194 case mmioFOURCC('d', 'i', 'v', '6'): | |
195 case mmioFOURCC('M', 'P', '4', '3'): | |
196 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
|
197 case mmioFOURCC('M', 'P', '4', '2'): |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
198 case mmioFOURCC('m', 'p', '4', '2'): |
773 | 199 case mmioFOURCC('D', 'I', 'V', '2'): |
568 | 200 case mmioFOURCC('A', 'P', '4', '1'): |
201 idxfix_divx=1; // we can fix keyframes only for divx coded files! | |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
202 mp_msg(MSGT_HEADER,MSGL_V,"Regenerating keyframe table for DIVX 3 video\n"); |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
203 break; |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
204 case mmioFOURCC('D', 'I', 'V', 'X'): |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
205 case mmioFOURCC('d', 'i', 'v', 'x'): |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
206 idxfix_divx=2; // we can fix keyframes only for divx coded files! |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
207 mp_msg(MSGT_HEADER,MSGL_V,"Regenerating keyframe table for DIVX 4 video\n"); |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
208 break; |
568 | 209 } |
1 | 210 } else |
211 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
|
212 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
|
213 sh_audio->wf=calloc(wf_size,1); |
433 | 214 // sh_audio->wf=malloc(chunksize); memset(sh_audio->wf,0,chunksize); |
1567 | 215 mp_msg(MSGT_HEADER,MSGL_V,"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
|
216 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
|
217 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
|
218 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
|
219 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
|
220 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
|
221 } |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
222 chunksize=0; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
223 if(verbose>=1) print_wave_header(sh_audio->wf); |
2330 | 224 ++priv->audio_streams; |
426 | 225 // if(demuxer->audio->id==-1) demuxer->audio->id=stream_id; |
1 | 226 } |
227 break; | |
228 } | |
4225 | 229 case ckidAVINEWINDEX: |
230 if(demuxer->movi_end>stream_tell(demuxer->stream)) | |
231 demuxer->movi_end=stream_tell(demuxer->stream); // fixup movi-end | |
232 if(index_mode){ | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
233 int i; |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
234 priv->idx_size=size2>>4; |
1567 | 235 mp_msg(MSGT_HEADER,MSGL_V,"Reading INDEX block, %d chunks for %ld frames\n", |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
236 priv->idx_size,avih.dwTotalFrames); |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
237 priv->idx=malloc(priv->idx_size<<4); |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
238 stream_read(demuxer->stream,(char*)priv->idx,priv->idx_size<<4); |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
239 for (i = 0; i < priv->idx_size; i++) // swap index to machine endian |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
240 le2me_AVIINDEXENTRY((AVIINDEXENTRY*)priv->idx + i); |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
241 chunksize-=priv->idx_size<<4; |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
242 if(verbose>=2) print_index(priv->idx,priv->idx_size); |
1 | 243 break; |
244 } | |
245 } | |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
246 if(hdr){ |
4664 | 247 printf("hdr=%s size=%d\n",hdr,size2); |
248 if(size2==3) | |
249 chunksize=1; // empty | |
250 else { | |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
251 char buf[256]; |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
252 int len=(size2<250)?size2:250; |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
253 stream_read(demuxer->stream,buf,len); |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
254 chunksize-=len; |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
255 buf[len]=0; |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
256 mp_msg(MSGT_HEADER,MSGL_V,"%-10s: %s\n",hdr,buf); |
3071 | 257 demux_info_add(demuxer, hdr, buf); |
4664 | 258 } |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
259 } |
4664 | 260 mp_msg(MSGT_HEADER,MSGL_DBG2,"list_end=0x%X pos=0x%X chunksize=0x%X next=0x%X\n", |
261 (int)list_end, (int)stream_tell(demuxer->stream), | |
262 chunksize, (int)chunksize+stream_tell(demuxer->stream)); | |
263 if(list_end>0 && chunksize+stream_tell(demuxer->stream)>list_end){ | |
264 mp_msg(MSGT_HEADER,MSGL_V,"Broken chunk? chunksize=%d (id=%.4s)\n",chunksize,(char *) &id); | |
265 stream_seek(demuxer->stream,list_end); | |
266 list_end=0; | |
267 } else | |
1 | 268 if(chunksize>0) stream_skip(demuxer->stream,chunksize); else |
1567 | 269 if(chunksize<0) mp_msg(MSGT_HEADER,MSGL_WARN,"chunksize=%d (id=%.4s)\n",chunksize,(char *) &id); |
1 | 270 |
271 } | |
272 | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
273 if(index_mode>=2 || (priv->idx_size==0 && index_mode==1)){ |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
274 // build index for file: |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
275 stream_reset(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
276 stream_seek(demuxer->stream,demuxer->movi_start); |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
277 |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
278 priv->idx_pos=0; |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
279 priv->idx_size=0; |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
280 priv->idx=NULL; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
281 |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
282 while(1){ |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
283 int id,len,skip; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
284 AVIINDEXENTRY* idx; |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
285 unsigned int c; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
286 demuxer->filepos=stream_tell(demuxer->stream); |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
287 if(demuxer->filepos>=demuxer->movi_end && demuxer->movi_start<demuxer->movi_end) break; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
288 id=stream_read_dword_le(demuxer->stream); |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
289 len=stream_read_dword_le(demuxer->stream); |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
290 if(id==mmioFOURCC('L','I','S','T')){ |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
291 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
|
292 continue; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
293 } |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
294 if(stream_eof(demuxer->stream)) break; |
1392 | 295 if(!id || avi_stream_id(id)==100) goto skip_chunk; // bad ID (or padding?) |
296 | |
1499 | 297 if(priv->idx_pos>=priv->idx_size){ |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
298 // priv->idx_size+=32; |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
299 priv->idx_size+=1024; // +16kB |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
300 priv->idx=realloc(priv->idx,priv->idx_size*sizeof(AVIINDEXENTRY)); |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
301 if(!priv->idx){priv->idx_pos=0; break;} // error! |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
302 } |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
303 idx=&((AVIINDEXENTRY *)priv->idx)[priv->idx_pos++]; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
304 idx->ckid=id; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
305 idx->dwFlags=AVIIF_KEYFRAME; // FIXME |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
306 idx->dwChunkOffset=demuxer->filepos; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
307 idx->dwChunkLength=len; |
569 | 308 |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
309 c=stream_read_dword(demuxer->stream); |
568 | 310 |
311 // Fix keyframes for DivX files: | |
312 if(idxfix_divx) | |
313 if(avi_stream_id(id)==idxfix_videostream){ | |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
314 switch(idxfix_divx){ |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
315 case 1: if(c&0x40000000) idx->dwFlags=0;break; // divx 3 |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
316 case 2: if(c==0x1B6) idx->dwFlags=0;break; // divx 4 |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
317 } |
568 | 318 } |
3781 | 319 |
320 // update status line: | |
321 { static int lastpos; | |
322 int pos; | |
323 off_t len=demuxer->movi_end-demuxer->movi_start; | |
324 if(len){ | |
325 pos=100*(demuxer->filepos-demuxer->movi_start)/len; // % | |
326 } else { | |
327 pos=(demuxer->filepos-demuxer->movi_start)>>20; // MB | |
328 } | |
329 if(pos!=lastpos){ | |
330 lastpos=pos; | |
331 mp_msg(MSGT_HEADER,MSGL_STATUS,"Generating Index: %3d %s \r", | |
332 pos, len?"%":"MB"); | |
333 } | |
334 } | |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
335 mp_dbg(MSGT_HEADER,MSGL_DBG2,"%08X %08X %.4s %08X %X\n",(int)demuxer->filepos,id,(char *) &id,(int)c,(unsigned int) idx->dwFlags); |
568 | 336 #if 0 |
337 { unsigned char tmp[64]; | |
338 int i; | |
339 stream_read(demuxer->stream,tmp,64); | |
340 printf("%.4s",&id); | |
341 for(i=0;i<64;i++) printf(" %02X",tmp[i]); | |
342 printf("\n"); | |
343 } | |
344 #endif | |
1392 | 345 skip_chunk: |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
346 skip=(len+1)&(~1); // total bytes in this chunk |
568 | 347 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
|
348 } |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
349 priv->idx_size=priv->idx_pos; |
1567 | 350 mp_msg(MSGT_HEADER,MSGL_INFO,"AVI: Generated index table for %d chunks!\n",priv->idx_size); |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
351 } |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
352 |
1 | 353 } |
354 | |
355 #undef MIN | |
356 | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
357 |