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