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