Mercurial > mplayer.hg
annotate DOCS/CODECS @ 740:d9b08199047f
iv31 ... (guess what)
author | gabucino |
---|---|
date | Wed, 09 May 2001 19:24:04 +0000 |
parents | d1c971b94495 |
children | 79f7c70dbdc1 |
rev | line source |
---|---|
187 | 1 |
2 Status of codecs support: | |
3 ========================= | |
4 | |
5 If you have sample files for untested codecs, or want a new codec to be | |
238 | 6 added, contact us! See bellow (after the codecs listing) the details! |
187 | 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. | |
352 | 21 - M$ MPEG4 v3 / DivX ;-) / AngelPotion (MP43,DIV3,DIV4,DIV5,DIV6,AP41) |
187 | 22 divxc32.dll: works, YUV supported. |
23 divx_c32.ax: works, YUV and postprocessing supported. | |
24 - Indeo Video 5.0: (IV50) | |
188 | 25 ir50_32.dll (VfW): works, YUV supported. |
352 | 26 ir50_32.dll (DShow): works, YUV supported. |
188 | 27 - Cinepak Video: (CVID) |
187 | 28 iccvid.dll: works, YUV supported. |
29 - Microsoft Video v1.0 (CRAM) | |
30 msvidc32.dll: works, no YUV | |
188 | 31 - ATI VCR-2: (VCR2) |
187 | 32 ativcr2.dll: works, YUV supported |
33 - Motion JPEG (MJPG) | |
34 m3jpeg32.dll: can't load (segfault) | |
35 mcmjpg32.dll: works, YUV supported | |
352 | 36 m3jpegdec.ax: works, YUV supported |
188 | 37 - Windows Media Video 7 (WMV1) |
187 | 38 wmvds32.ax: works, YUV supported |
248 | 39 - I263: (I263) |
276 | 40 i263_32.drv: works, YUV supported |
588 | 41 - DV - Sony Digital Video (dvsd) |
42 ? | |
43 - ASUS ASV2: (ASV2) | |
44 asusasv2.dll: works, image upside-down on RGB (YUV ok!) | |
187 | 45 |
46 Problems: | |
47 | |
48 - Indeo Video 4.1: (IV41) | |
49 ir41_32.dll: works, no YUV, image upside-down | |
740 | 50 - Indeo Video 3.2: (IV32, IV31) |
187 | 51 ir32_32.dll: works, no YUV, image upside-down |
188 | 52 - ATI VCR1: (VCR1) |
53 ativcr1.dll: can't load (16-bit DLL) | |
222 | 54 - TrueMotion 2.0: (TM20) |
253 | 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. | |
188 | 61 |
62 Not tested: | |
63 | |
352 | 64 - ASUS ASV1: (ASV1) |
65 asusasvd.dll: ??? not tested | |
344 | 66 - Motion Wavelets: (MWV1) |
188 | 67 icmw_32.dll: not tested (no sample file) |
68 - Windows Media Video 8 (WMV2) | |
69 wmv8ds32.ax: not tested (no sample file) | |
344 | 70 - I420: (I420) |
71 i263_32.drv: not tested, but should work (no sample file) | |
352 | 72 - m261: (m261) |
73 msh261.drv: not tested, what's this? | |
187 | 74 |
75 Audio codecs: | |
76 ~~~~~~~~~~~~~ | |
77 Built-in native codecs: | |
78 | |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
438
diff
changeset
|
79 - Uncompressed PCM (0) |
429 | 80 - Uncompressed DVD PCM: (0x10001) |
187 | 81 - MPEG layer 2 and 3: (0x50, 0x55) |
194 | 82 mp3lib, based on mpg123 (sometimes segfaults, then use ACM, see below) |
187 | 83 - AC3: (0x2000) |
84 libac3 | |
352 | 85 - aLaw audio: (0x6) |
187 | 86 aLaw codec from xanim sources |
87 - MS-GSM: (0x31,0x32) | |
88 xa_gsm from avifile sources | |
89 | |
90 Fully functional Win32 ACM/DShow codecs: | |
91 | |
188 | 92 - Windows Media Audio / DivX audio (0x160, 0x161) |
187 | 93 divxa32.acm: works |
94 - MS ADPCM (0x2) | |
95 msadp32.acm: works | |
96 - MPEG layer 3: (0x55) | |
194 | 97 l3codeca.acm: works (or you can use the built-in 3dnow-optimized codec) |
238 | 98 - VoxWare Metasound: (0x75) |
99 voxmsdec.ax: works | |
241
7ac45cb428c5
no more segfaults in msgsm32.acm with the Setup_FS patch
arpi_esp
parents:
238
diff
changeset
|
100 - MS-GSM: (0x31,0x32) |
7ac45cb428c5
no more segfaults in msgsm32.acm with the Setup_FS patch
arpi_esp
parents:
238
diff
changeset
|
101 msgsm32.acm: works (or you can use the built-in codec) |
252 | 102 - IMA ADPCM (0x11) |
103 imaadp32.acm: works | |
187 | 104 |
105 Problems: | |
106 | |
352 | 107 - uLaw audio: (0x7) |
108 mess... | |
109 - ACELP.net Sipro Lab Audio (0x130) | |
110 doesn't work: unk_ ... | |
111 | |
188 | 112 Not tested: |
187 | 113 |
188 | 114 - IMC: (0x401) |
115 imc32.acm: not tested (no sample file) | |
227 | 116 |
238 | 117 |
227 | 118 Extracting codecs from Win32 |
119 ============================ | |
120 | |
121 1. VfW | |
122 ~~~~~~ | |
123 VfW (Video for Windows) is the old Video API for Windows. Its codecs have | |
124 the .DLL or (rarely) .DRV extension. | |
125 If MPlayer fails with your AVI: | |
126 | |
127 UNKNOWN video codec: HFYU (0x55594648) | |
128 | |
129 It means your AVI is encoded with a codec which has the HFYU fourcc (HFYU = | |
130 HuffYUV codec, DIV3 = DivX Low Motion, etc...). Now that we know this, we'll | |
131 have to find out which DLL Windows loads in order to play this file. In our | |
132 case, the system.ini contains this (with many others): | |
133 VIDC.HFYU=huffyuv.dll | |
134 So we'll need the huffyuv.dll file. Note that the audio codecs are specified | |
135 with the MSACM prefix : | |
136 msacm.l3acm=L3codeca.acm | |
137 This is the MP3 codec. | |
138 | |
238 | 139 So, now we have all the info needed (fourcc, codec file, sample AVI), submit |
140 your codec support request in mail, and upload these files to the FTP: | |
657 | 141 ftp://thot.banki.hu/MPlayer/incoming/<codecname>/ |
238 | 142 |
227 | 143 |
144 2. DirectShow | |
145 ~~~~~~~~~~~~~ | |
146 DirectShow is the newer Video API, which is even worse than its predecessor. | |
147 Things are harder with DirectShow, since | |
148 - system.ini doesn't contain the needed information, instead it's stored in | |
149 the registry :( | |
150 - we'll need the GUID of the codec. | |
151 | |
152 So let's search that goddamn registry.. | |
153 - Start 'regedit' | |
154 - press ctrl-f, disable the first two checkbox, and enable the third. Type | |
155 the fourcc of the codec. (for ex.: TM20) | |
156 - you should see a field which contains the path and filename | |
157 (for ex. : C:\WINDOWS\SYSTEM\TM20DEC.AX) | |
158 - now that we have the file, we'll need the GUID. Try searching again, but | |
159 now we'll search for the codec's name, not the fourcc. Its name can be acquired | |
160 when Media Player is playing that file, by checking File/Properties/Advanced. | |
161 If not, bad luck ;) Try guessing. | |
162 (for ex. search for : TrueMotion) | |
163 - if found (in registry), there should be a FriendlyName field, and a CLSID | |
238 | 164 field. Write down that 16 byte of CLSID, this is the GUID required by us. |
227 | 165 |
166 NOTE : if searching fails, try to enable all the checkboxes.. you may have | |
167 false hits, but maybe you'll have the right, too... | |
168 NOTE : dump that M$ shit. | |
169 | |
170 So, now we have all the info needed (fourcc, GUID, codec file, sample AVI), | |
238 | 171 submit your codec support request in mail, and upload these files to the FTP: |
657 | 172 ftp://thot.banki.hu/MPlayer/incoming/<codecname>/ |
227 | 173 |
174 | |
175 Gabucino & A'rpi |