Mercurial > mplayer.hg
annotate libmpdemux/muxer_avi.c @ 12757:8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
author | diego |
---|---|
date | Mon, 05 Jul 2004 14:59:03 +0000 |
parents | da17b2c262de |
children | a6642a4330fa |
rev | line source |
---|---|
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
1
diff
changeset
|
1 #include <stdio.h> |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
1
diff
changeset
|
2 #include <stdlib.h> |
2529 | 3 #include <string.h> |
8585 | 4 #include <inttypes.h> |
8591 | 5 #include <unistd.h> |
12036 | 6 #include <limits.h> |
2529 | 7 |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2529
diff
changeset
|
8 #include "config.h" |
7149 | 9 #include "../version.h" |
2555
66837325b929
config.h cleanup, few things added to steram/demuxer headers
arpi
parents:
2529
diff
changeset
|
10 |
12036 | 11 #include "stream.h" |
12 #include "demuxer.h" | |
13 #include "stheader.h" | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
1
diff
changeset
|
14 |
6918 | 15 #include "bswap.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
1
diff
changeset
|
16 |
8585 | 17 #include "muxer.h" |
6918 | 18 #include "aviheader.h" |
12341
0db4a3a5b01d
removed loader/ dependancy, imported some files from g2, also used patches from Dominik Mierzejewski
alex
parents:
12235
diff
changeset
|
19 #include "ms_hdr.h" |
12036 | 20 #include "mp_msg.h" |
1 | 21 |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
22 extern char *info_name; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
23 extern char *info_artist; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
24 extern char *info_genre; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
25 extern char *info_subject; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
26 extern char *info_copyright; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
27 extern char *info_sourceform; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
28 extern char *info_comment; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
29 |
12036 | 30 /* #define ODML_CHUNKLEN 0x02000000 */ /* for testing purposes */ |
31 #define ODML_CHUNKLEN 0x40000000 | |
32 #define ODML_NOTKEYFRAME 0x80000000U | |
33 #define MOVIALIGN 0x00001000 | |
34 | |
12061 | 35 float avi_aspect_override = -1.0; |
12363 | 36 int write_odml = 1; |
12051 | 37 |
12036 | 38 struct avi_odmlidx_entry { |
39 uint64_t ofs; | |
40 uint32_t len; | |
41 uint32_t flags; | |
42 }; | |
43 | |
44 struct avi_odmlsuperidx_entry { | |
45 uint64_t ofs; | |
46 uint32_t len; | |
47 uint32_t duration; | |
48 }; | |
49 | |
50 struct avi_stream_info { | |
51 int idxsize; | |
52 int idxpos; | |
53 int superidxpos; | |
54 int superidxsize; | |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
55 int riffofspos; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
56 int riffofssize; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
57 off_t *riffofs; |
12036 | 58 struct avi_odmlidx_entry *idx; |
59 struct avi_odmlsuperidx_entry *superidx; | |
60 }; | |
61 | |
12061 | 62 static unsigned int avi_aspect(muxer_stream_t *vstream) |
63 { | |
64 int x,y; | |
65 float aspect = vstream->aspect; | |
66 | |
67 if (avi_aspect_override > 0.0) { | |
68 aspect = avi_aspect_override; | |
69 } | |
70 | |
71 if (aspect <= 0.0) return 0; | |
72 | |
73 if (aspect > 15.99/9.0 && aspect < 16.01/9.0) { | |
74 return MAKE_AVI_ASPECT(16, 9); | |
75 } | |
76 if (aspect > 3.99/3.0 && aspect < 4.01/3.0) { | |
77 return MAKE_AVI_ASPECT(4, 3); | |
78 } | |
79 | |
80 if (aspect >= 1.0) { | |
81 x = 16384; | |
82 y = (float)x / aspect; | |
83 } else { | |
84 y = 16384; | |
85 x = (float)y * aspect; | |
86 } | |
87 | |
88 return MAKE_AVI_ASPECT(x, y); | |
89 } | |
90 | |
8585 | 91 static muxer_stream_t* avifile_new_stream(muxer_t *muxer,int type){ |
12036 | 92 struct avi_stream_info *si; |
8585 | 93 muxer_stream_t* s; |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
94 if (!muxer) return NULL; |
8585 | 95 if(muxer->avih.dwStreams>=MUXER_MAX_STREAMS){ |
12036 | 96 mp_msg(MSGT_MUXER, MSGL_ERR, "Too many streams! increase MUXER_MAX_STREAMS !\n"); |
2529 | 97 return NULL; |
98 } | |
8585 | 99 s=malloc(sizeof(muxer_stream_t)); |
100 memset(s,0,sizeof(muxer_stream_t)); | |
2529 | 101 if(!s) return NULL; // no mem!? |
102 muxer->streams[muxer->avih.dwStreams]=s; | |
103 s->type=type; | |
104 s->id=muxer->avih.dwStreams; | |
105 s->timer=0.0; | |
2652 | 106 s->size=0; |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
107 s->muxer=muxer; |
12036 | 108 s->priv=si=malloc(sizeof(struct avi_stream_info)); |
109 memset(si,0,sizeof(struct avi_stream_info)); | |
110 si->idxsize=256; | |
111 si->idx=malloc(sizeof(struct avi_odmlidx_entry)*si->idxsize); | |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
112 si->riffofssize=16; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
113 si->riffofs=malloc(sizeof(off_t)*(si->riffofssize+1)); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
114 memset(si->riffofs, 0, sizeof(off_t)*si->riffofssize); |
12036 | 115 |
2529 | 116 switch(type){ |
8585 | 117 case MUXER_TYPE_VIDEO: |
2529 | 118 s->ckid=mmioFOURCC(('0'+s->id/10),('0'+(s->id%10)),'d','c'); |
119 s->h.fccType=streamtypeVIDEO; | |
120 if(!muxer->def_v) muxer->def_v=s; | |
121 break; | |
8585 | 122 case MUXER_TYPE_AUDIO: |
2529 | 123 s->ckid=mmioFOURCC(('0'+s->id/10),('0'+(s->id%10)),'w','b'); |
124 s->h.fccType=streamtypeAUDIO; | |
125 break; | |
126 default: | |
12036 | 127 mp_msg(MSGT_MUXER, MSGL_WARN, "Warning! unknown stream type: %d\n",type); |
2529 | 128 return NULL; |
129 } | |
130 muxer->avih.dwStreams++; | |
131 return s; | |
132 } | |
1 | 133 |
2529 | 134 static void write_avi_chunk(FILE *f,unsigned int id,int len,void* data){ |
6918 | 135 int le_len = le2me_32(len); |
136 int le_id = le2me_32(id); | |
137 fwrite(&le_id,4,1,f); | |
138 fwrite(&le_len,4,1,f); | |
139 | |
1 | 140 if(len>0){ |
141 if(data){ | |
142 // DATA | |
143 fwrite(data,len,1,f); | |
144 if(len&1){ // padding | |
145 unsigned char zerobyte=0; | |
146 fwrite(&zerobyte,1,1,f); | |
147 } | |
148 } else { | |
149 // JUNK | |
150 char *avi_junk_data="[= MPlayer junk data! =]"; | |
151 if(len&1) ++len; // padding | |
152 while(len>0){ | |
153 int l=strlen(avi_junk_data); | |
154 if(l>len) l=len; | |
155 fwrite(avi_junk_data,l,1,f); | |
156 len-=l; | |
157 } | |
158 } | |
159 } | |
2529 | 160 } |
161 | |
12036 | 162 static void write_avi_list(FILE *f,unsigned int id,int len); |
12363 | 163 static void avifile_write_standard_index(muxer_t *muxer); |
12036 | 164 |
165 static void avifile_odml_new_riff(muxer_t *muxer) | |
166 { | |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
167 struct avi_stream_info *vsi = muxer->def_v->priv; |
12036 | 168 FILE *f = muxer->file; |
169 uint32_t riff[3]; | |
170 | |
12497
da17b2c262de
no kabbe-bytes or men in black or any of that nonsense here...
rfelker
parents:
12363
diff
changeset
|
171 mp_msg(MSGT_MUXER, MSGL_INFO, "ODML: Starting new RIFF chunk at %dMB.\n", (int)(muxer->file_end/1024/1024)); |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
172 |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
173 vsi->riffofspos++; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
174 if (vsi->riffofspos>=vsi->riffofssize) { |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
175 vsi->riffofssize+=16; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
176 vsi->riffofs=realloc(vsi->riffofs,sizeof(off_t)*(vsi->riffofssize+1)); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
177 } |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
178 vsi->riffofs[vsi->riffofspos] = ftello(f); |
12036 | 179 |
180 /* RIFF/AVIX chunk */ | |
181 riff[0]=le2me_32(mmioFOURCC('R','I','F','F')); | |
182 riff[1]=0; | |
183 riff[2]=le2me_32(mmioFOURCC('A','V','I','X')); | |
184 fwrite(riff,12,1,f); | |
185 | |
186 write_avi_list(f,listtypeAVIMOVIE,0); | |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
187 |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
188 muxer->file_end = ftello(f); |
12036 | 189 } |
190 | |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
191 static void avifile_write_chunk(muxer_stream_t *s,size_t len,unsigned int flags){ |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
192 off_t rifflen; |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
193 muxer_t *muxer=s->muxer; |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
194 struct avi_stream_info *si = s->priv; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
195 struct avi_stream_info *vsi = muxer->def_v->priv; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
196 int paddedlen = len + (len&1); |
2529 | 197 |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
198 rifflen = muxer->file_end - vsi->riffofs[vsi->riffofspos] - 8; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
199 if (vsi->riffofspos == 0) { |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
200 rifflen += 8+muxer->idx_pos*sizeof(AVIINDEXENTRY); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
201 } |
12363 | 202 if (rifflen + paddedlen > ODML_CHUNKLEN && write_odml == 1) { |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
203 if (vsi->riffofspos == 0) { |
12363 | 204 avifile_write_standard_index(muxer); |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
205 } |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
206 avifile_odml_new_riff(muxer); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
207 } |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
208 |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
209 if (vsi->riffofspos == 0) { |
12036 | 210 // add to the traditional index: |
211 if(muxer->idx_pos>=muxer->idx_size){ | |
212 muxer->idx_size+=256; // 4kB | |
213 muxer->idx=realloc(muxer->idx,16*muxer->idx_size); | |
214 } | |
215 muxer->idx[muxer->idx_pos].ckid=s->ckid; | |
216 muxer->idx[muxer->idx_pos].dwFlags=flags; // keyframe? | |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
217 muxer->idx[muxer->idx_pos].dwChunkOffset=muxer->file_end-(muxer->movi_start-4); |
12036 | 218 muxer->idx[muxer->idx_pos].dwChunkLength=len; |
219 ++muxer->idx_pos; | |
220 } | |
221 | |
222 // add to odml index | |
223 if(si->idxpos>=si->idxsize){ | |
224 si->idxsize+=256; | |
225 si->idx=realloc(si->idx,sizeof(*si->idx)*si->idxsize); | |
2529 | 226 } |
12036 | 227 si->idx[si->idxpos].flags=(flags&AVIIF_KEYFRAME)?0:ODML_NOTKEYFRAME; |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
228 si->idx[si->idxpos].ofs=muxer->file_end; |
12036 | 229 si->idx[si->idxpos].len=len; |
230 ++si->idxpos; | |
231 | |
2529 | 232 // write out the chunk: |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
233 write_avi_chunk(muxer->file,s->ckid,len,s->buffer); /* unsigned char */ |
6918 | 234 |
2529 | 235 // alter counters: |
12036 | 236 if (len > s->h.dwSuggestedBufferSize){ |
237 s->h.dwSuggestedBufferSize = len; | |
238 } | |
2529 | 239 if(s->h.dwSampleSize){ |
240 // CBR | |
241 s->h.dwLength+=len/s->h.dwSampleSize; | |
12036 | 242 if(len%s->h.dwSampleSize) mp_msg(MSGT_MUXER, MSGL_WARN, "Warning! len isn't divisable by samplesize!\n"); |
2529 | 243 } else { |
244 // VBR | |
245 s->h.dwLength++; | |
246 } | |
247 s->timer=(double)s->h.dwLength*s->h.dwScale/s->h.dwRate; | |
2652 | 248 s->size+=len; |
8585 | 249 if((unsigned int)len>s->h.dwSuggestedBufferSize) s->h.dwSuggestedBufferSize=len; |
1 | 250 |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
251 muxer->file_end += 8 + paddedlen; |
1 | 252 } |
253 | |
2529 | 254 static void write_avi_list(FILE *f,unsigned int id,int len){ |
1 | 255 unsigned int list_id=FOURCC_LIST; |
6918 | 256 int le_len; |
257 int le_id; | |
1 | 258 len+=4; // list fix |
6918 | 259 list_id = le2me_32(list_id); |
260 le_len = le2me_32(len); | |
261 le_id = le2me_32(id); | |
1 | 262 fwrite(&list_id,4,1,f); |
6918 | 263 fwrite(&le_len,4,1,f); |
264 fwrite(&le_id,4,1,f); | |
1 | 265 } |
266 | |
11374 | 267 #define WFSIZE(wf) (sizeof(WAVEFORMATEX)+(wf)->cbSize) |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2555
diff
changeset
|
268 |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
269 static void avifile_write_header(muxer_t *muxer){ |
8585 | 270 uint32_t riff[3]; |
12036 | 271 unsigned int dmlh[1]; |
8585 | 272 unsigned int i; |
2529 | 273 unsigned int hdrsize; |
8585 | 274 muxer_info_t info[16]; |
12036 | 275 FILE *f = muxer->file; |
276 VideoPropHeader vprp; | |
12061 | 277 uint32_t aspect = avi_aspect(muxer->def_v); |
12036 | 278 off_t pos; |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
279 struct avi_stream_info *vsi = muxer->def_v->priv; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
280 int isodml = vsi->riffofspos > 0; |
12036 | 281 |
12061 | 282 if (aspect == 0) { |
283 mp_msg(MSGT_MUXER, MSGL_INFO, "ODML: Aspect information not (yet?) available or unspecified, not writing vprp header.\n"); | |
284 } else { | |
285 mp_msg(MSGT_MUXER, MSGL_INFO, "ODML: vprp aspect is %d:%d.\n", aspect >> 16, aspect & 0xffff); | |
286 } | |
287 | |
12036 | 288 if (isodml) { |
289 unsigned int rifflen, movilen; | |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
290 int i; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
291 |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
292 vsi->riffofs[vsi->riffofspos+1] = muxer->file_end; |
12036 | 293 |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
294 /* fixup RIFF lengths */ |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
295 for (i=0; i<=vsi->riffofspos; i++) { |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
296 rifflen = vsi->riffofs[i+1] - vsi->riffofs[i] - 8; |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
297 movilen = le2me_32(rifflen - 12); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
298 rifflen = le2me_32(rifflen); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
299 fseeko(f, vsi->riffofs[i]+4, SEEK_SET); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
300 fwrite(&rifflen,4,1,f); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
301 |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
302 /* fixup movi length */ |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
303 if (i > 0) { |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
304 fseeko(f, vsi->riffofs[i]+16, SEEK_SET); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
305 fwrite(&movilen,4,1,f); |
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
306 } |
12036 | 307 } |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
308 |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
309 fseeko(f, 12, SEEK_SET); |
12036 | 310 } else { |
311 // RIFF header: | |
312 riff[0]=mmioFOURCC('R','I','F','F'); | |
313 riff[1]=muxer->file_end-2*sizeof(unsigned int); // filesize | |
314 riff[2]=formtypeAVI; // 'AVI ' | |
315 riff[0]=le2me_32(riff[0]); | |
316 riff[1]=le2me_32(riff[1]); | |
317 riff[2]=le2me_32(riff[2]); | |
318 fwrite(&riff,12,1,f); | |
319 } | |
320 | |
2529 | 321 // update AVI header: |
322 if(muxer->def_v){ | |
12036 | 323 int i; |
2529 | 324 muxer->avih.dwMicroSecPerFrame=1000000.0*muxer->def_v->h.dwScale/muxer->def_v->h.dwRate; |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2555
diff
changeset
|
325 // muxer->avih.dwMaxBytesPerSec=1000000; // dummy!!!!! FIXME |
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2555
diff
changeset
|
326 // muxer->avih.dwPaddingGranularity=2; // ??? |
2529 | 327 muxer->avih.dwFlags|=AVIF_ISINTERLEAVED|AVIF_TRUSTCKTYPE; |
12036 | 328 muxer->avih.dwTotalFrames=0; |
329 for (i=0; i<muxer->idx_pos; i++) { | |
330 if (muxer->idx[i].ckid == muxer->def_v->ckid) | |
331 muxer->avih.dwTotalFrames++; | |
332 } | |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2555
diff
changeset
|
333 // muxer->avih.dwSuggestedBufferSize=muxer->def_v->h.dwSuggestedBufferSize; |
2529 | 334 muxer->avih.dwWidth=muxer->def_v->bih->biWidth; |
335 muxer->avih.dwHeight=muxer->def_v->bih->biHeight; | |
336 } | |
337 | |
1 | 338 // AVI header: |
2529 | 339 hdrsize=sizeof(muxer->avih)+8; |
12036 | 340 if (isodml) hdrsize+=sizeof(dmlh)+20; // dmlh |
2529 | 341 // calc total header size: |
342 for(i=0;i<muxer->avih.dwStreams;i++){ | |
12036 | 343 muxer_stream_t *s = muxer->streams[i]; |
344 struct avi_stream_info *si = s->priv; | |
345 | |
2529 | 346 hdrsize+=12; // LIST |
347 hdrsize+=sizeof(muxer->streams[i]->h)+8; // strh | |
348 switch(muxer->streams[i]->type){ | |
8585 | 349 case MUXER_TYPE_VIDEO: |
2529 | 350 hdrsize+=muxer->streams[i]->bih->biSize+8; // strf |
12061 | 351 if (aspect != 0) { |
12051 | 352 hdrsize+=8+4*(9+8*1); // vprp |
353 } | |
2529 | 354 break; |
8585 | 355 case MUXER_TYPE_AUDIO: |
2635
c1e24e01601b
fixed AVI header creation - now should be compatible with NaNdub
arpi
parents:
2555
diff
changeset
|
356 hdrsize+=WFSIZE(muxer->streams[i]->wf)+8; // strf |
2529 | 357 break; |
358 } | |
12036 | 359 if (isodml && si && si->superidx && si->superidxsize) { |
360 hdrsize += 32 + 16*si->superidxsize; //indx | |
361 } | |
2529 | 362 } |
363 write_avi_list(f,listtypeAVIHEADER,hdrsize); | |
6918 | 364 |
365 le2me_MainAVIHeader(&muxer->avih); | |
366 write_avi_chunk(f,ckidAVIMAINHDR,sizeof(muxer->avih),&muxer->avih); /* MainAVIHeader */ | |
367 le2me_MainAVIHeader(&muxer->avih); | |
2529 | 368 |
369 // stream headers: | |
370 for(i=0;i<muxer->avih.dwStreams;i++){ | |
12036 | 371 muxer_stream_t *s = muxer->streams[i]; |
372 struct avi_stream_info *si = s->priv; | |
373 unsigned int idxhdr[8]; | |
374 int j,n; | |
375 | |
376 hdrsize=sizeof(s->h)+8; // strh | |
377 if (si && si->superidx && si->superidxsize) { | |
378 hdrsize += 32 + 16*si->superidxsize; //indx | |
379 } | |
380 switch(s->type){ | |
8585 | 381 case MUXER_TYPE_VIDEO: |
12036 | 382 hdrsize+=s->bih->biSize+8; // strf |
383 s->h.fccHandler = s->bih->biCompression; | |
384 s->h.rcFrame.right = s->bih->biWidth; | |
385 s->h.rcFrame.bottom = s->bih->biHeight; | |
12061 | 386 if (aspect != 0) { |
12051 | 387 // fill out vprp info |
388 memset(&vprp, 0, sizeof(vprp)); | |
389 vprp.dwVerticalRefreshRate = (s->h.dwRate+s->h.dwScale-1)/s->h.dwScale; | |
390 vprp.dwHTotalInT = muxer->avih.dwWidth; | |
391 vprp.dwVTotalInLines = muxer->avih.dwHeight; | |
12061 | 392 vprp.dwFrameAspectRatio = aspect; |
12051 | 393 vprp.dwFrameWidthInPixels = muxer->avih.dwWidth; |
394 vprp.dwFrameHeightInLines = muxer->avih.dwHeight; | |
395 vprp.nbFieldPerFrame = 1; | |
396 vprp.FieldInfo[0].CompressedBMHeight = muxer->avih.dwHeight; | |
397 vprp.FieldInfo[0].CompressedBMWidth = muxer->avih.dwWidth; | |
398 vprp.FieldInfo[0].ValidBMHeight = muxer->avih.dwHeight; | |
399 vprp.FieldInfo[0].ValidBMWidth = muxer->avih.dwWidth; | |
400 hdrsize+=8+4*(9+8*1); // vprp | |
401 } | |
2529 | 402 break; |
8585 | 403 case MUXER_TYPE_AUDIO: |
12036 | 404 hdrsize+=WFSIZE(s->wf)+8; // strf |
405 s->h.fccHandler = s->wf->wFormatTag; | |
2529 | 406 break; |
407 } | |
12036 | 408 |
2529 | 409 write_avi_list(f,listtypeSTREAMHEADER,hdrsize); |
12036 | 410 le2me_AVIStreamHeader(&s->h); |
411 write_avi_chunk(f,ckidSTREAMHEADER,sizeof(s->h),&s->h); /* AVISTreamHeader */ // strh | |
412 le2me_AVIStreamHeader(&s->h); | |
6918 | 413 |
12036 | 414 switch(s->type){ |
8585 | 415 case MUXER_TYPE_VIDEO: |
6918 | 416 { |
12036 | 417 int biSize=s->bih->biSize; |
418 le2me_BITMAPINFOHEADER(s->bih); | |
419 write_avi_chunk(f,ckidSTREAMFORMAT,biSize,s->bih); /* BITMAPINFOHEADER */ | |
12053 | 420 le2me_BITMAPINFOHEADER(s->bih); |
421 | |
12061 | 422 if (aspect != 0) { |
12053 | 423 int fields = vprp.nbFieldPerFrame; |
12051 | 424 le2me_VideoPropHeader(&vprp); |
425 le2me_VIDEO_FIELD_DESC(&vprp.FieldInfo[0]); | |
426 le2me_VIDEO_FIELD_DESC(&vprp.FieldInfo[1]); | |
427 write_avi_chunk(f,mmioFOURCC('v','p','r','p'), | |
12053 | 428 sizeof(VideoPropHeader) - |
429 sizeof(VIDEO_FIELD_DESC)*(2-fields), | |
430 &vprp); /* Video Properties Header */ | |
12051 | 431 } |
6918 | 432 } |
2529 | 433 break; |
8585 | 434 case MUXER_TYPE_AUDIO: |
6918 | 435 { |
12036 | 436 int wfsize = WFSIZE(s->wf); |
437 le2me_WAVEFORMATEX(s->wf); | |
438 write_avi_chunk(f,ckidSTREAMFORMAT,wfsize,s->wf); /* WAVEFORMATEX */ | |
439 le2me_WAVEFORMATEX(s->wf); | |
6918 | 440 } |
2529 | 441 break; |
442 } | |
12036 | 443 if (isodml && si && si->superidx && si->superidxsize) { |
444 n = si->superidxsize; | |
445 | |
446 idxhdr[0] = le2me_32(mmioFOURCC('i', 'n', 'd', 'x')); | |
447 idxhdr[1] = le2me_32(24 + 16*n); | |
448 idxhdr[2] = le2me_32(0x00000004); | |
449 idxhdr[3] = le2me_32(si->superidxpos); | |
450 idxhdr[4] = le2me_32(s->ckid); | |
451 idxhdr[5] = 0; | |
452 idxhdr[6] = 0; | |
453 idxhdr[7] = 0; | |
454 | |
455 fwrite(idxhdr,sizeof(idxhdr),1,f); | |
456 for (j=0; j<n; j++) { | |
457 struct avi_odmlsuperidx_entry *entry = &si->superidx[j]; | |
458 unsigned int data[4]; | |
459 data[0] = le2me_32(entry->ofs); | |
460 data[1] = le2me_32(entry->ofs >> 32); | |
461 data[2] = le2me_32(entry->len); | |
462 data[3] = le2me_32(entry->duration); | |
463 fwrite(data,sizeof(data),1,f); | |
464 } | |
465 } | |
466 } | |
467 | |
468 // ODML | |
469 if (isodml) { | |
470 memset(dmlh, 0, sizeof(dmlh)); | |
471 dmlh[0] = le2me_32(muxer->avih.dwTotalFrames); | |
472 write_avi_list(f,mmioFOURCC('o','d','m','l'),sizeof(dmlh)+8); | |
473 write_avi_chunk(f,mmioFOURCC('d','m','l','h'),sizeof(dmlh),dmlh); | |
2529 | 474 } |
475 | |
7145
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
476 // ============= INFO =============== |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
477 // always include software info |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
478 info[0].id=mmioFOURCC('I','S','F','T'); // Software: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
479 info[0].text="MEncoder " VERSION; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
480 // include any optional strings |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
481 i=1; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
482 if(info_name!=NULL){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
483 info[i].id=mmioFOURCC('I','N','A','M'); // Name: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
484 info[i++].text=info_name; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
485 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
486 if(info_artist!=NULL){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
487 info[i].id=mmioFOURCC('I','A','R','T'); // Artist: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
488 info[i++].text=info_artist; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
489 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
490 if(info_genre!=NULL){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
491 info[i].id=mmioFOURCC('I','G','N','R'); // Genre: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
492 info[i++].text=info_genre; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
493 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
494 if(info_subject!=NULL){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
495 info[i].id=mmioFOURCC('I','S','B','J'); // Subject: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
496 info[i++].text=info_subject; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
497 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
498 if(info_copyright!=NULL){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
499 info[i].id=mmioFOURCC('I','C','O','P'); // Copyright: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
500 info[i++].text=info_copyright; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
501 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
502 if(info_sourceform!=NULL){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
503 info[i].id=mmioFOURCC('I','S','R','F'); // Source Form: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
504 info[i++].text=info_sourceform; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
505 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
506 if(info_comment!=NULL){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
507 info[i].id=mmioFOURCC('I','C','M','T'); // Comment: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
508 info[i++].text=info_comment; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
509 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
510 info[i].id=0; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
511 |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
512 hdrsize=0; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
513 // calc info size: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
514 for(i=0;info[i].id!=0;i++) if(info[i].text){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
515 size_t sz=strlen(info[i].text)+1; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
516 hdrsize+=sz+8+sz%2; |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
517 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
518 // write infos: |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
519 if (hdrsize!=0){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
520 write_avi_list(f,mmioFOURCC('I','N','F','O'),hdrsize); |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
521 for(i=0;info[i].id!=0;i++) if(info[i].text){ |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
522 write_avi_chunk(f,info[i].id,strlen(info[i].text)+1,info[i].text); |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
523 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
524 } |
3854945aefbb
new mencoder option -info, to store copyright, title, encoder version etc in AVI
arpi
parents:
7144
diff
changeset
|
525 |
2529 | 526 // JUNK: |
12036 | 527 write_avi_chunk(f,ckidAVIPADDING,MOVIALIGN-(ftello(f)%MOVIALIGN)-8,NULL); /* junk */ |
528 if (!isodml) { | |
529 // 'movi' header: | |
530 write_avi_list(f,listtypeAVIMOVIE,muxer->movi_end-ftello(f)-12); | |
531 } else { | |
532 if (ftello(f) != MOVIALIGN) { | |
533 mp_msg(MSGT_MUXER, MSGL_ERR, "Opendml superindex is too big for reserved space!\n"); | |
534 mp_msg(MSGT_MUXER, MSGL_ERR, "Expected filepos %d, real filepos %d, missing space %d\n", MOVIALIGN, ftell(muxer->file), ftell(muxer->file)-MOVIALIGN); | |
12037 | 535 mp_msg(MSGT_MUXER, MSGL_ERR, "Try increasing MOVIALIGN in libmpdemux/muxer_avi.c\n"); |
12036 | 536 } |
537 write_avi_list(f,listtypeAVIMOVIE,muxer->movi_end-ftello(f)-12); | |
538 } | |
539 muxer->movi_start=ftello(muxer->file); | |
12235
ca5dc9c2cb51
Get rid of the 'RIFF chunks have to be aligned on ODML_CHUNKLEN'
ranma
parents:
12062
diff
changeset
|
540 if (muxer->file_end == 0) muxer->file_end = ftello(muxer->file); |
12036 | 541 } |
542 | |
543 static void avifile_odml_write_index(muxer_t *muxer){ | |
544 muxer_stream_t* s; | |
545 struct avi_stream_info *si; | |
546 int i; | |
547 | |
548 for (i=0; i<muxer->avih.dwStreams; i++) { | |
549 int j,k,n,idxpos,len,last,entries_per_subidx; | |
550 unsigned int idxhdr[8]; | |
551 s = muxer->streams[i]; | |
552 si = s->priv; | |
553 | |
554 /* | |
555 * According to Avery Lee MSMP wants the subidx chunks to have the same size. | |
556 * | |
557 * So this code figures out how many entries we can put into | |
558 * an ix?? chunk, so that each ix?? chunk has the same size and the offsets | |
559 * don't overflow (Using ODML_CHUNKLEN for that is a bit more restrictive | |
560 * than it has to be though). | |
561 */ | |
562 | |
563 len = 0; | |
564 n = 0; | |
565 entries_per_subidx = INT_MAX; | |
566 do { | |
567 off_t start = si->idx[0].ofs; | |
568 last = entries_per_subidx; | |
569 for (j=0; j<si->idxpos; j++) { | |
570 len = si->idx[j].ofs - start; | |
571 if(len >= ODML_CHUNKLEN || n >= entries_per_subidx) { | |
572 if (entries_per_subidx > n) { | |
573 entries_per_subidx = n; | |
574 } | |
575 start = si->idx[j].ofs; | |
576 len = 0; | |
577 n = 0; | |
578 } | |
579 n++; | |
580 } | |
581 } while (last != entries_per_subidx); | |
582 | |
583 si->superidxpos = (si->idxpos+entries_per_subidx-1) / entries_per_subidx; | |
584 | |
585 mp_msg(MSGT_MUXER, MSGL_V, "ODML: Stream %d: Using %d entries per subidx, %d entries in superidx\n", | |
586 i, entries_per_subidx, si->superidxpos); | |
587 | |
588 si->superidxsize = si->superidxpos; | |
589 si->superidx = malloc(sizeof(*si->superidx) * si->superidxsize); | |
590 memset(si->superidx, 0, sizeof(*si->superidx) * si->superidxsize); | |
591 | |
592 idxpos = 0; | |
593 for (j=0; j<si->superidxpos; j++) { | |
594 off_t start = si->idx[idxpos].ofs; | |
595 int duration; | |
596 | |
597 duration = 0; | |
598 for (k=0; k<entries_per_subidx && idxpos+k<si->idxpos; k++) { | |
599 duration += s->h.dwSampleSize ? si->idx[idxpos+k].len/s->h.dwSampleSize : 1; | |
600 } | |
601 | |
602 idxhdr[0] = le2me_32((s->ckid << 16) | mmioFOURCC('i', 'x', 0, 0)); | |
603 idxhdr[1] = le2me_32(24 + 8*k); | |
604 idxhdr[2] = le2me_32(0x01000002); | |
605 idxhdr[3] = le2me_32(k); | |
606 idxhdr[4] = le2me_32(s->ckid); | |
607 idxhdr[5] = le2me_32(start + 8); | |
608 idxhdr[6] = le2me_32((start + 8)>> 32); | |
609 idxhdr[7] = 0; /* unused */ | |
610 | |
611 si->superidx[j].len = 32 + 8*k; | |
612 si->superidx[j].ofs = ftello(muxer->file); | |
613 si->superidx[j].duration = duration; | |
614 | |
615 fwrite(idxhdr,sizeof(idxhdr),1,muxer->file); | |
616 for (k=0; k<entries_per_subidx && idxpos<si->idxpos; k++) { | |
617 unsigned int entry[2]; | |
618 entry[0] = le2me_32(si->idx[idxpos].ofs - start); | |
619 entry[1] = le2me_32(si->idx[idxpos].len | si->idx[idxpos].flags); | |
620 idxpos++; | |
621 fwrite(entry,sizeof(entry),1,muxer->file); | |
622 } | |
623 } | |
624 } | |
625 muxer->file_end=ftello(muxer->file); | |
1 | 626 } |
627 | |
12363 | 628 static void avifile_write_standard_index(muxer_t *muxer){ |
12036 | 629 |
630 muxer->movi_end=ftello(muxer->file); | |
2529 | 631 if(muxer->idx && muxer->idx_pos>0){ |
6918 | 632 int i; |
2529 | 633 // fixup index entries: |
634 // for(i=0;i<muxer->idx_pos;i++) muxer->idx[i].dwChunkOffset-=muxer->movi_start-4; | |
635 // write index chunk: | |
6918 | 636 for (i=0; i<muxer->idx_pos; i++) le2me_AVIINDEXENTRY((&muxer->idx[i])); |
9007
12fc55eb3373
Cleanup of the muxer API, func parameters muxer & muxer_f eliminated.
arpi
parents:
8591
diff
changeset
|
637 write_avi_chunk(muxer->file,ckidAVINEWINDEX,16*muxer->idx_pos,muxer->idx); /* AVIINDEXENTRY */ |
6918 | 638 for (i=0; i<muxer->idx_pos; i++) le2me_AVIINDEXENTRY((&muxer->idx[i])); |
2529 | 639 muxer->avih.dwFlags|=AVIF_HASINDEX; |
640 } | |
12036 | 641 muxer->file_end=ftello(muxer->file); |
1 | 642 } |
643 | |
12363 | 644 static void avifile_write_index(muxer_t *muxer){ |
645 struct avi_stream_info *vsi = muxer->def_v->priv; | |
646 | |
647 if (vsi->riffofspos > 0){ | |
648 avifile_odml_write_index(muxer); | |
649 } else { | |
650 avifile_write_standard_index(muxer); | |
651 } | |
652 } | |
653 | |
8585 | 654 void muxer_init_muxer_avi(muxer_t *muxer){ |
655 muxer->cont_new_stream = &avifile_new_stream; | |
656 muxer->cont_write_chunk = &avifile_write_chunk; | |
657 muxer->cont_write_header = &avifile_write_header; | |
658 muxer->cont_write_index = &avifile_write_index; | |
659 } |