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