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