Mercurial > mplayer.hg
annotate libmpdemux/aviheader.c @ 14427:6234b5655dfd
synced to 1.12, initial translation
author | gabrov |
---|---|
date | Sat, 08 Jan 2005 13:01:20 +0000 |
parents | 85ec4f714596 |
children | 35001ce5b853 |
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> |
11234
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
5 #include <errno.h> |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
6 |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
7 #include "config.h" |
1567 | 8 #include "mp_msg.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
9 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
10 #include "stream.h" |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
11 #include "demuxer.h" |
2338 | 12 #include "stheader.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
13 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
14 #include "bswap.h" |
1342 | 15 #include "aviheader.h" |
1 | 16 |
17 #define MIN(a,b) (((a)<(b))?(a):(b)) | |
18 | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
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); |
1456
8c57a5a3c645
printfs cleanup - moved to higher -v level or moved to stderr
arpi
parents:
1430
diff
changeset
|
23 extern void print_avih_flags(MainAVIHeader *h); |
601 | 24 extern void print_strh(AVIStreamHeader *h); |
25 extern void print_wave_header(WAVEFORMATEX *h); | |
1496 | 26 extern void print_video_header(BITMAPINFOHEADER *h); |
601 | 27 extern void print_index(AVIINDEXENTRY *idx,int idx_size); |
12036 | 28 extern void print_avistdindex_chunk(avistdindex_chunk *h); |
29 extern void print_avisuperindex_chunk(avisuperindex_chunk *h); | |
13187 | 30 extern void print_vprp(VideoPropHeader *vprp); |
12036 | 31 |
32 static int odml_get_vstream_id(int id, unsigned char res[]) | |
33 { | |
34 unsigned char *p = (unsigned char *)&id; | |
35 id = le2me_32(id); | |
36 | |
37 if (p[2] == 'd') { | |
38 if (res) { | |
39 res[0] = p[0]; | |
40 res[1] = p[1]; | |
41 } | |
42 return 1; | |
43 } | |
44 return 0; | |
45 } | |
46 | |
14297 | 47 int avi_idx_cmp(const void *elem1,const void *elem2) { |
48 register off_t a = AVI_IDX_OFFSET((AVIINDEXENTRY *)elem1); | |
49 register off_t b = AVI_IDX_OFFSET((AVIINDEXENTRY *)elem2); | |
50 return (a > b) - (b > a); | |
12036 | 51 } |
601 | 52 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
53 void read_avi_header(demuxer_t *demuxer,int index_mode){ |
426 | 54 sh_audio_t *sh_audio=NULL; |
55 sh_video_t *sh_video=NULL; | |
1 | 56 int stream_id=-1; |
568 | 57 int idxfix_videostream=0; |
58 int idxfix_divx=0; | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
59 avi_priv_t* priv=demuxer->priv; |
4664 | 60 off_t list_end=0; |
1 | 61 |
62 //---- AVI header: | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
63 priv->idx_size=0; |
2330 | 64 priv->audio_streams=0; |
1 | 65 while(1){ |
66 int id=stream_read_dword_le(demuxer->stream); | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
67 unsigned chunksize,size2; |
1 | 68 static int last_fccType=0; |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
69 char* hdr=NULL; |
1 | 70 // |
71 if(stream_eof(demuxer->stream)) break; | |
11234
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
72 // Imply -forceidx if -saveidx is specified |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
73 if (index_file_save) |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
74 index_mode = 2; |
1 | 75 // |
76 if(id==mmioFOURCC('L','I','S','T')){ | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
77 unsigned len=stream_read_dword_le(demuxer->stream); // list size |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
78 id=stream_read_dword_le(demuxer->stream); // list type |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
79 mp_msg(MSGT_HEADER,MSGL_DBG2,"LIST %.4s len=%u\n",(char *) &id,len); |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
80 if(len >= 4) { |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
81 len -= 4; |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
82 list_end=stream_tell(demuxer->stream)+((len+1)&(~1)); |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
83 } else { |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
84 mp_msg(MSGT_HEADER,MSGL_WARN,"** empty list?!\n"); |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
85 list_end = 0; |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
86 } |
5933 | 87 mp_msg(MSGT_HEADER,MSGL_V,"list_end=0x%X\n",(int)list_end); |
1 | 88 if(id==listtypeAVIMOVIE){ |
89 // found MOVI header | |
4154 | 90 if(!demuxer->movi_start) demuxer->movi_start=stream_tell(demuxer->stream); |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
91 demuxer->movi_end=stream_tell(demuxer->stream)+len; |
1754 | 92 mp_msg(MSGT_HEADER,MSGL_V,"Found movie at 0x%X - 0x%X\n",(int)demuxer->movi_start,(int)demuxer->movi_end); |
6274 | 93 if(demuxer->stream->end_pos>demuxer->movi_end) 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
|
94 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
|
95 break; // reading from non-seekable source (stdin) or forced index or no index forced |
7762 | 96 if(list_end>0) stream_seek(demuxer->stream,list_end); // skip movi |
97 list_end=0; | |
1 | 98 } |
99 continue; | |
100 } | |
101 size2=stream_read_dword_le(demuxer->stream); | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
102 mp_msg(MSGT_HEADER,MSGL_DBG2,"CHUNK %.4s len=%u\n",(char *) &id,size2); |
1 | 103 chunksize=(size2+1)&(~1); |
104 switch(id){ | |
4664 | 105 |
106 // Indicates where the subject of the file is archived | |
107 case mmioFOURCC('I','A','R','L'): hdr="Archival Location";break; | |
108 // Lists the artist of the original subject of the file; | |
109 // for example, "Michaelangelo." | |
110 case mmioFOURCC('I','A','R','T'): hdr="Artist";break; | |
111 // Lists the name of the person or organization that commissioned | |
112 // the subject of the file; for example "Pope Julian II." | |
113 case mmioFOURCC('I','C','M','S'): hdr="Commissioned";break; | |
114 // Provides general comments about the file or the subject | |
115 // of the file. If the comment is several sentences long, end each | |
116 // sentence with a period. Do not include new-line characters. | |
117 case mmioFOURCC('I','C','M','T'): hdr="Comments";break; | |
118 // Records the copyright information for the file; for example, | |
119 // "Copyright Encyclopedia International 1991." If there are multiple | |
120 // copyrights, separate them by semicolon followed by a space. | |
121 case mmioFOURCC('I','C','O','P'): hdr="Copyright";break; | |
122 // Describes whether an image has been cropped and, if so, how it | |
123 // was cropped; for example, "lower-right corner." | |
124 case mmioFOURCC('I','C','R','D'): hdr="Creation Date";break; | |
125 // Describes whether an image has been cropped and, if so, how it | |
126 // was cropped; for example, "lower-right corner." | |
127 case mmioFOURCC('I','C','R','P'): hdr="Cropped";break; | |
128 // Specifies the size of the original subject of the file; for | |
129 // example, "8.5 in h, 11 in w." | |
130 case mmioFOURCC('I','D','I','M'): hdr="Dimensions";break; | |
131 // Stores dots per inch setting of the digitizer used to | |
132 // produce the file, such as "300." | |
133 case mmioFOURCC('I','D','P','I'): hdr="Dots Per Inch";break; | |
134 // Stores the of the engineer who worked on the file. If there are | |
135 // multiple engineers, separate the names by a semicolon and a blank; | |
136 // for example, "Smith, John; Adams, Joe." | |
137 case mmioFOURCC('I','E','N','G'): hdr="Engineer";break; | |
138 // Describes the original work, such as "landscape,", "portrait," | |
139 // "still liefe," etc. | |
140 case mmioFOURCC('I','G','N','R'): hdr="Genre";break; | |
141 // Provides a list of keywords that refer to the file or subject of the | |
142 // file. Separate multiple keywords with a semicolon and a blank; | |
143 // for example, "Seattle, aerial view; scenery." | |
144 case mmioFOURCC('I','K','E','Y'): hdr="Keywords";break; | |
145 // ILGT - Describes the changes in the lightness settings on the digitizer | |
146 // required to produce the file. Note that the format of this information | |
147 // depends on the hardware used. | |
148 case mmioFOURCC('I','L','G','T'): hdr="Lightness";break; | |
149 // IMED - Decribes the original subject of the file, such as | |
150 // "computer image," "drawing," "lithograph," and so on. | |
151 case mmioFOURCC('I','M','E','D'): hdr="Medium";break; | |
152 // INAM - Stores the title of the subject of the file, such as | |
153 // "Seattle from Above." | |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
154 case mmioFOURCC('I','N','A','M'): hdr="Name";break; |
4664 | 155 // IPLT - Specifies the number of colors requested when digitizing |
156 // an image, such as "256." | |
157 case mmioFOURCC('I','P','L','T'): hdr="Palette Setting";break; | |
158 // IPRD - Specifies the name of title the file was originally intended | |
159 // for, such as "Encyclopedia of Pacific Northwest Geography." | |
160 case mmioFOURCC('I','P','R','D'): hdr="Product";break; | |
161 // ISBJ - Decsribes the contents of the file, such as | |
162 // "Aerial view of Seattle." | |
163 case mmioFOURCC('I','S','B','J'): hdr="Subject";break; | |
164 // ISFT - Identifies the name of the software packages used to create the | |
165 // file, such as "Microsoft WaveEdit" | |
166 case mmioFOURCC('I','S','F','T'): hdr="Software";break; | |
167 // ISHP - Identifies the change in sharpness for the digitizer | |
168 // required to produce the file (the format depends on the hardware used). | |
169 case mmioFOURCC('I','S','H','P'): hdr="Sharpness";break; | |
170 // ISRC - Identifies the name of the person or organization who | |
171 // suplied the original subject of the file; for example, "Try Research." | |
172 case mmioFOURCC('I','S','R','C'): hdr="Source";break; | |
173 // ISRF - Identifies the original form of the material that was digitized, | |
174 // such as "slide," "paper," "map," and so on. This is not necessarily | |
175 // the same as IMED | |
176 case mmioFOURCC('I','S','R','F'): hdr="Source Form";break; | |
177 // ITCH - Identifies the technician who digitized the subject file; | |
178 // for example, "Smith, John." | |
179 case mmioFOURCC('I','T','C','H'): hdr="Technician";break; | |
180 case mmioFOURCC('I','S','M','P'): hdr="Time Code";break; | |
181 case mmioFOURCC('I','D','I','T'): hdr="Digitization Time";break; | |
182 | |
1 | 183 case ckidAVIMAINHDR: // read 'avih' |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
184 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
|
185 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
|
186 chunksize-=MIN(size2,sizeof(avih)); |
8027 | 187 if(verbose>0) print_avih(&avih); // else print_avih_flags(&avih); |
1 | 188 break; |
189 case ckidSTREAMHEADER: { // read 'strh' | |
190 AVIStreamHeader h; | |
191 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
|
192 le2me_AVIStreamHeader(&h); // swap to machine endian |
1 | 193 chunksize-=MIN(size2,sizeof(h)); |
426 | 194 ++stream_id; |
195 if(h.fccType==streamtypeVIDEO){ | |
1289 | 196 sh_video=new_sh_video(demuxer,stream_id); |
426 | 197 memcpy(&sh_video->video,&h,sizeof(h)); |
198 } else | |
199 if(h.fccType==streamtypeAUDIO){ | |
1289 | 200 sh_audio=new_sh_audio(demuxer,stream_id); |
426 | 201 memcpy(&sh_audio->audio,&h,sizeof(h)); |
202 } | |
1 | 203 last_fccType=h.fccType; |
204 if(verbose>=1) print_strh(&h); | |
205 break; } | |
12036 | 206 case mmioFOURCC('i', 'n', 'd', 'x'): { |
12342 | 207 uint32_t i; |
12036 | 208 unsigned msize = 0; |
209 avisuperindex_chunk *s; | |
210 priv->suidx_size++; | |
211 priv->suidx = realloc(priv->suidx, priv->suidx_size * sizeof (avisuperindex_chunk)); | |
212 s = &priv->suidx[priv->suidx_size-1]; | |
213 | |
214 chunksize-=24; | |
215 memcpy(s->fcc, "indx", 4); | |
216 s->dwSize = size2; | |
217 s->wLongsPerEntry = stream_read_word_le(demuxer->stream); | |
218 s->bIndexSubType = stream_read_char(demuxer->stream); | |
219 s->bIndexType = stream_read_char(demuxer->stream); | |
220 s->nEntriesInUse = stream_read_dword_le(demuxer->stream); | |
221 *(uint32_t *)s->dwChunkId = stream_read_dword_le(demuxer->stream); | |
222 stream_read(demuxer->stream, (char *)s->dwReserved, 3*4); | |
223 memset(s->dwReserved, 0, 3*4); | |
224 | |
225 print_avisuperindex_chunk(s); | |
226 | |
227 msize = sizeof (uint32_t) * s->wLongsPerEntry * s->nEntriesInUse; | |
228 s->aIndex = malloc(msize); | |
229 memset (s->aIndex, 0, msize); | |
230 s->stdidx = malloc (s->nEntriesInUse * sizeof (avistdindex_chunk)); | |
231 memset (s->stdidx, 0, s->nEntriesInUse * sizeof (avistdindex_chunk)); | |
232 | |
233 // now the real index of indices | |
234 for (i=0; i<s->nEntriesInUse; i++) { | |
235 chunksize-=16; | |
236 s->aIndex[i].qwOffset = stream_read_dword_le(demuxer->stream) & 0xffffffff; | |
237 s->aIndex[i].qwOffset |= ((uint64_t)stream_read_dword_le(demuxer->stream) & 0xffffffff)<<32; | |
238 s->aIndex[i].dwSize = stream_read_dword_le(demuxer->stream); | |
239 s->aIndex[i].dwDuration = stream_read_dword_le(demuxer->stream); | |
240 mp_msg (MSGT_HEADER, MSGL_V, "ODML (%.4s): [%d] 0x%016llx 0x%04lx %ld\n", | |
241 (s->dwChunkId), i, | |
242 (uint64_t)s->aIndex[i].qwOffset, s->aIndex[i].dwSize, s->aIndex[i].dwDuration); | |
243 } | |
244 | |
245 break; } | |
1 | 246 case ckidSTREAMFORMAT: { // read 'strf' |
247 if(last_fccType==streamtypeVIDEO){ | |
433 | 248 sh_video->bih=calloc((chunksize<sizeof(BITMAPINFOHEADER))?sizeof(BITMAPINFOHEADER):chunksize,1); |
249 // sh_video->bih=malloc(chunksize); memset(sh_video->bih,0,chunksize); | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
250 mp_msg(MSGT_HEADER,MSGL_V,"found 'bih', %u 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
|
251 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
|
252 le2me_BITMAPINFOHEADER(sh_video->bih); // swap to machine endian |
5418
5b852c08473f
I hate M$. it seems that MSRLE biSize is always 40 when number of colors < 256 instead of 40+colors*4
arpi
parents:
4664
diff
changeset
|
253 // fixup MS-RLE header (seems to be broken for <256 color files) |
7784 | 254 if(sh_video->bih->biCompression<=1 && sh_video->bih->biSize==40) |
5418
5b852c08473f
I hate M$. it seems that MSRLE biSize is always 40 when number of colors < 256 instead of 40+colors*4
arpi
parents:
4664
diff
changeset
|
255 sh_video->bih->biSize=chunksize; |
1492 | 256 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
|
257 chunksize=0; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
258 // 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
|
259 // sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; |
426 | 260 // if(demuxer->video->id==-1) demuxer->video->id=stream_id; |
568 | 261 // IdxFix: |
262 idxfix_videostream=stream_id; | |
263 switch(sh_video->bih->biCompression){ | |
6275 | 264 case mmioFOURCC('M', 'P', 'G', '4'): |
265 case mmioFOURCC('m', 'p', 'g', '4'): | |
266 case mmioFOURCC('D', 'I', 'V', '1'): | |
13700 | 267 idxfix_divx=3; // set index recovery mpeg4 flavour: msmpeg4v1 |
6275 | 268 mp_msg(MSGT_HEADER,MSGL_V,"Regenerating keyframe table for M$ mpg4v1 video\n"); |
269 break; | |
270 case mmioFOURCC('D', 'I', 'V', '3'): | |
568 | 271 case mmioFOURCC('d', 'i', 'v', '3'): |
272 case mmioFOURCC('D', 'I', 'V', '4'): | |
273 case mmioFOURCC('d', 'i', 'v', '4'): | |
274 case mmioFOURCC('D', 'I', 'V', '5'): | |
275 case mmioFOURCC('d', 'i', 'v', '5'): | |
276 case mmioFOURCC('D', 'I', 'V', '6'): | |
277 case mmioFOURCC('d', 'i', 'v', '6'): | |
278 case mmioFOURCC('M', 'P', '4', '3'): | |
279 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
|
280 case mmioFOURCC('M', 'P', '4', '2'): |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
281 case mmioFOURCC('m', 'p', '4', '2'): |
773 | 282 case mmioFOURCC('D', 'I', 'V', '2'): |
568 | 283 case mmioFOURCC('A', 'P', '4', '1'): |
13700 | 284 idxfix_divx=1; // set index recovery mpeg4 flavour: msmpeg4v3 |
285 mp_msg(MSGT_HEADER,MSGL_V,"Regenerating keyframe table for DIVX3 video\n"); | |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
286 break; |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
287 case mmioFOURCC('D', 'I', 'V', 'X'): |
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
288 case mmioFOURCC('d', 'i', 'v', 'x'): |
6274 | 289 case mmioFOURCC('D', 'X', '5', '0'): |
13671 | 290 case mmioFOURCC('X', 'V', 'I', 'D'): |
291 case mmioFOURCC('x', 'v', 'i', 'd'): | |
13700 | 292 idxfix_divx=2; // set index recovery mpeg4 flavour: generic mpeg4 |
293 mp_msg(MSGT_HEADER,MSGL_V,"Regenerating keyframe table for MPEG4 video\n"); | |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
294 break; |
568 | 295 } |
1 | 296 } else |
297 if(last_fccType==streamtypeAUDIO){ | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
298 unsigned wf_size = chunksize<sizeof(WAVEFORMATEX)?sizeof(WAVEFORMATEX):chunksize; |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J«ärgen Keil <jk@tools.de>
arpi_esp
parents:
773
diff
changeset
|
299 sh_audio->wf=calloc(wf_size,1); |
433 | 300 // sh_audio->wf=malloc(chunksize); memset(sh_audio->wf,0,chunksize); |
1567 | 301 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
|
302 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
|
303 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
|
304 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
|
305 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
|
306 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
|
307 } |
432
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
308 chunksize=0; |
5251b0c57e39
sh_audio->wf and sh_video->bih changed to dynamic (thanx to Jens Hoffmann)
arpi_esp
parents:
426
diff
changeset
|
309 if(verbose>=1) print_wave_header(sh_audio->wf); |
2330 | 310 ++priv->audio_streams; |
426 | 311 // if(demuxer->audio->id==-1) demuxer->audio->id=stream_id; |
1 | 312 } |
313 break; | |
314 } | |
12036 | 315 case mmioFOURCC('v', 'p', 'r', 'p'): { |
316 VideoPropHeader *vprp = malloc(chunksize); | |
12342 | 317 unsigned int i; |
12036 | 318 stream_read(demuxer->stream, (void*)vprp, chunksize); |
319 le2me_VideoPropHeader(vprp); | |
320 chunksize -= sizeof(*vprp)-sizeof(vprp->FieldInfo); | |
321 chunksize /= sizeof(VIDEO_FIELD_DESC); | |
322 if (vprp->nbFieldPerFrame > chunksize) { | |
323 vprp->nbFieldPerFrame = chunksize; | |
324 } | |
325 chunksize = 0; | |
326 for (i=0; i<vprp->nbFieldPerFrame; i++) { | |
327 le2me_VIDEO_FIELD_DESC(&vprp->FieldInfo[i]); | |
328 } | |
12061 | 329 if (sh_video) { |
12036 | 330 sh_video->aspect = GET_AVI_ASPECT(vprp->dwFrameAspectRatio); |
331 } | |
332 if(verbose>=1) print_vprp(vprp); | |
333 break; | |
334 } | |
335 case mmioFOURCC('d', 'm', 'l', 'h'): { | |
336 // dmlh 00 00 00 04 frms | |
337 unsigned int total_frames = stream_read_dword_le(demuxer->stream); | |
338 mp_msg(MSGT_HEADER,MSGL_V,"AVI: dmlh found (size=%d) (total_frames=%d)\n", chunksize, total_frames); | |
339 stream_skip(demuxer->stream, chunksize-4); | |
340 chunksize = 0; | |
341 } | |
342 break; | |
4225 | 343 case ckidAVINEWINDEX: |
344 if(demuxer->movi_end>stream_tell(demuxer->stream)) | |
345 demuxer->movi_end=stream_tell(demuxer->stream); // fixup movi-end | |
12036 | 346 if(index_mode && !priv->isodml){ |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1289
diff
changeset
|
347 int i; |
12036 | 348 off_t base = 0; |
349 uint32_t last_off = 0; | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
350 priv->idx_size=size2>>4; |
7762 | 351 mp_msg(MSGT_HEADER,MSGL_V,"Reading INDEX block, %d chunks for %ld frames (fpos=%p)\n", |
352 priv->idx_size,avih.dwTotalFrames, stream_tell(demuxer->stream)); | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
353 priv->idx=malloc(priv->idx_size<<4); |
7762 | 354 // printf("\nindex to %p !!!!! (priv=%p)\n",priv->idx,priv); |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
355 stream_read(demuxer->stream,(char*)priv->idx,priv->idx_size<<4); |
12737
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
356 for (i = 0; i < priv->idx_size; i++) { // swap index to machine endian |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
357 AVIINDEXENTRY *entry=(AVIINDEXENTRY*)priv->idx + i; |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
358 le2me_AVIINDEXENTRY(entry); |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
359 /* |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
360 * We (ab)use the upper word for bits 32-47 of the offset, so |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
361 * we'll clear them here. |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
362 * FIXME: AFAIK no codec uses them, but if one does it will break |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
363 */ |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
364 entry->dwFlags&=0xffff; |
ac56419ba6db
We still need to make sure the upper 16 bits of dwFlags are cleared
ranma
parents:
12736
diff
changeset
|
365 } |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
366 chunksize-=priv->idx_size<<4; |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
367 if(verbose>=2) print_index(priv->idx,priv->idx_size); |
1 | 368 } |
12036 | 369 break; |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
370 /* added May 2002 */ |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
371 case mmioFOURCC('R','I','F','F'): { |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
372 char riff_type[4]; |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
373 |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
374 mp_msg(MSGT_HEADER, MSGL_V, "additional RIFF header...\n"); |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
375 stream_read(demuxer->stream, riff_type, sizeof riff_type); |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
376 if (strncmp(riff_type, "AVIX", sizeof riff_type)) |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
377 mp_msg(MSGT_HEADER, MSGL_WARN, |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
378 "** warning: this is no extended AVI header..\n"); |
12362 | 379 else { |
380 /* | |
381 * We got an extended AVI header, so we need to switch to | |
382 * ODML to get seeking to work, provided we got indx chunks | |
383 * in the header (suidx_size > 0). | |
384 */ | |
385 if (priv->suidx_size > 0) | |
386 priv->isodml = 1; | |
387 } | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
388 chunksize = 0; |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
389 list_end = 0; /* a new list will follow */ |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
390 break; } |
12036 | 391 case ckidAVIPADDING: |
392 stream_skip(demuxer->stream, chunksize); | |
393 chunksize = 0; | |
394 break; | |
1 | 395 } |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
396 if(hdr){ |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
397 mp_msg(MSGT_HEADER,MSGL_V,"hdr=%s size=%u\n",hdr,size2); |
4664 | 398 if(size2==3) |
399 chunksize=1; // empty | |
400 else { | |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
401 char buf[256]; |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
402 int len=(size2<250)?size2:250; |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
403 stream_read(demuxer->stream,buf,len); |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
404 chunksize-=len; |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
405 buf[len]=0; |
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
406 mp_msg(MSGT_HEADER,MSGL_V,"%-10s: %s\n",hdr,buf); |
3071 | 407 demux_info_add(demuxer, hdr, buf); |
4664 | 408 } |
1671
e6804fef9061
print AVI info block (copyright,artist etc) (-v only)
arpi
parents:
1567
diff
changeset
|
409 } |
4664 | 410 mp_msg(MSGT_HEADER,MSGL_DBG2,"list_end=0x%X pos=0x%X chunksize=0x%X next=0x%X\n", |
411 (int)list_end, (int)stream_tell(demuxer->stream), | |
412 chunksize, (int)chunksize+stream_tell(demuxer->stream)); | |
12036 | 413 if(list_end>0 && |
414 chunksize+stream_tell(demuxer->stream) == list_end) list_end=0; | |
4664 | 415 if(list_end>0 && chunksize+stream_tell(demuxer->stream)>list_end){ |
416 mp_msg(MSGT_HEADER,MSGL_V,"Broken chunk? chunksize=%d (id=%.4s)\n",chunksize,(char *) &id); | |
417 stream_seek(demuxer->stream,list_end); | |
418 list_end=0; | |
419 } else | |
1 | 420 if(chunksize>0) stream_skip(demuxer->stream,chunksize); else |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
421 if((int)chunksize<0) mp_msg(MSGT_HEADER,MSGL_WARN,"chunksize=%u (id=%.4s)\n",chunksize,(char *) &id); |
1 | 422 |
423 } | |
424 | |
12728
5369a905c5a5
If we don't have a NEWAVIINDEX chunk, but have an OpenDML index,
ranma
parents:
12362
diff
changeset
|
425 if (priv->suidx_size > 0 && priv->idx_size == 0) { |
5369a905c5a5
If we don't have a NEWAVIINDEX chunk, but have an OpenDML index,
ranma
parents:
12362
diff
changeset
|
426 /* |
5369a905c5a5
If we don't have a NEWAVIINDEX chunk, but have an OpenDML index,
ranma
parents:
12362
diff
changeset
|
427 * No NEWAVIINDEX, but we got an OpenDML index. |
5369a905c5a5
If we don't have a NEWAVIINDEX chunk, but have an OpenDML index,
ranma
parents:
12362
diff
changeset
|
428 */ |
5369a905c5a5
If we don't have a NEWAVIINDEX chunk, but have an OpenDML index,
ranma
parents:
12362
diff
changeset
|
429 priv->isodml = 1; |
5369a905c5a5
If we don't have a NEWAVIINDEX chunk, but have an OpenDML index,
ranma
parents:
12362
diff
changeset
|
430 } |
5369a905c5a5
If we don't have a NEWAVIINDEX chunk, but have an OpenDML index,
ranma
parents:
12362
diff
changeset
|
431 |
12036 | 432 if (priv->isodml && (index_mode==-1 || index_mode==0)) { |
433 int i, j, k; | |
434 int safety=1000; | |
435 | |
436 avisuperindex_chunk *cx; | |
437 AVIINDEXENTRY *idx; | |
438 | |
439 | |
440 if (priv->idx_size) free(priv->idx); | |
441 priv->idx_size = 0; | |
442 priv->idx_offset = 0; | |
443 priv->idx = NULL; | |
444 | |
445 mp_msg(MSGT_HEADER, MSGL_INFO, | |
446 "AVI: ODML: Building odml index (%d superindexchunks)\n", priv->suidx_size); | |
447 | |
448 // read the standard indices | |
449 for (cx = &priv->suidx[0], i=0; i<priv->suidx_size; cx++, i++) { | |
450 stream_reset(demuxer->stream); | |
451 for (j=0; j<cx->nEntriesInUse; j++) { | |
452 int ret1, ret2; | |
453 memset(&cx->stdidx[j], 0, 32); | |
454 ret1 = stream_seek(demuxer->stream, (off_t)cx->aIndex[j].qwOffset); | |
455 ret2 = stream_read(demuxer->stream, (char *)&cx->stdidx[j], 32); | |
456 if (ret1 != 1 || ret2 != 32 || cx->stdidx[j].nEntriesInUse==0) { | |
457 // this is a broken file (probably incomplete) let the standard | |
458 // gen_index routine handle this | |
459 priv->isodml = 0; | |
460 priv->idx_size = 0; | |
461 mp_msg(MSGT_HEADER, MSGL_WARN, | |
462 "AVI: ODML: Broken (incomplete?) file detected. Will use traditional index\n"); | |
463 goto freeout; | |
464 } | |
465 | |
466 le2me_AVISTDIDXCHUNK(&cx->stdidx[j]); | |
467 print_avistdindex_chunk(&cx->stdidx[j]); | |
468 priv->idx_size += cx->stdidx[j].nEntriesInUse; | |
469 cx->stdidx[j].aIndex = malloc(cx->stdidx[j].nEntriesInUse*sizeof(avistdindex_entry)); | |
470 stream_read(demuxer->stream, (char *)cx->stdidx[j].aIndex, | |
471 cx->stdidx[j].nEntriesInUse*sizeof(avistdindex_entry)); | |
472 for (k=0;k<cx->stdidx[j].nEntriesInUse; k++) | |
473 le2me_AVISTDIDXENTRY(&cx->stdidx[j].aIndex[k]); | |
474 | |
475 cx->stdidx[j].dwReserved3 = 0; | |
476 | |
477 } | |
478 } | |
479 | |
480 /* | |
481 * We convert the index by translating all entries into AVIINDEXENTRYs | |
482 * and sorting them by offset. The result should be the same index | |
483 * we would get with -forceidx. | |
484 */ | |
485 | |
486 idx = priv->idx = malloc(priv->idx_size * sizeof (AVIINDEXENTRY)); | |
487 | |
488 for (cx = priv->suidx; cx != &priv->suidx[priv->suidx_size]; cx++) { | |
489 avistdindex_chunk *sic; | |
490 for (sic = cx->stdidx; sic != &cx->stdidx[cx->nEntriesInUse]; sic++) { | |
491 avistdindex_entry *sie; | |
492 for (sie = sic->aIndex; sie != &sic->aIndex[sic->nEntriesInUse]; sie++) { | |
493 uint64_t off = sic->qwBaseOffset + sie->dwOffset - 8; | |
494 memcpy(&idx->ckid, sic->dwChunkId, 4); | |
495 idx->dwChunkOffset = off; | |
496 idx->dwFlags = (off >> 32) << 16; | |
497 idx->dwChunkLength = sie->dwSize & 0x7fffffff; | |
498 idx->dwFlags |= (sie->dwSize&0x80000000)?0x0:AVIIF_KEYFRAME; // bit 31 denotes !keyframe | |
499 idx++; | |
500 } | |
501 } | |
502 } | |
14297 | 503 qsort(priv->idx, priv->idx_size, sizeof(AVIINDEXENTRY), avi_idx_cmp); |
12036 | 504 |
505 /* | |
506 Hack to work around a "wrong" index in some divx odml files | |
507 (processor_burning.avi as an example) | |
508 They have ##dc on non keyframes but the ix00 tells us they are ##db. | |
509 Read the fcc of a non-keyframe vid frame and check it. | |
510 */ | |
511 | |
512 { | |
513 uint32_t id; | |
514 uint32_t db = 0; | |
515 stream_reset (demuxer->stream); | |
516 | |
517 // find out the video stream id. I have seen files with 01db. | |
518 for (idx = &((AVIINDEXENTRY *)priv->idx)[0], i=0; i<priv->idx_size; i++, idx++){ | |
519 unsigned char res[2]; | |
520 if (odml_get_vstream_id(idx->ckid, res)) { | |
521 db = mmioFOURCC(res[0], res[1], 'd', 'b'); | |
522 break; | |
523 } | |
524 } | |
525 | |
526 // find first non keyframe | |
527 for (idx = &((AVIINDEXENTRY *)priv->idx)[0], i=0; i<priv->idx_size; i++, idx++){ | |
528 if (!(idx->dwFlags & AVIIF_KEYFRAME) && idx->ckid == db) break; | |
529 } | |
530 if (i<priv->idx_size && db) { | |
531 stream_seek(demuxer->stream, AVI_IDX_OFFSET(idx)); | |
532 id = stream_read_dword_le(demuxer->stream); | |
533 if (id && id != db) // index fcc and real fcc differ? fix it. | |
534 for (idx = &((AVIINDEXENTRY *)priv->idx)[0], i=0; i<priv->idx_size; i++, idx++){ | |
535 if (!(idx->dwFlags & AVIIF_KEYFRAME) && idx->ckid == db) | |
536 idx->ckid = id; | |
537 } | |
538 } | |
539 } | |
540 | |
541 if (verbose>=2) print_index(priv->idx, priv->idx_size); | |
542 | |
543 demuxer->movi_end=demuxer->stream->end_pos; | |
544 | |
545 freeout: | |
546 | |
547 // free unneeded stuff | |
548 cx = &priv->suidx[0]; | |
549 do { | |
550 for (j=0;j<cx->nEntriesInUse;j++) | |
551 if (cx->stdidx[j].nEntriesInUse) free(cx->stdidx[j].aIndex); | |
552 free(cx->stdidx); | |
553 | |
554 } while (cx++ != &priv->suidx[priv->suidx_size-1]); | |
555 free(priv->suidx); | |
556 | |
557 } | |
558 | |
11234
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
559 /* Read a saved index file */ |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
560 if (index_file_load) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
561 FILE *fp; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
562 char magic[7]; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
563 unsigned int i; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
564 |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
565 if ((fp = fopen(index_file_load, "r")) == NULL) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
566 mp_msg(MSGT_HEADER,MSGL_ERR, "Can't read index file %s: %s\n", index_file_load, strerror(errno)); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
567 goto gen_index; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
568 } |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
569 fread(&magic, 6, 1, fp); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
570 if (strncmp(magic, "MPIDX1", 6)) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
571 mp_msg(MSGT_HEADER,MSGL_ERR, "%s is not a valid MPlayer index file\n", index_file_load); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
572 goto gen_index; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
573 } |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
574 fread(&priv->idx_size, sizeof(priv->idx_size), 1, fp); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
575 priv->idx=malloc(priv->idx_size*sizeof(AVIINDEXENTRY)); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
576 if (!priv->idx) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
577 mp_msg(MSGT_HEADER,MSGL_ERR, "Could not allocate memory for index data from %s\n", index_file_load); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
578 priv->idx_size = 0; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
579 goto gen_index; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
580 } |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
581 |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
582 for (i=0; i<priv->idx_size;i++) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
583 AVIINDEXENTRY *idx; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
584 idx=&((AVIINDEXENTRY *)priv->idx)[i]; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
585 fread(idx, sizeof(AVIINDEXENTRY), 1, fp); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
586 if (feof(fp)) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
587 mp_msg(MSGT_HEADER,MSGL_ERR, "Premature end of index file %s\n", index_file_load); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
588 free(priv->idx); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
589 priv->idx_size = 0; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
590 goto gen_index; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
591 } |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
592 } |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
593 fclose(fp); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
594 mp_msg(MSGT_HEADER,MSGL_INFO, "Loaded index file: %s\n", index_file_load); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
595 } |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
596 gen_index: |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
597 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
|
598 // build index for file: |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
599 stream_reset(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
569
diff
changeset
|
600 stream_seek(demuxer->stream,demuxer->movi_start); |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
601 |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
602 priv->idx_pos=0; |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
603 priv->idx_size=0; |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
604 priv->idx=NULL; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
605 |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
606 while(1){ |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
607 int id; |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
608 unsigned len; |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
609 off_t skip; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
610 AVIINDEXENTRY* idx; |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
611 unsigned int c; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
612 demuxer->filepos=stream_tell(demuxer->stream); |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
613 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
|
614 id=stream_read_dword_le(demuxer->stream); |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
615 len=stream_read_dword_le(demuxer->stream); |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
616 if(id==mmioFOURCC('L','I','S','T') || id==mmioFOURCC('R', 'I', 'F', 'F')){ |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
617 id=stream_read_dword_le(demuxer->stream); // list or RIFF type |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
618 continue; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
619 } |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
620 if(stream_eof(demuxer->stream)) break; |
1392 | 621 if(!id || avi_stream_id(id)==100) goto skip_chunk; // bad ID (or padding?) |
622 | |
1499 | 623 if(priv->idx_pos>=priv->idx_size){ |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
624 // priv->idx_size+=32; |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
625 priv->idx_size+=1024; // +16kB |
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
626 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
|
627 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
|
628 } |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
629 idx=&((AVIINDEXENTRY *)priv->idx)[priv->idx_pos++]; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
630 idx->ckid=id; |
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
631 idx->dwFlags=AVIIF_KEYFRAME; // FIXME |
12036 | 632 idx->dwFlags|=(demuxer->filepos>>16)&0xffff0000U; |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
633 idx->dwChunkOffset=(unsigned long)demuxer->filepos; |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
634 idx->dwChunkLength=len; |
569 | 635 |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
636 c=stream_read_dword(demuxer->stream); |
568 | 637 |
638 // Fix keyframes for DivX files: | |
639 if(idxfix_divx) | |
640 if(avi_stream_id(id)==idxfix_videostream){ | |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
641 switch(idxfix_divx){ |
6275 | 642 case 3: c=stream_read_dword(demuxer->stream)<<5; //skip 32+5 bits for m$mpeg4v1 |
12036 | 643 case 1: if(c&0x40000000) idx->dwFlags&=~AVIIF_KEYFRAME;break; // divx 3 |
644 case 2: if(c==0x1B6) idx->dwFlags&=~AVIIF_KEYFRAME;break; // divx 4 | |
2598
a937f0024514
-idx fixes: support for divx4 and ignoring bad movi_end
arpi
parents:
2338
diff
changeset
|
645 } |
568 | 646 } |
3781 | 647 |
648 // update status line: | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
649 { static off_t lastpos; |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
650 off_t pos; |
3781 | 651 off_t len=demuxer->movi_end-demuxer->movi_start; |
652 if(len){ | |
653 pos=100*(demuxer->filepos-demuxer->movi_start)/len; // % | |
654 } else { | |
655 pos=(demuxer->filepos-demuxer->movi_start)>>20; // MB | |
656 } | |
657 if(pos!=lastpos){ | |
658 lastpos=pos; | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
659 mp_msg(MSGT_HEADER,MSGL_STATUS,"Generating Index: %3lu %s \r", |
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
660 (unsigned long)pos, len?"%":"MB"); |
3781 | 661 } |
662 } | |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
663 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); |
568 | 664 #if 0 |
665 { unsigned char tmp[64]; | |
666 int i; | |
667 stream_read(demuxer->stream,tmp,64); | |
668 printf("%.4s",&id); | |
669 for(i=0;i<64;i++) printf(" %02X",tmp[i]); | |
670 printf("\n"); | |
671 } | |
672 #endif | |
1392 | 673 skip_chunk: |
6056
f980563afdbc
big (>2GB) AVI files support - patch by Wolfram Gloger <wg@malloc.de>
arpi
parents:
5933
diff
changeset
|
674 skip=(len+1)&(~1UL); // total bytes in this chunk |
568 | 675 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
|
676 } |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
677 priv->idx_size=priv->idx_pos; |
1567 | 678 mp_msg(MSGT_HEADER,MSGL_INFO,"AVI: Generated index table for %d chunks!\n",priv->idx_size); |
7762 | 679 if(verbose>=2) print_index(priv->idx,priv->idx_size); |
11234
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
680 |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
681 /* Write generated index to a file */ |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
682 if (index_file_save) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
683 FILE *fp; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
684 unsigned int i; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
685 |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
686 if ((fp=fopen(index_file_save, "w")) == NULL) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
687 mp_msg(MSGT_HEADER,MSGL_ERR, "Couldn't write index file %s: %s\n", index_file_save, strerror(errno)); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
688 return; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
689 } |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
690 fwrite("MPIDX1", 6, 1, fp); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
691 fwrite(&priv->idx_size, sizeof(priv->idx_size), 1, fp); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
692 for (i=0; i<priv->idx_size; i++) { |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
693 AVIINDEXENTRY *idx = &((AVIINDEXENTRY *)priv->idx)[i]; |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
694 fwrite(idx, sizeof(AVIINDEXENTRY), 1, fp); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
695 } |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
696 fclose(fp); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
697 mp_msg(MSGT_HEADER,MSGL_INFO, "Saved index file: %s\n", index_file_save); |
9767665d49e0
Saving and loading external index file. Patch by Jason Tackaberry <tack@auc.ca>
alex
parents:
8027
diff
changeset
|
698 } |
564
747759a4a28f
seeking in raw/broken avi files (rebuilding index chunk)
arpi_esp
parents:
433
diff
changeset
|
699 } |
1 | 700 } |
701 | |
702 #undef MIN | |
703 | |
1485
b895f95e7657
AVI demuxer cleanups, fileformat-dependent stuff moved to priv_t
arpi
parents:
1456
diff
changeset
|
704 |