Mercurial > mplayer.hg
annotate DOCS/codecs.conf @ 625:2f321fe55bdb
#if 0 'd main()
author | laaz |
---|---|
date | Tue, 24 Apr 2001 21:52:10 +0000 |
parents | ebd2d0bba43d |
children | 9355b2ae634e |
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 | |
303 | 7 videocodec mpeg12 |
8 info "MPEG 1 or 2" | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
9 comment "with postprocessing" |
334 | 10 status working |
303 | 11 format 0x1 |
12 driver libmpeg2 | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
13 dll "libmpeg2" |
303 | 14 out YV12 |
15 | |
267 | 16 videocodec mpeg4 |
268 | 17 info "Microsoft MPEG-4 v1/v2" |
334 | 18 status working |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
19 ; comment "No postprocessing" |
267 | 20 fourcc MPG4,mpg4 |
21 fourcc MP42,mp42 | |
22 driver vfw | |
23 dll "mpg4c32.dll" | |
303 | 24 out YUY2 yuvhack |
25 out BGR32,BGR24,BGR15 | |
267 | 26 |
27 videocodec divxds | |
268 | 28 info "DivX ;-) (MS MPEG-4 v3)" |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
29 comment "with postprocessing" |
334 | 30 status working |
267 | 31 fourcc MP43,mp43 div3 ; fourcc mapping to div3 |
32 fourcc DIV5,div5 div3 | |
33 fourcc DIV6,div6 div4 | |
312 | 34 fourcc DIV3,div3,DIV4,div4 |
267 | 35 driver dshow |
36 dll "divx_c32.ax" | |
37 guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa | |
471 | 38 ; out YV12 |
303 | 39 out YUY2 |
40 out BGR32,BGR24,BGR16,BGR15 | |
267 | 41 |
303 | 42 videocodec divx |
43 info "DivX ;-) (MS MPEG-4 v3)" | |
334 | 44 status working |
45 fourcc MP43,mp43 div3 ; M$ MPEG4 v3 (fourcc mapping to div3) | |
46 fourcc DIV5,div5 div3 ; DivX 3.20 | |
47 fourcc DIV6,div6 div4 ; -||- | |
312 | 48 fourcc DIV3,div3,DIV4,div4 |
303 | 49 driver vfw |
50 dll "divxc32.dll" | |
51 out YUY2 yuvhack | |
52 out BGR32,BGR24,BGR15 | |
53 | |
267 | 54 videocodec odivx |
268 | 55 info "OpenDivX (MPEG-4 v2)" |
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 |
267 | 58 fourcc DIVX,divx |
59 fourcc DIV1,div1 divx | |
349 | 60 format 0x4 |
267 | 61 driver odivx |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
62 dll "opendivx decore" |
303 | 63 out YV12 |
267 | 64 |
334 | 65 videocodec indeo5ds |
66 info "Intel Indeo 5" | |
67 status untested | |
68 fourcc IV50,iv50 | |
69 driver dshow | |
70 dll "ir50_32.dll" | |
71 guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 | |
471 | 72 out YV12,I420 |
334 | 73 out YUY2 |
74 out BGR32,BGR24,BGR16,BGR15 | |
75 | |
346 | 76 videocodec indeo5 |
77 info "Intel Indeo 5" | |
78 status working | |
79 fourcc IV50,iv50 | |
80 driver vfw | |
81 dll "ir50_32.dll" | |
471 | 82 out YV12,I420 |
346 | 83 out YUY2 |
84 out BGR32,BGR24,BGR15 | |
85 | |
267 | 86 videocodec indeo4 |
268 | 87 info "Intel Indeo 4.1" |
334 | 88 status buggy |
267 | 89 comment "upside-down" |
90 fourcc IV41,iv41 | |
91 driver vfw | |
92 dll "ir41_32.dll" | |
303 | 93 out BGR24,BGR15 flip |
267 | 94 |
95 videocodec indeo3 | |
268 | 96 info "Intel Indeo 3.1/3.2" |
334 | 97 status buggy |
267 | 98 comment "upside-down" |
99 fourcc IV31,iv31 | |
100 fourcc IV32,iv32 | |
101 driver vfw | |
102 dll "ir32_32.dll" | |
303 | 103 out BGR24,BGR15 flip |
267 | 104 |
105 videocodec cvid | |
268 | 106 info "Cinepak Video" |
334 | 107 status working |
267 | 108 fourcc cvid |
109 driver vfw | |
318
194ba80a8c69
Cinepak loaded msvidc32.dll instead of iccvid.dll :(
gabucino
parents:
315
diff
changeset
|
110 dll "iccvid.dll" |
496 | 111 ; out YUY2 |
112 ; out UYVY | |
303 | 113 out BGR24,BGR15 |
267 | 114 |
115 videocodec cram | |
312 | 116 info "Microsoft Video 1" |
412 | 117 status working |
333 | 118 fourcc cram,CRAM,MSVC |
267 | 119 driver vfw |
120 dll "msvidc32.dll" | |
303 | 121 out BGR24,BGR15 |
267 | 122 |
123 videocodec vcr2 | |
268 | 124 info "ATI VCR-2" |
471 | 125 status crashing |
126 comment "segfault" | |
267 | 127 fourcc VCR2 |
128 driver vfw | |
129 dll "ativcr2.dll" | |
303 | 130 out YUY2 |
131 out BGR32,BGR24,BGR15 | |
267 | 132 |
133 videocodec i263 | |
268 | 134 info "I263" |
334 | 135 status working |
346 | 136 fourcc I263,i263,I420,i420 |
267 | 137 driver vfw |
138 dll "i263_32.drv" | |
471 | 139 ; out I420 |
310 | 140 out YUY2 |
303 | 141 out BGR32,BGR24,BGR15 |
267 | 142 |
143 videocodec mjpeg | |
268 | 144 info "Motion JPEG" |
334 | 145 status working |
267 | 146 fourcc MJPG |
147 driver vfw | |
148 dll "mcmjpg32.dll" | |
149 ; dll "m3jpeg32.dll" | |
303 | 150 out YUY2 |
471 | 151 out UYVY |
303 | 152 out BGR32,BGR24,BGR15 |
267 | 153 |
154 videocodec wmv1 | |
268 | 155 info "Windows Media Video 7" |
334 | 156 status working |
267 | 157 fourcc WMV1 |
158 driver dshow | |
159 dll "wmvds32.ax" | |
160 guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae | |
471 | 161 ; out I420 |
303 | 162 out YUY2 |
163 out BGR32,BGR24,BGR16,BGR15 | |
267 | 164 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
165 videocodec ap41 |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
439
diff
changeset
|
166 info "AngelPotion Definitive V1" ; yet another stolen stuff |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
167 comment "using the DivX ;-) codec" |
346 | 168 status working |
169 fourcc AP41 div3 | |
170 driver dshow | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
439
diff
changeset
|
171 dll "divx_c32.ax" ; no need to use apmpg4v1.dll |
346 | 172 guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
173 out YUY2 |
346 | 174 out BGR32,BGR24,BGR16,BGR15 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
175 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
176 videocodec tm20 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
177 info "TrueMotion 2.0" |
334 | 178 status crashing |
338 | 179 comment "Error connecting to output pin" |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
180 fourcc TM20 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
181 driver dshow |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
182 dll "tm20dec.ax" |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
183 guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84 |
471 | 184 ; out UYVY |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
185 out YUY2 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
186 out BGR32,BGR24,BGR16,BGR15 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
187 |
334 | 188 videocodec dv |
189 info "Sony Digital Video (DV)" | |
471 | 190 status working |
191 fourcc DVSD dvsd | |
334 | 192 driver dshow |
193 dll "qdv.dll" | |
194 guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42 | |
195 out YUY2 | |
471 | 196 out UYVY |
334 | 197 out BGR32,BGR24,BGR16,BGR15 |
198 | |
199 videocodec morgands | |
200 info "Morgan MJPEG" | |
471 | 201 status crashing |
334 | 202 fourcc MJPG mjpg |
203 driver dshow | |
471 | 204 dll "M3JPEGdec.ax" |
334 | 205 guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68 |
206 out YUY2 | |
207 out BGR32,BGR24,BGR16,BGR15 | |
208 | |
471 | 209 videocodec huffyuv |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
210 info "HuffYUV" |
334 | 211 status crashing |
338 | 212 comment "ICDecompressGetFormat failed: Error -2" |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
213 fourcc HFYU |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
214 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
215 dll "huffyuv.dll" |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
216 out YUY2 |
471 | 217 out UYVY |
315 | 218 out BGR32,BGR24,BGR15 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
219 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
220 videocodec mszh |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
221 info "AVImszh" |
334 | 222 status crashing |
338 | 223 comment "calls RegEnumValueA()" |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
224 fourcc MSZH |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
225 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
226 dll "avimszh.dll" |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
227 out YUY2 |
315 | 228 out BGR32,BGR24,BGR15 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
229 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
230 videocodec zlib |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
231 info "AVIzlib" |
334 | 232 status crashing |
338 | 233 comment "calls RegEnumValueA()" |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
234 fourcc ZLIB |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
235 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
236 dll "avizlib.dll" |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
237 out YUY2 |
315 | 238 out BGR32,BGR24,BGR15 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
239 |
344 | 240 videocodec mwv1 |
333 | 241 info "Motion Wavelets" |
471 | 242 status crashing |
243 comment "decompressquery failed" | |
334 | 244 fourcc MWV1 |
333 | 245 driver vfw |
246 dll "icmw_32.dll" | |
471 | 247 ; out YV12 |
248 out YUY2 | |
333 | 249 out BGR32,BGR24,BGR15 |
250 | |
251 videocodec wmv8 | |
252 info "Windows Media Video 8" | |
334 | 253 status untested |
333 | 254 fourcc WMV2 |
255 driver dshow | |
256 dll "wmv8ds32.ax" | |
334 | 257 guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f |
333 | 258 ; out YUY2 |
259 out BGR32,BGR24,BGR16,BGR15 | |
260 | |
345 | 261 videocodec m261 |
262 info "M261" | |
263 status untested | |
264 fourcc m261,M261 | |
403 | 265 driver vfw |
345 | 266 dll "msh261.drv" |
267 out BGR32,BGR24,BGR15 | |
268 | |
403 | 269 videocodec asv2 |
270 info "ASUS V2" | |
271 status buggy | |
471 | 272 comment "rgb upside down, yuv ok" |
403 | 273 fourcc ASV2 |
274 driver vfw | |
275 dll "asusasv2.dll" | |
412 | 276 ; out YVYU |
277 out UYVY flip | |
403 | 278 out BGR32,BGR24,BGR15 flip |
279 | |
471 | 280 ;============================================================================= |
281 ; AUDIO CODECS | |
282 ;============================================================================= | |
283 | |
267 | 284 audiocodec divx |
268 | 285 info "DivX audio (WMA)" |
334 | 286 status working |
267 | 287 format 0x160 |
288 format 0x161 | |
289 driver acm | |
290 dll "divxa32.acm" | |
291 | |
292 audiocodec msadpcm | |
268 | 293 info "MS ADPCM" |
334 | 294 status working |
267 | 295 format 0x2 |
296 driver acm | |
297 dll "msadp32.acm" | |
298 | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
299 ; 3DNow! autodetection? |
334 | 300 audiocodec mp3acm |
301 info "MPEG layer-3" | |
302 status working | |
303 comment "Optimized to Intel MMX/SSE" | |
304 format 0x55 | |
305 driver acm | |
306 dll "l3codeca.acm" | |
307 flags seekable | |
267 | 308 |
309 audiocodec mp3 | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
310 info "MPEG layer-2, layer-3" |
334 | 311 status working |
267 | 312 comment "Optimized to AMD 3Dnow!" |
313 format 0x50 | |
314 format 0x55 | |
315 driver mp3lib | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
316 dll "mp3lib (mpg123)" |
267 | 317 flags seekable |
318 | |
319 audiocodec imaadpcm | |
268 | 320 info "IMA ADPCM" |
334 | 321 status working |
267 | 322 format 0x11 |
323 driver acm | |
324 dll "imaadp32.acm" | |
325 | |
326 audiocodec msgsmacm | |
268 | 327 info "MS GSM" |
334 | 328 status working |
267 | 329 format 0x31 |
330 format 0x32 | |
331 driver acm | |
332 dll "msgsm32.acm" | |
333 | |
334 audiocodec msgsm | |
268 | 335 info "MS GSM" |
334 | 336 status working |
267 | 337 format 0x31 |
338 format 0x32 | |
339 driver msgsm | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
340 dll "xa_gsm.c" |
267 | 341 |
303 | 342 audiocodec alaw |
343 info "aLaw" | |
334 | 344 status working |
303 | 345 format 0x6 |
346 driver alaw | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
347 dll "xanim-alaw" |
303 | 348 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
349 audiocodec ulaw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
350 info "uLaw" |
334 | 351 status buggy |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
352 format 0x7 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
353 driver alaw |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
354 dll "xanim-alaw" |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
355 comment "aLaw driver seems to play it, but it's weird.. Or is uLaw just shit? :)" |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
356 |
303 | 357 audiocodec pcm |
358 info "Uncompressed PCM" | |
334 | 359 status working |
303 | 360 format 0x1 |
361 driver pcm | |
362 | |
401 | 363 audiocodec dvdpcm |
364 info "Uncompressed DVD PCM" | |
365 status working | |
366 format 0x10001 | |
367 driver dvdpcm | |
368 | |
303 | 369 audiocodec ac3 |
370 info "AC3" | |
334 | 371 status working |
303 | 372 format 0x2000 |
373 driver libac3 | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
374 dll "libac3" |
303 | 375 |
267 | 376 audiocodec voxware |
268 | 377 info "VoxWare" |
345 | 378 status working ; audio is bubbling |
267 | 379 format 0x75 |
380 driver dshow | |
381 dll "voxmsdec.ax" | |
382 guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d | |
383 | |
333 | 384 audiocodec acelp |
385 info "ACELP.net Sipro Lab Audio Decoder" | |
338 | 386 status crashing |
496 | 387 comment "DS: cannot connect Output pin" |
333 | 388 format 0x130 |
389 driver dshow | |
390 dll "acelpdec.ax" | |
334 | 391 guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7 |
333 | 392 |
393 audiocodec imc | |
394 info "Intel Music Coder" | |
334 | 395 status untested |
333 | 396 format 0x401 |
397 ; driver gebasz |