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