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