Mercurial > libavformat.hg
annotate avienc.c @ 223:848b612d0595 libavformat
move packetheader after startcodes
author | al3x |
---|---|
date | Sun, 07 Sep 2003 00:37:46 +0000 |
parents | 2f16e3066399 |
children | b0d2d719ae41 |
rev | line source |
---|---|
0 | 1 /* |
2 * AVI encoder. | |
3 * Copyright (c) 2000 Fabrice Bellard. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
19 #include "avformat.h" | |
20 #include "avi.h" | |
21 | |
22 /* | |
23 * TODO: | |
24 * - fill all fields if non streamed (nb_frames for example) | |
25 */ | |
26 | |
119 | 27 typedef struct AVIIentry { |
28 unsigned int flags, pos, len; | |
29 } AVIIentry; | |
30 | |
31 #define AVI_INDEX_CLUSTER_SIZE 16384 | |
32 | |
0 | 33 typedef struct AVIIndex { |
119 | 34 offset_t indx_start; |
35 int entry; | |
36 int ents_allocated; | |
37 AVIIentry** cluster; | |
0 | 38 } AVIIndex; |
39 | |
40 typedef struct { | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
41 offset_t riff_start, movi_list, odml_list; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
42 offset_t frames_hdr_all, frames_hdr_strm[MAX_STREAMS]; |
0 | 43 int audio_strm_length[MAX_STREAMS]; |
119 | 44 int riff_id; |
45 | |
46 AVIIndex indexes[MAX_STREAMS]; | |
0 | 47 } AVIContext; |
48 | |
119 | 49 static inline AVIIentry* avi_get_ientry(AVIIndex* idx, int ent_id) |
50 { | |
51 int cl = ent_id / AVI_INDEX_CLUSTER_SIZE; | |
52 int id = ent_id % AVI_INDEX_CLUSTER_SIZE; | |
53 return &idx->cluster[cl][id]; | |
54 } | |
55 | |
0 | 56 offset_t start_tag(ByteIOContext *pb, const char *tag) |
57 { | |
58 put_tag(pb, tag); | |
59 put_le32(pb, 0); | |
60 return url_ftell(pb); | |
61 } | |
62 | |
63 void end_tag(ByteIOContext *pb, offset_t start) | |
64 { | |
65 offset_t pos; | |
66 | |
67 pos = url_ftell(pb); | |
68 url_fseek(pb, start - 4, SEEK_SET); | |
65 | 69 put_le32(pb, (uint32_t)(pos - start)); |
0 | 70 url_fseek(pb, pos, SEEK_SET); |
71 } | |
72 | |
73 /* Note: when encoding, the first matching tag is used, so order is | |
74 important if multiple tags possible for a given codec. */ | |
75 const CodecTag codec_bmp_tags[] = { | |
76 { CODEC_ID_H263, MKTAG('H', '2', '6', '3') }, | |
77 { CODEC_ID_H263P, MKTAG('H', '2', '6', '3') }, | |
78 { CODEC_ID_H263I, MKTAG('I', '2', '6', '3') }, /* intel h263 */ | |
90
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
79 |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
80 /* added based on MPlayer */ |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
81 { CODEC_ID_H263P, MKTAG('U', '2', '6', '3') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
82 { CODEC_ID_H263P, MKTAG('v', 'i', 'v', '1') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
83 |
0 | 84 { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X'), .invalid_asf = 1 }, |
85 { CODEC_ID_MPEG4, MKTAG('D', 'X', '5', '0'), .invalid_asf = 1 }, | |
86 { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D'), .invalid_asf = 1 }, | |
87 { CODEC_ID_MPEG4, MKTAG('M', 'P', '4', 'S') }, | |
88 { CODEC_ID_MPEG4, MKTAG('M', '4', 'S', '2') }, | |
89 { CODEC_ID_MPEG4, MKTAG(0x04, 0, 0, 0) }, /* some broken avi use this */ | |
90
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
90 |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
91 /* added based on MPlayer */ |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
92 { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', '1') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
93 { CODEC_ID_MPEG4, MKTAG('B', 'L', 'Z', '0') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
94 { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
95 { CODEC_ID_MPEG4, MKTAG('U', 'M', 'P', '4') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
96 |
0 | 97 { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '3'), .invalid_asf = 1 }, /* default signature when using MSMPEG4 */ |
98 { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', '4', '3') }, | |
90
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
99 |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
100 /* added based on MPlayer */ |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
101 { CODEC_ID_MSMPEG4V3, MKTAG('M', 'P', 'G', '3') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
102 { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '5') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
103 { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '6') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
104 { CODEC_ID_MSMPEG4V3, MKTAG('D', 'I', 'V', '4') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
105 { CODEC_ID_MSMPEG4V3, MKTAG('A', 'P', '4', '1') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
106 { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '1') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
107 { CODEC_ID_MSMPEG4V3, MKTAG('C', 'O', 'L', '0') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
108 |
0 | 109 { CODEC_ID_MSMPEG4V2, MKTAG('M', 'P', '4', '2') }, |
90
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
110 |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
111 /* added based on MPlayer */ |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
112 { CODEC_ID_MSMPEG4V2, MKTAG('D', 'I', 'V', '2') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
113 |
0 | 114 { CODEC_ID_MSMPEG4V1, MKTAG('M', 'P', 'G', '4') }, |
90
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
115 |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
116 /* added based on MPlayer */ |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
117 { CODEC_ID_MSMPEG4V1, MKTAG('D', 'I', 'V', '4') }, |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
118 |
0 | 119 { CODEC_ID_WMV1, MKTAG('W', 'M', 'V', '1') }, |
90
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
120 |
27d6df9208d4
merging a small amount of the changes from BroadQ, the rest is either not clean / doesnt apply / or is PS2 specific (someone with a PS2 should merge/send a patch for the later)
michaelni
parents:
89
diff
changeset
|
121 /* added based on MPlayer */ |
77 | 122 { CODEC_ID_WMV2, MKTAG('W', 'M', 'V', '2') }, |
0 | 123 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'd') }, |
124 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', 'd') }, | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
125 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 's', 'l') }, |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
126 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '2', '5') }, |
0 | 127 { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '1') }, |
128 { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'g', '2') }, | |
129 { CODEC_ID_MPEG1VIDEO, MKTAG('P', 'I', 'M', '1') }, | |
183 | 130 { CODEC_ID_MPEG1VIDEO, MKTAG('V', 'C', 'R', '2') }, |
0 | 131 { CODEC_ID_MJPEG, MKTAG('M', 'J', 'P', 'G') }, |
158 | 132 { CODEC_ID_MJPEG, MKTAG('L', 'J', 'P', 'G') }, |
169 | 133 { CODEC_ID_LJPEG, MKTAG('L', 'J', 'P', 'G') }, |
158 | 134 { CODEC_ID_MJPEG, MKTAG('J', 'P', 'G', 'L') }, /* Pegasus lossless JPEG */ |
15 | 135 { CODEC_ID_HUFFYUV, MKTAG('H', 'F', 'Y', 'U') }, |
61 | 136 { CODEC_ID_CYUV, MKTAG('C', 'Y', 'U', 'V') }, |
89
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
137 { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', '2', '2') }, |
94
79b7d70d6c37
I420 patch by (Sebastien Bechet <s dot bechet at av7 dot net>)
michaelni
parents:
90
diff
changeset
|
138 { CODEC_ID_RAWVIDEO, MKTAG('I', '4', '2', '0') }, |
105 | 139 { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '1') }, |
140 { CODEC_ID_INDEO3, MKTAG('I', 'V', '3', '2') }, | |
124 | 141 { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') }, |
142 | 142 { CODEC_ID_ASV1, MKTAG('A', 'S', 'V', '1') }, |
208 | 143 { CODEC_ID_ASV2, MKTAG('A', 'S', 'V', '2') }, |
181 | 144 { CODEC_ID_VCR1, MKTAG('V', 'C', 'R', '1') }, |
150 | 145 { CODEC_ID_FFV1, MKTAG('F', 'F', 'V', '1') }, |
0 | 146 { 0, 0 }, |
147 }; | |
148 | |
149 unsigned int codec_get_tag(const CodecTag *tags, int id) | |
150 { | |
151 while (tags->id != 0) { | |
152 if (tags->id == id) | |
153 return tags->tag; | |
154 tags++; | |
155 } | |
156 return 0; | |
157 } | |
158 | |
159 static unsigned int codec_get_asf_tag(const CodecTag *tags, int id) | |
160 { | |
161 while (tags->id != 0) { | |
162 if (!tags->invalid_asf && tags->id == id) | |
163 return tags->tag; | |
164 tags++; | |
165 } | |
166 return 0; | |
167 } | |
168 | |
120 | 169 enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag) |
0 | 170 { |
171 while (tags->id != 0) { | |
214 | 172 if( toupper((tag >> 0)&0xFF) == toupper((tags->tag >> 0)&0xFF) |
173 && toupper((tag >> 8)&0xFF) == toupper((tags->tag >> 8)&0xFF) | |
174 && toupper((tag >>16)&0xFF) == toupper((tags->tag >>16)&0xFF) | |
175 && toupper((tag >>24)&0xFF) == toupper((tags->tag >>24)&0xFF)) | |
0 | 176 return tags->id; |
177 tags++; | |
178 } | |
120 | 179 return CODEC_ID_NONE; |
0 | 180 } |
181 | |
182 unsigned int codec_get_bmp_tag(int id) | |
183 { | |
184 return codec_get_tag(codec_bmp_tags, id); | |
185 } | |
186 | |
219
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
187 unsigned int codec_get_wav_tag(int id) |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
188 { |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
189 return codec_get_tag(codec_wav_tags, id); |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
190 } |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
191 |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
192 enum CodecID codec_get_bmp_id(unsigned int tag) |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
193 { |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
194 return codec_get_id(codec_bmp_tags, tag); |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
195 } |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
196 |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
197 enum CodecID codec_get_wav_id(unsigned int tag) |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
198 { |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
199 return codec_get_id(codec_wav_tags, tag); |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
200 } |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
201 |
0 | 202 /* BITMAPINFOHEADER header */ |
203 void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const CodecTag *tags, int for_asf) | |
204 { | |
76 | 205 put_le32(pb, 40 + enc->extradata_size); /* size */ |
0 | 206 put_le32(pb, enc->width); |
207 put_le32(pb, enc->height); | |
208 put_le16(pb, 1); /* planes */ | |
76 | 209 |
210 put_le16(pb, enc->bits_per_sample ? enc->bits_per_sample : 24); /* depth */ | |
0 | 211 /* compression type */ |
128 | 212 put_le32(pb, for_asf ? codec_get_asf_tag(tags, enc->codec_id) : enc->codec_tag); |
0 | 213 put_le32(pb, enc->width * enc->height * 3); |
214 put_le32(pb, 0); | |
215 put_le32(pb, 0); | |
216 put_le32(pb, 0); | |
217 put_le32(pb, 0); | |
76 | 218 |
219 put_buffer(pb, enc->extradata, enc->extradata_size); | |
220 | |
221 if (enc->extradata_size & 1) | |
222 put_byte(pb, 0); | |
0 | 223 } |
224 | |
225 static void parse_specific_params(AVCodecContext *stream, int *au_byterate, int *au_ssize, int *au_scale) | |
226 { | |
227 switch(stream->codec_id) { | |
228 case CODEC_ID_PCM_S16LE: | |
229 *au_scale = *au_ssize = 2*stream->channels; | |
230 *au_byterate = *au_ssize * stream->sample_rate; | |
231 break; | |
232 case CODEC_ID_PCM_U8: | |
233 case CODEC_ID_PCM_ALAW: | |
234 case CODEC_ID_PCM_MULAW: | |
235 *au_scale = *au_ssize = stream->channels; | |
236 *au_byterate = *au_ssize * stream->sample_rate; | |
237 break; | |
238 case CODEC_ID_MP2: | |
239 *au_ssize = 1; | |
240 *au_scale = 1; | |
241 *au_byterate = stream->bit_rate / 8; | |
242 case CODEC_ID_MP3LAME: | |
243 *au_ssize = 1; | |
244 *au_scale = 1; | |
245 *au_byterate = stream->bit_rate / 8; | |
246 default: | |
247 *au_ssize = 1; | |
248 *au_scale = 1; | |
249 *au_byterate = stream->bit_rate / 8; | |
250 break; | |
251 } | |
252 } | |
253 | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
254 static offset_t avi_start_new_riff(AVIContext *avi, ByteIOContext *pb, |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
255 const char* riff_tag, const char* list_tag) |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
256 { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
257 offset_t loff; |
119 | 258 int i; |
259 | |
260 avi->riff_id++; | |
261 for (i=0; i<MAX_STREAMS; i++) | |
262 avi->indexes[i].entry = 0; | |
263 | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
264 avi->riff_start = start_tag(pb, "RIFF"); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
265 put_tag(pb, riff_tag); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
266 loff = start_tag(pb, "LIST"); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
267 put_tag(pb, list_tag); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
268 return loff; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
269 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
270 |
119 | 271 static unsigned char* avi_stream2fourcc(unsigned char* tag, int index, |
272 enum CodecType type) | |
273 { | |
274 tag[0] = '0'; | |
275 tag[1] = '0' + index; | |
276 if (type == CODEC_TYPE_VIDEO) { | |
277 tag[2] = 'd'; | |
278 tag[3] = 'c'; | |
279 } else { | |
280 tag[2] = 'w'; | |
281 tag[3] = 'b'; | |
282 } | |
283 tag[4] = '\0'; | |
284 return tag; | |
285 } | |
286 | |
0 | 287 static int avi_write_header(AVFormatContext *s) |
288 { | |
289 AVIContext *avi = s->priv_data; | |
290 ByteIOContext *pb = &s->pb; | |
291 int bitrate, n, i, nb_frames, au_byterate, au_ssize, au_scale; | |
292 AVCodecContext *stream, *video_enc; | |
293 offset_t list1, list2, strh, strf; | |
294 | |
295 /* header list */ | |
119 | 296 avi->riff_id = 0; |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
297 list1 = avi_start_new_riff(avi, pb, "AVI ", "hdrl"); |
0 | 298 |
299 /* avi header */ | |
300 put_tag(pb, "avih"); | |
301 put_le32(pb, 14 * 4); | |
302 bitrate = 0; | |
303 | |
304 video_enc = NULL; | |
305 for(n=0;n<s->nb_streams;n++) { | |
306 stream = &s->streams[n]->codec; | |
307 bitrate += stream->bit_rate; | |
308 if (stream->codec_type == CODEC_TYPE_VIDEO) | |
309 video_enc = stream; | |
310 } | |
311 | |
312 nb_frames = 0; | |
313 | |
36
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
314 if(video_enc){ |
85
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
77
diff
changeset
|
315 put_le32(pb, (uint32_t)(int64_t_C(1000000) * video_enc->frame_rate_base / video_enc->frame_rate)); |
36
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
316 } else { |
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
317 put_le32(pb, 0); |
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
318 } |
0 | 319 put_le32(pb, bitrate / 8); /* XXX: not quite exact */ |
320 put_le32(pb, 0); /* padding */ | |
321 put_le32(pb, AVIF_TRUSTCKTYPE | AVIF_HASINDEX | AVIF_ISINTERLEAVED); /* flags */ | |
322 avi->frames_hdr_all = url_ftell(pb); /* remember this offset to fill later */ | |
323 put_le32(pb, nb_frames); /* nb frames, filled later */ | |
324 put_le32(pb, 0); /* initial frame */ | |
325 put_le32(pb, s->nb_streams); /* nb streams */ | |
326 put_le32(pb, 1024 * 1024); /* suggested buffer size */ | |
36
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
327 if(video_enc){ |
0 | 328 put_le32(pb, video_enc->width); |
329 put_le32(pb, video_enc->height); | |
36
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
330 } else { |
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
331 put_le32(pb, 0); |
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
332 put_le32(pb, 0); |
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
333 } |
0 | 334 put_le32(pb, 0); /* reserved */ |
335 put_le32(pb, 0); /* reserved */ | |
336 put_le32(pb, 0); /* reserved */ | |
337 put_le32(pb, 0); /* reserved */ | |
338 | |
339 /* stream list */ | |
340 for(i=0;i<n;i++) { | |
341 list2 = start_tag(pb, "LIST"); | |
342 put_tag(pb, "strl"); | |
343 | |
344 stream = &s->streams[i]->codec; | |
345 | |
89
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
346 /* FourCC should really be set by the codec itself */ |
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
347 if (! stream->codec_tag) { |
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
348 stream->codec_tag = codec_get_bmp_tag(stream->codec_id); |
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
349 } |
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
350 |
0 | 351 /* stream generic header */ |
352 strh = start_tag(pb, "strh"); | |
353 switch(stream->codec_type) { | |
354 case CODEC_TYPE_VIDEO: | |
355 put_tag(pb, "vids"); | |
89
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
356 put_le32(pb, stream->codec_tag); |
0 | 357 put_le32(pb, 0); /* flags */ |
358 put_le16(pb, 0); /* priority */ | |
359 put_le16(pb, 0); /* language */ | |
360 put_le32(pb, 0); /* initial frame */ | |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
65
diff
changeset
|
361 |
85
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
77
diff
changeset
|
362 put_le32(pb, stream->frame_rate_base); /* scale */ |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
77
diff
changeset
|
363 put_le32(pb, stream->frame_rate); /* rate */ |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
65
diff
changeset
|
364 |
0 | 365 put_le32(pb, 0); /* start */ |
366 avi->frames_hdr_strm[i] = url_ftell(pb); /* remember this offset to fill later */ | |
367 put_le32(pb, nb_frames); /* length, XXX: fill later */ | |
368 put_le32(pb, 1024 * 1024); /* suggested buffer size */ | |
369 put_le32(pb, -1); /* quality */ | |
370 put_le32(pb, stream->width * stream->height * 3); /* sample size */ | |
371 put_le16(pb, 0); | |
372 put_le16(pb, 0); | |
373 put_le16(pb, stream->width); | |
374 put_le16(pb, stream->height); | |
375 break; | |
376 case CODEC_TYPE_AUDIO: | |
377 put_tag(pb, "auds"); | |
378 put_le32(pb, 1); /* tag */ | |
379 put_le32(pb, 0); /* flags */ | |
380 put_le16(pb, 0); /* priority */ | |
381 put_le16(pb, 0); /* language */ | |
382 put_le32(pb, 0); /* initial frame */ | |
383 parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale); | |
384 put_le32(pb, au_scale); /* scale */ | |
385 put_le32(pb, au_byterate); /* rate */ | |
386 put_le32(pb, 0); /* start */ | |
387 avi->frames_hdr_strm[i] = url_ftell(pb); /* remember this offset to fill later */ | |
388 put_le32(pb, 0); /* length, XXX: filled later */ | |
389 put_le32(pb, 12 * 1024); /* suggested buffer size */ | |
390 put_le32(pb, -1); /* quality */ | |
391 put_le32(pb, au_ssize); /* sample size */ | |
392 put_le32(pb, 0); | |
393 put_le32(pb, 0); | |
394 break; | |
395 default: | |
396 av_abort(); | |
397 } | |
398 end_tag(pb, strh); | |
399 | |
400 strf = start_tag(pb, "strf"); | |
401 switch(stream->codec_type) { | |
402 case CODEC_TYPE_VIDEO: | |
403 put_bmp_header(pb, stream, codec_bmp_tags, 0); | |
404 break; | |
405 case CODEC_TYPE_AUDIO: | |
406 if (put_wav_header(pb, stream) < 0) { | |
407 av_free(avi); | |
408 return -1; | |
409 } | |
410 break; | |
411 default: | |
412 av_abort(); | |
413 } | |
414 end_tag(pb, strf); | |
119 | 415 |
416 if (!url_is_streamed(pb)) { | |
417 unsigned char tag[5]; | |
123
3b9e4b0a91e2
* Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents:
122
diff
changeset
|
418 int j; |
119 | 419 |
420 /* Starting to lay out AVI OpenDML master index. | |
421 * We want to make it JUNK entry for now, since we'd | |
123
3b9e4b0a91e2
* Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents:
122
diff
changeset
|
422 * like to get away without making AVI an OpenDML one |
119 | 423 * for compatibility reasons. |
424 */ | |
425 avi->indexes[i].entry = avi->indexes[i].ents_allocated = 0; | |
426 avi->indexes[i].indx_start = start_tag(pb, "JUNK"); | |
427 put_le16(pb, 4); /* wLongsPerEntry */ | |
428 put_byte(pb, 0); /* bIndexSubType (0 == frame index) */ | |
429 put_byte(pb, 0); /* bIndexType (0 == AVI_INDEX_OF_INDEXES) */ | |
430 put_le32(pb, 0); /* nEntriesInUse (will fill out later on) */ | |
431 put_tag(pb, avi_stream2fourcc(&tag[0], i, stream->codec_type)); | |
432 /* dwChunkId */ | |
433 put_le64(pb, 0); /* dwReserved[3] | |
434 put_le32(pb, 0); Must be 0. */ | |
123
3b9e4b0a91e2
* Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents:
122
diff
changeset
|
435 for (j=0; j < AVI_MASTER_INDEX_SIZE * 2; j++) |
3b9e4b0a91e2
* Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents:
122
diff
changeset
|
436 put_le64(pb, 0); |
119 | 437 end_tag(pb, avi->indexes[i].indx_start); |
438 } | |
439 | |
0 | 440 end_tag(pb, list2); |
441 } | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
442 |
119 | 443 if (!url_is_streamed(pb)) { |
444 /* AVI could become an OpenDML one, if it grows beyond 2Gb range */ | |
445 avi->odml_list = start_tag(pb, "JUNK"); | |
446 put_tag(pb, "odml"); | |
447 put_tag(pb, "dmlh"); | |
448 put_le32(pb, 248); | |
449 for (i = 0; i < 248; i+= 4) | |
450 put_le32(pb, 0); | |
451 end_tag(pb, avi->odml_list); | |
452 } | |
0 | 453 |
454 end_tag(pb, list1); | |
455 | |
456 avi->movi_list = start_tag(pb, "LIST"); | |
457 put_tag(pb, "movi"); | |
458 | |
459 put_flush_packet(pb); | |
460 | |
461 return 0; | |
462 } | |
463 | |
119 | 464 static int avi_write_ix(AVFormatContext *s) |
465 { | |
466 ByteIOContext *pb = &s->pb; | |
467 AVIContext *avi = s->priv_data; | |
468 unsigned char tag[5]; | |
469 unsigned char ix_tag[] = "ix00"; | |
470 int i, j; | |
471 | |
472 if (avi->riff_id > AVI_MASTER_INDEX_SIZE) | |
473 return -1; | |
474 | |
475 for (i=0;i<s->nb_streams;i++) { | |
476 offset_t ix, pos; | |
477 | |
478 avi_stream2fourcc(&tag[0], i, s->streams[i]->codec.codec_type); | |
479 ix_tag[3] = '0' + i; | |
480 | |
481 /* Writing AVI OpenDML leaf index chunk */ | |
482 ix = url_ftell(pb); | |
483 put_tag(pb, &ix_tag[0]); /* ix?? */ | |
484 put_le32(pb, avi->indexes[i].entry * 8 + 24); | |
485 /* chunk size */ | |
486 put_le16(pb, 2); /* wLongsPerEntry */ | |
487 put_byte(pb, 0); /* bIndexSubType (0 == frame index) */ | |
488 put_byte(pb, 1); /* bIndexType (1 == AVI_INDEX_OF_CHUNKS) */ | |
489 put_le32(pb, avi->indexes[i].entry); | |
490 /* nEntriesInUse */ | |
491 put_tag(pb, &tag[0]); /* dwChunkId */ | |
492 put_le64(pb, avi->movi_list);/* qwBaseOffset */ | |
493 put_le32(pb, 0); /* dwReserved_3 (must be 0) */ | |
494 | |
495 for (j=0; j<avi->indexes[i].entry; j++) { | |
496 AVIIentry* ie = avi_get_ientry(&avi->indexes[i], j); | |
497 put_le32(pb, ie->pos + 8); | |
498 put_le32(pb, ((uint32_t)ie->len & ~0x80000000) | | |
499 (ie->flags & 0x10 ? 0 : 0x80000000)); | |
500 } | |
501 put_flush_packet(pb); | |
502 pos = url_ftell(pb); | |
503 | |
504 /* Updating one entry in the AVI OpenDML master index */ | |
505 url_fseek(pb, avi->indexes[i].indx_start - 8, SEEK_SET); | |
506 put_tag(pb, "indx"); /* enabling this entry */ | |
507 url_fskip(pb, 8); | |
508 put_le32(pb, avi->riff_id); /* nEntriesInUse */ | |
509 url_fskip(pb, 16*avi->riff_id); | |
510 put_le64(pb, ix); /* qwOffset */ | |
511 put_le32(pb, pos - ix); /* dwSize */ | |
512 put_le32(pb, avi->indexes[i].entry); /* dwDuration */ | |
513 | |
514 url_fseek(pb, pos, SEEK_SET); | |
515 } | |
516 return 0; | |
517 } | |
518 | |
519 static int avi_write_idx1(AVFormatContext *s) | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
520 { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
521 ByteIOContext *pb = &s->pb; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
522 AVIContext *avi = s->priv_data; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
523 offset_t file_size, idx_chunk; |
119 | 524 int i, n, nb_frames, au_byterate, au_ssize, au_scale; |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
525 AVCodecContext *stream; |
119 | 526 unsigned char tag[5]; |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
527 |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
528 if (!url_is_streamed(pb)) { |
122 | 529 AVIIentry* ie = 0, *tie; |
119 | 530 int entry[MAX_STREAMS]; |
122 | 531 int empty, stream_id = -1; |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
532 |
119 | 533 idx_chunk = start_tag(pb, "idx1"); |
534 memset(&entry[0], 0, sizeof(entry)); | |
535 do { | |
536 empty = 1; | |
537 for (i=0; i<s->nb_streams; i++) { | |
538 if (avi->indexes[i].entry <= entry[i]) | |
539 continue; | |
540 | |
541 tie = avi_get_ientry(&avi->indexes[i], entry[i]); | |
542 if (empty || tie->pos < ie->pos) { | |
543 ie = tie; | |
544 stream_id = i; | |
545 } | |
546 empty = 0; | |
547 } | |
548 if (!empty) { | |
549 avi_stream2fourcc(&tag[0], stream_id, | |
550 s->streams[stream_id]->codec.codec_type); | |
551 put_tag(pb, &tag[0]); | |
552 put_le32(pb, ie->flags); | |
553 put_le32(pb, ie->pos); | |
554 put_le32(pb, ie->len); | |
555 entry[stream_id]++; | |
556 } | |
557 } while (!empty); | |
558 end_tag(pb, idx_chunk); | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
559 |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
560 /* Fill in frame/sample counters */ |
119 | 561 file_size = url_ftell(pb); |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
562 nb_frames = 0; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
563 for(n=0;n<s->nb_streams;n++) { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
564 if (avi->frames_hdr_strm[n] != 0) { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
565 stream = &s->streams[n]->codec; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
566 url_fseek(pb, avi->frames_hdr_strm[n], SEEK_SET); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
567 if (stream->codec_type == CODEC_TYPE_VIDEO) { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
568 put_le32(pb, stream->frame_number); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
569 if (nb_frames < stream->frame_number) |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
570 nb_frames = stream->frame_number; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
571 } else { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
572 if (stream->codec_id == CODEC_ID_MP2 || stream->codec_id == CODEC_ID_MP3LAME) { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
573 put_le32(pb, stream->frame_number); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
574 nb_frames += stream->frame_number; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
575 } else { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
576 parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
577 put_le32(pb, avi->audio_strm_length[n] / au_ssize); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
578 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
579 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
580 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
581 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
582 if (avi->frames_hdr_all != 0) { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
583 url_fseek(pb, avi->frames_hdr_all, SEEK_SET); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
584 put_le32(pb, nb_frames); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
585 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
586 url_fseek(pb, file_size, SEEK_SET); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
587 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
588 return 0; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
589 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
590 |
0 | 591 static int avi_write_packet(AVFormatContext *s, int stream_index, |
65 | 592 uint8_t *buf, int size, int force_pts) |
0 | 593 { |
594 AVIContext *avi = s->priv_data; | |
595 ByteIOContext *pb = &s->pb; | |
596 unsigned char tag[5]; | |
597 unsigned int flags; | |
598 AVCodecContext *enc; | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
599 |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
600 if (url_ftell(pb) - avi->riff_start > AVI_MAX_RIFF_SIZE) { |
119 | 601 avi_write_ix(s); |
602 end_tag(pb, avi->movi_list); | |
603 | |
604 if (avi->riff_id == 1) | |
605 avi_write_idx1(s); | |
606 | |
607 end_tag(pb, avi->riff_start); | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
608 avi->movi_list = avi_start_new_riff(avi, pb, "AVIX", "movi"); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
609 } |
0 | 610 |
611 enc = &s->streams[stream_index]->codec; | |
119 | 612 avi_stream2fourcc(&tag[0], stream_index, enc->codec_type); |
613 if (enc->codec_type == CODEC_TYPE_AUDIO) { | |
0 | 614 avi->audio_strm_length[stream_index] += size; |
119 | 615 flags = 0x10; |
616 } else | |
617 flags = enc->coded_frame->key_frame ? 0x10 : 0x00; | |
0 | 618 |
619 if (!url_is_streamed(&s->pb)) { | |
119 | 620 AVIIndex* idx = &avi->indexes[stream_index]; |
621 int cl = idx->entry / AVI_INDEX_CLUSTER_SIZE; | |
622 int id = idx->entry % AVI_INDEX_CLUSTER_SIZE; | |
623 if (idx->ents_allocated <= idx->entry) { | |
624 idx->cluster = av_realloc(idx->cluster, (cl+1)*sizeof(void*)); | |
625 if (!idx->cluster) | |
626 return -1; | |
627 idx->cluster[cl] = av_malloc(AVI_INDEX_CLUSTER_SIZE*sizeof(AVIIentry)); | |
628 if (!idx->cluster[cl]) | |
629 return -1; | |
630 idx->ents_allocated += AVI_INDEX_CLUSTER_SIZE; | |
631 } | |
632 | |
633 idx->cluster[cl][id].flags = flags; | |
634 idx->cluster[cl][id].pos = url_ftell(pb) - avi->movi_list; | |
635 idx->cluster[cl][id].len = size; | |
636 idx->entry++; | |
0 | 637 } |
638 | |
639 put_buffer(pb, tag, 4); | |
640 put_le32(pb, size); | |
641 put_buffer(pb, buf, size); | |
642 if (size & 1) | |
643 put_byte(pb, 0); | |
644 | |
645 put_flush_packet(pb); | |
646 return 0; | |
647 } | |
648 | |
649 static int avi_write_trailer(AVFormatContext *s) | |
650 { | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
651 AVIContext *avi = s->priv_data; |
0 | 652 ByteIOContext *pb = &s->pb; |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
653 int res = 0; |
119 | 654 int i, j, n, nb_frames; |
655 offset_t file_size; | |
0 | 656 |
119 | 657 if (avi->riff_id == 1) { |
658 end_tag(pb, avi->movi_list); | |
659 res = avi_write_idx1(s); | |
660 end_tag(pb, avi->riff_start); | |
661 } else { | |
662 avi_write_ix(s); | |
663 end_tag(pb, avi->movi_list); | |
664 end_tag(pb, avi->riff_start); | |
665 | |
0 | 666 file_size = url_ftell(pb); |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
667 url_fseek(pb, avi->odml_list - 8, SEEK_SET); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
668 put_tag(pb, "LIST"); /* Making this AVI OpenDML one */ |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
669 url_fskip(pb, 16); |
0 | 670 |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
671 for (n=nb_frames=0;n<s->nb_streams;n++) { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
672 AVCodecContext *stream = &s->streams[n]->codec; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
673 if (stream->codec_type == CODEC_TYPE_VIDEO) { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
674 if (nb_frames < stream->frame_number) |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
675 nb_frames = stream->frame_number; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
676 } else { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
677 if (stream->codec_id == CODEC_ID_MP2 || stream->codec_id == CODEC_ID_MP3LAME) { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
678 nb_frames += stream->frame_number; |
0 | 679 } |
680 } | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
681 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
682 put_le32(pb, nb_frames); |
119 | 683 url_fseek(pb, file_size, SEEK_SET); |
684 } | |
685 put_flush_packet(pb); | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
686 |
119 | 687 for (i=0; i<MAX_STREAMS; i++) { |
688 for (j=0; j<avi->indexes[i].ents_allocated/AVI_INDEX_CLUSTER_SIZE; j++) | |
689 av_free(avi->indexes[i].cluster[j]); | |
690 av_free(avi->indexes[i].cluster); | |
691 avi->indexes[i].cluster = NULL; | |
692 avi->indexes[i].ents_allocated = avi->indexes[i].entry = 0; | |
693 } | |
694 | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
695 return res; |
0 | 696 } |
697 | |
698 static AVOutputFormat avi_oformat = { | |
699 "avi", | |
700 "avi format", | |
701 "video/x-msvideo", | |
702 "avi", | |
703 sizeof(AVIContext), | |
704 CODEC_ID_MP2, | |
106
4da5d55b3690
we really shouldnt use M$* as default codec -> use MPEG4 as default
michaelni
parents:
105
diff
changeset
|
705 CODEC_ID_MPEG4, |
0 | 706 avi_write_header, |
707 avi_write_packet, | |
708 avi_write_trailer, | |
709 }; | |
710 | |
711 int avienc_init(void) | |
712 { | |
713 av_register_output_format(&avi_oformat); | |
714 return 0; | |
715 } |