Mercurial > mplayer.hg
annotate etc/codecs.conf @ 4569:a3d1bfe82b74
ffmpeg yuy2 disabled again, avid RGB->BGR
author | arpi |
---|---|
date | Thu, 07 Feb 2002 16:26:35 +0000 |
parents | 3da2794c7857 |
children | 94f6daad59d4 |
rev | line source |
---|---|
307 | 1 ; Default codecs config file. It replaces the old codecs.c file! |
267 | 2 |
471 | 3 ;============================================================================= |
4 ; VIDEO CODECS | |
5 ;============================================================================= | |
6 | |
1278 | 7 ; =============== Win32/libmpeg2/ProjectMayo MPEG CODECS ===================== |
8 | |
2691 | 9 videocodec vivo |
10 info "Vivo H.263" | |
11 status working | |
12 fourcc VIVO,vivo vivo | |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
13 fourcc viv1,viv2 vivo |
2691 | 14 driver vfw |
15 dll "ivvideo.dll" | |
3525 | 16 out BGR32,BGR24,BGR15 flip |
3436 | 17 cpuflags mmx |
2691 | 18 |
1278 | 19 videocodec u263 |
20 info "UB Video H.263+ Decoder" | |
2691 | 21 comment "added by Juanjo" |
1278 | 22 status working |
23 fourcc U263 | |
2683 | 24 fourcc vivo,VIVO U263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
25 fourcc viv1 U263 |
1278 | 26 driver dshow |
27 dll "ubv263d+.ax" | |
28 guid 0x00af1181, 0x6ebb, 0x11d4, 0x9d, 0x5a, 0x00, 0x50, 0x04, 0x79, 0x6c, 0xc0 | |
29 ; out I420 flip | |
30 ; out YVYU flip,noflip | |
31 ; out YV12 flip | |
32 ; out UYVY flip,noflip | |
33 ; out YUY2 flip | |
34 out BGR24 flip | |
3436 | 35 cpuflags mmx |
1278 | 36 |
37 videocodec divxds | |
38 info "DivX ;-) (MS MPEG-4 v3)" | |
39 comment "with postprocessing" | |
40 status working | |
41 fourcc MP43,mp43 div3 ; fourcc mapping to div3 | |
42 fourcc DIV5,div5 div3 | |
43 fourcc DIV6,div6 div4 | |
44 fourcc DIV3,div3,DIV4,div4 | |
1526 | 45 fourcc AP41 div3 ; AngelPotion stuff |
1278 | 46 driver dshow |
47 dll "divx_c32.ax" | |
48 guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa | |
49 ; out YV12 | |
50 out YUY2 | |
51 out BGR32,BGR24,BGR16,BGR15 | |
3436 | 52 cpuflags mmx |
1278 | 53 |
303 | 54 videocodec mpeg12 |
55 info "MPEG 1 or 2" | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
56 comment "with postprocessing" |
334 | 57 status working |
1463 | 58 format 0x10000001 ; mpeg 1 |
59 format 0x10000002 ; mpeg 2 | |
303 | 60 driver libmpeg2 |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
61 dll "libmpeg2" |
303 | 62 out YV12 |
63 | |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
64 videocodec mpeg4ds |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
65 info "Microsoft MPEG-4 v1/v2" |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
66 status working |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
67 comment "with postprocessing" |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
68 fourcc DIV2,div2 mp42 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
69 fourcc MPG4,mpg4 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
70 fourcc MP42,mp42 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
71 driver dshow |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
72 dll "mpg4ds32.ax" |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
73 guid 0x82CCD3E0, 0xF71A, 0x11D0, 0x9F, 0xE5, 0x00, 0x60, 0x97, 0x78, 0xEA, 0x66 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
74 out YUY2 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
75 out BGR32,BGR24,BGR16,BGR15 |
3436 | 76 cpuflags mmx |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
77 |
267 | 78 videocodec mpeg4 |
268 | 79 info "Microsoft MPEG-4 v1/v2" |
334 | 80 status working |
267 | 81 fourcc MPG4,mpg4 |
82 fourcc MP42,mp42 | |
742 | 83 fourcc DIV2 mp42 |
267 | 84 driver vfw |
85 dll "mpg4c32.dll" | |
303 | 86 out YUY2 yuvhack |
87 out BGR32,BGR24,BGR15 | |
3436 | 88 cpuflags mmx |
267 | 89 |
303 | 90 videocodec divx |
91 info "DivX ;-) (MS MPEG-4 v3)" | |
334 | 92 status working |
93 fourcc MP43,mp43 div3 ; M$ MPEG4 v3 (fourcc mapping to div3) | |
94 fourcc DIV5,div5 div3 ; DivX 3.20 | |
95 fourcc DIV6,div6 div4 ; -||- | |
312 | 96 fourcc DIV3,div3,DIV4,div4 |
1526 | 97 fourcc AP41 div3 ; AngelPotion stuff |
303 | 98 driver vfw |
99 dll "divxc32.dll" | |
100 out YUY2 yuvhack | |
101 out BGR32,BGR24,BGR15 | |
3436 | 102 cpuflags mmx |
1390 | 103 |
104 videocodec odivx | |
105 info "OpenDivX (MPEG-4 v2)" | |
106 comment "with postprocessing" | |
107 status working | |
108 fourcc DIVX,divx | |
109 fourcc DIV1,div1 divx | |
110 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 | |
111 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! | |
1526 | 112 fourcc AP41 DIV3 ; AngelPotion stuff |
4206 | 113 fourcc xvid,XVID,XviD |
1390 | 114 format 0x4 |
115 driver odivx | |
116 dll "opendivx decore" | |
117 out YV12 | |
118 | |
1349 | 119 videocodec divx4 |
120 info "DivX4Linux (MPEG-4 v2,v3)" | |
121 comment "with postprocessing" | |
122 status working | |
123 fourcc DIVX,divx | |
124 fourcc DIV1,div1 divx | |
125 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 | |
126 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! | |
1526 | 127 fourcc AP41 DIV3 ; AngelPotion stuff |
4206 | 128 fourcc xvid,XVID,XviD |
1349 | 129 format 0x4 |
130 driver divx4 | |
131 dll "libdivxdecore.0" | |
132 ; out YV12 ; works, but odivx driver is faster with YV12 (DEC_USER) | |
1526 | 133 ; out I420 |
1349 | 134 out YUY2 |
135 out UYVY | |
136 out BGR32,BGR24,BGR16,BGR15 | |
267 | 137 |
2088 | 138 videocodec divx4vfw |
139 info "DivX4Windows-VFW (DivX 3.x, DivX4)" | |
140 status working | |
141 comment "with postprocessing!!!" | |
142 fourcc DIVX,divx ; opendivx / divx4 | |
143 fourcc DIV1,div1 divx | |
144 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 | |
145 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! | |
146 fourcc AP41 DIV3 ; AngelPotion stuff | |
147 format 0x4 | |
148 driver vfw | |
149 dll "divx.dll" | |
150 ; out YV12 ; buggy | |
151 out YUY2 | |
152 out BGR32,BGR24,BGR15 | |
3436 | 153 cpuflags mmx |
2088 | 154 |
1453 | 155 videocodec i263 |
156 info "I263" | |
157 status working | |
158 fourcc I263,i263,I420,i420 | |
2683 | 159 fourcc vivo,VIVO I263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
160 fourcc viv1 I263 |
1453 | 161 driver vfw |
162 dll "i263_32.drv" | |
163 ; out I420 | |
164 out YUY2 | |
165 out BGR32,BGR24,BGR15 | |
3436 | 166 cpuflags mmx |
1453 | 167 |
2877 | 168 videocodec m3jpeg |
169 info "Morgan Motion JPEG Codec" | |
170 status working | |
171 fourcc MJPG | |
172 fourcc mjpa,mjpb,mjpg MJPG ; MOV files | |
4366 | 173 fourcc dmb1 MJPG ; MJPEG by Matrox Rainbow Runner |
2877 | 174 driver vfw |
175 dll "m3jpeg32.dll" | |
176 out YUY2 | |
177 out UYVY | |
178 out BGR32,BGR24,BGR15 | |
3436 | 179 cpuflags mmx |
2877 | 180 |
1453 | 181 videocodec mjpeg |
2877 | 182 info "MainConcept Motion JPEG" |
1453 | 183 status working |
184 fourcc MJPG | |
2675 | 185 fourcc mjpa,mjpb,mjpg MJPG ; MOV files |
4546 | 186 fourcc AVDJ MJPG |
1453 | 187 driver vfw |
188 dll "mcmjpg32.dll" | |
189 out YUY2 | |
190 out UYVY | |
191 out BGR32,BGR24,BGR15 | |
3436 | 192 cpuflags mmx |
1453 | 193 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
194 |
1278 | 195 ; =============== FFMPEG MPEG CODECS ========================= |
196 | |
1453 | 197 videocodec ffmjpeg |
198 info "FFmpeg MJPEG decoder" | |
199 status working | |
200 fourcc MJPG,mjpg | |
201 driver ffmpeg | |
202 dll mjpeg | |
4569 | 203 ; out YUY2 |
1453 | 204 out YV12 |
205 | |
206 videocodec ffi263 | |
207 info "FFmpeg I263 decoder" | |
208 status working | |
209 fourcc I263,i263 | |
210 driver ffmpeg | |
211 dll h263i | |
212 out YV12 | |
213 | |
214 videocodec ffh263 | |
215 info "FFmpeg H263+ decoder" | |
1526 | 216 status working |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
217 fourcc H263,U263,h263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
218 fourcc viv1 h263 |
1453 | 219 driver ffmpeg |
220 dll h263 | |
221 out YV12 | |
222 | |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
223 videocodec ffrv10 |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
224 info "FFmpeg RV10 decoder" |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
225 status working |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
226 fourcc RV10,rv10 |
3878 | 227 fourcc RV13,rv13 |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
228 driver ffmpeg |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
229 dll rv10 |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
230 out YV12 |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
231 |
1278 | 232 videocodec ffdivx |
233 info "FFmpeg DivX ;-) (MS MPEG-4 v3)" | |
234 status working | |
1430 | 235 fourcc MPG3,mpg3 div3 |
1278 | 236 fourcc MP43,mp43 div3 ; M$ MPEG4 v3 (fourcc mapping to div3) |
237 fourcc DIV5,div5 div3 ; DivX 3.20 | |
238 fourcc DIV6,div6 div4 ; -||- | |
239 fourcc DIV3,div3,DIV4,div4 | |
1526 | 240 fourcc AP41 div3 ; AngelPotion stuff |
1278 | 241 driver ffmpeg |
242 dll msmpeg4 | |
243 out YV12 | |
244 | |
245 videocodec ffodivx | |
246 info "FFmpeg OpenDivX" | |
247 status working | |
248 fourcc DIVX,divx | |
249 fourcc DIV1,div1 divx | |
250 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 | |
4206 | 251 fourcc xvid,XVID,XviD |
1278 | 252 format 0x4 |
253 driver ffmpeg | |
1901 | 254 dll mpeg4 ;opendivx |
1278 | 255 out YV12 |
256 | |
257 videocodec ffmpeg12 | |
258 info "FFmpeg-1" | |
1526 | 259 status working |
1463 | 260 format 0x10000001 ; mpeg 1 |
1526 | 261 format 0x10000002 ; mpeg 2 |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
262 fourcc mpg1,mpg2 |
1278 | 263 driver ffmpeg |
1453 | 264 dll "mpegvideo" |
1278 | 265 out YV12 |
266 | |
1877 | 267 videocodec mpegpes |
268 info "Mpeg PES output (.mpg or DVB card)" | |
269 comment "for hardware decoding" | |
1985 | 270 status working |
1877 | 271 format 0x10000001 ; mpeg 1 |
272 format 0x10000002 ; mpeg 2 | |
273 driver libmpeg2 | |
274 dll "libmpeg2" | |
275 out MPES | |
276 | |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
277 ; ============== MPLAYER OPENSOURCE CODECS ========= |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
278 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
279 videocodec cvid |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
280 info "Cinepak Video (native codec)" |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
281 status working |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
282 fourcc cvid,CVID |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
283 driver cinepak |
3646 | 284 out YUY2 |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
285 out BGR32,BGR24 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
286 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
287 videocodec msrle |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
288 info "M$ RLE8" |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
289 status working |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
290 format 0x1 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
291 driver rle |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
292 dll "xa_rle8" |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
293 out BGR32,BGR24,BGR16,BGR15 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
294 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
295 videocodec fli |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
296 info "Autodesk FLI/FLC Animation" |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
297 status working |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
298 comment "FLIC is an internal MPlayer FOURCC" |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
299 fourcc FLIC |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
300 driver fli |
3650 | 301 out BGR32,BGR24 |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
302 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
303 videocodec video1 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
304 info "Microsoft Video 1" |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
305 status working |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
306 fourcc cram,CRAM |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
307 fourcc msvc,MSVC |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
308 fourcc wham,WHAM |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
309 driver msvidc |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
310 out BGR32,BGR24 |
1278 | 311 |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
312 videocodec qtrle |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
313 info "Quicktime Animation (RLE)" |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
314 status working |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
315 ; codec fourcc = "rle " |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
316 format 0x20656C72 |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
317 driver qtrle |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
318 out BGR32,BGR24 |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
319 |
3812 | 320 videocodec nuv |
321 info "NuppelVideo" | |
322 status working | |
323 fourcc NUV1 | |
324 driver nuv | |
325 out I420 | |
326 | |
3969 | 327 videocodec cyuv |
328 info "Creative YUV (native codec)" | |
329 status working | |
330 fourcc cyuv,CYUV | |
331 driver cyuv | |
332 out UYVY | |
333 | |
4227 | 334 videocodec qtsmc |
335 info "Apple Graphics (SMC) codec" | |
336 status buggy | |
337 ; codec fourcc = "smc " | |
338 format 0x20636d73 | |
339 driver qtsmc | |
340 out BGR32,BGR24 | |
341 | |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
342 videocodec ducktm1 |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
343 info "Duck Truemotion v1" |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
344 status buggy |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
345 fourcc DUCK |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
346 driver ducktm1 |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
347 out BGR32,BGR24,BGR16,BGR15 |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
348 |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
349 videocodec roqvideo |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
350 info "Id RoQ File Video Decoder" |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
351 status buggy |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
352 comment "RoQV is an internal MPlayer FOURCC" |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
353 fourcc RoQV |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
354 driver roqvideo |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
355 out YV12 |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
356 |
3757 | 357 audiocodec imaadpcm |
358 info "IMA ADPCM" | |
359 status working | |
360 format 0x11 | |
361 format 0x34616d69 ; "ima4" (MOV files) | |
3787 | 362 driver imaadpcm |
363 | |
3875
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
364 audiocodec msadpcm |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
365 info "MS ADPCM" |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
366 status working |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
367 format 0x2 |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
368 driver msadpcm |
3757 | 369 |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3878
diff
changeset
|
370 audiocodec fox61adpcm |
4190 | 371 info "Duck DK4 ADPCM (rogue format number)" |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3878
diff
changeset
|
372 status working |
4190 | 373 comment "This format number was used by Duck Corp. but not officially registered with Microsoft" |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3878
diff
changeset
|
374 format 0x61 |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3878
diff
changeset
|
375 driver fox61adpcm |
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3878
diff
changeset
|
376 |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3812
diff
changeset
|
377 audiocodec fox62adpcm |
4190 | 378 info "Duck DK3 ADPCM (rogue format number)" |
4001 | 379 status working |
4190 | 380 comment "This format number was used by Duck Corp. but not officially registered with Microsoft" |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3812
diff
changeset
|
381 format 0x62 |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3812
diff
changeset
|
382 driver fox62adpcm |
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3812
diff
changeset
|
383 |
4452
bef7b760bc80
no, wait...roqaudio is an audiocodec, not a videocodec
melanson
parents:
4450
diff
changeset
|
384 audiocodec roqaudio |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
385 info "Id RoQ File Audio Decoder" |
4534
a38001c3f7e5
promoted the RoQ audio decoder from "buggy" to "working"
melanson
parents:
4452
diff
changeset
|
386 status working |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
387 comment "RoQA is an internal MPlayer FOURCC" |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
388 fourcc RoQA |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
389 driver roqaudio |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
390 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
391 ; =============== WINDOWS DLL's ============== |
1278 | 392 |
1938 | 393 videocodec vp3 |
394 info "On2 OpenSource VP3-Codec" | |
395 status working | |
396 comment "For SSE-systems use hacked dll from ftp://mplayerhq.hu/MPlayer/samples/drivers32/" | |
3571
ceaccd11b8ec
VP30 added - report by Mark Janssen <maniac@maniac.nl>
arpi
parents:
3525
diff
changeset
|
397 fourcc VP30,vp30,VP31,vp31 |
1938 | 398 driver vfwex |
399 dll "vp31vfw.dll" | |
400 out YUY2 | |
401 out BGR32,BGR24,BGR15 | |
3436 | 402 cpuflags mmx |
1938 | 403 |
334 | 404 videocodec indeo5ds |
405 info "Intel Indeo 5" | |
796 | 406 status working |
334 | 407 fourcc IV50,iv50 |
408 driver dshow | |
409 dll "ir50_32.dll" | |
410 guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 | |
2877 | 411 out YV12 |
334 | 412 out YUY2 |
413 out BGR32,BGR24,BGR16,BGR15 | |
3436 | 414 cpuflags mmx |
334 | 415 |
346 | 416 videocodec indeo5 |
417 info "Intel Indeo 5" | |
418 status working | |
419 fourcc IV50,iv50 | |
420 driver vfw | |
421 dll "ir50_32.dll" | |
1358 | 422 ; out YV12,I420 ; flickering |
346 | 423 out YUY2 |
424 out BGR32,BGR24,BGR15 | |
425 | |
267 | 426 videocodec indeo4 |
268 | 427 info "Intel Indeo 4.1" |
746 | 428 status working |
429 ; comment "upside-down" | |
267 | 430 fourcc IV41,iv41 |
431 driver vfw | |
432 dll "ir41_32.dll" | |
746 | 433 out BGR24,BGR15 |
3436 | 434 cpuflags mmx |
267 | 435 |
436 videocodec indeo3 | |
268 | 437 info "Intel Indeo 3.1/3.2" |
334 | 438 status buggy |
1227 | 439 comment "upside-down with some vo drivers, (no yuv)" |
267 | 440 fourcc IV31,iv31 |
441 fourcc IV32,iv32 | |
442 driver vfw | |
443 dll "ir32_32.dll" | |
303 | 444 out BGR24,BGR15 flip |
3436 | 445 cpuflags mmx |
267 | 446 |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
447 videocodec cvidvfw |
268 | 448 info "Cinepak Video" |
334 | 449 status working |
267 | 450 fourcc cvid |
451 driver vfw | |
318
194ba80a8c69
Cinepak loaded msvidc32.dll instead of iccvid.dll :(
gabucino
parents:
315
diff
changeset
|
452 dll "iccvid.dll" |
496 | 453 ; out YUY2 |
454 ; out UYVY | |
303 | 455 out BGR24,BGR15 |
3436 | 456 cpuflags mmx |
267 | 457 |
458 videocodec cram | |
312 | 459 info "Microsoft Video 1" |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
460 comment "Input bpp = output bpp (8bpp is only supported by vo_ggi)" |
2675 | 461 status working |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
462 fourcc cram,CRAM CRAM |
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
463 fourcc msvc,MSVC CRAM |
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
464 fourcc wham,WHAM CRAM |
267 | 465 driver vfw |
466 dll "msvidc32.dll" | |
2683 | 467 out BGR8,BGR15,BGR24 |
267 | 468 |
469 videocodec vcr2 | |
268 | 470 info "ATI VCR-2" |
471 | 471 status crashing |
472 comment "segfault" | |
267 | 473 fourcc VCR2 |
474 driver vfw | |
475 dll "ativcr2.dll" | |
303 | 476 out YUY2 |
477 out BGR32,BGR24,BGR15 | |
3436 | 478 cpuflags mmx |
267 | 479 |
713 | 480 videocodec wmv7 |
268 | 481 info "Windows Media Video 7" |
334 | 482 status working |
267 | 483 fourcc WMV1 |
484 driver dshow | |
485 dll "wmvds32.ax" | |
486 guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae | |
471 | 487 ; out I420 |
303 | 488 out YUY2 |
489 out BGR32,BGR24,BGR16,BGR15 | |
3436 | 490 cpuflags mmx |
267 | 491 |
713 | 492 videocodec wmv8 |
493 info "Windows Media Video 8" | |
1526 | 494 status working |
713 | 495 fourcc WMV2 |
496 driver dshow | |
497 dll "wmv8ds32.ax" | |
498 guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f | |
499 out YUY2 | |
500 out BGR32,BGR24,BGR16,BGR15 | |
3436 | 501 cpuflags mmx |
713 | 502 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
503 videocodec tm20 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
504 info "TrueMotion 2.0" |
334 | 505 status crashing |
713 | 506 comment "segfault in the DLL" |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
507 fourcc TM20 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
508 driver dshow |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
509 dll "tm20dec.ax" |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
510 guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84 |
471 | 511 ; out UYVY |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
512 out YUY2 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
513 out BGR32,BGR24,BGR16,BGR15 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
514 |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
515 videocodec qdv |
334 | 516 info "Sony Digital Video (DV)" |
471 | 517 status working |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
518 fourcc DVSD,dvsd,dvcp dvsd |
334 | 519 driver dshow |
520 dll "qdv.dll" | |
521 guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42 | |
522 out YUY2 | |
471 | 523 out UYVY |
334 | 524 out BGR32,BGR24,BGR16,BGR15 |
3436 | 525 cpuflags mmx |
334 | 526 |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
527 videocodec mcdv |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
528 info "MainConcept DV Codec" |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
529 status working |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
530 fourcc DVSD,dvsd,dvcp dvsd # dvcp stands for PAL DV in mov |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
531 driver vfw |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
532 dll "mcdvd_32.dll" |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
533 out YUY2 |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
534 out UYVY |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
535 out BGR32,BGR24,BGR15 |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
536 |
334 | 537 videocodec morgands |
538 info "Morgan MJPEG" | |
471 | 539 status crashing |
334 | 540 fourcc MJPG mjpg |
541 driver dshow | |
471 | 542 dll "M3JPEGdec.ax" |
334 | 543 guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68 |
544 out YUY2 | |
545 out BGR32,BGR24,BGR16,BGR15 | |
546 | |
471 | 547 videocodec huffyuv |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
548 info "HuffYUV" |
742 | 549 status buggy |
550 comment "YUY2 _or_ 24/32bpp only (depending on file encoding)" | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
551 fourcc HFYU |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
552 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
553 dll "huffyuv.dll" |
776 | 554 out YUY2 flip,noflip |
742 | 555 ; out UYVY flip |
556 out BGR32,BGR24 flip | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
557 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
558 videocodec mszh |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
559 info "AVImszh" |
2713 | 560 status buggy |
561 comment "24bpp only" | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
562 fourcc MSZH |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
563 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
564 dll "avimszh.dll" |
2691 | 565 ; out YUY2 |
2713 | 566 ; out BGR32,BGR24,BGR15 |
567 out BGR24 | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
568 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
569 videocodec zlib |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
570 info "AVIzlib" |
2713 | 571 status buggy |
572 comment "24bpp only" | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
573 fourcc ZLIB |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
574 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
575 dll "avizlib.dll" |
2691 | 576 ; out YUY2 |
2713 | 577 ; out BGR32,BGR24,BGR15 |
578 out BGR24 | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
579 |
344 | 580 videocodec mwv1 |
333 | 581 info "Motion Wavelets" |
2713 | 582 status buggy |
583 comment "no yuv, flip requires" | |
334 | 584 fourcc MWV1 |
333 | 585 driver vfw |
586 dll "icmw_32.dll" | |
2713 | 587 ; out YV12 flip |
588 ; out YUY2 flip | |
589 out BGR32,BGR24,BGR15 flip | |
3436 | 590 cpuflags mmx |
333 | 591 |
345 | 592 videocodec m261 |
593 info "M261" | |
594 status untested | |
595 fourcc m261,M261 | |
403 | 596 driver vfw |
345 | 597 dll "msh261.drv" |
598 out BGR32,BGR24,BGR15 | |
599 | |
403 | 600 videocodec asv2 |
601 info "ASUS V2" | |
602 status buggy | |
471 | 603 comment "rgb upside down, yuv ok" |
403 | 604 fourcc ASV2 |
605 driver vfw | |
606 dll "asusasv2.dll" | |
412 | 607 ; out YVYU |
713 | 608 out UYVY |
609 out BGR32,BGR24,BGR15 flip | |
3436 | 610 cpuflags mmx |
713 | 611 |
612 videocodec asv1 | |
613 info "ASUS V1" | |
614 status buggy | |
615 comment "rgb upside down, yuv ok" | |
616 fourcc ASV1 | |
617 driver vfw | |
618 dll "asusasvd.dll" | |
619 ; out YVYU | |
620 out UYVY | |
403 | 621 out BGR32,BGR24,BGR15 flip |
3436 | 622 cpuflags mmx |
403 | 623 |
2398 | 624 videocodec 3ivX |
625 info "3ivX Delta 3.5" | |
2691 | 626 status crashing |
2398 | 627 fourcc 3IV1 |
2375
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
628 driver dshow |
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
629 dll "3ivxdmo.dll" |
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
630 guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c |
2398 | 631 out YV12 |
632 out YUY2 | |
2375
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
633 out BGR32,BGR24,BGR16,BGR15 |
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
634 |
3399 | 635 videocodec mss1 |
636 info "Windows Screen Video" | |
637 status crashing | |
638 fourcc MSS1 | |
639 driver dshow | |
640 dll "msscds32.ax" | |
641 guid 0x3301a7c4, 0x0a8d, 0x11d4, 0x91, 0x4d, 0x00, 0xc0, 0x4f, 0x61, 0x0d, 0x24 | |
642 ; out I420 | |
643 ; out YUY2 | |
644 out BGR32,BGR24,BGR16,BGR15 | |
645 | |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
646 videocodec pim1 |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
647 info "PIM1" |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
648 status buggy |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
649 comment "no picture" |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
650 fourcc PIM1 |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
651 driver vfw |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
652 dll "PCLEPIM1.DLL" |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
653 out BGR24 flip |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
654 ; out I420 |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
655 ; out YUY2 |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
656 ; out BGR32,BGR24,BGR16,BGR15 |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
657 |
2675 | 658 videocodec 3ivXqtx |
659 info "3ivX Delta 3.5" | |
2691 | 660 status crashing |
2675 | 661 fourcc 3IV1 |
662 driver vfw | |
663 dll "qtx/3ivx.qtx" | |
664 out YV12 | |
665 out YUY2 | |
666 out BGR32,BGR24,BGR16,BGR15 | |
667 | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
668 videocodec alaris |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
669 info "Alaris VideoGramPiX" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
670 ; http://www.alaris.com/movies/toocool.vgm |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
671 ; Martin Schuster <schuster@ap.univie.ac.at> |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
672 status buggy |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
673 comment "only produces strange patterns" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
674 fourcc VGPX,VTLP VGPX |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
675 driver vfwex |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
676 dll "vgpix32d.dll" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
677 out UYVY |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
678 |
4445 | 679 videocodec avid |
680 info "AVID" | |
681 status working | |
682 fourcc AVRn | |
4546 | 683 fourcc AVDJ AVRn |
4569 | 684 fourcc MJPG,mjpg AVRn |
4445 | 685 driver vfw |
686 dll "AvidAVICodec.dll" | |
4569 | 687 out BGR24 flip |
4445 | 688 |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
689 videocodec CJPG |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
690 info "CJPG" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
691 status untested |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
692 fourcc CJPG |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
693 driver vfw |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
694 dll "CtWbJpg.DLL" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
695 out YUY2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
696 out UYVY |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
697 out BGR24,BGR15 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
698 |
2398 | 699 ; =============== XANIM DLL's ============= |
700 | |
2392 | 701 videocodec indeo5xa |
702 info "Intel Indeo 5" | |
2398 | 703 status working |
2392 | 704 fourcc IV50,iv50 |
705 driver xanim | |
2400 | 706 dll "vid_iv50.xa" |
2392 | 707 out YV12,IYUV,I420 |
708 | |
2398 | 709 videocodec indeo4xa |
710 info "Intel Indeo 4.1" | |
711 status working | |
712 fourcc IV41,iv41 | |
713 driver xanim | |
2400 | 714 dll "vid_iv41.xa" |
2398 | 715 out YV12,IYUV,I420 |
716 | |
717 videocodec indeo3xa | |
718 info "Intel Indeo 3.1/3.2" | |
719 status working | |
720 fourcc IV31,iv31 | |
721 fourcc IV32,iv32 | |
722 driver xanim | |
2400 | 723 dll "vid_iv32.xa" |
2398 | 724 out YV12,IYUV,I420 |
725 | |
2392 | 726 videocodec cvidxa |
727 info "Radius Cinepak Video" | |
728 status working | |
729 fourcc cvid | |
730 driver xanim | |
2400 | 731 dll "vid_cvid.xa" |
2392 | 732 out YV12,IYUV,I420 |
733 | |
734 videocodec 3ivXxa | |
2398 | 735 info "3ivX Delta 3.5" |
2392 | 736 status working |
737 fourcc 3IV1 | |
738 driver xanim | |
2400 | 739 dll "vid_3ivX.xa" |
2392 | 740 out YV12,IYUV,I420 |
741 | |
2398 | 742 videocodec h263xa |
743 info "CCITT H.263" | |
2683 | 744 status working |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
745 fourcc H263,h263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
746 fourcc viv1 H263 |
2683 | 747 fourcc VIVO,vivo H263 |
2398 | 748 driver xanim |
2400 | 749 dll "vid_h263.xa" |
2398 | 750 out YV12,IYUV,I420 |
751 | |
752 videocodec h261xa | |
753 info "CCITT H.261" | |
754 status untested | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
755 fourcc H261,h261 |
2398 | 756 driver xanim |
2400 | 757 dll "vid_h261.xa" |
2398 | 758 out YV12,IYUV,I420 |
759 | |
760 videocodec cyuvxa | |
761 info "Creative CYUV" | |
762 status untested | |
763 fourcc CYUV,cyuv | |
764 driver xanim | |
2400 | 765 dll "vid_cyuv.xa" |
2398 | 766 out YV12,IYUV,I420 |
767 | |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
768 ; ============== RAW (uncompressed) and NULL CODECS ========= |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
769 |
3399 | 770 ; these raw codecs are used mostly by tv input |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
771 ; 0x20776172 is used by Quicktime ('raw ') |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
772 ; 0x0 is used by AVI |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
773 ; YV12,RGB|32,RGB|24.. is created by MPlayer |
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
774 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
775 videocodec rawyv12 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
776 info "RAW YV12" |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
777 comment "pre-postprocessing support" |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
778 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
779 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
780 format 0x0 |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
781 format 0x20776172 |
3304 | 782 fourcc yv12,YV12 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
783 out YV12 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
784 |
3767 | 785 videocodec rawi420 |
786 info "RAW I420" | |
787 status working | |
788 driver raw | |
789 format 0x0 | |
790 format 0x20776172 | |
791 fourcc i420,I420 | |
792 out I420 | |
793 | |
3304 | 794 videocodec rawyuy2 |
795 info "RAW YUY2" | |
796 status working | |
797 driver raw | |
798 format 0x0 | |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
799 format 0x20776172 |
3304 | 800 fourcc yuy2,YUY2 |
801 out YUY2 | |
802 | |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
803 videocodec rawuyvy |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
804 info "RAW UYVY" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
805 status working |
2804 | 806 driver raw |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
807 format 0x0 |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
808 format 0x20776172 |
3399 | 809 fourcc uyvy,UYVY |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
810 out UYVY |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
811 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
812 videocodec rawrgb32 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
813 info "RAW RGB32" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
814 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
815 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
816 format 0x0 |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
817 format 0x20776172 |
3399 | 818 format 0x52474220 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
819 out RGB32 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
820 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
821 videocodec rawrgb24 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
822 info "RAW RGB24" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
823 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
824 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
825 format 0x0 |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
826 format 0x20776172 |
3399 | 827 format 0x52474218 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
828 out RGB24 |
2675 | 829 |
3399 | 830 videocodec rawrgb16 |
831 info "RAW RGB16" | |
832 status working | |
833 driver raw | |
834 format 0x0 | |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
835 format 0x20776172 |
3399 | 836 format 0x52474210 |
837 out RGB16 | |
838 | |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
839 videocodec rawbgr24 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
840 info "RAW BGR24" |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
841 status working |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
842 driver raw |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
843 format 0x0 |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
844 format 0x20776172 |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
845 out BGR24 flip |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
846 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
847 videocodec rawbgr15 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
848 info "RAW BGR15" |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
849 status working |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
850 driver raw |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
851 format 0x0 |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
852 format 0x20776172 |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
853 out BGR15 flip |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
854 |
1390 | 855 videocodec null |
2691 | 856 info "NULL codec (no decoding!)" |
1390 | 857 status working |
858 comment "for unknown/unsupported codecs or testing" | |
859 driver null | |
860 out YV12 | |
861 out I420 | |
862 out YUY2 | |
863 out UYVY | |
864 out BGR32,BGR24,BGR16,BGR15 | |
865 | |
471 | 866 ;============================================================================= |
867 ; AUDIO CODECS | |
868 ;============================================================================= | |
869 | |
757 | 870 audiocodec pcm |
871 info "Uncompressed PCM" | |
872 status working | |
873 format 0x1 | |
2675 | 874 format 0x20776172 ; "raw " (MOV files) |
875 format 0x736f7774 ; "twos" (MOV files) | |
757 | 876 ;;;; these are for hardware support only: (alaw,ulaw,ima-adpcm,mpeg,ac3) |
877 ; format 0x6 | |
878 ; format 0x7 | |
879 ; format 0x11 | |
880 ; format 0x50 | |
881 ; format 0x2000 | |
882 ;;;; | |
883 driver pcm | |
884 dll "uncompressed" | |
885 | |
267 | 886 audiocodec divx |
268 | 887 info "DivX audio (WMA)" |
334 | 888 status working |
267 | 889 format 0x160 |
890 format 0x161 | |
891 driver acm | |
892 dll "divxa32.acm" | |
3436 | 893 cpuflags mmx |
267 | 894 |
3851 | 895 audiocodec msadpcmacm |
896 info "MS ADPCM" | |
897 status working | |
898 format 0x2 | |
899 driver acm | |
900 dll "msadp32.acm" | |
267 | 901 |
902 audiocodec mp3 | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
903 info "MPEG layer-2, layer-3" |
334 | 904 status working |
1928 | 905 comment "Optimized to MMX/SSE/3Dnow!" |
267 | 906 format 0x50 |
907 format 0x55 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
908 format 0x33706d2e ; ".mp3" CBR/VBR MP3 (MOV files) |
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
909 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
267 | 910 driver mp3lib |
891 | 911 dll "mp3lib (mpglib)" |
267 | 912 flags seekable |
913 | |
2415 | 914 ;MAD library |
915 audiocodec mad | |
916 info "MAD MPEG layer-2, layer-3" | |
917 status working | |
2691 | 918 comment "Optimized for ARM, unstable" |
2415 | 919 format 0x50 |
920 format 0x55 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
921 format 0x33706d2e ; ".mp3" CBR/VBR MP3 (MOV files) |
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
922 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
2415 | 923 driver libmad |
924 dll "libmad" | |
925 flags seekable | |
926 | |
1928 | 927 audiocodec ffmp3 |
928 info "FFmpeg layer-123 audio decoder - integer only" | |
929 status working | |
930 format 0x50 | |
931 format 0x55 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
932 format 0x33706d2e ; ".mp3" CBR/VBR MP3 (MOV files) |
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
933 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
1928 | 934 driver ffmpeg |
935 dll "mpegaudio" | |
936 flags seekable | |
937 | |
729 | 938 audiocodec mp3acm |
939 info "MPEG layer-3" | |
940 status working | |
1928 | 941 comment "conflicts with security kernel patches" |
729 | 942 format 0x55 |
943 driver acm | |
944 dll "l3codeca.acm" | |
945 flags seekable | |
946 | |
3758 | 947 audiocodec imaadpcmacm |
268 | 948 info "IMA ADPCM" |
334 | 949 status working |
267 | 950 format 0x11 |
951 driver acm | |
952 dll "imaadp32.acm" | |
953 | |
954 audiocodec msgsmacm | |
268 | 955 info "MS GSM" |
334 | 956 status working |
267 | 957 format 0x31 |
958 format 0x32 | |
959 driver acm | |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
960 dll "msnaudio.acm" |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
961 ; dll "msgsm32.acm" |
267 | 962 |
963 audiocodec msgsm | |
268 | 964 info "MS GSM" |
334 | 965 status working |
267 | 966 format 0x31 |
967 format 0x32 | |
968 driver msgsm | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
969 dll "xa_gsm.c" |
267 | 970 |
303 | 971 audiocodec alaw |
972 info "aLaw" | |
334 | 973 status working |
303 | 974 format 0x6 |
975 driver alaw | |
1227 | 976 dll "alaw" |
303 | 977 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
978 audiocodec ulaw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
979 info "uLaw" |
757 | 980 status working |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
981 format 0x7 |
2675 | 982 format 0x77616c75 ; "ulaw" (MOV files) |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
983 driver alaw |
1227 | 984 dll "ulaw" |
303 | 985 |
401 | 986 audiocodec dvdpcm |
987 info "Uncompressed DVD PCM" | |
988 status working | |
989 format 0x10001 | |
990 driver dvdpcm | |
757 | 991 dll "uncompressed" |
401 | 992 |
3688 | 993 audiocodec a52 |
994 info "AC3-liba52" | |
995 status working | |
996 format 0x2000 | |
997 driver liba52 | |
998 dll "liba52" | |
999 | |
303 | 1000 audiocodec ac3 |
1001 info "AC3" | |
334 | 1002 status working |
303 | 1003 format 0x2000 |
1004 driver libac3 | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
1005 dll "libac3" |
303 | 1006 |
267 | 1007 audiocodec voxware |
268 | 1008 info "VoxWare" |
2691 | 1009 status working |
267 | 1010 format 0x75 |
1011 driver dshow | |
1012 dll "voxmsdec.ax" | |
1013 guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d | |
1014 | |
333 | 1015 audiocodec acelp |
1016 info "ACELP.net Sipro Lab Audio Decoder" | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1017 status working |
333 | 1018 format 0x130 |
1019 driver dshow | |
1020 dll "acelpdec.ax" | |
334 | 1021 guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7 |
333 | 1022 |
1023 audiocodec imc | |
1024 info "Intel Music Coder" | |
1372 | 1025 status working |
1026 comment "driver at http://codeczone.virtualave.net/FXIMCAUD.zip" | |
333 | 1027 format 0x401 |
1372 | 1028 driver acm |
1029 dll "imc32.acm" | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1030 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1031 audiocodec hwac3 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1032 info "AC3 through SPDIF" |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1033 status working |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1034 format 0x2000 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1035 driver hwac3 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1036 dll "ac3-iec958.c" |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1037 |
1828 | 1038 audiocodec vorbis |
1039 info "OggVorbis Audio Decoder" | |
1985 | 1040 status working |
1828 | 1041 comment "OggVorbis driver using libvorbis" |
1042 format 0xFFFE | |
1043 driver libvorbis | |
1044 dll "libvorbis" | |
1045 flags seekable | |
1046 ; acm codec doesn't work, haven't tried zorannt dshow codec | |
1047 ; driver acm | |
1048 ; dll "vorbis.acm" | |
1049 | |
3472 | 1050 audiocodec vivoaudio |
1051 info "Vivo G.723/Siren Audio Codec" | |
1052 status working | |
2675 | 1053 format 0x111 ; vivo g.723 |
3472 | 1054 format 0x112 ; siren |
2675 | 1055 driver acm |
1056 dll "vivog723.acm" | |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
1057 |
3427 | 1058 audiocodec g72x |
1059 info "G.711/G.721/G.723" | |
1060 status untested | |
1061 comment "does not work yet - just noise :(" | |
1062 format 0x111 ; vivo g.723 | |
3658
a3b5057e53cf
added FFmpeg rv10 codec, extended raw codecs, added PIM1 codec (no picture :( ) and mpg1,mpg2 fourcc's added to FFmpeg mpg12 decoder
alex
parents:
3650
diff
changeset
|
1063 format 0x112 ; vivo siren |
3427 | 1064 driver g72x |
1065 dll "g72x.c" | |
3986 | 1066 |
1067 audiocodec atrac3 | |
1068 info "Sony ATRAC3" | |
1069 status buggy | |
1070 format 0x270 | |
1071 driver acm | |
1072 dll "atrac3.acm" | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1073 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1074 audiocodec ALF2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1075 ; http://www.nctsoft.com/products/NCTALFCD/ |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1076 ; jdp@mail.sonofon.dk |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1077 info "ALF2" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1078 status untested |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1079 comment "Working so try it" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1080 format 0x1FC4 ; ALF2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1081 driver acm |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1082 dll "alf2cd.acm" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1083 |