comparison DOCS/CODECS @ 744:6bb9d383c392

CODECS -> codecs.conf
author gabucino
date Wed, 09 May 2001 23:30:44 +0000
parents 79f7c70dbdc1
children c653430f0789
comparison
equal deleted inserted replaced
743:79f7c70dbdc1 744:6bb9d383c392
1 1
2 Status of codecs support: 2 Status of codecs support:
3 ========================= 3 =========================
4 4
5 If you have sample files for untested codecs, or want a new codec to be 5 See DOCS/codecs.conf
6 added, contact us! See bellow (after the codecs listing) the details!
7
8 Video codecs:
9 ~~~~~~~~~~~~~
10 Built-in native codecs:
11
12 - MPEG 1/2 (no fourcc)
13 libmpeg2: works, YUV (YV12) supported, with optional postprocessing!!!
14 - OpenDivX (DIV1,DIVX)
15 decore: works, YUV (YV12) supported, postprocessing supported
16
17 Fully functional Win32 VfW/DShow codecs:
18
19 - M$ MPEG4 v1, v2 (MPG4,MP42):
20 mpg4c32.dll: works, YUV supported.
21 - M$ MPEG4 v3 / DivX ;-) / AngelPotion (MP43,DIV3,DIV4,DIV5,DIV6,AP41)
22 divxc32.dll: works, YUV supported.
23 divx_c32.ax: works, YUV and postprocessing supported.
24 - Indeo Video 5.0: (IV50)
25 ir50_32.dll (VfW): works, YUV supported.
26 ir50_32.dll (DShow): works, YUV supported.
27 - Cinepak Video: (CVID)
28 iccvid.dll: works, YUV supported.
29 - Microsoft Video v1.0 (CRAM)
30 msvidc32.dll: works, no YUV
31 - ATI VCR-2: (VCR2)
32 ativcr2.dll: works, YUV supported
33 - Motion JPEG (MJPG)
34 m3jpeg32.dll: can't load (segfault)
35 mcmjpg32.dll: works, YUV supported
36 m3jpegdec.ax: works, YUV supported
37 - Windows Media Video 7 (WMV1)
38 wmvds32.ax: works, YUV supported
39 - I263: (I263)
40 i263_32.drv: works, YUV supported
41 - DV - Sony Digital Video (dvsd)
42 ?
43 - ASUS ASV2: (ASV2)
44 asusasv2.dll: works, image upside-down on RGB (YUV ok!)
45
46 Problems:
47
48 - Indeo Video 4.1: (IV41)
49 ir41_32.dll: works, no YUV, image upside-down
50 - Indeo Video 3.2: (IV32, IV31)
51 ir32_32.dll: works, no YUV, image upside-down
52 - ATI VCR1: (VCR1)
53 ativcr1.dll: can't load (16-bit DLL)
54 - TrueMotion 2.0: (TM20)
55 tm20dec.ax: dest format not accepted
56 - ZLIB
57 avizlib.dll: YUY2 only (no RGB), Called unk_RegEnumValueA -> endless loop
58 - MSZH
59 avimszh.dll: RGB only (no YUV), Called unk_RegEnumValueA -> endless loop
60 - MWV1: calls many unk_ functions and then segfaults.
61 - HuffYUV: (HFYU)
62 huffyuv.dll: YUY2 _or_ 24/32bpp only (depending on file encoding)
63
64 Not tested:
65
66 - ASUS ASV1: (ASV1)
67 asusasvd.dll: ??? not tested
68 - Motion Wavelets: (MWV1)
69 icmw_32.dll: not tested (no sample file)
70 - Windows Media Video 8 (WMV2)
71 wmv8ds32.ax: not tested (no sample file)
72 - I420: (I420)
73 i263_32.drv: not tested, but should work (no sample file)
74 - m261: (m261)
75 msh261.drv: not tested, what's this?
76
77 Audio codecs:
78 ~~~~~~~~~~~~~
79 Built-in native codecs:
80
81 - Uncompressed PCM (0)
82 - Uncompressed DVD PCM: (0x10001)
83 - MPEG layer 2 and 3: (0x50, 0x55)
84 mp3lib, based on mpg123 (sometimes segfaults, then use ACM, see below)
85 - AC3: (0x2000)
86 libac3
87 - aLaw audio: (0x6)
88 aLaw codec from xanim sources
89 - MS-GSM: (0x31,0x32)
90 xa_gsm from avifile sources
91
92 Fully functional Win32 ACM/DShow codecs:
93
94 - Windows Media Audio / DivX audio (0x160, 0x161)
95 divxa32.acm: works
96 - MS ADPCM (0x2)
97 msadp32.acm: works
98 - MPEG layer 3: (0x55)
99 l3codeca.acm: works (or you can use the built-in 3dnow-optimized codec)
100 - VoxWare Metasound: (0x75)
101 voxmsdec.ax: works
102 - MS-GSM: (0x31,0x32)
103 msgsm32.acm: works (or you can use the built-in codec)
104 - IMA ADPCM (0x11)
105 imaadp32.acm: works
106
107 Problems:
108
109 - uLaw audio: (0x7)
110 mess...
111 - ACELP.net Sipro Lab Audio (0x130)
112 doesn't work: unk_ ...
113
114 Not tested:
115
116 - IMC: (0x401)
117 imc32.acm: not tested (no sample file)
118 6
119 7
120 Extracting codecs from Win32 8 Extracting codecs from Win32
121 ============================ 9 ============================
122 10