comparison DOCS/CODECS @ 238:d734e84b4eea

small changes, corrections
author arpi_esp
date Wed, 28 Mar 2001 21:58:44 +0000
parents 2a94614c1d51
children 7ac45cb428c5
comparison
equal deleted inserted replaced
237:77460b51c9c1 238:d734e84b4eea
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 If you have sample files for untested codecs, or want a new codec to be
6 added, contact us! (for new codecs we need the DLL/AX file and a sample AVI) 6 added, contact us! See bellow (after the codecs listing) the details!
7 7
8 Video codecs: 8 Video codecs:
9 ~~~~~~~~~~~~~ 9 ~~~~~~~~~~~~~
10 Built-in native codecs: 10 Built-in native codecs:
11 11
87 divxa32.acm: works 87 divxa32.acm: works
88 - MS ADPCM (0x2) 88 - MS ADPCM (0x2)
89 msadp32.acm: works 89 msadp32.acm: works
90 - MPEG layer 3: (0x55) 90 - MPEG layer 3: (0x55)
91 l3codeca.acm: works (or you can use the built-in 3dnow-optimized codec) 91 l3codeca.acm: works (or you can use the built-in 3dnow-optimized codec)
92 - VoxWare Metasound: (0x75)
93 voxmsdec.ax: works
92 94
93 Problems: 95 Problems:
94 96
95 - IMA ADPCM (0x11) 97 - IMA ADPCM (0x11)
96 imaadp32.acm: segfault 98 imaadp32.acm: segfault
97 - MS-GSM: (0x31,0x32) 99 - MS-GSM: (0x31,0x32)
98 msgsm32.acm: segfault (use built-in codec) 100 msgsm32.acm: segfault (use built-in codec)
99 - VoxWare Metasound: (0x75)
100 voxmsdec.ax: segfault
101 101
102 Not tested: 102 Not tested:
103 103
104 - ACELP.net: (0x130) 104 - ACELP.net: (0x130)
105 acelpdec.ax: not tested (no sample file) 105 acelpdec.ax: not tested (no sample file)
106 - IMC: (0x401) 106 - IMC: (0x401)
107 imc32.acm: not tested (no sample file) 107 imc32.acm: not tested (no sample file)
108
108 109
109 Extracting codecs from Win32 110 Extracting codecs from Win32
110 ============================ 111 ============================
111 112
112 1. VfW 113 1. VfW
125 So we'll need the huffyuv.dll file. Note that the audio codecs are specified 126 So we'll need the huffyuv.dll file. Note that the audio codecs are specified
126 with the MSACM prefix : 127 with the MSACM prefix :
127 msacm.l3acm=L3codeca.acm 128 msacm.l3acm=L3codeca.acm
128 This is the MP3 codec. 129 This is the MP3 codec.
129 130
130 So, now we have all the info needed (fourcc, codec file, sample AVI), submit a 131 So, now we have all the info needed (fourcc, codec file, sample AVI), submit
131 bugreport, and upload the files to thot.banki.hu/incoming/MPlayer 132 your codec support request in mail, and upload these files to the FTP:
132 (also see DOCS/README !!!) . 133 ftp://thot.banki.hu/incoming/MPlayer/<codecname>/
134
133 135
134 2. DirectShow 136 2. DirectShow
135 ~~~~~~~~~~~~~ 137 ~~~~~~~~~~~~~
136 DirectShow is the newer Video API, which is even worse than its predecessor. 138 DirectShow is the newer Video API, which is even worse than its predecessor.
137 Things are harder with DirectShow, since 139 Things are harder with DirectShow, since
149 now we'll search for the codec's name, not the fourcc. Its name can be acquired 151 now we'll search for the codec's name, not the fourcc. Its name can be acquired
150 when Media Player is playing that file, by checking File/Properties/Advanced. 152 when Media Player is playing that file, by checking File/Properties/Advanced.
151 If not, bad luck ;) Try guessing. 153 If not, bad luck ;) Try guessing.
152 (for ex. search for : TrueMotion) 154 (for ex. search for : TrueMotion)
153 - if found (in registry), there should be a FriendlyName field, and a CLSID 155 - if found (in registry), there should be a FriendlyName field, and a CLSID
154 field. Write down that 16 byte of CLSID. 156 field. Write down that 16 byte of CLSID, this is the GUID required by us.
155 157
156 NOTE : if searching fails, try to enable all the checkboxes.. you may have 158 NOTE : if searching fails, try to enable all the checkboxes.. you may have
157 false hits, but maybe you'll have the right, too... 159 false hits, but maybe you'll have the right, too...
158 NOTE : dump that M$ shit. 160 NOTE : dump that M$ shit.
159 161
160 So, now we have all the info needed (fourcc, GUID, codec file, sample AVI), 162 So, now we have all the info needed (fourcc, GUID, codec file, sample AVI),
161 submit a bugreport, and upload the files to thot.banki.hu/incoming/MPlayer 163 submit your codec support request in mail, and upload these files to the FTP:
162 (also see DOCS/README !!!) . 164 ftp://thot.banki.hu/incoming/MPlayer/<codecname>/
163
164 165
165 166
166 Gabucino & A'rpi 167 Gabucino & A'rpi