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