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