Mercurial > libavformat.hg
annotate avienc.c @ 237:35231c0be8e5 libavformat
memleak fix by (Michel Bardiaux <mbardiaux at peaktime dot be>)
author | michaelni |
---|---|
date | Tue, 09 Sep 2003 19:32:52 +0000 |
parents | eb90c0a5a1ba |
children | 3d92f793fd67 |
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') }, |
227 | 146 { CODEC_ID_XAN_WC4, MKTAG('X', 'x', 'a', 'n') }, |
0 | 147 { 0, 0 }, |
148 }; | |
149 | |
150 unsigned int codec_get_tag(const CodecTag *tags, int id) | |
151 { | |
152 while (tags->id != 0) { | |
153 if (tags->id == id) | |
154 return tags->tag; | |
155 tags++; | |
156 } | |
157 return 0; | |
158 } | |
159 | |
160 static unsigned int codec_get_asf_tag(const CodecTag *tags, int id) | |
161 { | |
162 while (tags->id != 0) { | |
163 if (!tags->invalid_asf && tags->id == id) | |
164 return tags->tag; | |
165 tags++; | |
166 } | |
167 return 0; | |
168 } | |
169 | |
120 | 170 enum CodecID codec_get_id(const CodecTag *tags, unsigned int tag) |
0 | 171 { |
172 while (tags->id != 0) { | |
214 | 173 if( toupper((tag >> 0)&0xFF) == toupper((tags->tag >> 0)&0xFF) |
174 && toupper((tag >> 8)&0xFF) == toupper((tags->tag >> 8)&0xFF) | |
175 && toupper((tag >>16)&0xFF) == toupper((tags->tag >>16)&0xFF) | |
176 && toupper((tag >>24)&0xFF) == toupper((tags->tag >>24)&0xFF)) | |
0 | 177 return tags->id; |
178 tags++; | |
179 } | |
120 | 180 return CODEC_ID_NONE; |
0 | 181 } |
182 | |
183 unsigned int codec_get_bmp_tag(int id) | |
184 { | |
185 return codec_get_tag(codec_bmp_tags, id); | |
186 } | |
187 | |
219
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
188 unsigned int codec_get_wav_tag(int id) |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
189 { |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
190 return codec_get_tag(codec_wav_tags, id); |
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 |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
193 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
|
194 { |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
195 return codec_get_id(codec_bmp_tags, tag); |
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 |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
198 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
|
199 { |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
200 return codec_get_id(codec_wav_tags, tag); |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
201 } |
2f16e3066399
initial nut muxer and demuxer (demuxer is not fail safe)
al3x
parents:
214
diff
changeset
|
202 |
0 | 203 /* BITMAPINFOHEADER header */ |
204 void put_bmp_header(ByteIOContext *pb, AVCodecContext *enc, const CodecTag *tags, int for_asf) | |
205 { | |
76 | 206 put_le32(pb, 40 + enc->extradata_size); /* size */ |
0 | 207 put_le32(pb, enc->width); |
208 put_le32(pb, enc->height); | |
209 put_le16(pb, 1); /* planes */ | |
76 | 210 |
211 put_le16(pb, enc->bits_per_sample ? enc->bits_per_sample : 24); /* depth */ | |
0 | 212 /* compression type */ |
128 | 213 put_le32(pb, for_asf ? codec_get_asf_tag(tags, enc->codec_id) : enc->codec_tag); |
0 | 214 put_le32(pb, enc->width * enc->height * 3); |
215 put_le32(pb, 0); | |
216 put_le32(pb, 0); | |
217 put_le32(pb, 0); | |
218 put_le32(pb, 0); | |
76 | 219 |
220 put_buffer(pb, enc->extradata, enc->extradata_size); | |
221 | |
222 if (enc->extradata_size & 1) | |
223 put_byte(pb, 0); | |
0 | 224 } |
225 | |
226 static void parse_specific_params(AVCodecContext *stream, int *au_byterate, int *au_ssize, int *au_scale) | |
227 { | |
228 switch(stream->codec_id) { | |
229 case CODEC_ID_PCM_S16LE: | |
230 *au_scale = *au_ssize = 2*stream->channels; | |
231 *au_byterate = *au_ssize * stream->sample_rate; | |
232 break; | |
233 case CODEC_ID_PCM_U8: | |
234 case CODEC_ID_PCM_ALAW: | |
235 case CODEC_ID_PCM_MULAW: | |
236 *au_scale = *au_ssize = stream->channels; | |
237 *au_byterate = *au_ssize * stream->sample_rate; | |
238 break; | |
239 case CODEC_ID_MP2: | |
240 *au_ssize = 1; | |
241 *au_scale = 1; | |
242 *au_byterate = stream->bit_rate / 8; | |
232 | 243 case CODEC_ID_MP3: |
0 | 244 *au_ssize = 1; |
245 *au_scale = 1; | |
246 *au_byterate = stream->bit_rate / 8; | |
247 default: | |
248 *au_ssize = 1; | |
249 *au_scale = 1; | |
250 *au_byterate = stream->bit_rate / 8; | |
251 break; | |
252 } | |
253 } | |
254 | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
255 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
|
256 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
|
257 { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
258 offset_t loff; |
119 | 259 int i; |
260 | |
261 avi->riff_id++; | |
262 for (i=0; i<MAX_STREAMS; i++) | |
263 avi->indexes[i].entry = 0; | |
264 | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
265 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
|
266 put_tag(pb, riff_tag); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
267 loff = start_tag(pb, "LIST"); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
268 put_tag(pb, list_tag); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
269 return loff; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
270 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
271 |
119 | 272 static unsigned char* avi_stream2fourcc(unsigned char* tag, int index, |
273 enum CodecType type) | |
274 { | |
275 tag[0] = '0'; | |
276 tag[1] = '0' + index; | |
277 if (type == CODEC_TYPE_VIDEO) { | |
278 tag[2] = 'd'; | |
279 tag[3] = 'c'; | |
280 } else { | |
281 tag[2] = 'w'; | |
282 tag[3] = 'b'; | |
283 } | |
284 tag[4] = '\0'; | |
285 return tag; | |
286 } | |
287 | |
0 | 288 static int avi_write_header(AVFormatContext *s) |
289 { | |
290 AVIContext *avi = s->priv_data; | |
291 ByteIOContext *pb = &s->pb; | |
292 int bitrate, n, i, nb_frames, au_byterate, au_ssize, au_scale; | |
293 AVCodecContext *stream, *video_enc; | |
294 offset_t list1, list2, strh, strf; | |
295 | |
296 /* header list */ | |
119 | 297 avi->riff_id = 0; |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
298 list1 = avi_start_new_riff(avi, pb, "AVI ", "hdrl"); |
0 | 299 |
300 /* avi header */ | |
301 put_tag(pb, "avih"); | |
302 put_le32(pb, 14 * 4); | |
303 bitrate = 0; | |
304 | |
305 video_enc = NULL; | |
306 for(n=0;n<s->nb_streams;n++) { | |
307 stream = &s->streams[n]->codec; | |
308 bitrate += stream->bit_rate; | |
309 if (stream->codec_type == CODEC_TYPE_VIDEO) | |
310 video_enc = stream; | |
311 } | |
312 | |
313 nb_frames = 0; | |
314 | |
36
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
315 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
|
316 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
|
317 } else { |
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
318 put_le32(pb, 0); |
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
319 } |
0 | 320 put_le32(pb, bitrate / 8); /* XXX: not quite exact */ |
321 put_le32(pb, 0); /* padding */ | |
322 put_le32(pb, AVIF_TRUSTCKTYPE | AVIF_HASINDEX | AVIF_ISINTERLEAVED); /* flags */ | |
323 avi->frames_hdr_all = url_ftell(pb); /* remember this offset to fill later */ | |
324 put_le32(pb, nb_frames); /* nb frames, filled later */ | |
325 put_le32(pb, 0); /* initial frame */ | |
326 put_le32(pb, s->nb_streams); /* nb streams */ | |
327 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
|
328 if(video_enc){ |
0 | 329 put_le32(pb, video_enc->width); |
330 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
|
331 } else { |
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 put_le32(pb, 0); |
1188ad85857a
audio only avi patch by (Andriy Rysin <arysin at bcsii dot net>)
michaelni
parents:
15
diff
changeset
|
334 } |
0 | 335 put_le32(pb, 0); /* reserved */ |
336 put_le32(pb, 0); /* reserved */ | |
337 put_le32(pb, 0); /* reserved */ | |
338 put_le32(pb, 0); /* reserved */ | |
339 | |
340 /* stream list */ | |
341 for(i=0;i<n;i++) { | |
342 list2 = start_tag(pb, "LIST"); | |
343 put_tag(pb, "strl"); | |
344 | |
345 stream = &s->streams[i]->codec; | |
346 | |
89
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
347 /* 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
|
348 if (! stream->codec_tag) { |
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
349 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
|
350 } |
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
351 |
0 | 352 /* stream generic header */ |
353 strh = start_tag(pb, "strh"); | |
354 switch(stream->codec_type) { | |
355 case CODEC_TYPE_VIDEO: | |
356 put_tag(pb, "vids"); | |
89
8e3cf4e9fc5a
rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michaelni
parents:
85
diff
changeset
|
357 put_le32(pb, stream->codec_tag); |
0 | 358 put_le32(pb, 0); /* flags */ |
359 put_le16(pb, 0); /* priority */ | |
360 put_le16(pb, 0); /* language */ | |
361 put_le32(pb, 0); /* initial frame */ | |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
65
diff
changeset
|
362 |
85
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_base); /* scale */ |
25062c9b1f86
per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents:
77
diff
changeset
|
364 put_le32(pb, stream->frame_rate); /* rate */ |
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
65
diff
changeset
|
365 |
0 | 366 put_le32(pb, 0); /* start */ |
367 avi->frames_hdr_strm[i] = url_ftell(pb); /* remember this offset to fill later */ | |
368 put_le32(pb, nb_frames); /* length, XXX: fill later */ | |
369 put_le32(pb, 1024 * 1024); /* suggested buffer size */ | |
370 put_le32(pb, -1); /* quality */ | |
371 put_le32(pb, stream->width * stream->height * 3); /* sample size */ | |
372 put_le16(pb, 0); | |
373 put_le16(pb, 0); | |
374 put_le16(pb, stream->width); | |
375 put_le16(pb, stream->height); | |
376 break; | |
377 case CODEC_TYPE_AUDIO: | |
378 put_tag(pb, "auds"); | |
379 put_le32(pb, 1); /* tag */ | |
380 put_le32(pb, 0); /* flags */ | |
381 put_le16(pb, 0); /* priority */ | |
382 put_le16(pb, 0); /* language */ | |
383 put_le32(pb, 0); /* initial frame */ | |
384 parse_specific_params(stream, &au_byterate, &au_ssize, &au_scale); | |
385 put_le32(pb, au_scale); /* scale */ | |
386 put_le32(pb, au_byterate); /* rate */ | |
387 put_le32(pb, 0); /* start */ | |
388 avi->frames_hdr_strm[i] = url_ftell(pb); /* remember this offset to fill later */ | |
389 put_le32(pb, 0); /* length, XXX: filled later */ | |
390 put_le32(pb, 12 * 1024); /* suggested buffer size */ | |
391 put_le32(pb, -1); /* quality */ | |
392 put_le32(pb, au_ssize); /* sample size */ | |
393 put_le32(pb, 0); | |
394 put_le32(pb, 0); | |
395 break; | |
396 default: | |
397 av_abort(); | |
398 } | |
399 end_tag(pb, strh); | |
400 | |
401 strf = start_tag(pb, "strf"); | |
402 switch(stream->codec_type) { | |
403 case CODEC_TYPE_VIDEO: | |
404 put_bmp_header(pb, stream, codec_bmp_tags, 0); | |
405 break; | |
406 case CODEC_TYPE_AUDIO: | |
407 if (put_wav_header(pb, stream) < 0) { | |
408 av_free(avi); | |
409 return -1; | |
410 } | |
411 break; | |
412 default: | |
413 av_abort(); | |
414 } | |
415 end_tag(pb, strf); | |
119 | 416 |
417 if (!url_is_streamed(pb)) { | |
418 unsigned char tag[5]; | |
123
3b9e4b0a91e2
* Making AVI encoding predictable (all JUNK chunks are filled with 0)
romansh
parents:
122
diff
changeset
|
419 int j; |
119 | 420 |
421 /* Starting to lay out AVI OpenDML master index. | |
422 * 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
|
423 * like to get away without making AVI an OpenDML one |
119 | 424 * for compatibility reasons. |
425 */ | |
426 avi->indexes[i].entry = avi->indexes[i].ents_allocated = 0; | |
427 avi->indexes[i].indx_start = start_tag(pb, "JUNK"); | |
428 put_le16(pb, 4); /* wLongsPerEntry */ | |
429 put_byte(pb, 0); /* bIndexSubType (0 == frame index) */ | |
430 put_byte(pb, 0); /* bIndexType (0 == AVI_INDEX_OF_INDEXES) */ | |
431 put_le32(pb, 0); /* nEntriesInUse (will fill out later on) */ | |
432 put_tag(pb, avi_stream2fourcc(&tag[0], i, stream->codec_type)); | |
433 /* dwChunkId */ | |
434 put_le64(pb, 0); /* dwReserved[3] | |
435 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
|
436 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
|
437 put_le64(pb, 0); |
119 | 438 end_tag(pb, avi->indexes[i].indx_start); |
439 } | |
440 | |
0 | 441 end_tag(pb, list2); |
442 } | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
443 |
119 | 444 if (!url_is_streamed(pb)) { |
445 /* AVI could become an OpenDML one, if it grows beyond 2Gb range */ | |
446 avi->odml_list = start_tag(pb, "JUNK"); | |
447 put_tag(pb, "odml"); | |
448 put_tag(pb, "dmlh"); | |
449 put_le32(pb, 248); | |
450 for (i = 0; i < 248; i+= 4) | |
451 put_le32(pb, 0); | |
452 end_tag(pb, avi->odml_list); | |
453 } | |
0 | 454 |
455 end_tag(pb, list1); | |
456 | |
457 avi->movi_list = start_tag(pb, "LIST"); | |
458 put_tag(pb, "movi"); | |
459 | |
460 put_flush_packet(pb); | |
461 | |
462 return 0; | |
463 } | |
464 | |
119 | 465 static int avi_write_ix(AVFormatContext *s) |
466 { | |
467 ByteIOContext *pb = &s->pb; | |
468 AVIContext *avi = s->priv_data; | |
469 unsigned char tag[5]; | |
470 unsigned char ix_tag[] = "ix00"; | |
471 int i, j; | |
472 | |
473 if (avi->riff_id > AVI_MASTER_INDEX_SIZE) | |
474 return -1; | |
475 | |
476 for (i=0;i<s->nb_streams;i++) { | |
477 offset_t ix, pos; | |
478 | |
479 avi_stream2fourcc(&tag[0], i, s->streams[i]->codec.codec_type); | |
480 ix_tag[3] = '0' + i; | |
481 | |
482 /* Writing AVI OpenDML leaf index chunk */ | |
483 ix = url_ftell(pb); | |
484 put_tag(pb, &ix_tag[0]); /* ix?? */ | |
485 put_le32(pb, avi->indexes[i].entry * 8 + 24); | |
486 /* chunk size */ | |
487 put_le16(pb, 2); /* wLongsPerEntry */ | |
488 put_byte(pb, 0); /* bIndexSubType (0 == frame index) */ | |
489 put_byte(pb, 1); /* bIndexType (1 == AVI_INDEX_OF_CHUNKS) */ | |
490 put_le32(pb, avi->indexes[i].entry); | |
491 /* nEntriesInUse */ | |
492 put_tag(pb, &tag[0]); /* dwChunkId */ | |
493 put_le64(pb, avi->movi_list);/* qwBaseOffset */ | |
494 put_le32(pb, 0); /* dwReserved_3 (must be 0) */ | |
495 | |
496 for (j=0; j<avi->indexes[i].entry; j++) { | |
497 AVIIentry* ie = avi_get_ientry(&avi->indexes[i], j); | |
498 put_le32(pb, ie->pos + 8); | |
499 put_le32(pb, ((uint32_t)ie->len & ~0x80000000) | | |
500 (ie->flags & 0x10 ? 0 : 0x80000000)); | |
501 } | |
502 put_flush_packet(pb); | |
503 pos = url_ftell(pb); | |
504 | |
505 /* Updating one entry in the AVI OpenDML master index */ | |
506 url_fseek(pb, avi->indexes[i].indx_start - 8, SEEK_SET); | |
507 put_tag(pb, "indx"); /* enabling this entry */ | |
508 url_fskip(pb, 8); | |
509 put_le32(pb, avi->riff_id); /* nEntriesInUse */ | |
510 url_fskip(pb, 16*avi->riff_id); | |
511 put_le64(pb, ix); /* qwOffset */ | |
512 put_le32(pb, pos - ix); /* dwSize */ | |
513 put_le32(pb, avi->indexes[i].entry); /* dwDuration */ | |
514 | |
515 url_fseek(pb, pos, SEEK_SET); | |
516 } | |
517 return 0; | |
518 } | |
519 | |
520 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
|
521 { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
522 ByteIOContext *pb = &s->pb; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
523 AVIContext *avi = s->priv_data; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
524 offset_t file_size, idx_chunk; |
119 | 525 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
|
526 AVCodecContext *stream; |
119 | 527 unsigned char tag[5]; |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
528 |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
529 if (!url_is_streamed(pb)) { |
122 | 530 AVIIentry* ie = 0, *tie; |
119 | 531 int entry[MAX_STREAMS]; |
122 | 532 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
|
533 |
119 | 534 idx_chunk = start_tag(pb, "idx1"); |
535 memset(&entry[0], 0, sizeof(entry)); | |
536 do { | |
537 empty = 1; | |
538 for (i=0; i<s->nb_streams; i++) { | |
539 if (avi->indexes[i].entry <= entry[i]) | |
540 continue; | |
541 | |
542 tie = avi_get_ientry(&avi->indexes[i], entry[i]); | |
543 if (empty || tie->pos < ie->pos) { | |
544 ie = tie; | |
545 stream_id = i; | |
546 } | |
547 empty = 0; | |
548 } | |
549 if (!empty) { | |
550 avi_stream2fourcc(&tag[0], stream_id, | |
551 s->streams[stream_id]->codec.codec_type); | |
552 put_tag(pb, &tag[0]); | |
553 put_le32(pb, ie->flags); | |
554 put_le32(pb, ie->pos); | |
555 put_le32(pb, ie->len); | |
556 entry[stream_id]++; | |
557 } | |
558 } while (!empty); | |
559 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
|
560 |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
561 /* Fill in frame/sample counters */ |
119 | 562 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
|
563 nb_frames = 0; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
564 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
|
565 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
|
566 stream = &s->streams[n]->codec; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
567 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
|
568 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
|
569 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
|
570 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
|
571 nb_frames = stream->frame_number; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
572 } else { |
232 | 573 if (stream->codec_id == CODEC_ID_MP2 || stream->codec_id == CODEC_ID_MP3) { |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
574 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
|
575 nb_frames += stream->frame_number; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
576 } else { |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
577 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
|
578 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
|
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 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
583 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
|
584 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
|
585 put_le32(pb, nb_frames); |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
586 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
587 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
|
588 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
589 return 0; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
590 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
591 |
0 | 592 static int avi_write_packet(AVFormatContext *s, int stream_index, |
65 | 593 uint8_t *buf, int size, int force_pts) |
0 | 594 { |
595 AVIContext *avi = s->priv_data; | |
596 ByteIOContext *pb = &s->pb; | |
597 unsigned char tag[5]; | |
598 unsigned int flags; | |
599 AVCodecContext *enc; | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
600 |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
601 if (url_ftell(pb) - avi->riff_start > AVI_MAX_RIFF_SIZE) { |
119 | 602 avi_write_ix(s); |
603 end_tag(pb, avi->movi_list); | |
604 | |
605 if (avi->riff_id == 1) | |
606 avi_write_idx1(s); | |
607 | |
608 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
|
609 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
|
610 } |
0 | 611 |
612 enc = &s->streams[stream_index]->codec; | |
119 | 613 avi_stream2fourcc(&tag[0], stream_index, enc->codec_type); |
614 if (enc->codec_type == CODEC_TYPE_AUDIO) { | |
0 | 615 avi->audio_strm_length[stream_index] += size; |
119 | 616 flags = 0x10; |
617 } else | |
618 flags = enc->coded_frame->key_frame ? 0x10 : 0x00; | |
0 | 619 |
620 if (!url_is_streamed(&s->pb)) { | |
119 | 621 AVIIndex* idx = &avi->indexes[stream_index]; |
622 int cl = idx->entry / AVI_INDEX_CLUSTER_SIZE; | |
623 int id = idx->entry % AVI_INDEX_CLUSTER_SIZE; | |
624 if (idx->ents_allocated <= idx->entry) { | |
625 idx->cluster = av_realloc(idx->cluster, (cl+1)*sizeof(void*)); | |
626 if (!idx->cluster) | |
627 return -1; | |
628 idx->cluster[cl] = av_malloc(AVI_INDEX_CLUSTER_SIZE*sizeof(AVIIentry)); | |
629 if (!idx->cluster[cl]) | |
630 return -1; | |
631 idx->ents_allocated += AVI_INDEX_CLUSTER_SIZE; | |
632 } | |
633 | |
634 idx->cluster[cl][id].flags = flags; | |
635 idx->cluster[cl][id].pos = url_ftell(pb) - avi->movi_list; | |
636 idx->cluster[cl][id].len = size; | |
637 idx->entry++; | |
0 | 638 } |
639 | |
640 put_buffer(pb, tag, 4); | |
641 put_le32(pb, size); | |
642 put_buffer(pb, buf, size); | |
643 if (size & 1) | |
644 put_byte(pb, 0); | |
645 | |
646 put_flush_packet(pb); | |
647 return 0; | |
648 } | |
649 | |
650 static int avi_write_trailer(AVFormatContext *s) | |
651 { | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
652 AVIContext *avi = s->priv_data; |
0 | 653 ByteIOContext *pb = &s->pb; |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
654 int res = 0; |
119 | 655 int i, j, n, nb_frames; |
656 offset_t file_size; | |
0 | 657 |
119 | 658 if (avi->riff_id == 1) { |
659 end_tag(pb, avi->movi_list); | |
660 res = avi_write_idx1(s); | |
661 end_tag(pb, avi->riff_start); | |
662 } else { | |
663 avi_write_ix(s); | |
664 end_tag(pb, avi->movi_list); | |
665 end_tag(pb, avi->riff_start); | |
666 | |
0 | 667 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
|
668 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
|
669 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
|
670 url_fskip(pb, 16); |
0 | 671 |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
672 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
|
673 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
|
674 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
|
675 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
|
676 nb_frames = stream->frame_number; |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
677 } else { |
232 | 678 if (stream->codec_id == CODEC_ID_MP2 || stream->codec_id == CODEC_ID_MP3) { |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
679 nb_frames += stream->frame_number; |
0 | 680 } |
681 } | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
682 } |
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
683 put_le32(pb, nb_frames); |
119 | 684 url_fseek(pb, file_size, SEEK_SET); |
685 } | |
686 put_flush_packet(pb); | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
687 |
119 | 688 for (i=0; i<MAX_STREAMS; i++) { |
689 for (j=0; j<avi->indexes[i].ents_allocated/AVI_INDEX_CLUSTER_SIZE; j++) | |
690 av_free(avi->indexes[i].cluster[j]); | |
691 av_free(avi->indexes[i].cluster); | |
692 avi->indexes[i].cluster = NULL; | |
693 avi->indexes[i].ents_allocated = avi->indexes[i].entry = 0; | |
694 } | |
695 | |
102
c48108fe538e
AVI > 2Gb (OpenDML) generation patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
94
diff
changeset
|
696 return res; |
0 | 697 } |
698 | |
699 static AVOutputFormat avi_oformat = { | |
700 "avi", | |
701 "avi format", | |
702 "video/x-msvideo", | |
703 "avi", | |
704 sizeof(AVIContext), | |
705 CODEC_ID_MP2, | |
106
4da5d55b3690
we really shouldnt use M$* as default codec -> use MPEG4 as default
michaelni
parents:
105
diff
changeset
|
706 CODEC_ID_MPEG4, |
0 | 707 avi_write_header, |
708 avi_write_packet, | |
709 avi_write_trailer, | |
710 }; | |
711 | |
712 int avienc_init(void) | |
713 { | |
714 av_register_output_format(&avi_oformat); | |
715 return 0; | |
716 } |