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