2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #include "stream/stream.h"
32 #include "aviheader.h"
33 #include "libavutil/common.h"
35 static MainAVIHeader avih
;
37 static int odml_get_vstream_id(int id
, unsigned char res
[])
39 unsigned char *p
= (unsigned char *)&id
;
52 static int avi_idx_cmp(const void *elem1
, const void *elem2
)
54 register off_t a
= AVI_IDX_OFFSET((AVIINDEXENTRY
*)elem1
);
55 register off_t b
= AVI_IDX_OFFSET((AVIINDEXENTRY
*)elem2
);
56 return (a
> b
) - (b
> a
);
59 void read_avi_header(demuxer_t
*demuxer
,int index_mode
){
60 sh_audio_t
*sh_audio
=NULL
;
61 sh_video_t
*sh_video
=NULL
;
63 int idxfix_videostream
=0;
65 avi_priv_t
* priv
=demuxer
->priv
;
70 priv
->audio_streams
=0;
72 int id
=stream_read_dword_le(demuxer
->stream
);
73 unsigned chunksize
,size2
;
74 static int last_fccType
=0;
75 static int last_fccHandler
=0;
78 if(stream_eof(demuxer
->stream
)) break;
79 // Imply -forceidx if -saveidx is specified
83 if(id
==mmioFOURCC('L','I','S','T')){
84 unsigned len
=stream_read_dword_le(demuxer
->stream
); // list size
85 id
=stream_read_dword_le(demuxer
->stream
); // list type
86 mp_msg(MSGT_HEADER
,MSGL_DBG2
,"LIST %.4s len=%u\n",(char *) &id
,len
);
89 list_end
=stream_tell(demuxer
->stream
)+((len
+1)&(~1));
91 mp_msg(MSGT_HEADER
,MSGL_WARN
,MSGTR_MPDEMUX_AVIHDR_EmptyList
);
94 mp_msg(MSGT_HEADER
,MSGL_V
,"list_end=0x%X\n",(int)list_end
);
95 if(id
==listtypeAVIMOVIE
){
97 if(!demuxer
->movi_start
) demuxer
->movi_start
=stream_tell(demuxer
->stream
);
98 demuxer
->movi_end
=stream_tell(demuxer
->stream
)+len
;
99 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_FoundMovieAt
,(int)demuxer
->movi_start
,(int)demuxer
->movi_end
);
100 if(demuxer
->stream
->end_pos
>demuxer
->movi_end
) demuxer
->movi_end
=demuxer
->stream
->end_pos
;
101 if(index_mode
==-2 || index_mode
==2 || index_mode
==0)
102 break; // reading from non-seekable source (stdin) or forced index or no index forced
103 if(list_end
>0) stream_seek(demuxer
->stream
,list_end
); // skip movi
108 size2
=stream_read_dword_le(demuxer
->stream
);
109 mp_msg(MSGT_HEADER
,MSGL_DBG2
,"CHUNK %.4s len=%u\n",(char *) &id
,size2
);
110 chunksize
=(size2
+1)&(~1);
113 // Indicates where the subject of the file is archived
114 case mmioFOURCC('I','A','R','L'): hdr
="Archival Location";break;
115 // Lists the artist of the original subject of the file;
116 // for example, "Michaelangelo."
117 case mmioFOURCC('I','A','R','T'): hdr
="Artist";break;
118 // Lists the name of the person or organization that commissioned
119 // the subject of the file; for example "Pope Julian II."
120 case mmioFOURCC('I','C','M','S'): hdr
="Commissioned";break;
121 // Provides general comments about the file or the subject
122 // of the file. If the comment is several sentences long, end each
123 // sentence with a period. Do not include new-line characters.
124 case mmioFOURCC('I','C','M','T'): hdr
="Comments";break;
125 // Records the copyright information for the file; for example,
126 // "Copyright Encyclopedia International 1991." If there are multiple
127 // copyrights, separate them by semicolon followed by a space.
128 case mmioFOURCC('I','C','O','P'): hdr
="Copyright";break;
129 // Describes whether an image has been cropped and, if so, how it
130 // was cropped; for example, "lower-right corner."
131 case mmioFOURCC('I','C','R','D'): hdr
="Creation Date";break;
132 // Describes whether an image has been cropped and, if so, how it
133 // was cropped; for example, "lower-right corner."
134 case mmioFOURCC('I','C','R','P'): hdr
="Cropped";break;
135 // Specifies the size of the original subject of the file; for
136 // example, "8.5 in h, 11 in w."
137 case mmioFOURCC('I','D','I','M'): hdr
="Dimensions";break;
138 // Stores dots per inch setting of the digitizer used to
139 // produce the file, such as "300."
140 case mmioFOURCC('I','D','P','I'): hdr
="Dots Per Inch";break;
141 // Stores the of the engineer who worked on the file. If there are
142 // multiple engineers, separate the names by a semicolon and a blank;
143 // for example, "Smith, John; Adams, Joe."
144 case mmioFOURCC('I','E','N','G'): hdr
="Engineer";break;
145 // Describes the original work, such as "landscape,", "portrait,"
146 // "still liefe," etc.
147 case mmioFOURCC('I','G','N','R'): hdr
="Genre";break;
148 // Provides a list of keywords that refer to the file or subject of the
149 // file. Separate multiple keywords with a semicolon and a blank;
150 // for example, "Seattle, aerial view; scenery."
151 case mmioFOURCC('I','K','E','Y'): hdr
="Keywords";break;
152 // ILGT - Describes the changes in the lightness settings on the digitizer
153 // required to produce the file. Note that the format of this information
154 // depends on the hardware used.
155 case mmioFOURCC('I','L','G','T'): hdr
="Lightness";break;
156 // IMED - Decribes the original subject of the file, such as
157 // "computer image," "drawing," "lithograph," and so on.
158 case mmioFOURCC('I','M','E','D'): hdr
="Medium";break;
159 // INAM - Stores the title of the subject of the file, such as
160 // "Seattle from Above."
161 case mmioFOURCC('I','N','A','M'): hdr
="Title";break;
162 // IPLT - Specifies the number of colors requested when digitizing
163 // an image, such as "256."
164 case mmioFOURCC('I','P','L','T'): hdr
="Palette Setting";break;
165 // IPRD - Specifies the name of title the file was originally intended
166 // for, such as "Encyclopedia of Pacific Northwest Geography."
167 case mmioFOURCC('I','P','R','D'): hdr
="Product";break;
168 // ISBJ - Decsribes the contents of the file, such as
169 // "Aerial view of Seattle."
170 case mmioFOURCC('I','S','B','J'): hdr
="Subject";break;
171 // ISFT - Identifies the name of the software packages used to create the
172 // file, such as "Microsoft WaveEdit"
173 case mmioFOURCC('I','S','F','T'): hdr
="Software";break;
174 // ISHP - Identifies the change in sharpness for the digitizer
175 // required to produce the file (the format depends on the hardware used).
176 case mmioFOURCC('I','S','H','P'): hdr
="Sharpness";break;
177 // ISRC - Identifies the name of the person or organization who
178 // suplied the original subject of the file; for example, "Try Research."
179 case mmioFOURCC('I','S','R','C'): hdr
="Source";break;
180 // ISRF - Identifies the original form of the material that was digitized,
181 // such as "slide," "paper," "map," and so on. This is not necessarily
183 case mmioFOURCC('I','S','R','F'): hdr
="Source Form";break;
184 // ITCH - Identifies the technician who digitized the subject file;
185 // for example, "Smith, John."
186 case mmioFOURCC('I','T','C','H'): hdr
="Technician";break;
187 case mmioFOURCC('I','S','M','P'): hdr
="Time Code";break;
188 case mmioFOURCC('I','D','I','T'): hdr
="Digitization Time";break;
190 case ckidAVIMAINHDR
: // read 'avih'
191 stream_read(demuxer
->stream
,(char*) &avih
,FFMIN(size2
,sizeof(avih
)));
192 le2me_MainAVIHeader(&avih
); // swap to machine endian
193 chunksize
-=FFMIN(size2
,sizeof(avih
));
194 if( mp_msg_test(MSGT_HEADER
,MSGL_V
) ) print_avih(&avih
,MSGL_V
); // else print_avih_flags(&avih,MSGL_V);
196 case ckidSTREAMHEADER
: { // read 'strh'
198 stream_read(demuxer
->stream
,(char*) &h
,FFMIN(size2
,sizeof(h
)));
199 le2me_AVIStreamHeader(&h
); // swap to machine endian
200 chunksize
-=FFMIN(size2
,sizeof(h
));
202 if(h
.fccType
==streamtypeVIDEO
){
203 sh_video
=new_sh_video(demuxer
,stream_id
);
204 mp_msg(MSGT_DEMUX
, MSGL_INFO
, MSGTR_VideoID
, "aviheader", stream_id
);
205 memcpy(&sh_video
->video
,&h
,sizeof(h
));
206 sh_video
->stream_delay
= (float)sh_video
->video
.dwStart
* sh_video
->video
.dwScale
/sh_video
->video
.dwRate
;
208 if(h
.fccType
==streamtypeAUDIO
){
209 sh_audio
=new_sh_audio(demuxer
,stream_id
);
210 mp_msg(MSGT_DEMUX
, MSGL_INFO
, MSGTR_AudioID
, "aviheader", stream_id
);
211 memcpy(&sh_audio
->audio
,&h
,sizeof(h
));
212 sh_audio
->stream_delay
= (float)sh_audio
->audio
.dwStart
* sh_audio
->audio
.dwScale
/sh_audio
->audio
.dwRate
;
213 sh_audio
->needs_parsing
= 1;
215 last_fccType
=h
.fccType
;
216 last_fccHandler
=h
.fccHandler
;
217 if( mp_msg_test(MSGT_HEADER
,MSGL_V
) ) print_strh(&h
,MSGL_V
);
219 case mmioFOURCC('i', 'n', 'd', 'x'): {
221 avisuperindex_chunk
*s
;
223 if(!index_mode
) break;
229 priv
->suidx
= realloc_struct(priv
->suidx
, priv
->suidx_size
, sizeof (avisuperindex_chunk
));
230 s
= &priv
->suidx
[priv
->suidx_size
-1];
233 memcpy(s
->fcc
, "indx", 4);
235 s
->wLongsPerEntry
= stream_read_word_le(demuxer
->stream
);
236 s
->bIndexSubType
= stream_read_char(demuxer
->stream
);
237 s
->bIndexType
= stream_read_char(demuxer
->stream
);
238 s
->nEntriesInUse
= stream_read_dword_le(demuxer
->stream
);
239 *(uint32_t *)s
->dwChunkId
= stream_read_dword_le(demuxer
->stream
);
240 stream_read(demuxer
->stream
, (char *)s
->dwReserved
, 3*4);
241 memset(s
->dwReserved
, 0, 3*4);
243 print_avisuperindex_chunk(s
,MSGL_V
);
245 // Check and fix this useless crap
246 if(s
->wLongsPerEntry
!= sizeof (avisuperindex_entry
)/4) {
247 mp_msg (MSGT_HEADER
, MSGL_WARN
, "Broken super index chunk size: %u\n",s
->wLongsPerEntry
);
248 s
->wLongsPerEntry
= sizeof(avisuperindex_entry
)/4;
250 if( ((chunksize
/4)/s
->wLongsPerEntry
) < s
->nEntriesInUse
){
251 mp_msg (MSGT_HEADER
, MSGL_WARN
, "Broken super index chunk\n");
252 s
->nEntriesInUse
= (chunksize
/4)/s
->wLongsPerEntry
;
255 s
->aIndex
= calloc(s
->nEntriesInUse
, sizeof (avisuperindex_entry
));
256 s
->stdidx
= calloc(s
->nEntriesInUse
, sizeof (avistdindex_chunk
));
258 // now the real index of indices
259 for (i
=0; i
<s
->nEntriesInUse
; i
++) {
261 s
->aIndex
[i
].qwOffset
= stream_read_qword_le(demuxer
->stream
);
262 s
->aIndex
[i
].dwSize
= stream_read_dword_le(demuxer
->stream
);
263 s
->aIndex
[i
].dwDuration
= stream_read_dword_le(demuxer
->stream
);
264 mp_msg (MSGT_HEADER
, MSGL_V
, "ODML (%.4s): [%d] 0x%016"PRIx64
" 0x%04x %u\n",
266 (uint64_t)s
->aIndex
[i
].qwOffset
, s
->aIndex
[i
].dwSize
, s
->aIndex
[i
].dwDuration
);
270 case ckidSTREAMFORMAT
: { // read 'strf'
271 if(last_fccType
==streamtypeVIDEO
){
272 sh_video
->bih
=calloc(FFMAX(chunksize
, sizeof(BITMAPINFOHEADER
)), 1);
273 // sh_video->bih=malloc(chunksize); memset(sh_video->bih,0,chunksize);
274 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_FoundBitmapInfoHeader
,chunksize
,sizeof(BITMAPINFOHEADER
));
275 stream_read(demuxer
->stream
,(char*) sh_video
->bih
,chunksize
);
276 le2me_BITMAPINFOHEADER(sh_video
->bih
); // swap to machine endian
277 if (sh_video
->bih
->biSize
> chunksize
&& sh_video
->bih
->biSize
> sizeof(BITMAPINFOHEADER
))
278 sh_video
->bih
->biSize
= chunksize
;
279 // fixup MS-RLE header (seems to be broken for <256 color files)
280 if(sh_video
->bih
->biCompression
<=1 && sh_video
->bih
->biSize
==40)
281 sh_video
->bih
->biSize
=chunksize
;
282 if( mp_msg_test(MSGT_HEADER
,MSGL_V
) ) print_video_header(sh_video
->bih
,MSGL_V
);
284 sh_video
->fps
=(float)sh_video
->video
.dwRate
/(float)sh_video
->video
.dwScale
;
285 sh_video
->frametime
=(float)sh_video
->video
.dwScale
/(float)sh_video
->video
.dwRate
;
286 sh_video
->format
= sh_video
->bih
->biCompression
;
287 // if(demuxer->video->id==-1) demuxer->video->id=stream_id;
289 idxfix_videostream
=stream_id
;
290 switch(sh_video
->bih
->biCompression
){
291 case mmioFOURCC('M', 'P', 'G', '4'):
292 case mmioFOURCC('m', 'p', 'g', '4'):
293 case mmioFOURCC('D', 'I', 'V', '1'):
294 idxfix_divx
=3; // set index recovery mpeg4 flavour: msmpeg4v1
295 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_RegeneratingKeyfTableForMPG4V1
);
297 case mmioFOURCC('D', 'I', 'V', '3'):
298 case mmioFOURCC('d', 'i', 'v', '3'):
299 case mmioFOURCC('D', 'I', 'V', '4'):
300 case mmioFOURCC('d', 'i', 'v', '4'):
301 case mmioFOURCC('D', 'I', 'V', '5'):
302 case mmioFOURCC('d', 'i', 'v', '5'):
303 case mmioFOURCC('D', 'I', 'V', '6'):
304 case mmioFOURCC('d', 'i', 'v', '6'):
305 case mmioFOURCC('M', 'P', '4', '3'):
306 case mmioFOURCC('m', 'p', '4', '3'):
307 case mmioFOURCC('M', 'P', '4', '2'):
308 case mmioFOURCC('m', 'p', '4', '2'):
309 case mmioFOURCC('D', 'I', 'V', '2'):
310 case mmioFOURCC('A', 'P', '4', '1'):
311 idxfix_divx
=1; // set index recovery mpeg4 flavour: msmpeg4v3
312 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_RegeneratingKeyfTableForDIVX3
);
314 case mmioFOURCC('D', 'I', 'V', 'X'):
315 case mmioFOURCC('d', 'i', 'v', 'x'):
316 case mmioFOURCC('D', 'X', '5', '0'):
317 case mmioFOURCC('X', 'V', 'I', 'D'):
318 case mmioFOURCC('x', 'v', 'i', 'd'):
319 case mmioFOURCC('F', 'M', 'P', '4'):
320 case mmioFOURCC('f', 'm', 'p', '4'):
321 idxfix_divx
=2; // set index recovery mpeg4 flavour: generic mpeg4
322 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_RegeneratingKeyfTableForMPEG4
);
326 if(last_fccType
==streamtypeAUDIO
){
327 unsigned wf_size
= chunksize
<sizeof(WAVEFORMATEX
)?sizeof(WAVEFORMATEX
):chunksize
;
328 sh_audio
->wf
=calloc(wf_size
,1);
329 // sh_audio->wf=malloc(chunksize); memset(sh_audio->wf,0,chunksize);
330 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_FoundWaveFmt
,chunksize
,sizeof(WAVEFORMATEX
));
331 stream_read(demuxer
->stream
,(char*) sh_audio
->wf
,chunksize
);
332 le2me_WAVEFORMATEX(sh_audio
->wf
);
333 if (sh_audio
->wf
->cbSize
!= 0 &&
334 wf_size
< sizeof(WAVEFORMATEX
)+sh_audio
->wf
->cbSize
) {
335 sh_audio
->wf
=realloc(sh_audio
->wf
, sizeof(WAVEFORMATEX
)+sh_audio
->wf
->cbSize
);
337 sh_audio
->format
=sh_audio
->wf
->wFormatTag
;
338 if (sh_audio
->format
== 1 &&
339 last_fccHandler
== mmioFOURCC('A', 'x', 'a', 'n'))
340 sh_audio
->format
= last_fccHandler
;
341 sh_audio
->i_bps
=sh_audio
->wf
->nAvgBytesPerSec
;
343 if( mp_msg_test(MSGT_HEADER
,MSGL_V
) ) print_wave_header(sh_audio
->wf
,MSGL_V
);
344 ++priv
->audio_streams
;
345 // if(demuxer->audio->id==-1) demuxer->audio->id=stream_id;
349 case mmioFOURCC('v', 'p', 'r', 'p'): {
350 VideoPropHeader
*vprp
= malloc(chunksize
);
352 stream_read(demuxer
->stream
, (void*)vprp
, chunksize
);
353 le2me_VideoPropHeader(vprp
);
354 chunksize
-= sizeof(*vprp
)-sizeof(vprp
->FieldInfo
);
355 chunksize
/= sizeof(VIDEO_FIELD_DESC
);
356 if (vprp
->nbFieldPerFrame
> chunksize
) {
357 vprp
->nbFieldPerFrame
= chunksize
;
360 for (i
=0; i
<vprp
->nbFieldPerFrame
; i
++) {
361 le2me_VIDEO_FIELD_DESC(&vprp
->FieldInfo
[i
]);
364 sh_video
->aspect
= GET_AVI_ASPECT(vprp
->dwFrameAspectRatio
);
366 if( mp_msg_test(MSGT_HEADER
,MSGL_V
) ) print_vprp(vprp
,MSGL_V
);
370 case mmioFOURCC('d', 'm', 'l', 'h'): {
371 // dmlh 00 00 00 04 frms
372 unsigned int total_frames
= stream_read_dword_le(demuxer
->stream
);
373 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_FoundAVIV2Header
, chunksize
, total_frames
);
374 stream_skip(demuxer
->stream
, chunksize
-4);
378 case ckidAVINEWINDEX
:
379 if(demuxer
->movi_end
>stream_tell(demuxer
->stream
))
380 demuxer
->movi_end
=stream_tell(demuxer
->stream
); // fixup movi-end
381 if(index_mode
&& !priv
->isodml
){
383 priv
->idx_size
=size2
>>4;
384 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_ReadingIndexBlockChunksForFrames
,
385 priv
->idx_size
,avih
.dwTotalFrames
, (int64_t)stream_tell(demuxer
->stream
));
386 priv
->idx
=malloc(priv
->idx_size
<<4);
387 // printf("\nindex to %p !!!!! (priv=%p)\n",priv->idx,priv);
388 stream_read(demuxer
->stream
,(char*)priv
->idx
,priv
->idx_size
<<4);
389 for (i
= 0; i
< priv
->idx_size
; i
++) { // swap index to machine endian
390 AVIINDEXENTRY
*entry
=(AVIINDEXENTRY
*)priv
->idx
+ i
;
391 le2me_AVIINDEXENTRY(entry
);
393 * We (ab)use the upper word for bits 32-47 of the offset, so
394 * we'll clear them here.
395 * FIXME: AFAIK no codec uses them, but if one does it will break
397 entry
->dwFlags
&=0xffff;
399 chunksize
-=priv
->idx_size
<<4;
400 if( mp_msg_test(MSGT_HEADER
,MSGL_DBG2
) ) print_index(priv
->idx
,priv
->idx_size
,MSGL_DBG2
);
404 case mmioFOURCC('R','I','F','F'): {
407 mp_msg(MSGT_HEADER
, MSGL_V
, MSGTR_MPDEMUX_AVIHDR_AdditionalRIFFHdr
);
408 stream_read(demuxer
->stream
, riff_type
, sizeof riff_type
);
409 if (strncmp(riff_type
, "AVIX", sizeof riff_type
))
410 mp_msg(MSGT_HEADER
, MSGL_WARN
, MSGTR_MPDEMUX_AVIHDR_WarnNotExtendedAVIHdr
);
413 * We got an extended AVI header, so we need to switch to
414 * ODML to get seeking to work, provided we got indx chunks
415 * in the header (suidx_size > 0).
417 if (priv
->suidx_size
> 0)
421 list_end
= 0; /* a new list will follow */
424 stream_skip(demuxer
->stream
, chunksize
);
429 mp_msg(MSGT_HEADER
,MSGL_V
,"hdr=%s size=%u\n",hdr
,size2
);
431 chunksize
=1; // empty
434 int len
=(size2
<250)?size2
:250;
435 stream_read(demuxer
->stream
,buf
,len
);
438 mp_msg(MSGT_HEADER
,MSGL_V
,"%-10s: %s\n",hdr
,buf
);
439 demux_info_add(demuxer
, hdr
, buf
);
442 mp_msg(MSGT_HEADER
,MSGL_DBG2
,"list_end=0x%"PRIX64
" pos=0x%"PRIX64
" chunksize=0x%"PRIX64
" next=0x%"PRIX64
"\n",
443 (int64_t)list_end
, (int64_t)stream_tell(demuxer
->stream
),
444 (int64_t)chunksize
, (int64_t)chunksize
+(int64_t)stream_tell(demuxer
->stream
));
446 chunksize
+stream_tell(demuxer
->stream
) == list_end
) list_end
=0;
447 if(list_end
>0 && chunksize
+stream_tell(demuxer
->stream
)>list_end
){
448 mp_msg(MSGT_HEADER
,MSGL_V
,MSGTR_MPDEMUX_AVIHDR_BrokenChunk
,chunksize
,(char *) &id
);
449 stream_seek(demuxer
->stream
,list_end
);
452 if(chunksize
>0) stream_skip(demuxer
->stream
,chunksize
); else
453 if((int)chunksize
<0) mp_msg(MSGT_HEADER
,MSGL_WARN
,"chunksize=%u (id=%.4s)\n",chunksize
,(char *) &id
);
457 if (priv
->suidx_size
> 0 && priv
->idx_size
== 0) {
459 * No NEWAVIINDEX, but we got an OpenDML index.
464 if (priv
->isodml
&& (index_mode
==-1 || index_mode
==0 || index_mode
==1)) {
467 avisuperindex_chunk
*cx
;
471 if (priv
->idx_size
) free(priv
->idx
);
473 priv
->idx_offset
= 0;
476 mp_msg(MSGT_HEADER
, MSGL_INFO
, MSGTR_MPDEMUX_AVIHDR_BuildingODMLidx
, priv
->suidx_size
);
478 // read the standard indices
479 for (cx
= &priv
->suidx
[0], i
=0; i
<priv
->suidx_size
; cx
++, i
++) {
480 stream_reset(demuxer
->stream
);
481 for (j
=0; j
<cx
->nEntriesInUse
; j
++) {
483 memset(&cx
->stdidx
[j
], 0, 32);
484 ret1
= stream_seek(demuxer
->stream
, (off_t
)cx
->aIndex
[j
].qwOffset
);
485 ret2
= stream_read(demuxer
->stream
, (char *)&cx
->stdidx
[j
], 32);
486 if (ret1
!= 1 || ret2
!= 32 || cx
->stdidx
[j
].nEntriesInUse
==0) {
487 // this is a broken file (probably incomplete) let the standard
488 // gen_index routine handle this
491 mp_msg(MSGT_HEADER
, MSGL_WARN
, MSGTR_MPDEMUX_AVIHDR_BrokenODMLfile
);
495 le2me_AVISTDIDXCHUNK(&cx
->stdidx
[j
]);
496 print_avistdindex_chunk(&cx
->stdidx
[j
],MSGL_V
);
497 priv
->idx_size
+= cx
->stdidx
[j
].nEntriesInUse
;
498 cx
->stdidx
[j
].aIndex
= malloc(cx
->stdidx
[j
].nEntriesInUse
*sizeof(avistdindex_entry
));
499 stream_read(demuxer
->stream
, (char *)cx
->stdidx
[j
].aIndex
,
500 cx
->stdidx
[j
].nEntriesInUse
*sizeof(avistdindex_entry
));
501 for (k
=0;k
<cx
->stdidx
[j
].nEntriesInUse
; k
++)
502 le2me_AVISTDIDXENTRY(&cx
->stdidx
[j
].aIndex
[k
]);
504 cx
->stdidx
[j
].dwReserved3
= 0;
510 * We convert the index by translating all entries into AVIINDEXENTRYs
511 * and sorting them by offset. The result should be the same index
512 * we would get with -forceidx.
515 idx
= priv
->idx
= malloc(priv
->idx_size
* sizeof (AVIINDEXENTRY
));
517 for (cx
= priv
->suidx
; cx
!= &priv
->suidx
[priv
->suidx_size
]; cx
++) {
518 avistdindex_chunk
*sic
;
519 for (sic
= cx
->stdidx
; sic
!= &cx
->stdidx
[cx
->nEntriesInUse
]; sic
++) {
520 avistdindex_entry
*sie
;
521 for (sie
= sic
->aIndex
; sie
!= &sic
->aIndex
[sic
->nEntriesInUse
]; sie
++) {
522 uint64_t off
= sic
->qwBaseOffset
+ sie
->dwOffset
- 8;
523 memcpy(&idx
->ckid
, sic
->dwChunkId
, 4);
524 idx
->dwChunkOffset
= off
;
525 idx
->dwFlags
= (off
>> 32) << 16;
526 idx
->dwChunkLength
= sie
->dwSize
& 0x7fffffff;
527 idx
->dwFlags
|= (sie
->dwSize
&0x80000000)?0x0:AVIIF_KEYFRAME
; // bit 31 denotes !keyframe
532 qsort(priv
->idx
, priv
->idx_size
, sizeof(AVIINDEXENTRY
), avi_idx_cmp
);
535 Hack to work around a "wrong" index in some divx odml files
536 (processor_burning.avi as an example)
537 They have ##dc on non keyframes but the ix00 tells us they are ##db.
538 Read the fcc of a non-keyframe vid frame and check it.
544 stream_reset (demuxer
->stream
);
546 // find out the video stream id. I have seen files with 01db.
547 for (idx
= &((AVIINDEXENTRY
*)priv
->idx
)[0], i
=0; i
<priv
->idx_size
; i
++, idx
++){
548 unsigned char res
[2];
549 if (odml_get_vstream_id(idx
->ckid
, res
)) {
550 db
= mmioFOURCC(res
[0], res
[1], 'd', 'b');
555 // find first non keyframe
556 for (idx
= &((AVIINDEXENTRY
*)priv
->idx
)[0], i
=0; i
<priv
->idx_size
; i
++, idx
++){
557 if (!(idx
->dwFlags
& AVIIF_KEYFRAME
) && idx
->ckid
== db
) break;
559 if (i
<priv
->idx_size
&& db
) {
560 stream_seek(demuxer
->stream
, AVI_IDX_OFFSET(idx
));
561 id
= stream_read_dword_le(demuxer
->stream
);
562 if (id
&& id
!= db
) // index fcc and real fcc differ? fix it.
563 for (idx
= &((AVIINDEXENTRY
*)priv
->idx
)[0], i
=0; i
<priv
->idx_size
; i
++, idx
++){
564 if (!(idx
->dwFlags
& AVIIF_KEYFRAME
) && idx
->ckid
== db
)
570 if ( mp_msg_test(MSGT_HEADER
,MSGL_DBG2
) ) print_index(priv
->idx
, priv
->idx_size
,MSGL_DBG2
);
572 demuxer
->movi_end
=demuxer
->stream
->end_pos
;
576 // free unneeded stuff
577 cx
= &priv
->suidx
[0];
579 for (j
=0;j
<cx
->nEntriesInUse
;j
++)
580 if (cx
->stdidx
[j
].nEntriesInUse
) free(cx
->stdidx
[j
].aIndex
);
583 } while (cx
++ != &priv
->suidx
[priv
->suidx_size
-1]);
588 /* Read a saved index file */
589 if (index_file_load
) {
594 if ((fp
= fopen(index_file_load
, "r")) == NULL
) {
595 mp_msg(MSGT_HEADER
,MSGL_ERR
, MSGTR_MPDEMUX_AVIHDR_CantReadIdxFile
, index_file_load
, strerror(errno
));
598 fread(&magic
, 6, 1, fp
);
599 if (strncmp(magic
, "MPIDX1", 6)) {
600 mp_msg(MSGT_HEADER
,MSGL_ERR
, MSGTR_MPDEMUX_AVIHDR_NotValidMPidxFile
, index_file_load
);
603 fread(&priv
->idx_size
, sizeof(priv
->idx_size
), 1, fp
);
604 priv
->idx
=malloc(priv
->idx_size
*sizeof(AVIINDEXENTRY
));
606 mp_msg(MSGT_HEADER
,MSGL_ERR
, MSGTR_MPDEMUX_AVIHDR_FailedMallocForIdxFile
, index_file_load
);
611 for (i
=0; i
<priv
->idx_size
;i
++) {
613 idx
=&((AVIINDEXENTRY
*)priv
->idx
)[i
];
614 fread(idx
, sizeof(AVIINDEXENTRY
), 1, fp
);
616 mp_msg(MSGT_HEADER
,MSGL_ERR
, MSGTR_MPDEMUX_AVIHDR_PrematureEOF
, index_file_load
);
623 mp_msg(MSGT_HEADER
,MSGL_INFO
, MSGTR_MPDEMUX_AVIHDR_IdxFileLoaded
, index_file_load
);
626 if(index_mode
>=2 || (priv
->idx_size
==0 && index_mode
==1)){
628 // build index for file:
629 stream_reset(demuxer
->stream
);
630 stream_seek(demuxer
->stream
,demuxer
->movi_start
);
641 demuxer
->filepos
=stream_tell(demuxer
->stream
);
642 if(demuxer
->filepos
>=demuxer
->movi_end
&& demuxer
->movi_start
<demuxer
->movi_end
) break;
643 id
=stream_read_dword_le(demuxer
->stream
);
644 len
=stream_read_dword_le(demuxer
->stream
);
645 if(id
==mmioFOURCC('L','I','S','T') || id
==mmioFOURCC('R', 'I', 'F', 'F')){
646 id
=stream_read_dword_le(demuxer
->stream
); // list or RIFF type
649 if(stream_eof(demuxer
->stream
)) break;
650 if(!id
|| avi_stream_id(id
)==100) goto skip_chunk
; // bad ID (or padding?)
652 if(idx_pos
>=priv
->idx_size
){
653 // priv->idx_size+=32;
654 priv
->idx_size
+=1024; // +16kB
655 priv
->idx
=realloc(priv
->idx
,priv
->idx_size
*sizeof(AVIINDEXENTRY
));
656 if(!priv
->idx
){idx_pos
=0; break;} // error!
658 idx
=&((AVIINDEXENTRY
*)priv
->idx
)[idx_pos
++];
660 idx
->dwFlags
=AVIIF_KEYFRAME
; // FIXME
661 idx
->dwFlags
|=(demuxer
->filepos
>>16)&0xffff0000U
;
662 idx
->dwChunkOffset
=(unsigned long)demuxer
->filepos
;
663 idx
->dwChunkLength
=len
;
665 c
=stream_read_dword(demuxer
->stream
);
667 if(!len
) idx
->dwFlags
&=~AVIIF_KEYFRAME
;
669 // Fix keyframes for DivX files:
671 if(avi_stream_id(id
)==idxfix_videostream
){
673 case 3: c
=stream_read_dword(demuxer
->stream
)<<5; //skip 32+5 bits for m$mpeg4v1
674 case 1: if(c
&0x40000000) idx
->dwFlags
&=~AVIIF_KEYFRAME
;break; // divx 3
675 case 2: if(c
==0x1B6) idx
->dwFlags
&=~AVIIF_KEYFRAME
;break; // divx 4
679 // update status line:
680 { static off_t lastpos
;
682 off_t len
=demuxer
->movi_end
-demuxer
->movi_start
;
684 pos
=100*(demuxer
->filepos
-demuxer
->movi_start
)/len
; // %
686 pos
=(demuxer
->filepos
-demuxer
->movi_start
)>>20; // MB
690 mp_msg(MSGT_HEADER
,MSGL_STATUS
,MSGTR_MPDEMUX_AVIHDR_GeneratingIdx
,
691 (unsigned long)pos
, len
?"%":"MB");
694 mp_dbg(MSGT_HEADER
,MSGL_DBG2
,"%08X %08X %.4s %08X %X\n",(unsigned int)demuxer
->filepos
,id
,(char *) &id
,(int)c
,(unsigned int) idx
->dwFlags
);
696 { unsigned char tmp
[64];
698 stream_read(demuxer
->stream
,tmp
,64);
700 for(i
=0;i
<64;i
++) printf(" %02X",tmp
[i
]);
705 skip
=(len
+1)&(~1UL); // total bytes in this chunk
706 stream_seek(demuxer
->stream
,8+demuxer
->filepos
+skip
);
708 priv
->idx_size
=idx_pos
;
709 mp_msg(MSGT_HEADER
,MSGL_INFO
,MSGTR_MPDEMUX_AVIHDR_IdxGeneratedForHowManyChunks
,priv
->idx_size
);
710 if( mp_msg_test(MSGT_HEADER
,MSGL_DBG2
) ) print_index(priv
->idx
,priv
->idx_size
,MSGL_DBG2
);
712 /* Write generated index to a file */
713 if (index_file_save
) {
717 if ((fp
=fopen(index_file_save
, "w")) == NULL
) {
718 mp_msg(MSGT_HEADER
,MSGL_ERR
, MSGTR_MPDEMUX_AVIHDR_Failed2WriteIdxFile
, index_file_save
, strerror(errno
));
721 fwrite("MPIDX1", 6, 1, fp
);
722 fwrite(&priv
->idx_size
, sizeof(priv
->idx_size
), 1, fp
);
723 for (i
=0; i
<priv
->idx_size
; i
++) {
724 AVIINDEXENTRY
*idx
= &((AVIINDEXENTRY
*)priv
->idx
)[i
];
725 fwrite(idx
, sizeof(AVIINDEXENTRY
), 1, fp
);
728 mp_msg(MSGT_HEADER
,MSGL_INFO
, MSGTR_MPDEMUX_AVIHDR_IdxFileSaved
, index_file_save
);