Mercurial > mplayer.hg
annotate etc/codecs.conf @ 27808:2988c38b6620
Make sure that linker flags passed as configure parameters appear before
those detected by configure so that the former can override the latter.
patch by Giacomo Comes, comes naic edu
author | diego |
---|---|
date | Tue, 28 Oct 2008 18:00:11 +0000 |
parents | e556941ac76b |
children | 21779d5ea61c |
rev | line source |
---|---|
5121 | 1 ;============================================================================= |
27415 | 2 ; Default codecs config file. |
5121 | 3 ; Before editing this file, please read DOCS/tech/codecs.conf.txt ! |
4 ;============================================================================= | |
267 | 5 |
24653 | 6 release 20070930 |
6200
e604be87613d
codecs.conf versioning - patch by Joey Parrish <joey@yunamusic.com>
arpi
parents:
6189
diff
changeset
|
7 |
471 | 8 ;============================================================================= |
9 ; VIDEO CODECS | |
10 ;============================================================================= | |
11 | |
27323 | 12 videocodec ffmvi1 |
13 info "FFmpeg Motion Pixels Decoder" | |
14 status working | |
15 fourcc MVI1 ; internal MPlayer FourCC | |
16 driver ffmpeg | |
17 dll motionpixels | |
18 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 | |
19 out YV12,YUY2 | |
20 | |
27101 | 21 videocodec ffmdec |
22 info "FFmpeg Sony PlayStation MDEC (Motion DECoder)" | |
23 status working | |
24 fourcc MDEC ; internal MPlayer FourCC | |
25 driver ffmpeg | |
26 dll mdec | |
27 out YV12 | |
28 | |
26712 | 29 videocodec ffsiff |
30 info "FFmpeg Beam Software SIFF decoder" | |
31 status working | |
32 fourcc VBV1 | |
33 driver ffmpeg | |
34 dll vb | |
35 out BGR8 | |
36 | |
26240 | 37 videocodec ffmimic |
26565
1c3643fb29da
add info lines to ffmimic, ffkmvc. fixes codec-status table.
compn
parents:
26459
diff
changeset
|
38 info "FFmpeg Mimic video" |
26443 | 39 status working |
26240 | 40 fourcc ML20 |
41 out I420 | |
42 driver ffmpeg | |
43 dll "mimic" | |
44 | |
18058 | 45 videocodec ffkmvc |
26565
1c3643fb29da
add info lines to ffmimic, ffkmvc. fixes codec-status table.
compn
parents:
26459
diff
changeset
|
46 info "FFmpeg Karl Morton Video Codec" |
26443 | 47 status working |
18058 | 48 fourcc KMVC |
49 out BGR8 | |
50 driver ffmpeg | |
51 dll "kmvc" | |
52 | |
17604 | 53 videocodec ffzmbv |
54 info "FFmpeg Zip Motion-Block Video" | |
55 status working | |
56 fourcc ZMBV | |
57 driver ffmpeg | |
58 dll "zmbv" | |
59 out RGB24 | |
60 | |
17541
154501086869
Add support for Zip Motion-Block Video (ZMB), patch by Kostya.
diego
parents:
17405
diff
changeset
|
61 videocodec zmbv |
154501086869
Add support for Zip Motion-Block Video (ZMB), patch by Kostya.
diego
parents:
17405
diff
changeset
|
62 info "Zip Motion-Block Video" |
154501086869
Add support for Zip Motion-Block Video (ZMB), patch by Kostya.
diego
parents:
17405
diff
changeset
|
63 status working |
154501086869
Add support for Zip Motion-Block Video (ZMB), patch by Kostya.
diego
parents:
17405
diff
changeset
|
64 fourcc ZMBV |
154501086869
Add support for Zip Motion-Block Video (ZMB), patch by Kostya.
diego
parents:
17405
diff
changeset
|
65 driver vfw |
154501086869
Add support for Zip Motion-Block Video (ZMB), patch by Kostya.
diego
parents:
17405
diff
changeset
|
66 dll "zmbv.dll" |
154501086869
Add support for Zip Motion-Block Video (ZMB), patch by Kostya.
diego
parents:
17405
diff
changeset
|
67 out BGR24,BGR15,BGR8 query,flip |
154501086869
Add support for Zip Motion-Block Video (ZMB), patch by Kostya.
diego
parents:
17405
diff
changeset
|
68 |
27620
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
69 videocodec blackmagic |
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
70 info "Blackmagic 10-bit" |
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
71 status working |
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
72 comment "requires libguide40.dll" |
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
73 fourcc r210 |
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
74 driver vfw |
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
75 dll "BMDCodecLib.dll" |
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
76 out BGR32,RGB32 |
ed0ea697cf40
add blackmagic 10bit decoder, works on v-codecs/R210/
compn
parents:
27615
diff
changeset
|
77 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
78 ; MPEG-1/2 decoding: |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
79 ; Note: mpegpes is preferred for hw decoders: |
1278 | 80 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
81 videocodec mpegpes |
23905
fb63124c7920
v4l2 audio/video outputs for linux 2.6.22+ kernels (outputs formerly known as ivtv)
ben
parents:
23821
diff
changeset
|
82 info "MPEG-PES output (.mpg or DXR3/IVTV/DVB/V4L2 card)" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
83 comment "for hardware decoding" |
1278 | 84 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
85 format 0x10000001 ; mpeg 1 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
86 format 0x10000002 ; mpeg 2 |
25301
456207bc0bd2
associate mpeg12 ffourccs to vc_mpegpes (fixes playback with hw mpeg12 decoders and demux_lavf)
nicodvb
parents:
25182
diff
changeset
|
87 fourcc mpg1,MPG1,mpg2,MPG2 |
456207bc0bd2
associate mpeg12 ffourccs to vc_mpegpes (fixes playback with hw mpeg12 decoders and demux_lavf)
nicodvb
parents:
25182
diff
changeset
|
88 fourcc MPEG |
27357 | 89 fourcc hdv1,hdv2,hdv3 |
90 fourcc hdv5 | |
27335 | 91 fourcc hdv6,hdv7,hdv8 |
92 fourcc xdv1,xdv2,xdv3 | |
93 fourcc xdv4,xdv5,xdv6 | |
94 fourcc xdv7,xdv8,xdv9 | |
95 fourcc xdva,xdvb,xdvc | |
96 fourcc xdvd,xdve,xdvf | |
27609 | 97 fourcc xd5a,xd5b,xd5c |
27613 | 98 fourcc xd5d,xd5e,xd5f |
27609 | 99 fourcc xd59 |
27614 | 100 fourcc mx5n,mx4n,mx4p |
27609 | 101 fourcc mx3n,mx3p |
102 fourcc AVmp | |
27612 | 103 fourcc mp2v,mpgv |
104 fourcc VCR2 | |
5477
fc466845b9e1
mpegpes is no longer handled by libmpeg2 - we have vd_mpegpes now
arpi
parents:
5464
diff
changeset
|
105 driver mpegpes |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
106 out MPES |
1278 | 107 |
10727 | 108 videocodec ffmpeg1 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
109 info "FFmpeg MPEG-1" |
10727 | 110 status working |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
111 format 0x10000001 ; MPEG-1 |
10727 | 112 fourcc mpg1 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
113 fourcc PIM1 ; Pinnacle hardware-MPEG-1 |
10727 | 114 fourcc VCR2 |
17319 | 115 fourcc MPEG |
10727 | 116 driver ffmpeg |
117 dll "mpeg1video" | |
118 out YV12,I420,IYUV | |
119 | |
120 videocodec ffmpeg2 | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
121 info "FFmpeg MPEG-2" |
10727 | 122 status working |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
123 format 0x10000002 ; MPEG-2 |
17340 | 124 fourcc mpg2,MPG2 |
15572 | 125 fourcc "DVR " |
27357 | 126 fourcc hdv1 |
15870
210ea00004d3
add hdv2 fourcc to MPEG2 codecs (used by new Sony HD camera)
aurel
parents:
15823
diff
changeset
|
127 fourcc hdv2 |
17319 | 128 fourcc MPEG |
17629
2cee40108bbd
Add some more fourcc for DV and MPEG2 needed for some mov samples posted
rtognimp
parents:
17604
diff
changeset
|
129 fourcc hdv3 ; HDV 1080i50 |
26140 | 130 fourcc hdv5 ; HDV 720p25 |
17629
2cee40108bbd
Add some more fourcc for DV and MPEG2 needed for some mov samples posted
rtognimp
parents:
17604
diff
changeset
|
131 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) |
23504 | 132 fourcc MMES,mmes ; matrox mpeg2 in avi |
27335 | 133 fourcc hdv6,hdv7,hdv8 |
134 fourcc xdv1,xdv2,xdv3 | |
135 fourcc xdv4,xdv5,xdv6 | |
136 fourcc xdv7,xdv8,xdv9 | |
137 fourcc xdva,xdvb,xdvc | |
138 fourcc xdvd,xdve,xdvf | |
27609 | 139 fourcc xd5a,xd5b,xd5c |
27613 | 140 fourcc xd5d,xd5e,xd5f |
27609 | 141 fourcc xd59 |
27614 | 142 fourcc mx5n,mx4n,mx4p |
27609 | 143 fourcc mx3n,mx3p |
144 fourcc AVmp | |
27612 | 145 fourcc VCR2 |
146 fourcc mp2v,mpgv | |
10727 | 147 driver ffmpeg |
148 dll "mpeg2video" | |
149 out YV12,I420,IYUV | |
12562 | 150 out 422P,444P |
10727 | 151 |
11435 | 152 ; for backward compatibility |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
153 videocodec ffmpeg12 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
154 info "FFmpeg MPEG-1/2" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
155 status working |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
156 format 0x10000001 ; MPEG-1 |
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
157 format 0x10000002 ; MPEG-2 |
17340 | 158 fourcc mpg1,mpg2,MPG2 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
159 fourcc PIM1 ; Pinnacle hardware-MPEG-1 |
10469 | 160 fourcc VCR2 |
15945 | 161 fourcc "DVR " |
162 fourcc hdv2 | |
17319 | 163 fourcc MPEG |
27357 | 164 fourcc hdv1 |
17629
2cee40108bbd
Add some more fourcc for DV and MPEG2 needed for some mov samples posted
rtognimp
parents:
17604
diff
changeset
|
165 fourcc hdv3 ; HDV 1080i50 |
26140 | 166 fourcc hdv5 ; HDV 720p25 |
17629
2cee40108bbd
Add some more fourcc for DV and MPEG2 needed for some mov samples posted
rtognimp
parents:
17604
diff
changeset
|
167 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) |
23504 | 168 fourcc MMES,mmes ; matrox mpeg2 in avi |
27335 | 169 fourcc hdv6,hdv7,hdv8 |
170 fourcc xdv1,xdv2,xdv3 | |
171 fourcc xdv4,xdv5,xdv6 | |
172 fourcc xdv7,xdv8,xdv9 | |
173 fourcc xdva,xdvb,xdvc | |
174 fourcc xdvd,xdve,xdvf | |
27609 | 175 fourcc xd5a,xd5b,xd5c |
27613 | 176 fourcc xd5d,xd5e,xd5f |
27609 | 177 fourcc xd59 |
27614 | 178 fourcc mx5n,mx4n,mx4p |
27609 | 179 fourcc mx3n,mx3p |
180 fourcc AVmp | |
27612 | 181 fourcc mp2v,mpgv |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
182 driver ffmpeg |
11438 | 183 dll "mpegvideo" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
184 out YV12,I420,IYUV |
12562 | 185 out 422P,444P |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
186 |
26227
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
187 videocodec mpeg12 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
188 info "MPEG-1 or 2 (libmpeg2)" |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
189 comment "with postprocessing" |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
190 status working |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
191 format 0x10000001 ; MPEG-1 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
192 format 0x10000002 ; MPEG-2 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
193 fourcc "DVR " |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
194 fourcc hdv2 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
195 fourcc mpg1 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
196 fourcc PIM1 ; Pinnacle hardware-MPEG-1 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
197 fourcc VCR2 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
198 fourcc mpg2,MPG2 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
199 fourcc MPEG |
27357 | 200 fourcc hdv1 |
26227
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
201 fourcc hdv3 ; HDV 1080i50 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
202 fourcc hdv5 ; HDV 720p25 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
203 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
204 fourcc MMES,mmes ; matrox mpeg2 in avi |
27335 | 205 fourcc hdv6,hdv7,hdv8 |
206 fourcc xdv1,xdv2,xdv3 | |
207 fourcc xdv4,xdv5,xdv6 | |
208 fourcc xdv7,xdv8,xdv9 | |
209 fourcc xdva,xdvb,xdvc | |
210 fourcc xdvd,xdve,xdvf | |
27609 | 211 fourcc xd5a,xd5b,xd5c |
27613 | 212 fourcc xd5d,xd5e,xd5f |
27609 | 213 fourcc xd59 |
27614 | 214 fourcc mx5n,mx4n,mx4p |
27609 | 215 fourcc mx3n,mx3p |
216 fourcc AVmp | |
27612 | 217 fourcc mp2v,mpgv |
26227
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
218 driver libmpeg2 |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
219 ; dll "libmpeg2" |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
220 out YV12,I420,IYUV |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
221 out 422P |
85c37eab722b
Make FFmpeg mpeg1/2 decoder the default over libmpeg2
reimar
parents:
26204
diff
changeset
|
222 |
10316 | 223 videocodec ffmpeg12mc |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
224 info "FFmpeg MPEG-1/2 (XvMC)" |
10316 | 225 status buggy |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
226 format 0x10000001 ; MPEG-1 |
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
227 format 0x10000002 ; MPEG-2 |
17340 | 228 fourcc mpg1,mpg2,MPG2 |
15572 | 229 fourcc "DVR " |
27357 | 230 fourcc hdv1 |
15870
210ea00004d3
add hdv2 fourcc to MPEG2 codecs (used by new Sony HD camera)
aurel
parents:
15823
diff
changeset
|
231 fourcc hdv2 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
232 fourcc PIM1 ; Pinnacle hardware-MPEG-1 |
15945 | 233 fourcc VCR2 |
17319 | 234 fourcc MPEG |
17629
2cee40108bbd
Add some more fourcc for DV and MPEG2 needed for some mov samples posted
rtognimp
parents:
17604
diff
changeset
|
235 fourcc hdv3 ; HDV 1080i50 |
26140 | 236 fourcc hdv5 ; HDV 720p25 |
17629
2cee40108bbd
Add some more fourcc for DV and MPEG2 needed for some mov samples posted
rtognimp
parents:
17604
diff
changeset
|
237 fourcc mx5p ; MPEG IMX 625/50 (50 Mb/s) |
23504 | 238 fourcc MMES,mmes ; matrox mpeg2 in avi |
27335 | 239 fourcc hdv6,hdv7,hdv8 |
240 fourcc xdv1,xdv2,xdv3 | |
241 fourcc xdv4,xdv5,xdv6 | |
242 fourcc xdv7,xdv8,xdv9 | |
243 fourcc xdva,xdvb,xdvc | |
244 fourcc xdvd,xdve,xdvf | |
27609 | 245 fourcc xd5a,xd5b,xd5c |
27613 | 246 fourcc xd5d,xd5e,xd5f |
27609 | 247 fourcc xd59 |
27614 | 248 fourcc mx5n,mx4n,mx4p |
27609 | 249 fourcc mx3n,mx3p |
250 fourcc AVmp | |
27612 | 251 fourcc mp2v,mpgv |
10316 | 252 driver ffmpeg |
253 dll "mpegvideo_xvmc" | |
254 out IDCT_MPEG2 | |
255 out MOCO_MPEG2 | |
256 | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
257 ; we have only native open source codecs for these: |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
258 |
18058 | 259 videocodec ffnuv |
260 info "NuppelVideo" | |
261 status working | |
262 fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC | |
263 fourcc RJPG | |
264 driver ffmpeg | |
265 dll nuv | |
266 out I420 | |
267 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
268 videocodec nuv |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
269 info "NuppelVideo" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
270 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
271 fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC |
16163 | 272 fourcc RJPG |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
273 driver nuv |
5708 | 274 out I420,IYUV |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
275 |
22702
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
276 videocodec ffbmp |
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
277 info "FFmpeg BMP decoder" |
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
278 status working |
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
279 fourcc "bmp " ; for BMP-encoded QuickTime files |
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
280 format 0x706D62 ; AVI |
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
281 driver ffmpeg |
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
282 dll bmp |
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
283 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 |
4fdfa619d08a
add ffbmp decoder, cant figure out fourcc bit so use format for avi...
compn
parents:
22688
diff
changeset
|
284 |
20848
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
285 videocodec ffgif |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
286 info "FFmpeg GIF decoder" |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
287 status working |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
288 fourcc "gif " ; for GIF-encoded QuickTime files |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
289 driver ffmpeg |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
290 dll gif |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
291 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
292 |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
293 videocodec fftiff |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
294 info "FFmpeg TIFF decoder" |
25021 | 295 status working |
20848
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
296 fourcc "tiff" ; for TIFF-encoded QuickTime files |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
297 driver ffmpeg |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
298 dll tiff |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
299 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
300 |
25961 | 301 videocodec ffpcx |
302 info "FFmpeg PCX decoder" | |
303 status working | |
304 fourcc "pcx " | |
305 driver ffmpeg | |
306 dll pcx | |
307 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 | |
308 | |
16098 | 309 videocodec ffpng |
310 info "FFmpeg PNG decoder" | |
311 status working | |
312 fourcc mpng,MPNG | |
313 fourcc "png " ; for PNG-encoded QuickTime files | |
314 driver ffmpeg | |
315 dll png | |
316 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 | |
317 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
318 videocodec mpng |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
319 info "PNG image decoder" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
320 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
321 comment "Gray scaled PNG with Alpha channel not supported" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
322 fourcc mpng,MPNG |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
323 fourcc "png " ; for PNG-encoded QuickTime files |
6584 | 324 dll "libpng" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
325 driver mpng |
15505 | 326 out BGR32,BGR24,BGR8,Y800 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
327 |
26711 | 328 videocodec ffptx |
329 info "FFmpeg V.Flash PTX decoder" | |
330 status working | |
26716 | 331 fourcc "ptx " ; internal MPlayer FourCC |
26711 | 332 driver ffmpeg |
333 dll ptx | |
334 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 | |
335 | |
20848
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
336 videocodec fftga |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
337 info "FFmpeg TGA decoder" |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
338 status untested |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
339 fourcc mtga,MTGA |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
340 fourcc "tga " ; for TGA-encoded QuickTime files |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
341 driver ffmpeg |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
342 dll targa |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
343 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 |
68de1f8a50a9
ffgif, fftiff and fftga support, patch by compn (tempn <at> twmi rr com)
reimar
parents:
20694
diff
changeset
|
344 |
7362 | 345 videocodec mtga |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
346 info "TGA image decoder" |
7362 | 347 status working |
348 comment "Only 24bpp and 32bpp RGB TGA files supported" | |
349 fourcc mtga,MTGA | |
350 driver mtga | |
7392
e21841225e2a
query_format support by Tilman Sauerbeck <tsauerbeck@users.sourceforge.net>
alex
parents:
7384
diff
changeset
|
351 out BGR32,BGR24 |
7362 | 352 |
9534
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
353 videocodec sgi |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
354 info "SGI image decoder" |
9534
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
355 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
356 fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC |
9534
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
357 driver sgi |
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
358 out BGR24 |
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
359 |
26070 | 360 videocodec ffsunras |
361 info "FFmpeg SUN Rasterfile decoder" | |
362 status working | |
363 fourcc "sun " ; sun is an internal MPlayer FOURCC | |
364 driver ffmpeg | |
365 dll sunrast | |
366 out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8 | |
367 | |
9920 | 368 videocodec ffindeo3 |
369 info "FFmpeg Intel Indeo 3.1/3.2" | |
370 status working | |
371 fourcc IV31,iv31 | |
372 fourcc IV32,iv32 | |
373 driver ffmpeg | |
374 dll indeo3 | |
375 out YVU9 | |
9534
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
376 |
11847 | 377 videocodec fffli |
378 info "Autodesk FLI/FLC Animation" | |
379 status working | |
380 fourcc FLIC ; FLIC is an internal MPlayer FOURCC | |
381 driver ffmpeg | |
382 dll "flic" | |
16777
3398ec12ec8c
Support DTA and FLX extensions for flic via ffmpeg decoder
rtognimp
parents:
16776
diff
changeset
|
383 out BGR16,BGR15,BGR8 query |
11847 | 384 |
15059 | 385 videocodec ffaasc |
386 info "Autodesk RLE decoder" | |
387 status working | |
388 fourcc AASC | |
389 driver ffmpeg | |
390 dll "aasc" | |
391 out BGR24 | |
392 | |
15064 | 393 videocodec ffloco |
394 info "LOCO video decoder" | |
395 status working | |
396 fourcc LOCO | |
397 driver ffmpeg | |
398 dll "loco" | |
15072 | 399 out 422P,YV12,BGR32,BGR24 query |
15064 | 400 |
11956 | 401 videocodec ffqtrle |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
402 info "QuickTime Animation (RLE)" |
11956 | 403 status working |
404 format 0x20656C72 ; "rle " | |
405 driver ffmpeg | |
406 dll "qtrle" | |
407 out BGR32,RGB24,BGR15,BGR8 query | |
408 | |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
409 videocodec ffrpza |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
410 info "QuickTime Apple Video" |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
411 status working |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
412 fourcc rpza,azpr |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
413 driver ffmpeg |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
414 dll "rpza" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
415 out BGR15 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
416 |
11527 | 417 videocodec ffsmc |
418 info "Apple Graphics (SMC) codec" | |
419 status working | |
420 format 0x20636d73 ; "smc " | |
421 driver ffmpeg | |
422 dll "smc" | |
423 out BGR8 | |
424 | |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
425 videocodec ff8bps |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
426 info "Planar RGB (Photoshop)" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
427 status working |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
428 fourcc 8BPS |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
429 driver ffmpeg |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
430 dll "8bps" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
431 out BGR32,BGR24,BGR8 query |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
432 |
12397
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
433 videocodec ffcyuv |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
434 info "Creative YUV (libavcodec)" |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
435 status working |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
436 fourcc cyuv,CYUV |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
437 driver ffmpeg |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
438 dll "cyuv" |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
439 out 411P |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
440 |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
441 videocodec ffmsrle |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
442 info "Microsoft RLE" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
443 status working |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
444 format 0x1 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
445 format 0x2 |
16119 | 446 fourcc WRLE |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
447 driver ffmpeg |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
448 dll "msrle" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
449 out BGR8 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
450 |
12444
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
451 videocodec ffroqvideo |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
452 info "Id RoQ File Video Decoder" |
12827 | 453 status working |
12444
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
454 fourcc RoQV ; RoQV is an internal MPlayer FOURCC |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
455 driver ffmpeg |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
456 dll "roqvideo" |
24593
795d9baf21ab
The FFmpeg RoQ video decoder now uses 444P colorspace.
diego
parents:
24588
diff
changeset
|
457 out 444P |
12444
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
458 |
7729 | 459 videocodec lzo |
460 info "LZO compressed" | |
461 status working | |
462 fourcc LZO1 | |
463 driver lzo | |
464 dll "liblzo" | |
465 out YV12,I420 | |
466 out BGR24 flip | |
467 | |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
468 videocodec theora |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
469 info "Theora (free, reworked VP3)" |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
470 status working |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
471 fourcc theo,Thra |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
472 driver theora |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
473 dll libtheora |
14780 | 474 out YV12 |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
475 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
476 ; prefer native codecs over win32? |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
477 ; the win32 codecs probably are (better) optimized and support direct |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
478 ; rendering, so this may be not the best idea... |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
479 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
480 ;WIN32: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
481 |
26444
cea51ac82475
Support for MSU SCLS (Screen Capture Lossless Codec) with SCLS.DLL
rtogni
parents:
26443
diff
changeset
|
482 videocodec msuscls |
cea51ac82475
Support for MSU SCLS (Screen Capture Lossless Codec) with SCLS.DLL
rtogni
parents:
26443
diff
changeset
|
483 info "MSU Screen Capture Lossless Codec" |
cea51ac82475
Support for MSU SCLS (Screen Capture Lossless Codec) with SCLS.DLL
rtogni
parents:
26443
diff
changeset
|
484 status working |
cea51ac82475
Support for MSU SCLS (Screen Capture Lossless Codec) with SCLS.DLL
rtogni
parents:
26443
diff
changeset
|
485 fourcc SCLS |
cea51ac82475
Support for MSU SCLS (Screen Capture Lossless Codec) with SCLS.DLL
rtogni
parents:
26443
diff
changeset
|
486 driver vfw |
cea51ac82475
Support for MSU SCLS (Screen Capture Lossless Codec) with SCLS.DLL
rtogni
parents:
26443
diff
changeset
|
487 dll "SCLS.DLL" |
cea51ac82475
Support for MSU SCLS (Screen Capture Lossless Codec) with SCLS.DLL
rtogni
parents:
26443
diff
changeset
|
488 out BGR32,BGR24,BGR16 flip |
cea51ac82475
Support for MSU SCLS (Screen Capture Lossless Codec) with SCLS.DLL
rtogni
parents:
26443
diff
changeset
|
489 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
490 videocodec cram |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
491 info "Microsoft Video 1" |
11261 | 492 comment "-vf palette required for 8bpp" |
6104
0fb14001bf06
old vfw codecs don't like double buffering - force static buffer for them
arpi
parents:
6098
diff
changeset
|
493 status buggy |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
494 fourcc cram,CRAM CRAM |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
495 fourcc msvc,MSVC CRAM |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
496 fourcc wham,WHAM CRAM |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
497 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
498 dll "msvidc32.dll" |
7328 | 499 out BGR24,BGR15,BGR8 static,query |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
500 |
12614 | 501 videocodec ffcvid |
502 info "Cinepak Video (native codec)" | |
503 status working | |
504 fourcc cvid,CVID | |
505 driver ffmpeg | |
506 dll "cinepak" | |
12704 | 507 out YV12,BGR8 query |
12614 | 508 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
509 videocodec cvidvfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
510 info "Cinepak Video" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
511 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
512 fourcc cvid |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
513 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
514 dll "iccvid.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
515 ; out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
516 ; out UYVY |
6104
0fb14001bf06
old vfw codecs don't like double buffering - force static buffer for them
arpi
parents:
6098
diff
changeset
|
517 out BGR24,BGR15 static |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
518 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
519 videocodec huffyuv |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
520 info "HuffYUV" |
6189 | 521 status buggy |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
522 fourcc HFYU |
267 | 523 driver vfw |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
524 dll "huffyuv.dll" |
7328 | 525 out YUY2 flip,noflip,query |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
526 ; out UYVY flip |
7328 | 527 out BGR32,BGR24 flip,query |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
528 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
529 ;NATIVE: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
530 |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
531 videocodec ffvideo1 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
532 info "Microsoft Video 1 (native codec)" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
533 status working |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
534 fourcc cram,CRAM |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
535 fourcc msvc,MSVC |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
536 fourcc wham,WHAM |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
537 driver ffmpeg |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
538 dll "msvideo1" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
539 out BGR15,BGR8 query |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
540 |
11784 | 541 videocodec ffmszh |
542 info "AVImszh (native codec)" | |
543 status working | |
544 fourcc MSZH | |
545 driver ffmpeg | |
546 dll "mszh" | |
547 out BGR24 | |
548 | |
549 videocodec ffzlib | |
550 info "AVIzlib (native codec)" | |
551 status working | |
552 fourcc ZLIB | |
553 driver ffmpeg | |
554 dll "zlib" | |
555 out BGR24 | |
556 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
557 ;XAnim (slow): |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
558 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
559 videocodec cvidxa |
6584 | 560 info "XAnim's Radius Cinepak Video" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
561 status buggy |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
562 fourcc cvid |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
563 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
564 dll "vid_cvid.xa" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
565 out YV12,IYUV,I420 static |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
566 |
15531 | 567 ; time to decide what to do with the MPEG-4/DivX variants... |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
568 ; ff* is fastest... |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
569 |
8190 | 570 videocodec ffhuffyuv |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
571 info "FFmpeg HuffYUV" |
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
572 status working |
14057 | 573 fourcc HFYU,FFVH |
8190 | 574 driver ffmpeg |
575 dll huffyuv | |
9033 | 576 out YUY2,422P,YV12 |
8190 | 577 out BGR32,BGR24 |
578 | |
10264 | 579 videocodec ffv1 |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
580 info "FFV1 (lossless codec)" |
10264 | 581 status working |
582 fourcc FFV1 | |
583 driver ffmpeg | |
584 dll ffv1 | |
585 out 411P,444P,422P,YV12,I420,IYUV,YVU9 | |
11354 | 586 out BGR32 |
587 | |
12902 | 588 videocodec ffsnow |
589 info "FFSNOW (Michael's wavelet codec)" | |
590 status working | |
591 fourcc snow,SNOW | |
592 driver ffmpeg | |
593 dll snow | |
594 out YV12 | |
595 | |
10131 | 596 videocodec ffasv1 |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
597 info "FFmpeg ASUS V1" |
10131 | 598 status working |
599 fourcc ASV1 | |
600 driver ffmpeg | |
601 dll asv1 | |
602 out YV12,I420,IYUV | |
603 | |
10774 | 604 videocodec ffasv2 |
605 info "FFmpeg ASUS V2" | |
606 status working | |
607 fourcc ASV2 | |
608 driver ffmpeg | |
609 dll asv2 | |
610 out YV12,I420,IYUV | |
611 | |
10465 | 612 videocodec ffvcr1 |
613 info "FFmpeg ATI VCR1" | |
614 status working | |
615 fourcc VCR1 | |
616 driver ffmpeg | |
617 dll vcr1 | |
618 out YVU9 | |
619 | |
10479 | 620 videocodec ffcljr |
621 info "FFmpeg Cirrus Logic AccuPak (CLJR)" | |
622 status working | |
623 fourcc CLJR | |
624 driver ffmpeg | |
625 dll cljr | |
10480 | 626 out 411P |
10479 | 627 |
6682
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
628 videocodec ffsvq1 |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
629 info "FFmpeg Sorenson Video v1 (SVQ1)" |
6682
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
630 status working |
12458 | 631 fourcc SVQ1,svq1 |
6682
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
632 driver ffmpeg |
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
633 dll svq1 |
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
634 out YVU9 |
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
635 |
12172 | 636 videocodec ff4xm |
637 info "FFmpeg 4XM video" | |
638 status working | |
639 fourcc 4XMV | |
640 driver ffmpeg | |
641 dll 4xm | |
24230 | 642 out BGR15,BGR16 query |
12173 | 643 |
13780 | 644 videocodec ffvixl |
16327 | 645 info "Miro/Pinnacle VideoXL codec" |
13780 | 646 status working |
647 fourcc VIXL | |
16327 | 648 fourcc PIXL ; this is Pinnacle one |
27353 | 649 fourcc XIXL |
13780 | 650 driver ffmpeg |
651 dll xl | |
652 out 411P | |
653 | |
13825 | 654 videocodec ffqtdrw |
655 info "QuickDraw native decoder" | |
656 status working | |
657 fourcc qdrw | |
658 driver ffmpeg | |
659 dll qdraw | |
22915
1cbc0d439cf3
qdrw changed output format in ffmpeg r8630, sync codecs.conf and require
rtogni
parents:
22908
diff
changeset
|
660 out BGR8 |
13825 | 661 |
15228 | 662 videocodec ffindeo2 |
663 info "Indeo 2 native decoder" | |
664 status working | |
665 fourcc RT21 | |
27612 | 666 fourcc IV20 |
15228 | 667 driver ffmpeg |
668 dll indeo2 | |
669 out YVU9 | |
670 | |
12173 | 671 videocodec ffflv |
672 info "FFmpeg Flash video" | |
673 status working | |
674 fourcc FLV1 | |
675 driver ffmpeg | |
676 dll flv | |
677 out YV12 | |
678 | |
18634 | 679 videocodec fffsv |
680 info "FFmpeg Flash Screen video" | |
681 status working | |
682 fourcc FSV1 | |
683 driver ffmpeg | |
684 dll flashsv | |
685 out BGR24 | |
686 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
687 videocodec ffdivx |
24987 | 688 info "FFmpeg DivX ;-) (MSMPEG-4 v3)" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
689 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
690 fourcc MPG3,mpg3 div3 |
24987 | 691 fourcc MP43,mp43 div3 ; MSMPEG-4 v3 (fourcc mapping to div3) |
27440 | 692 fourcc DIV5,div5 div3 ; DivX 3.20 |
334 | 693 fourcc DIV6,div6 div4 ; -||- |
312 | 694 fourcc DIV3,div3,DIV4,div4 |
27440 | 695 fourcc AP41 div3 ; AngelPotion stuff |
7225 | 696 fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax) |
27440 | 697 fourcc 3IVD,3ivd ; divxdoctored files (3ivx.com) |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
698 driver ffmpeg |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
699 dll msmpeg4 |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
700 out YV12,I420,IYUV |
27440 | 701 |
5493 | 702 videocodec ffmp42 |
24987 | 703 info "FFmpeg MSMPEG-4 v2" |
5496 | 704 status working |
5493 | 705 fourcc DIV2,div2 mp42 |
6010 | 706 fourcc MP42,mp42 |
5493 | 707 driver ffmpeg |
708 dll msmpeg4v2 | |
709 out YV12,I420,IYUV | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
710 |
6264 | 711 videocodec ffmp41 |
24987 | 712 info "FFmpeg MSMPEG-4 v1" |
6264 | 713 status working |
714 fourcc DIV1,div1 mpg4 | |
715 fourcc MPG4,mpg4 | |
716 driver ffmpeg | |
717 dll msmpeg4v1 | |
718 out YV12,I420,IYUV | |
719 | |
6460 | 720 videocodec ffwmv1 |
24987 | 721 info "FFmpeg WMV1/WMV7" |
6460 | 722 status working |
723 fourcc WMV1,wmv1 | |
724 driver ffmpeg | |
725 dll wmv1 | |
726 out YV12,I420,IYUV | |
727 | |
8589 | 728 videocodec ffwmv2 |
24987 | 729 info "FFmpeg WMV2/WMV8" |
25014
f97c1739522b
The FFmpeg WMV2 decoder is no longer buggy now that J-frames are supported.
diego
parents:
24995
diff
changeset
|
730 status working |
8589 | 731 fourcc WMV2,wmv2 |
732 driver ffmpeg | |
733 dll wmv2 | |
734 out YV12,I420,IYUV | |
15896 | 735 |
736 videocodec ffwmv3 | |
24987 | 737 info "FFmpeg WMV3/WMV9" |
19289
85b44ad8193a
Enable FFmpeg WMV3 decoder, the binary decoder is still preferred.
diego
parents:
19241
diff
changeset
|
738 status buggy |
15896 | 739 fourcc WMV3,wmv3 |
740 driver ffmpeg | |
741 dll wmv3 | |
742 out YV12,I420,IYUV | |
27440 | 743 |
19666 | 744 videocodec ffvc1 |
24987 | 745 info "FFmpeg WVC1" |
19666 | 746 status buggy |
20413
4223085b673c
Add WMVA FourCC to ffvc1, patch by Peter Lemenkov, lemenkov gmail com.
diego
parents:
20371
diff
changeset
|
747 fourcc WVC1,wvc1,WMVA |
27611 | 748 fourcc vc-1,VC-1 |
19666 | 749 driver ffmpeg |
750 dll vc1 | |
751 out YV12,I420,IYUV | |
752 | |
9867 | 753 videocodec ffh264 |
754 info "FFmpeg H.264" | |
755 status working | |
756 fourcc H264,h264 | |
16329 | 757 fourcc X264,x264 |
21376
f57f9423d6b8
Add another FourCC found in the wild, for example:
rathann
parents:
21362
diff
changeset
|
758 fourcc avc1,AVC1 |
17281 | 759 fourcc davc,DAVC |
9867 | 760 format 0x10000005 |
761 driver ffmpeg | |
762 dll h264 | |
763 out YV12,I420,IYUV | |
764 | |
10085 | 765 videocodec ffsvq3 |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
766 info "FFmpeg Sorenson Video v3 (SVQ3)" |
10085 | 767 status working |
768 fourcc SVQ3 | |
769 driver ffmpeg | |
770 dll svq3 | |
771 out YV12,I420,IYUV | |
772 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
773 videocodec ffodivx |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
774 info "FFmpeg MPEG-4" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
775 status working |
14766 | 776 fourcc FMP4,fmp4 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
777 fourcc DIVX,divx |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
778 fourcc DIV1,div1 divx |
27440 | 779 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
6010 | 780 fourcc M4S2,m4s2 |
8093 | 781 fourcc xvid,XVID,XviD,XVIX |
11611 | 782 fourcc DX50,dx50,BLZ0 DX50 |
12172 | 783 fourcc mp4v,MP4V |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
784 format 0x4 |
7384 | 785 fourcc UMP4 |
17649
a6a8b4287538
Support MPEG-4 files with RMP4 fourcc, fixes greenlines.rmp4.p.avi.
diego
parents:
17629
diff
changeset
|
786 fourcc RMP4 |
27440 | 787 fourcc 3IV2,3iv2 ; 3ivx Delta 4 |
14835
056446159745
Yet another fourcc for mpeg-4 (files should be made with Xvid)
rtognimp
parents:
14833
diff
changeset
|
788 fourcc DXGM |
16825
657f55c92d4c
Support for video files created by Samsung Miniket VP-M100 diskless camcorder
iive
parents:
16796
diff
changeset
|
789 fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110 |
17329 | 790 fourcc SMP4,smp4 ; Samsung SMP4 video codec |
26969 | 791 fourcc VIDM ; vidm 4.01 codec |
9069
0d2b25a821c9
raw mpeg4-es support (you need to set -fps manually!)
arpi
parents:
9065
diff
changeset
|
792 format 0x10000004 ; mpeg 4 es |
27612 | 793 fourcc m4cc,M4CC |
794 fourcc hdx4,HDX4 | |
795 fourcc FVFW,fvfw | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
796 driver ffmpeg |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
797 dll mpeg4 ;opendivx |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
798 out YV12,I420,IYUV |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
799 |
14306 | 800 videocodec ffwv1f |
801 info "WV1F MPEG-4" | |
802 status working | |
803 fourcc WV1F | |
804 driver ffmpeg | |
805 dll mpeg4 | |
806 out YV12,I420,IYUV flip | |
807 | |
27307
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
808 videocodec fflibschroedinger |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
809 info "Dirac (through FFmpeg libschroedinger)" |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
810 status working |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
811 fourcc drac |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
812 driver ffmpeg |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
813 dll libschroedinger |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
814 out I420,IYUV,422P,444P |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
815 |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
816 videocodec fflibdirac |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
817 info "Dirac (through FFmpeg libdirac)" |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
818 status working |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
819 fourcc drac |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
820 driver ffmpeg |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
821 dll libdirac |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
822 out I420,IYUV,422P,444P |
b9af28b39daf
Add Dirac video support via libdirac and libschroedinger in libavcodec.
diego
parents:
27245
diff
changeset
|
823 |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
824 videocodec xvid |
26908
13061a6174b6
Change spelling of XviD to Xvid as has already been done in the (rest of the)
diego
parents:
26883
diff
changeset
|
825 info "Xvid (MPEG-4)" |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
826 status working |
22472 | 827 fourcc FMP4,fmp4 |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
828 fourcc DIVX,divx |
22472 | 829 fourcc xvid,XVID,XviD,XVIX |
830 fourcc DIV1,div1 divx | |
831 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 | |
832 fourcc M4S2,m4s2 | |
833 fourcc DX50,dx50,BLZ0 DX50 | |
834 fourcc mp4v,MP4V | |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
835 format 0x4 |
22472 | 836 fourcc UMP4 |
837 fourcc RMP4 | |
838 fourcc 3IV2,3iv2 ; 3ivx Delta 4 | |
839 fourcc DXGM | |
840 fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110 | |
841 fourcc SMP4,smp4 ; Samsung SMP4 video codec | |
26969 | 842 fourcc VIDM ; vidm 4.01 codec |
22472 | 843 format 0x10000004 ; mpeg 4 es |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
844 driver xvid |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
845 out YV12 |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
846 out I420 |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
847 out YUY2 |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
848 out UYVY |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
849 out YVYU |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
850 out BGR32,BGR24,BGR16,BGR15 |
8209 | 851 dll "libxvidcore.a" |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
852 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
853 ; is divx4vfw stable enough, working everywhere and faster than divxds? |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
854 |
2088 | 855 videocodec divx4vfw |
6584 | 856 info "DivX4Windows-VFW" |
5521 | 857 status buggy |
858 comment "sig11 with -framedrop" | |
2088 | 859 fourcc DIVX,divx ; opendivx / divx4 |
860 fourcc DIV1,div1 divx | |
27440 | 861 ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
2088 | 862 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! |
27440 | 863 fourcc AP41 DIV3 ; AngelPotion stuff |
2088 | 864 format 0x4 |
865 driver vfw | |
866 dll "divx.dll" | |
867 ; out YV12 ; buggy | |
868 out YUY2 | |
869 out BGR32,BGR24,BGR15 | |
870 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
871 ; the original ones... prefer DShow for postprocessing: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
872 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
873 videocodec divxds |
24987 | 874 info "DivX ;-) (MSMPEG-4 v3)" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
875 comment "with postprocessing" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
876 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
877 fourcc MP43,mp43 div3 ; fourcc mapping to div3 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
878 fourcc DIV5,div5 div3 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
879 fourcc DIV6,div6 div4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
880 fourcc DIV3,div3,DIV4,div4 |
27440 | 881 fourcc AP41 div3 ; AngelPotion stuff |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
882 driver dshow |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
883 dll "divx_c32.ax" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
884 guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa |
6528 | 885 out YUY2,UYVY |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
886 out BGR32,BGR24,BGR16,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
887 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
888 videocodec divx |
24987 | 889 info "DivX ;-) (MSMPEG-4 v3)" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
890 status working |
24987 | 891 fourcc MP43,mp43 div3 ; MSMPEG-4 v3 (fourcc mapping to div3) |
27440 | 892 fourcc DIV5,div5 div3 ; DivX 3.20 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
893 fourcc DIV6,div6 div4 ; -||- |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
894 fourcc DIV3,div3,DIV4,div4 |
27440 | 895 fourcc AP41 div3 ; AngelPotion stuff |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
896 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
897 dll "divxc32.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
898 out YUY2 yuvhack |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
899 out BGR32,BGR24,BGR15 |
27440 | 900 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
901 ; hmm. we should check, maybe these are/will be playable with libavcodec: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
902 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
903 videocodec mpeg4ds |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
904 info "Microsoft MPEG-4 v1/v2" |
1453 | 905 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
906 comment "with postprocessing" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
907 fourcc DIV2,div2 mp42 |
27440 | 908 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
909 fourcc MPG4,mpg4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
910 fourcc MP42,mp42 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
911 driver dshow |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
912 dll "mpg4ds32.ax" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
913 guid 0x82CCD3E0, 0xF71A, 0x11D0, 0x9F, 0xE5, 0x00, 0x60, 0x97, 0x78, 0xEA, 0x66 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
914 out YUY2 |
16098 | 915 ; out BGR32,BGR24,BGR16,BGR15 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
916 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
917 videocodec mpeg4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
918 info "Microsoft MPEG-4 v1/v2" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
919 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
920 fourcc MPG4,mpg4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
921 fourcc MP42,mp42 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
922 fourcc DIV2 mp42 |
1453 | 923 driver vfw |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
924 dll "mpg4c32.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
925 out YUY2 yuvhack |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
926 out BGR32,BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
927 |
8296 | 928 videocodec wmv9dmo |
929 info "Windows Media Video 9 DMO" | |
930 status working | |
931 fourcc WMV3 | |
13598
7a626d236929
Windows Media Image (WMVP) can be decoded with WMV9 dmo codec
rtognimp
parents:
13440
diff
changeset
|
932 fourcc WMVP |
8296 | 933 driver dmo |
934 dll "wmv9dmod.dll" | |
935 guid 0x724bb6a4, 0xe526, 0x450f, 0xaf, 0xfa, 0xab, 0x9b, 0x45, 0x12, 0x91, 0x11 | |
936 out YV12 ;,I420,IYUV | |
937 out YUY2,UYVY | |
16098 | 938 ; out BGR32,BGR24,BGR16 ;,BGR15 |
8296 | 939 |
940 videocodec wmvdmo | |
941 info "Windows Media Video DMO" | |
942 status working | |
943 fourcc WMV1 | |
944 fourcc WMV2 | |
945 fourcc WMV3 | |
13598
7a626d236929
Windows Media Image (WMVP) can be decoded with WMV9 dmo codec
rtognimp
parents:
13440
diff
changeset
|
946 fourcc WMVP |
8296 | 947 driver dmo |
948 dll "wmvdmod.dll" | |
949 guid 0x82d353df, 0x90bd, 0x4382, 0x8b, 0xc2, 0x3f, 0x61, 0x92, 0xb7, 0x6e, 0x34 | |
950 out YV12 ;,I420,IYUV | |
951 out YUY2,UYVY | |
16098 | 952 ; out BGR32,BGR24,BGR16 ;,BGR15 |
8296 | 953 |
24995
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
954 videocodec wmv8 |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
955 info "Windows Media Video 8" |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
956 status working |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
957 fourcc WMV2 |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
958 driver dshow |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
959 dll "wmv8ds32.ax" |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
960 guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
961 out YV12,I420,IYUV |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
962 out YUY2,UYVY |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
963 ; out BGR32,BGR24,BGR16,BGR15 |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
964 |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
965 videocodec wmv7 |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
966 info "Windows Media Video 7" |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
967 status working |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
968 fourcc WMV1 |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
969 driver dshow |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
970 dll "wmvds32.ax" |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
971 guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
972 out YUY2,UYVY |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
973 ; out BGR32,BGR24,BGR16,BGR15 |
e52b23ec0bba
Prefer DMO Windows Media codecs over the DShow ones. They are considerably
diego
parents:
24987
diff
changeset
|
974 |
13745
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
975 videocodec wmvadmo |
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
976 info "Windows Media Video Adv DMO" |
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
977 status working |
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
978 fourcc WMVA |
13942 | 979 fourcc WVP2 |
13745
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
980 driver dmo |
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
981 dll "wmvadvd.dll" |
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
982 guid 0x03be3ac4, 0x84b7, 0x4e0e, 0xa7, 0x8d, 0xd3, 0x52, 0x4e, 0x60, 0x39, 0x5a |
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
983 out YV12 ;,I420,IYUV |
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
984 out YUY2,UYVY |
16098 | 985 ; out BGR32,BGR24,BGR16 ;,BGR15 |
13745
3db10035d297
Windows media video advanced profile (wmva) support via binary codec
rtognimp
parents:
13740
diff
changeset
|
986 |
18580
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
987 videocodec wmvvc1dmo |
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
988 info "Windows Media Video (VC-1) Advanced Profile Decoder" |
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
989 status working |
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
990 fourcc WVC1 |
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
991 driver dmo |
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
992 dll "wvc1dmod.dll" |
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
993 guid 0xc9bfbccf, 0xe60e, 0x4588, 0xa3, 0xdf, 0x5a, 0x03, 0xb1, 0xfd, 0x95, 0x85 |
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
994 out YV12,YUY2 |
d444160ee47c
Support WVC1 decoding via dmo binary codec wvc1dmod.dll
rtogni
parents:
18526
diff
changeset
|
995 |
13750
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
996 videocodec wmsdmod |
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
997 info "Windows Media Screen Codec 2" |
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
998 status working |
13929 | 999 fourcc MSS1 |
13750
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
1000 fourcc MSS2 |
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
1001 driver dmo |
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
1002 dll "wmsdmod.dll" |
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
1003 guid 0x7bafb3b1, 0xd8f4, 0x4279, 0x92, 0x53, 0x27, 0xda, 0x42, 0x31, 0x08, 0xde |
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
1004 out BGR32,BGR24,BGR16 |
62e739558f5c
Support WMV Screen Codec 2 (MSS2) with binary codec
rtognimp
parents:
13748
diff
changeset
|
1005 |
5771 | 1006 videocodec ubmp4 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1007 info "UB Video MPEG-4" |
8209 | 1008 comment "black&white" |
5771 | 1009 status buggy |
6893 | 1010 fourcc mp4v UMP4 ; black&white, sometimes buggy too |
5771 | 1011 fourcc UMP4 |
1012 driver vfw | |
1013 dll "ubvmp4d.dll" | |
1014 out I420 | |
1015 out UYVY | |
1016 | |
1017 | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1018 ; MJPEG: |
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1019 ; Notes: m3jpeg+mjpeg are MMX optimized. avid is very stable but slow. |
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1020 ; ijpg only decodes JPEG images (no MJPEG), and slow. |
8064 | 1021 ; Update: ffmjpeg is almost perfect (and optimized) now, prefer it to others. |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1022 |
11389 | 1023 videocodec zrmjpeg |
1024 info "Zoran MJPEG passthrough" | |
1025 status buggy | |
1026 fourcc MJPG,jpeg | |
1027 driver zrmjpeg | |
1028 out ZRMJPEGNI,ZRMJPEGIT,ZRMJPEGIB query | |
1029 | |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1030 videocodec ffmjpeg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1031 info "FFmpeg MJPEG decoder" |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1032 status working |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1033 fourcc MJPG,mjpg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1034 fourcc AVRn,AVDJ ; AVID |
27355 | 1035 fourcc ADJV ; Avid Motion JPEG |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1036 fourcc jpeg ; MOV Photo-JPEG |
8336
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
1037 fourcc mjpa ; Apple MJPEG-A (Quicktime) |
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
1038 fourcc JFIF ; SMJPEG (Loki) |
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
1039 fourcc ijpg,IJPG ; -mf type=jpeg |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1040 fourcc JPEG ; SGI's AVI Photo-JPEG |
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1041 fourcc JPGL ; lossless JPEG (pegasus codec) |
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1042 fourcc LJPG ; lossless JPEG |
15648 | 1043 fourcc dmb1 ; MJPEG by Matrox Rainbow Runner |
27610 | 1044 fourcc MJLS ; JPEG-LS custom FOURCC for avi - encoder |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1045 driver ffmpeg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1046 dll mjpeg |
8064 | 1047 out 444P |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1048 out 422P |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1049 out YUY2 ; queried (conversion from yuv422p) |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1050 out YV12,I420,IYUV |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1051 out BGR32 ; lossless JPEG |
21553 | 1052 out RGB24 ; JPEG-LS |
17561 | 1053 out Y800 |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1054 |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1055 videocodec ffmjpegb |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1056 info "FFmpeg MJPEG-B decoder" |
13800 | 1057 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1058 fourcc mjpb ; Apple MJPEG-B (Quicktime) |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1059 driver ffmpeg |
11316 | 1060 dll mjpegb |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1061 out 444P |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1062 out 422P |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1063 out YUY2 ; queryed (conversion from yuv422p) |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1064 out YV12,I420,IYUV |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1065 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1066 ; slow. usable only for standalone JPEGs, like -mf, avid or Photo-JPEG: |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1067 videocodec ijpg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1068 info "Independent JPEG Group's codec" |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1069 status working |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1070 fourcc ijpg,IJPG ; -mf type=jpeg |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1071 fourcc jpeg ; MOV Photo-JPEG |
8336
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
1072 fourcc AVRn,AVDJ ; AVID |
18179
3628371ad165
We now have CJPG samples and they work with the CJPG and ijpg decoders.
diego
parents:
18134
diff
changeset
|
1073 fourcc CJPG |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1074 driver ijpg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1075 dll libjpeg |
25668 | 1076 out RGB24,Y8 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1077 |
5914 | 1078 ; http://www.morgan-multimedia.com/dev/codec_spec.htm |
5771 | 1079 videocodec m3jpeg |
2877 | 1080 info "Morgan Motion JPEG Codec" |
1081 status working | |
1082 fourcc MJPG | |
1083 fourcc mjpa,mjpb,mjpg MJPG ; MOV files | |
4366 | 1084 fourcc dmb1 MJPG ; MJPEG by Matrox Rainbow Runner |
2877 | 1085 driver vfw |
1086 dll "m3jpeg32.dll" | |
6528 | 1087 ; out YV12,I420 |
1088 out YUY2,UYVY | |
2877 | 1089 out BGR32,BGR24,BGR15 |
1090 | |
1453 | 1091 videocodec mjpeg |
2877 | 1092 info "MainConcept Motion JPEG" |
1453 | 1093 status working |
1094 fourcc MJPG | |
2675 | 1095 fourcc mjpa,mjpb,mjpg MJPG ; MOV files |
5803
4febd266489c
AVID is buggy (image shifted/scaled?) with mainconcept codec
arpi
parents:
5799
diff
changeset
|
1096 ; fourcc AVRn,AVDJ MJPG ; AVID (sometimes buggy) |
1453 | 1097 driver vfw |
1098 dll "mcmjpg32.dll" | |
6528 | 1099 out YUY2,UYVY |
1453 | 1100 out BGR32,BGR24,BGR15 |
1101 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1102 videocodec avid |
6584 | 1103 info "AVID Motion JPEG" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1104 status working |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
1105 comment "slooooooooow but stable" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1106 fourcc AVRn |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1107 fourcc AVDJ AVRn |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1108 fourcc MJPG,mjpg AVRn |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1109 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1110 dll "AvidAVICodec.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1111 out BGR24 flip |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
1112 |
5748 | 1113 videocodec LEAD |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1114 info "LEAD (M)JPEG" |
5748 | 1115 status working |
1116 comment "supports interlaced MJPEG" | |
1117 fourcc MJPG | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1118 fourcc jpeg MJPG ; MOV Photo-JPEG |
12050
96336c83b249
Add LEAD fourcc, patch by adland < adland123 (at) yahoo (dot) com >
rtognimp
parents:
12042
diff
changeset
|
1119 fourcc LEAD |
5748 | 1120 driver vfw |
1121 dll "LCodcCMP.dll" | |
1122 out BGR24,BGR15 | |
1123 | |
8320 | 1124 videocodec imagepower |
1125 info "ImagePower MJPEG2000" | |
1126 status buggy | |
1127 fourcc IPJ2 | |
1128 driver vfw | |
1129 dll "jp2avi.dll" | |
1130 out BGR32,BGR24,BGR15 | |
1131 | |
1132 videocodec m3jpeg2k | |
1133 info "Morgan MJPEG2000" | |
1134 status working | |
1135 fourcc MJ2C | |
27609 | 1136 fourcc MJP2 |
8320 | 1137 driver vfw |
1138 dll "m3jp2k32.dll" | |
1139 out YV12,I420,IYUV | |
1140 out YUY2,UYVY | |
1141 out BGR32,BGR24,BGR15 | |
1142 | |
5914 | 1143 ; http://www.morgan-multimedia.com/dev/directshow_dec_spec.htm |
5771 | 1144 videocodec m3jpegds |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1145 info "Morgan MJPEG" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1146 status crashing |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1147 fourcc MJPG mjpg |
5767 | 1148 fourcc mjpa,mjpb,mjpg mjpg ; MOV files |
1149 fourcc dmb1 mjpg ; MJPEG by Matrox Rainbow Runner | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1150 driver dshow |
5537 | 1151 dll "m3jpegdec.ax" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1152 guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68 |
5914 | 1153 out I420 |
6528 | 1154 out YUY2,UYVY |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1155 out BGR32,BGR24,BGR16,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1156 |
5767 | 1157 videocodec pegasusm |
1158 info "Pegasus Motion JPEG" | |
8209 | 1159 status crashing |
5767 | 1160 fourcc MJPG |
1161 driver vfw | |
27440 | 1162 ; dll "pvmjpg20.dll" ; v2.0 |
1163 dll "pvmjpg21.dll" ; v2.1 | |
5767 | 1164 out BGR24 flip |
1165 | |
1166 videocodec pegasusl | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1167 info "Pegasus lossless JPEG" |
8209 | 1168 status crashing |
5767 | 1169 fourcc JPGL |
1170 fourcc MJPG JPGL | |
1171 driver vfw | |
1172 dll "pvljpg20.dll" | |
1173 out BGR24 flip | |
1174 | |
1175 videocodec pegasusmwv | |
1176 info "Pegasus Motion Wavelet 2000" | |
8209 | 1177 status crashing |
5767 | 1178 fourcc PVW2 |
1179 driver vfw | |
1180 dll "pvwv220.dll" | |
1181 out BGR24 flip | |
1182 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1183 ; h263: - I don't know. comments? |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1184 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1185 videocodec vivo |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1186 info "Vivo H.263" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1187 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1188 fourcc VIVO,vivo vivo |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1189 fourcc viv1,viv2 vivo |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1190 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1191 dll "ivvideo.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1192 out BGR32,BGR24,BGR15 flip |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1193 in BGR24 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1194 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1195 videocodec u263 |
5914 | 1196 info "UB Video H.263/H.263+/H.263++ Decoder" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1197 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1198 fourcc U263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1199 fourcc vivo,VIVO U263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1200 fourcc viv1 U263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1201 driver dshow |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1202 dll "ubv263d+.ax" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1203 guid 0x00af1181, 0x6ebb, 0x11d4, 0x9d, 0x5a, 0x00, 0x50, 0x04, 0x79, 0x6c, 0xc0 |
5914 | 1204 ; out UYVY |
1205 ; BGR32,BGR16,BGR15 seems to work too | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1206 out BGR24 flip |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1207 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1208 videocodec i263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1209 info "I263" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1210 status working |
9065 | 1211 fourcc I263,i263 |
1212 ; fourcc I420,i420 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1213 fourcc vivo,VIVO I263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1214 fourcc viv1 I263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1215 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1216 dll "i263_32.drv" |
5914 | 1217 out I420 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1218 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1219 out BGR32,BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1220 |
1453 | 1221 videocodec ffi263 |
1222 info "FFmpeg I263 decoder" | |
1223 status working | |
1224 fourcc I263,i263 | |
1225 driver ffmpeg | |
1226 dll h263i | |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1227 out YV12,I420,IYUV |
1453 | 1228 |
1229 videocodec ffh263 | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1230 info "FFmpeg H.263+ decoder" |
1526 | 1231 status working |
17143
6e44a1e05769
M263 (M$ h263) can be decoded by lavc H.263 decoder
rtognimp
parents:
17009
diff
changeset
|
1232 fourcc H263,U263,h263,X263,M263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
1233 fourcc viv1 h263 |
27356 | 1234 fourcc s263,S263 |
1235 fourcc D263 ; DEC H263 | |
1236 fourcc L263 ; Lead H263 | |
27612 | 1237 fourcc ILVR ; ITU H263+ |
1453 | 1238 driver ffmpeg |
1239 dll h263 | |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1240 out YV12,I420,IYUV |
1453 | 1241 |
11320 | 1242 videocodec ffzygo |
1243 info "FFmpeg ZyGo" | |
1244 status untested | |
1245 fourcc ZyGo | |
1246 driver ffmpeg | |
1247 dll h263 | |
1248 out YV12,I420,IYUV flip | |
1249 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1250 videocodec h263xa |
6584 | 1251 info "XAnim's CCITT H.263" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
1252 status crashing |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1253 fourcc H263,h263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1254 fourcc viv1 H263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1255 fourcc VIVO,vivo H263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1256 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1257 dll "vid_h263.xa" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1258 out YV12,IYUV,I420 |
3969 | 1259 |
13083 | 1260 videocodec ffh261 |
1261 info "CCITT H.261" | |
1262 status working | |
1263 fourcc H261,h261 | |
1264 driver ffmpeg | |
1265 dll h261 | |
1266 out YV12 | |
1267 | |
19394 | 1268 videocodec qt261 |
1269 info "QuickTime H.261 video decoder" | |
1270 status working | |
1271 fourcc H261,h261 | |
1272 driver qtvideo | |
1273 dll "QuickTime.qts" | |
1274 out YUY2 | |
1275 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1276 videocodec h261xa |
6584 | 1277 info "XAnim's CCITT H.261" |
13929 | 1278 status buggy |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1279 fourcc H261,h261 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1280 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1281 dll "vid_h261.xa" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1282 out YV12,IYUV,I420 |
4656 | 1283 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1284 videocodec m261 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1285 info "M261" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1286 status untested |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1287 fourcc m261,M261 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1288 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1289 dll "msh261.drv" |
4615
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
1290 out BGR32,BGR24,BGR15 |
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
1291 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1292 ; Indeo: |
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1293 ; Note: Indeo 3 is buggy, both XAnim (bad decoding) and VfW (fails with DR) |
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1294 ; Prefer win32 ones, they are faster, and 4/5 can DR. For fallback, there are |
5442 | 1295 ; Xanim codecs, they provide YV12, useful for YUV display or encoding. |
1938 | 1296 |
334 | 1297 videocodec indeo5ds |
1298 info "Intel Indeo 5" | |
796 | 1299 status working |
334 | 1300 fourcc IV50,iv50 |
1301 driver dshow | |
1302 dll "ir50_32.dll" | |
1303 guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 | |
6528 | 1304 out YV12,IYUV,I420 |
1305 out YUY2,UYVY | |
334 | 1306 out BGR32,BGR24,BGR16,BGR15 |
1307 | |
346 | 1308 videocodec indeo5 |
1309 info "Intel Indeo 5" | |
1310 status working | |
1311 fourcc IV50,iv50 | |
6528 | 1312 driver vfwex |
346 | 1313 dll "ir50_32.dll" |
1358 | 1314 ; out YV12,I420 ; flickering |
346 | 1315 out YUY2 |
1316 out BGR32,BGR24,BGR15 | |
1317 | |
267 | 1318 videocodec indeo4 |
268 | 1319 info "Intel Indeo 4.1" |
746 | 1320 status working |
267 | 1321 fourcc IV41,iv41 |
1322 driver vfw | |
1323 dll "ir41_32.dll" | |
6528 | 1324 out IF09 |
746 | 1325 out BGR24,BGR15 |
6528 | 1326 in YVU9 |
267 | 1327 |
1328 videocodec indeo3 | |
268 | 1329 info "Intel Indeo 3.1/3.2" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1330 status working |
267 | 1331 fourcc IV31,iv31 |
1332 fourcc IV32,iv32 | |
6528 | 1333 driver vfwex |
267 | 1334 dll "ir32_32.dll" |
6528 | 1335 out IF09 |
6104
0fb14001bf06
old vfw codecs don't like double buffering - force static buffer for them
arpi
parents:
6098
diff
changeset
|
1336 out BGR24,BGR15 flip,static |
6528 | 1337 in YVU9 |
267 | 1338 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1339 videocodec indeo5xa |
6584 | 1340 info "XAnim's Intel Indeo 5" |
2675 | 1341 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1342 fourcc IV50,iv50 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1343 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1344 dll "vid_iv50.xa" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
1345 out YVU9 |
267 | 1346 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1347 videocodec indeo4xa |
6584 | 1348 info "XAnim's Intel Indeo 4.1" |
1526 | 1349 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1350 fourcc IV41,iv41 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1351 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1352 dll "vid_iv41.xa" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
1353 out YVU9 |
713 | 1354 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1355 videocodec indeo3xa |
6584 | 1356 info "XAnim's Intel Indeo 3.1/3.2" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1357 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1358 fourcc IV31,iv31 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1359 fourcc IV32,iv32 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1360 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1361 dll "vid_iv32.xa" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
1362 out YVU9 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1363 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1364 ; DV: qdv is more stable... libdv is slow, mcdv is unstable |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
1365 |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1366 videocodec qdv |
334 | 1367 info "Sony Digital Video (DV)" |
471 | 1368 status working |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1369 fourcc dvsl,dvsd,dvhd ; ???? |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1370 fourcc DVSD dvsd ; pal .avi |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1371 fourcc "dvcp" dvsd ; pal .mov |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1372 fourcc "dvc " dvsd ; ntsc .mov |
334 | 1373 driver dshow |
1374 dll "qdv.dll" | |
1375 guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42 | |
1376 out YUY2 | |
471 | 1377 out UYVY |
7312
1d0a877851d8
removed obsolete cyuvxa, completed qpeg, added some extra supported output formats to wmv8, removed bgr32 from dv as its buggy
alex
parents:
7225
diff
changeset
|
1378 out BGR24,BGR16,BGR15 ; BGR32 is buggy, at least with one sample |
334 | 1379 |
7601 | 1380 videocodec ffdv |
8209 | 1381 info "FFmpeg DV decoder" |
7667 | 1382 status working |
22617
3652d2628218
add cdvc fourcc to ffdv , works on /incoming/video_format_0x43564443.avi
compn
parents:
22472
diff
changeset
|
1383 fourcc CDVC,cdvc |
7601 | 1384 fourcc DVSD,dvsd ; PAL |
1385 fourcc DVCS,dvcs ; NTSC ? | |
1386 fourcc "dvcp" ; PAL DV in .mov | |
1387 fourcc "dvc " ; NTSC DV in .mov | |
17629
2cee40108bbd
Add some more fourcc for DV and MPEG2 needed for some mov samples posted
rtognimp
parents:
17604
diff
changeset
|
1388 fourcc dvpp ; DVCPRO - PAL |
25921
b071a2aec687
Add dv50 fourcc to libdv and ffdv, fixing the following sample:
diego
parents:
25668
diff
changeset
|
1389 fourcc dv50 ; DVCPRO 50 |
26303
adb06ce0dad9
add dvcpro 50 in mov fourcc, patch by j _ta_ v2v.cc
compn
parents:
26240
diff
changeset
|
1390 fourcc dv5n ; DVCPRO 50 NTSC in .mov |
adb06ce0dad9
add dvcpro 50 in mov fourcc, patch by j _ta_ v2v.cc
compn
parents:
26240
diff
changeset
|
1391 fourcc dv5p ; DVCPRO 50 PAL in .mov |
27609 | 1392 fourcc AVdv,AVd1 |
1393 fourcc dvhq,dvhp | |
1394 fourcc dvh5,dvh6,dvh3 | |
27610 | 1395 fourcc dvhd,dvsl,dv25 |
7601 | 1396 driver ffmpeg |
1397 dll dvvideo | |
20371 | 1398 out 411P,422P,YV12 |
7601 | 1399 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1400 videocodec libdv |
8209 | 1401 info "Raw DV decoder (libdv)" |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1402 status working |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1403 fourcc DVSD,dvsd ; PAL |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1404 fourcc DVCS,dvcs ; NTSC ? |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1405 fourcc "dvcp" ; PAL DV in .mov |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1406 fourcc "dvc " ; NTSC DV in .mov |
17629
2cee40108bbd
Add some more fourcc for DV and MPEG2 needed for some mov samples posted
rtognimp
parents:
17604
diff
changeset
|
1407 fourcc dvpp ; DVCPRO - PAL |
25921
b071a2aec687
Add dv50 fourcc to libdv and ffdv, fixing the following sample:
diego
parents:
25668
diff
changeset
|
1408 fourcc dv50 ; DVCPRO 50 |
26303
adb06ce0dad9
add dvcpro 50 in mov fourcc, patch by j _ta_ v2v.cc
compn
parents:
26240
diff
changeset
|
1409 fourcc dv5n ; DVCPRO 50 NTSC in .mov |
adb06ce0dad9
add dvcpro 50 in mov fourcc, patch by j _ta_ v2v.cc
compn
parents:
26240
diff
changeset
|
1410 fourcc dv5p ; DVCPRO 50 PAL in .mov |
27609 | 1411 fourcc AVdv,AVd1 ; AVID DV |
1412 fourcc dvhq,dvhp | |
1413 fourcc dvh5,dvh6,dvh3 | |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1414 driver libdv |
8209 | 1415 dll libdv.so.2 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1416 out YUY2 |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1417 |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1418 ; note: it crashes with pond.dv :( |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1419 videocodec mcdv |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1420 info "MainConcept DV Codec" |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1421 status working |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1422 fourcc DVSD,dvsd ; PAL |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1423 fourcc DVCS,dvcs ; NTSC ? |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1424 fourcc CDVC,cdvc ; ??? |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1425 fourcc "dvcp" dvsd ; PAL DV in .mov |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1426 fourcc "dvc " dvcs ; NTSC DV in .mov |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1427 driver vfw |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1428 dll "mcdvd_32.dll" |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1429 out YUY2 |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1430 out UYVY |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1431 out BGR32,BGR24,BGR15 |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1432 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1433 ; 3ivx: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1434 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1435 videocodec 3ivXxa |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1436 info "XAnim's 3ivx Delta 3.5 plugin" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1437 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1438 fourcc 3IV1 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1439 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1440 dll "vid_3ivX.xa" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1441 out YV12,IYUV,I420 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1442 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1443 videocodec 3ivX |
22367
97639699240b
Update 3ivx decoder to latest version and allow it to load required library.
voroshil
parents:
22366
diff
changeset
|
1444 info "3ivx Delta 4.5" |
97639699240b
Update 3ivx decoder to latest version and allow it to load required library.
voroshil
parents:
22366
diff
changeset
|
1445 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1446 fourcc 3IV1 |
334 | 1447 driver dshow |
22367
97639699240b
Update 3ivx decoder to latest version and allow it to load required library.
voroshil
parents:
22366
diff
changeset
|
1448 dll "3ivxDSDecoder.ax" ; 3ivx.dll is also required |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1449 guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1450 out YV12 |
334 | 1451 out YUY2 |
1452 out BGR32,BGR24,BGR16,BGR15 | |
1453 | |
17543
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1454 ; RealVideo variants |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1455 |
14580
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1456 videocodec rv3040 |
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1457 info "Linux RealPlayer 10 RV30/40 decoder" |
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1458 status working |
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1459 fourcc RV30,rv30 |
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1460 fourcc RV40,rv40 |
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1461 driver realvid |
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1462 dll "drvc.so" |
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1463 out I420 |
5becfc1e6c16
Add support for the Linux RealPlayer 10 RV30/40 codec.
diego
parents:
14498
diff
changeset
|
1464 |
22908 | 1465 videocodec rv3040win |
1466 info "Win32 RealPlayer 10 RV30/40 decoder" | |
1467 status working | |
1468 fourcc RV30,rv30 | |
1469 fourcc RV40,rv40 | |
1470 driver realvid | |
1471 dll "drvc.dll" | |
1472 out I420 | |
1473 | |
6983 | 1474 videocodec rv40 |
1475 info "Linux RealPlayer 9 RV40 decoder" | |
1476 status working | |
1477 fourcc RV40,rv40 | |
1478 driver realvid | |
1479 dll "drv4.so.6.0" | |
1480 out I420 | |
1481 | |
8527 | 1482 videocodec rv40win |
1483 info "Win32 RealPlayer 9 RV40 decoder" | |
1484 status working | |
1485 fourcc RV40,rv40 | |
1486 driver realvid | |
1487 dll "drv43260.dll" | |
1488 out I420 | |
8526
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1489 |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1490 videocodec rv40mac |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1491 info "Mac OS X RealPlayer 9 RV40 decoder" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1492 status working |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1493 fourcc RV40,rv40 |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1494 driver realvid |
13860
d6f716fdd734
remove mac shlb support to use new helix codec for realvideo support on osx
nplourde
parents:
13825
diff
changeset
|
1495 dll "drvc.bundle/Contents/MacOS/drvc" |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1496 out I420 |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1497 |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1498 videocodec rv30 |
6584 | 1499 info "Linux RealPlayer 8 RV30 decoder" |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1500 status working |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1501 fourcc RV30,rv30 |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1502 driver realvid |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1503 dll "drv3.so.6.0" |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1504 out I420 |
5749 | 1505 |
6375 | 1506 videocodec rv30win |
6584 | 1507 info "Win32 RealPlayer 8 RV30 decoder" |
8526
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1508 status working |
6375 | 1509 fourcc RV30,rv30 |
1510 driver realvid | |
1511 dll "drv33260.dll" | |
1512 out I420 | |
1513 | |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1514 videocodec rv30mac |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1515 info "Mac OS X RealPlayer 9 RV30 decoder" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1516 status working |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1517 fourcc RV30,rv30 |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1518 driver realvid |
13860
d6f716fdd734
remove mac shlb support to use new helix codec for realvideo support on osx
nplourde
parents:
13825
diff
changeset
|
1519 dll "drvc.bundle/Contents/MacOS/drvc" |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1520 out I420 |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1521 |
17543
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1522 videocodec ffrv20 |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1523 info "FFmpeg RV20 decoder" |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1524 status working |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1525 fourcc RV20,rv20 |
27627 | 1526 fourcc RVTR |
17543
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1527 driver ffmpeg |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1528 dll rv20 |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1529 out YV12,I420,IYUV |
27440 | 1530 |
6346 | 1531 videocodec rv20 |
6584 | 1532 info "Linux RealPlayer 8 RV20 decoder" |
6346 | 1533 status working |
1534 fourcc RV20,rv20 | |
1535 driver realvid | |
1536 dll "drv2.so.6.0" | |
1537 out I420 | |
1538 | |
22908 | 1539 videocodec rv20winrp10 |
1540 info "Win32 RealPlayer 10 RV20 decoder" | |
1541 status working | |
1542 fourcc RV20,rv20 | |
1543 driver realvid | |
1544 dll "drv2.dll" | |
1545 out I420 | |
1546 | |
8526
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1547 videocodec rv20win |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1548 info "Win32 RealPlayer 8 RV20 decoder" |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1549 status working |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1550 fourcc RV20,rv20 |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1551 driver realvid |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1552 dll "drv23260.dll" |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1553 out I420 |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1554 |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1555 videocodec rv20mac |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1556 info "Mac OS X RealPlayer 9 RV20 decoder" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1557 status working |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1558 fourcc RV20,rv20 |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1559 driver realvid |
13860
d6f716fdd734
remove mac shlb support to use new helix codec for realvideo support on osx
nplourde
parents:
13825
diff
changeset
|
1560 dll "drv2.bundle/Contents/MacOS/drv2" |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1561 out I420 |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
1562 |
17543
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1563 videocodec ffrv10 |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1564 info "FFmpeg RV10 decoder" |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1565 status working |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1566 fourcc RV10,rv10 |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1567 fourcc RV13,rv13 |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1568 driver ffmpeg |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1569 dll rv10 |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1570 out YV12,I420,IYUV |
8ddfb75a242e
Move ffrv10 and ffrv20 into RealVideo section, prefer ffrv20 over rv20.
diego
parents:
17542
diff
changeset
|
1571 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1572 ; others: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1573 |
12066
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1574 videocodec alpary |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1575 info "Alparysoft lossless codec dshow" |
12804
0106b9917013
Status updates and comments about other dll required by some codecs
rtognimp
parents:
12735
diff
changeset
|
1576 status working |
12066
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1577 fourcc ASLC |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1578 driver dshow |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1579 dll "aslcodec_dshow.dll" |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1580 guid 0x7f9de066, 0xbf3d, 0x4c17, 0x86, 0xb7, 0x33, 0xe4, 0x3e, 0xbe, 0xae, 0xf0 |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1581 out BGR24 flip |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1582 |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1583 videocodec alpary2 |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1584 info "Alparysoft lossless codec vfw" |
12804
0106b9917013
Status updates and comments about other dll required by some codecs
rtognimp
parents:
12735
diff
changeset
|
1585 status working |
12066
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1586 fourcc ASLC |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1587 driver vfw |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1588 dll "aslcodec_vfw.dll" |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1589 out BGR24 flip |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1590 |
12059
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1591 videocodec LEADMW20 |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1592 info "Lead CMW wavelet 2.0" |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1593 status working |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1594 fourcc LCW2 |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1595 driver dshow |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1596 dll "LCODCCMW2E.dll"; eval also needs LCMW2.dll |
12059
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1597 guid 0xe2b7dc56, 0x38c5, 0x11d5, 0x91, 0xf6, 0x00, 0x10, 0x4b, 0xdb, 0x8f, 0xf9 |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1598 out BGR24,BGR8 flip |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1599 |
25352
c090477234c6
add lagarith codec, someone finally found it in the wild.
compn
parents:
25301
diff
changeset
|
1600 videocodec lagarith |
c090477234c6
add lagarith codec, someone finally found it in the wild.
compn
parents:
25301
diff
changeset
|
1601 info "Lagarith Lossless Video Codec" |
25455 | 1602 comment "http://lags.leetcode.net/codec.html, requires an MMX2 CPU." |
25352
c090477234c6
add lagarith codec, someone finally found it in the wild.
compn
parents:
25301
diff
changeset
|
1603 status working |
c090477234c6
add lagarith codec, someone finally found it in the wild.
compn
parents:
25301
diff
changeset
|
1604 fourcc LAGS |
c090477234c6
add lagarith codec, someone finally found it in the wild.
compn
parents:
25301
diff
changeset
|
1605 driver vfw |
c090477234c6
add lagarith codec, someone finally found it in the wild.
compn
parents:
25301
diff
changeset
|
1606 dll "lagarith.dll" |
c090477234c6
add lagarith codec, someone finally found it in the wild.
compn
parents:
25301
diff
changeset
|
1607 out BGR32,BGR24 flip |
c090477234c6
add lagarith codec, someone finally found it in the wild.
compn
parents:
25301
diff
changeset
|
1608 |
26968 | 1609 videocodec psiv |
1610 info "Infinite Video PSI_V" | |
1611 status working | |
1612 fourcc PSIV | |
1613 driver vfw | |
1614 dll "psiv.dll" | |
1615 out BGR32,BGR24 query,flip | |
1616 | |
26439 | 1617 videocodec canopushq |
1618 status working | |
1619 info "Canopus HQ Codec" | |
26440
9dc0b217fce4
Canopus HQ tries to load the auxiliary dlls with lowercase filename
rtogni
parents:
26439
diff
changeset
|
1620 comment "requires csehqa.dll and cseuvec.dll" |
26439 | 1621 fourcc CUVC |
1622 driver vfw | |
1623 dll "CUVCcodc.dll" | |
1624 out BGR24 | |
1625 | |
1626 videocodec canopusll | |
1627 status working | |
1628 info "Canopus Lossless Codec" | |
1629 comment "requires csellc.dll" | |
1630 fourcc CLLC | |
1631 driver vfw | |
1632 dll "CLLCcodc.dll" | |
1633 out BGR24 | |
1634 | |
10095
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1635 videocodec ffvp3 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1636 info "FFmpeg VP3" |
10095
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1637 status untested |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1638 fourcc VP30,vp30,VP31,vp31 |
10126 | 1639 format 0x20335056 ; "VP3 " (used in .nsv files) |
10095
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1640 driver ffmpeg |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1641 dll "vp3" |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1642 out YV12 |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1643 |
11315
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1644 videocodec fftheora |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1645 info "FFmpeg Theora" |
11315
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1646 status untested |
15823 | 1647 fourcc theo |
1648 fourcc Thra theo | |
11315
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1649 format 0xFFFC |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1650 driver ffmpeg |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1651 dll "theora" |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1652 out YV12 |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1653 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1654 videocodec vp3 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1655 info "On2 Open Source VP3 Codec" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1656 status working |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1657 comment "For SSE-systems use fixed DLL from ftp://mplayerhq.hu/MPlayer/samples/drivers32/" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1658 fourcc VP30,vp30,VP31,vp31 |
6565 | 1659 flags align16 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1660 driver vfwex |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1661 dll "vp31vfw.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1662 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1663 out BGR32,BGR24,BGR15 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
1664 |
10722
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1665 videocodec vp4 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1666 info "On2 VP4 Personal Codec" |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1667 comment "Decodes also VP3" |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1668 status working |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1669 fourcc VP40 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1670 fourcc VP31,VP30,vp31,vp30 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1671 driver vfwex |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1672 dll "vp4vfw.dll" |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1673 out YUY2 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1674 out BGR32,BGR24 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1675 |
19775 | 1676 videocodec ffvp5 |
1677 info "FFmpeg VP5 decoder" | |
1678 status working | |
1679 fourcc VP50 | |
1680 driver ffmpeg | |
1681 dll "vp5" | |
1682 out YV12 | |
1683 | |
12042 | 1684 videocodec vp5 |
1685 info "On2 VP5 Personal Codec" | |
1686 status working | |
1687 fourcc VP50 | |
1688 driver vfwex | |
1689 dll "vp5vfw.dll" | |
1690 out YUY2 | |
1691 out BGR32,BGR24 | |
1692 | |
19775 | 1693 videocodec ffvp6 |
1694 info "FFmpeg VP6 decoder" | |
1695 status working | |
21647 | 1696 fourcc VP60,VP61,VP62 |
19775 | 1697 driver ffmpeg |
1698 dll "vp6" | |
1699 out YV12 | |
1700 | |
27324 | 1701 videocodec ffvp6a |
1702 info "FFmpeg VP6A decoder" | |
1703 status untested | |
1704 fourcc VP6A | |
1705 driver ffmpeg | |
1706 dll "vp6a" | |
1707 out I420,YUY2,YV12 | |
1708 | |
19796 | 1709 videocodec ffvp6f |
1710 info "FFmpeg VP6 Flash decoder" | |
1711 status working | |
1712 fourcc VP6F | |
1713 driver ffmpeg | |
1714 dll "vp6f" | |
1715 out YV12 | |
1716 | |
12042 | 1717 videocodec vp6 |
1718 info "On2 VP6 Personal Codec" | |
1719 status working | |
1720 fourcc VP60,VP61,VP62 | |
24803 | 1721 fourcc VP6F VP60 |
12042 | 1722 driver vfwex |
1723 dll "vp6vfw.dll" | |
1724 out YUY2 | |
1725 out BGR32,BGR24 | |
1726 | |
16338
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1727 videocodec vp7 |
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1728 info "On2 VP7 Personal Codec" |
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1729 status working |
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1730 fourcc VP70 |
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1731 driver vfwex |
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1732 dll "vp7vfw.dll" |
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1733 out YUY2 |
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1734 out BGR32,BGR24 |
cbd034008ee0
Support On2 VP7 via binary decoder by implementing USER32.RegisterClipboardFormatA,
reimar
parents:
16329
diff
changeset
|
1735 |
344 | 1736 videocodec mwv1 |
333 | 1737 info "Motion Wavelets" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1738 status working |
334 | 1739 fourcc MWV1 |
333 | 1740 driver vfw |
1741 dll "icmw_32.dll" | |
5914 | 1742 out BGR24,BGR15 flip |
333 | 1743 |
403 | 1744 videocodec asv2 |
1745 info "ASUS V2" | |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1746 status working |
403 | 1747 fourcc ASV2 |
1748 driver vfw | |
1749 dll "asusasv2.dll" | |
713 | 1750 out UYVY |
1751 out BGR32,BGR24,BGR15 flip | |
1752 | |
1753 videocodec asv1 | |
1754 info "ASUS V1" | |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1755 status working |
713 | 1756 fourcc ASV1 |
1757 driver vfw | |
1758 dll "asusasvd.dll" | |
1759 out UYVY | |
403 | 1760 out BGR32,BGR24,BGR15 flip |
1761 | |
13356 | 1762 videocodec ffultimotion |
1763 info "IBM Ultimotion native decoder" | |
1764 status working | |
1765 fourcc ULTI | |
1766 driver ffmpeg | |
1767 dll "ultimotion" | |
1768 out YVU9 | |
1769 | |
11314 | 1770 videocodec ultimotion |
1771 info "IBM Ultimotion" | |
1772 status working | |
1773 fourcc ULTI | |
1774 driver vfw | |
1775 dll "ultimo.dll" | |
1776 out YUY2,UYVY | |
1777 out BGR32,BGR24,BGR15 flip | |
1778 | |
5749 | 1779 videocodec mss1 |
1780 info "Windows Screen Video" | |
1781 status working | |
1782 fourcc MSS1 | |
1783 driver dshow | |
1784 dll "msscds32.ax" | |
1785 guid 0x3301a7c4, 0x0a8d, 0x11d4, 0x91, 0x4d, 0x00, 0xc0, 0x4f, 0x61, 0x0d, 0x24 | |
1786 out BGR32,BGR24,BGR16,BGR15 | |
1787 | |
1788 ; CLRVIDDC.DLL needed too, with uppercase | |
1789 videocodec ucod | |
1790 info "UCOD-ClearVideo" | |
1791 status working | |
1792 fourcc UCOD | |
1793 driver vfw | |
1794 dll "clrviddd.dll" | |
1795 out BGR32,BGR24,BGR15 flip | |
1796 | |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1797 videocodec vcr2 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1798 info "ATI VCR-2" |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1799 status working |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1800 fourcc VCR2 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1801 driver vfw |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1802 dll "ativcr2.dll" |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1803 out YV12 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1804 out BGR24 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1805 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1806 videocodec CJPG |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1807 info "CJPG" |
18179
3628371ad165
We now have CJPG samples and they work with the CJPG and ijpg decoders.
diego
parents:
18134
diff
changeset
|
1808 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1809 fourcc CJPG |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1810 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1811 dll "CtWbJpg.DLL" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1812 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1813 out UYVY |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1814 out BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1815 |
11554 | 1816 videocodec ffduck |
1817 info "Duck Truemotion1" | |
1818 status working | |
1819 fourcc DUCK | |
1820 driver ffmpeg | |
1821 dll "truemotion1" | |
16964
ecf96c255294
ffmpeg truemotion1 codec now outputs BGR32 for some files
reimar
parents:
16915
diff
changeset
|
1822 out BGR15,BGR16,BGR24,BGR32 query |
11554 | 1823 |
16776
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1824 videocodec fftm20 |
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1825 info "FFmpeg Duck/On2 TrueMotion 2.0" |
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1826 status working |
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1827 fourcc TM20 |
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1828 driver ffmpeg |
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1829 dll truemotion2 |
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1830 out YV12 |
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1831 |
5799 | 1832 ; our BGR15->BGR32 is bad or the DLL? |
1833 videocodec tm20 | |
1834 info "TrueMotion 2.0" | |
1835 status working | |
1836 comment "YUV faulting" | |
1837 fourcc TM20 | |
1838 driver dshow | |
1839 dll "tm20dec.ax" | |
1840 guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84 | |
16776
4044b3e8733a
Add ffmpeg truemotion2 codec, make it default for TM20
rtognimp
parents:
16362
diff
changeset
|
1841 out BGR32,BGR24,BGR16 flip |
5799 | 1842 |
24653 | 1843 videocodec ffamv |
1844 info "Modified MJPEG, used in AMV files" | |
1845 status working | |
1846 fourcc AMVV ; internal MPlayer FourCC | |
1847 driver ffmpeg | |
1848 dll "amv" | |
1849 out YV12 | |
1850 | |
11082 | 1851 videocodec ffsp5x |
1852 info "SP5x codec - used by Aiptek MegaCam" | |
1853 status working | |
1854 fourcc SP53,SP54,SP55,SP56,SP57,SP58 | |
1855 driver ffmpeg | |
1856 dll "sp5x" | |
1857 out YV12 | |
1858 | |
7059 | 1859 videocodec sp5x |
1860 info "SP5x codec - used by Aiptek MegaCam" | |
1861 status working | |
1862 fourcc SP53,SP54,SP55,SP56,SP57,SP58 | |
1863 driver vfw | |
1864 dll "sp5x_32.dll" | |
10381
c21e3bceec16
patch for sp5x video codec by "Philip Court" <pccourt (at) hotmail.com>
attila
parents:
10348
diff
changeset
|
1865 out BGR24,BGR15 flip |
7059 | 1866 |
10818
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1867 videocodec vivd2 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1868 info "SoftMedia ViVD V2 codec VfW" |
10818
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1869 status working |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1870 fourcc GXVE,gxve |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1871 driver vfw |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1872 dll "ViVD2.dll" |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1873 out YUY2,YV12,I420,YVU9 |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1874 out BGR32,BGR24,BGR15 |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1875 |
12735
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1876 videocodec winx |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1877 info "Winnov Videum winx codec" |
12804
0106b9917013
Status updates and comments about other dll required by some codecs
rtognimp
parents:
12735
diff
changeset
|
1878 status working |
12735
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1879 fourcc WINX |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1880 driver vfwex |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1881 dll "wnvwinx.dll" |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1882 out BGR32,BGR24,BGR15 |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1883 |
15021 | 1884 videocodec ffwnv1 |
1885 info "FFmpeg wnv1 native codec" | |
1886 status working | |
1887 fourcc WNV1 | |
1888 driver ffmpeg | |
1889 dll wnv1 | |
1890 out 422P | |
1891 | |
12735
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1892 videocodec wnv1 |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1893 info "Winnov Videum wnv1 codec" |
12804
0106b9917013
Status updates and comments about other dll required by some codecs
rtognimp
parents:
12735
diff
changeset
|
1894 status working |
12735
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1895 fourcc WNV1 |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1896 driver vfwex |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1897 dll "wnvplay1.dll" |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1898 out BGR32,BGR24,BGR15 |
5af0b22d55a6
Support for Winnov Videum WINX and WNV1 codecs with binary dll
rtognimp
parents:
12704
diff
changeset
|
1899 |
13748 | 1900 videocodec vdom |
1901 info "VDOWave codec" | |
1902 status working | |
1903 fourcc VDOM | |
1904 driver vfw | |
1905 dll "vdowave.drv" ; Need also VDODEC32.dll and DECVW_32.DLL | |
1906 out BGR24 | |
1907 | |
13944 | 1908 videocodec lsv |
1909 info "Vianet Lsvx Video Decoder" | |
1910 status working | |
1911 fourcc lsvx | |
1912 fourcc lsvm | |
1913 fourcc lsvc | |
1914 driver vfw | |
1915 dll "lsvxdec.dll" | |
1916 out BGR32,BGR24,BGR16 flip | |
1917 | |
19762 | 1918 videocodec ffvmnc |
1919 info "FFmpeg VMware video" | |
1920 status working | |
1921 fourcc VMnc | |
1922 driver ffmpeg | |
26568 | 1923 dll "vmnc" |
19762 | 1924 out BGR32,BGR15,BGR8 |
1925 | |
15104
209ddda63c46
Support WMware video (fourcc VMnc) via binary dll
rtognimp
parents:
15072
diff
changeset
|
1926 videocodec vmnc |
209ddda63c46
Support WMware video (fourcc VMnc) via binary dll
rtognimp
parents:
15072
diff
changeset
|
1927 info "VMware video" |
209ddda63c46
Support WMware video (fourcc VMnc) via binary dll
rtognimp
parents:
15072
diff
changeset
|
1928 status working |
209ddda63c46
Support WMware video (fourcc VMnc) via binary dll
rtognimp
parents:
15072
diff
changeset
|
1929 fourcc VMnc |
209ddda63c46
Support WMware video (fourcc VMnc) via binary dll
rtognimp
parents:
15072
diff
changeset
|
1930 driver vfw |
209ddda63c46
Support WMware video (fourcc VMnc) via binary dll
rtognimp
parents:
15072
diff
changeset
|
1931 dll "vmnc.dll" |
209ddda63c46
Support WMware video (fourcc VMnc) via binary dll
rtognimp
parents:
15072
diff
changeset
|
1932 out BGR24,BGR15,BGR8 query,flip |
209ddda63c46
Support WMware video (fourcc VMnc) via binary dll
rtognimp
parents:
15072
diff
changeset
|
1933 |
18526 | 1934 videocodec ffsmkvid |
1935 info "FFmpeg Smacker Video" | |
1936 status working | |
1937 fourcc SMK2 | |
1938 fourcc SMK4 | |
1939 out BGR8 | |
1940 driver ffmpeg | |
1941 dll "smackvid" | |
1942 | |
19238 | 1943 videocodec ffcavs |
1944 info "Chinese AVS Video" | |
22952
73a4fa72d04a
Convert source comments into proper codecs.conf entry comments.
diego
parents:
22918
diff
changeset
|
1945 comment "only works with libavformat demuxer" |
19238 | 1946 status working |
1947 fourcc CAVS | |
27609 | 1948 fourcc avs2 |
19238 | 1949 driver ffmpeg |
1950 dll "cavs" | |
1951 out I420 | |
13748 | 1952 |
26204 | 1953 videocodec ffdnxhd |
1954 info "FFmpeg DNxHD decoder" | |
1955 status working | |
1956 fourcc AVdn | |
1957 driver ffmpeg | |
1958 dll "dnxhd" | |
1959 out 422P | |
1960 | |
8163 | 1961 ; quicktime codecs: |
1962 | |
8324 | 1963 videocodec qt3ivx |
1964 info "win32/quicktime 3IV1 (3ivx) decoder" | |
1965 status working | |
1966 fourcc 3IV1 | |
1967 driver qtvideo | |
1968 dll "3ivx Delta 3.5.qtx" | |
1969 out YUY2 | |
1970 | |
26967 | 1971 videocodec qtactl |
1972 info "Win32/QuickTime Streambox ACT-L2" | |
1973 status working | |
1974 fourcc ACTL | |
1975 driver qtvideo | |
1976 dll ACTLComponent.qtx | |
1977 out YUY2 | |
1978 | |
11968 | 1979 videocodec qtavui |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1980 info "Win32/QuickTime Avid Meridien Uncompressed" |
11968 | 1981 status working |
1982 fourcc AVUI | |
1983 driver qtvideo | |
1984 dll "AvidQTAVUICodec.qtx" | |
1985 out YUY2 | |
1986 | |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1987 videocodec qth263 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1988 info "Win32/QuickTime H.263 decoder" |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1989 status crashing |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1990 fourcc h263 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1991 driver qtvideo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1992 dll "QuickTime.qts" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1993 out YUY2 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1994 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1995 videocodec qtrlerpza |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
1996 info "Win32/Quicktime RLE/RPZA decoder" |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1997 comment "no colorspace accepted" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1998 status crashing |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1999 fourcc rpza |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2000 format 0x20656C72 ; "rle " |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2001 driver qtvideo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2002 dll "QuickTime.qts" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2003 out BGR32,BGR24,BGR15 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2004 |
8324 | 2005 videocodec qtvp3 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2006 info "Win32/QuickTime VP3 decoder" |
8324 | 2007 status crashing |
2008 fourcc VP31 | |
2009 driver qtvideo | |
2010 dll "On2_VP3.qtx" | |
2011 out YUY2 | |
2012 | |
2013 videocodec qtzygo | |
2014 info "win32/quicktime ZyGo decoder" | |
2015 status buggy | |
2016 comment "wrong colors" | |
2017 fourcc ZyGo,zygo,lsvx | |
2018 driver qtvideo | |
2019 dll "ZyGoVideo.qtx" | |
2020 out BGR32,RGB32 | |
2021 | |
2022 videocodec qtbhiv | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2023 info "Win32/QuickTime BeHereiVideo decoder" |
8324 | 2024 comment "sample file wanted!" |
2025 status untested | |
2026 fourcc bhiv | |
2027 driver qtvideo | |
2028 dll "BeHereiVideo.qtx" | |
2029 out YUY2 | |
2030 | |
8837 | 2031 videocodec qtcvid |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2032 info "Win32/QuickTime Cinepak decoder" |
8837 | 2033 status working |
2034 fourcc cvid | |
2035 driver qtvideo | |
2036 dll "QuickTime.qts" | |
2037 out YUY2 | |
2038 | |
2039 videocodec qtindeo | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2040 info "Win32/QuickTime Indeo decoder" |
8837 | 2041 status crashing |
2042 fourcc IV31,iv31 | |
2043 fourcc IV32,iv32 | |
2044 fourcc IV41 | |
2045 driver qtvideo | |
2046 dll "QuickTime.qts" | |
2047 out YUY2 | |
2048 | |
2049 videocodec qtmjpeg | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2050 info "Win32/QuickTime MJPEG decoder" |
8837 | 2051 status crashing |
2052 fourcc dmb1 | |
2053 fourcc mjpa | |
2054 fourcc mjpb | |
2055 driver qtvideo | |
2056 dll "QuickTime.qts" | |
2057 out YUY2 | |
2058 | |
2059 videocodec qtmpeg4 | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2060 info "Win32/QuickTime MPEG-4 decoder" |
8837 | 2061 status crashing |
2062 fourcc mp4v | |
2063 driver qtvideo | |
2064 dll "QuickTime.qts" | |
2065 out YUY2 | |
2066 | |
8163 | 2067 videocodec qtsvq3 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2068 info "Win32/QuickTime SVQ3 decoder" |
8324 | 2069 status working |
8163 | 2070 fourcc SVQ3 |
2071 driver qtvideo | |
8324 | 2072 dll "QuickTimeEssentials.qtx" |
8163 | 2073 out YUY2 |
5749 | 2074 |
8322 | 2075 videocodec qtsvq1 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2076 info "Win32/QuickTime SVQ1 decoder" |
8322 | 2077 status buggy |
2078 fourcc SVQ1 | |
2079 driver qtvideo | |
2080 dll "QuickTime.qts" | |
2081 out YVU9 | |
2082 | |
9896
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2083 ; VSS codecs (http://vsofts.com/solutions.html): |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2084 |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2085 videocodec vsslight |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2086 info "VSS Codec Light" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2087 status working |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2088 fourcc VSSV |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2089 driver vfw |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2090 dll "vsslight.dll" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2091 out BGR24 flip |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2092 |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2093 videocodec vssh264 |
15344 | 2094 info "VSS H.264 New" |
2095 status working | |
2096 fourcc VSSH | |
2097 driver dshow | |
2098 dll "vsshdsd.dll" | |
2099 guid 0x6931C7e7, 0x75b7, 0x4729, 0xa1, 0x53, 0xa8, 0xad, 0x99, 0xbd, 0xf7, 0x0b | |
2100 out YV12 | |
2101 | |
2102 videocodec vssh264old | |
2103 info "VSS H.264 Old" | |
9897 | 2104 status working |
9896
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2105 fourcc VSSH |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2106 driver vfw |
12804
0106b9917013
Status updates and comments about other dll required by some codecs
rtognimp
parents:
12735
diff
changeset
|
2107 dll "vssh264.dll" ; need also vssh264core.dll, vssh264dec.dll |
9896
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2108 out BGR24 flip |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2109 |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2110 videocodec vsswlt |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2111 info "VSS Wavelet Video Codec" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2112 status working |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2113 fourcc VSSW |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2114 driver vfw |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2115 dll "vsswlt.dll" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2116 out BGR24 flip |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
2117 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2118 ; buggy codecs: (any volunteers for native rewrite?) |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2119 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2120 videocodec zlib |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2121 info "AVIzlib" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
2122 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2123 comment "24bpp only" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2124 fourcc ZLIB |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2125 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2126 dll "avizlib.dll" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
2127 out BGR24 flip |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2128 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2129 videocodec mszh |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2130 info "AVImszh" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
2131 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2132 comment "24bpp only" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2133 fourcc MSZH |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2134 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2135 dll "avimszh.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2136 ; out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2137 ; out BGR32,BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2138 out BGR24 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2139 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2140 videocodec alaris |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2141 info "Alaris VideoGramPiX" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2142 ; http://www.alaris.com/movies/toocool.vgm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2143 ; Martin Schuster <schuster@ap.univie.ac.at> |
6584 | 2144 status crashing |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2145 comment "only produces strange patterns" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2146 fourcc VGPX,VTLP VGPX |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2147 driver vfwex |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2148 dll "vgpix32d.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2149 out UYVY |
5749 | 2150 out BGR24 |
2151 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2152 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2153 ; non-working codecs: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2154 |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2155 videocodec vcr1 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2156 info "ATI VCR-1" |
6584 | 2157 status crashing |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2158 fourcc VCR1 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2159 driver vfw |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2160 dll "ativcr1.dll" |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2161 out RGB24 flip |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2162 |
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
|
2163 videocodec pim1 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2164 info "Pinnacle Hardware MPEG-1" |
6584 | 2165 status crashing |
4897
d80537754731
PIM1 is playable with ffmpeg12. thx to Togni Roberto <rtogni@bresciaonline.it>
arpi
parents:
4854
diff
changeset
|
2166 comment "no picture. use ffmpeg12!" |
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
|
2167 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
|
2168 driver vfw |
7354 | 2169 dll "pclepim1.dll" |
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
|
2170 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
|
2171 ; 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
|
2172 ; 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
|
2173 ; 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
|
2174 |
5746 | 2175 videocodec qpeg |
2176 info "Q-Team's QPEG (www.q-team.de)" | |
7312
1d0a877851d8
removed obsolete cyuvxa, completed qpeg, added some extra supported output formats to wmv8, removed bgr32 from dv as its buggy
alex
parents:
7225
diff
changeset
|
2177 status working |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2178 comment "BGR8 only!" |
7312
1d0a877851d8
removed obsolete cyuvxa, completed qpeg, added some extra supported output formats to wmv8, removed bgr32 from dv as its buggy
alex
parents:
7225
diff
changeset
|
2179 fourcc Q1.0,QPEG |
1d0a877851d8
removed obsolete cyuvxa, completed qpeg, added some extra supported output formats to wmv8, removed bgr32 from dv as its buggy
alex
parents:
7225
diff
changeset
|
2180 fourcc Q1.1,qpeq |
5746 | 2181 driver vfw |
2182 dll "qpeg32.dll" | |
2183 out BGR8 flip | |
2184 | |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2185 videocodec rricm |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2186 info "rricm" |
6584 | 2187 status crashing |
5767 | 2188 fourcc dmb1 |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2189 driver vfw |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2190 dll "rricm.dll" |
5767 | 2191 out YUY2 |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2192 out BGR24 flip |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
2193 |
13023
0c38058f83c3
TSCC (TechSmith Camtasia Screen Codec) native support via lavc codec
rtognimp
parents:
13006
diff
changeset
|
2194 videocodec ffcamtasia |
0c38058f83c3
TSCC (TechSmith Camtasia Screen Codec) native support via lavc codec
rtognimp
parents:
13006
diff
changeset
|
2195 info "TechSmith Camtasia Screen Codec (native)" |
0c38058f83c3
TSCC (TechSmith Camtasia Screen Codec) native support via lavc codec
rtognimp
parents:
13006
diff
changeset
|
2196 status working |
0c38058f83c3
TSCC (TechSmith Camtasia Screen Codec) native support via lavc codec
rtognimp
parents:
13006
diff
changeset
|
2197 fourcc TSCC,tscc |
0c38058f83c3
TSCC (TechSmith Camtasia Screen Codec) native support via lavc codec
rtognimp
parents:
13006
diff
changeset
|
2198 driver ffmpeg |
0c38058f83c3
TSCC (TechSmith Camtasia Screen Codec) native support via lavc codec
rtognimp
parents:
13006
diff
changeset
|
2199 dll "camtasia" |
14629
0269b0cfeada
BGR32 is now supported also by lavc tscc decoder
rtognimp
parents:
14628
diff
changeset
|
2200 out BGR32,BGR24,BGR15,BGR8 query |
13023
0c38058f83c3
TSCC (TechSmith Camtasia Screen Codec) native support via lavc codec
rtognimp
parents:
13006
diff
changeset
|
2201 |
5762 | 2202 ; sample videos: http://www.techsmith.com/products/camtasia/examplevideos.asp |
2203 videocodec camtasia | |
2204 info "TechSmith Camtasia Screen Codec" | |
8209 | 2205 status working |
5762 | 2206 fourcc TSCC,tscc |
2207 driver vfw | |
2208 dll "tsccvid.dll" | |
14628 | 2209 out BGR32,BGR24,BGR15,BGR8 query,flip |
5762 | 2210 |
17353 | 2211 videocodec ffcamstudio |
2212 info "CamStudio Screen Codec" | |
2213 status working | |
2214 fourcc CSCD,cscd | |
2215 driver ffmpeg | |
2216 dll "camstudio" | |
21533 | 2217 out BGR32,BGR24,BGR15 query |
17353 | 2218 |
15474 | 2219 ; Fraps - Realtime Video Capture - http://www.fraps.com/ |
2220 videocodec fraps | |
2221 info "FRAPS: Realtime Video Capture" | |
2222 comment "Requires a processor with SSE???" | |
2223 status working | |
2224 fourcc FPS1,fps1 | |
2225 driver vfw | |
2226 dll "frapsvid.dll" | |
2227 out BGR32 flip | |
2228 | |
20654 | 2229 videocodec fffraps |
2230 info "FFmpeg Fraps" | |
2231 status working | |
2232 fourcc FPS1,fps1 | |
2233 driver ffmpeg | |
2234 dll "fraps" | |
2235 out BGR24,I420 | |
2236 | |
20933 | 2237 videocodec fftiertexseq |
2238 info "FFmpeg Tiertex SEQ" | |
2239 status working | |
20939 | 2240 fourcc TSEQ ; internal MPlayer FourCC |
20933 | 2241 driver ffmpeg |
2242 dll "tiertexseqvideo" | |
2243 out BGR8 | |
2244 | |
20934 | 2245 videocodec ffvmd |
2246 info "FFmpeg Sierra VMD video" | |
2247 status working | |
20939 | 2248 fourcc VMDV ; internal MPlayer FourCC |
20934 | 2249 driver ffmpeg |
2250 dll "vmdvideo" | |
2251 out BGR8 | |
2252 | |
22688
f5b1bcca609b
add ffdxa , works on samples/game-formats/dxa/epic.dxa
compn
parents:
22681
diff
changeset
|
2253 videocodec ffdxa |
f5b1bcca609b
add ffdxa , works on samples/game-formats/dxa/epic.dxa
compn
parents:
22681
diff
changeset
|
2254 info "FFmpeg Feeble Files DXA video" |
f5b1bcca609b
add ffdxa , works on samples/game-formats/dxa/epic.dxa
compn
parents:
22681
diff
changeset
|
2255 status working |
f5b1bcca609b
add ffdxa , works on samples/game-formats/dxa/epic.dxa
compn
parents:
22681
diff
changeset
|
2256 fourcc DXA1 ; internal MPlayer FourCC |
f5b1bcca609b
add ffdxa , works on samples/game-formats/dxa/epic.dxa
compn
parents:
22681
diff
changeset
|
2257 driver ffmpeg |
f5b1bcca609b
add ffdxa , works on samples/game-formats/dxa/epic.dxa
compn
parents:
22681
diff
changeset
|
2258 dll "dxa" |
f5b1bcca609b
add ffdxa , works on samples/game-formats/dxa/epic.dxa
compn
parents:
22681
diff
changeset
|
2259 out BGR8 |
f5b1bcca609b
add ffdxa , works on samples/game-formats/dxa/epic.dxa
compn
parents:
22681
diff
changeset
|
2260 |
20940 | 2261 videocodec ffdsicinvideo |
2262 info "FFmpeg Delphine CIN video" | |
2263 status working | |
2264 fourcc DCIV ; internal MPlayer FourCC | |
2265 driver ffmpeg | |
2266 dll "dsicinvideo" | |
2267 out BGR8 | |
2268 | |
22876 | 2269 videocodec ffthp |
2270 info "FFmpeg THP video" | |
22877
9676cce0987a
Use thp, not mjpeg as dll to decode THP files so that the THP hacks in the
diego
parents:
22876
diff
changeset
|
2271 status working |
22876 | 2272 fourcc THPV ; internal MPlayer FourCC |
2273 driver ffmpeg | |
22877
9676cce0987a
Use thp, not mjpeg as dll to decode THP files so that the THP hacks in the
diego
parents:
22876
diff
changeset
|
2274 dll thp |
22876 | 2275 out YV12 |
2276 | |
26459 | 2277 videocodec ffbfi |
2278 info "FFmpeg BFI Video" | |
2279 status working | |
2280 fourcc BFIV ; internal MPlayer FourCC | |
2281 driver ffmpeg | |
2282 dll bfi | |
2283 out BGR8 | |
2284 | |
23001 | 2285 videocodec ffbethsoftvid |
2286 info "FFmpeg Bethesda Software VID" | |
2287 comment "video plays much too fast" | |
2288 status buggy | |
2289 fourcc BETH ; internal MPlayer FourCC | |
2290 driver ffmpeg | |
2291 dll bethsoftvid | |
2292 out BGR8 | |
2293 | |
26735 | 2294 videocodec ffrl2 |
2295 info "FFmpeg RL2 decoder" | |
2296 status working | |
2297 fourcc RL2V ; internal MPlayer FourCC | |
2298 driver ffmpeg | |
2299 dll rl2 | |
2300 out BGR8 | |
2301 | |
23274
f3e72ce8a9fd
add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronten2.txd .
compn
parents:
23221
diff
changeset
|
2302 videocodec fftxd |
f3e72ce8a9fd
add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronten2.txd .
compn
parents:
23221
diff
changeset
|
2303 info "FFmpeg Renderware TeXture Dictionary decoder" |
f3e72ce8a9fd
add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronten2.txd .
compn
parents:
23221
diff
changeset
|
2304 status working |
f3e72ce8a9fd
add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronten2.txd .
compn
parents:
23221
diff
changeset
|
2305 fourcc TXDV ; internal MPlayer FourCC |
f3e72ce8a9fd
add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronten2.txd .
compn
parents:
23221
diff
changeset
|
2306 driver ffmpeg |
f3e72ce8a9fd
add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronten2.txd .
compn
parents:
23221
diff
changeset
|
2307 dll txd |
f3e72ce8a9fd
add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronten2.txd .
compn
parents:
23221
diff
changeset
|
2308 out BGR32 |
f3e72ce8a9fd
add txd codec, works with http://samples.mplayerhq.hu/game-formats/txd/fronten2.txd .
compn
parents:
23221
diff
changeset
|
2309 |
23961 | 2310 videocodec xan |
2311 info "XAN Video" | |
2312 status working | |
2313 fourcc Xxan | |
2314 driver vfw | |
2315 dll "xanlib.dll" | |
2316 out BGR24,BGR15,BGR8 query,flip | |
2317 | |
20980
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2318 videocodec ffwc3 |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2319 info "FFmpeg XAN wc3" |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2320 status buggy |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2321 fourcc WC3V ; internal MPlayer FourCC |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2322 driver ffmpeg |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2323 dll "xan_wc3" |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2324 out BGR8 |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2325 |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2326 videocodec ffidcin |
21019 | 2327 info "FFmpeg Id CIN video" |
20980
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2328 status buggy |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2329 fourcc IDCI ; internal MPlayer FourCC |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2330 driver ffmpeg |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2331 dll "idcinvideo" |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2332 out BGR8 |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2333 |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2334 videocodec ffinterplay |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2335 info "FFmpeg Interplay Video" |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2336 status buggy |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2337 fourcc INPV ; internal MPlayer FourCC |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2338 driver ffmpeg |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2339 dll "interplayvideo" |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2340 out BGR8 |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2341 |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2342 videocodec ffvqa |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2343 info "FFmpeg VQA Video" |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2344 status buggy |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2345 fourcc VQAV ; internal MPlayer FourCC |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2346 driver ffmpeg |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2347 dll "vqavideo" |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2348 out BGR8 |
70ca50bcc4a8
support for some more fringe formats, still buggy ..
diego
parents:
20941
diff
changeset
|
2349 |
22918 | 2350 videocodec ffc93 |
2351 info "FFmpeg C93 Video" | |
2352 status buggy | |
2353 fourcc C93V ; internal MPlayer FourCC | |
2354 driver ffmpeg | |
2355 dll c93 | |
2356 out BGR8 | |
2357 | |
20654 | 2358 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2359 ; raw formats: (now RGB formats are autodetected) |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
2360 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2361 ; 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
|
2362 ; 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
|
2363 ; 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
|
2364 ; 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
|
2365 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2366 videocodec rawrgb32 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2367 info "RAW RGB32" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2368 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2369 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2370 format 0x0 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2371 format 0x20776172 0x52474220 |
3399 | 2372 format 0x52474220 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2373 out RGB32 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2374 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2375 videocodec rawrgb24 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2376 info "RAW RGB24" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2377 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2378 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2379 format 0x0 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2380 format 0x20776172 0x52474218 |
3399 | 2381 format 0x52474218 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
2382 out RGB24 |
2675 | 2383 |
3399 | 2384 videocodec rawrgb16 |
2385 info "RAW RGB16" | |
2386 status working | |
2387 driver raw | |
2388 format 0x0 | |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2389 format 0x20776172 0x52474210 |
3399 | 2390 format 0x52474210 |
2391 out RGB16 | |
2392 | |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2393 videocodec rawbgr32flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2394 info "RAW BGR32" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2395 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2396 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2397 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2398 out BGR32 flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2399 |
5996
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
2400 videocodec rawbgr32 |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
2401 info "RAW BGR32" |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
2402 status working |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
2403 driver raw |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
2404 format 0x0 |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
2405 format 0x42475220 |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2406 out BGR32 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2407 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2408 videocodec rawbgr24flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2409 info "RAW BGR24" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2410 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2411 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2412 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2413 out BGR24 flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2414 |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2415 videocodec rawbgr24 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2416 info "RAW BGR24" |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2417 status working |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2418 driver raw |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2419 format 0x0 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2420 format 0x20776172 0x42475218 |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4740
diff
changeset
|
2421 format 0x42475218 |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2422 out BGR24 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2423 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2424 videocodec rawbgr16flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2425 info "RAW BGR15" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2426 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2427 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2428 format 0x0 |
26844
c5dfa78a07e7
Readd fourcc used by MTV format. Note that BGR->YUV conversion
reimar
parents:
26843
diff
changeset
|
2429 format 0x10424752 0x0 |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2430 out BGR16 flip |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2431 |
6584 | 2432 videocodec rawbgr16 |
2433 info "RAW BGR15" | |
2434 status working | |
2435 driver raw | |
2436 format 0x0 | |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2437 format 0x20776172 0x42475210 |
6584 | 2438 format 0x42475210 |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2439 out BGR16 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2440 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2441 videocodec rawbgr15flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2442 info "RAW BGR15" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2443 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2444 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2445 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2446 out BGR15 flip |
6584 | 2447 |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2448 videocodec rawbgr15 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2449 info "RAW BGR15" |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2450 status working |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2451 driver raw |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2452 format 0x0 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2453 format 0x20776172 0x4247520F |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4740
diff
changeset
|
2454 format 0x4247520F |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2455 out BGR15 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2456 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2457 videocodec rawbgr8flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2458 info "RAW BGR8" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2459 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2460 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2461 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2462 out BGR8 flip |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
2463 |
7771 | 2464 videocodec rawbgr8 |
2465 info "RAW BGR8" | |
2466 status working | |
2467 driver raw | |
2468 format 0x0 | |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2469 format 0x20776172 0x42475208 |
9127 | 2470 format 0x42475208 |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
2471 out BGR8 |
7771 | 2472 |
2473 videocodec rawbgr1 | |
7823 | 2474 info "RAW BGR1" |
7771 | 2475 status working |
2476 driver raw | |
2477 format 0x0 | |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2478 format 0x20776172 0x42475201 |
9127 | 2479 format 0x42475201 |
7771 | 2480 out BGR1 flip |
2481 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2482 videocodec rawyuy2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2483 info "RAW YUY2" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2484 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2485 driver raw |
7771 | 2486 format 0x0 0x32595559 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2487 format 0x20776172 0x32595559 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2488 fourcc yuy2,YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2489 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2490 |
25182 | 2491 videocodec rawyuv2 |
2492 info "RAW YUV2" | |
2493 status working | |
2494 driver raw | |
2495 format 0x0 0x32565559 | |
2496 format 0x20776172 0x32565559 | |
2497 fourcc yuv2,YUV2 | |
2498 out YUY2 | |
2499 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2500 videocodec rawuyvy |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2501 info "RAW UYVY" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2502 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2503 driver raw |
7771 | 2504 format 0x0 0x59565955 |
23473 | 2505 format 0x79757632 0x59565955 # 2vuy as created by QuickTime captures |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2506 format 0x20776172 0x59565955 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2507 fourcc uyvy,UYVY |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2508 out UYVY |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2509 |
14614 | 2510 videocodec raw444P |
2511 info "RAW 444P" | |
2512 status working | |
2513 driver raw | |
2514 format 0x0 0x50343434 | |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2515 format 0x20776172 0x50343434 |
14614 | 2516 fourcc 444p,444P |
2517 out 444P | |
2518 | |
2519 videocodec raw422P | |
2520 info "RAW 422P" | |
2521 status working | |
2522 driver raw | |
2523 format 0x0 0x50323234 | |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2524 format 0x20776172 0x50323234 |
14614 | 2525 fourcc 422p,422P |
2526 out 422P | |
2527 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2528 videocodec rawyv12 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2529 info "RAW YV12" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2530 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2531 driver raw |
7771 | 2532 format 0x0 0x32315659 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2533 format 0x20776172 0x32315659 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2534 fourcc yv12,YV12 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2535 out YV12 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2536 |
10750 | 2537 videocodec rawnv21 |
2538 info "RAW NV21" | |
2539 status working | |
2540 driver hmblck | |
2541 format 0x0 0x3132564E | |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2542 format 0x20776172 0x3132564E |
10750 | 2543 fourcc nv21,NV21 |
2544 out YV12 | |
2545 | |
10305
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2546 videocodec rawnv12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2547 info "RAW NV12" |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2548 status working |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2549 driver hmblck |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2550 format 0x0 0x3231564E |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2551 format 0x20776172 0x3231564E |
10305
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2552 fourcc nv12,NV12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2553 out YV12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2554 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2555 videocodec rawhm12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2556 info "RAW HM12" |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2557 status working |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2558 driver hmblck |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2559 format 0x0 0x32314D48 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2560 format 0x20776172 0x32314D48 |
10305
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2561 fourcc hm12,HM12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2562 out YV12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
2563 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2564 videocodec rawi420 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2565 info "RAW I420" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2566 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2567 driver raw |
7771 | 2568 format 0x0 0x30323449 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2569 format 0x20776172 0x30323449 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2570 fourcc i420,I420 |
6584 | 2571 fourcc IYUV,iyuv |
2572 out I420,IYUV | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2573 |
6488 | 2574 videocodec rawyvu9 |
2575 info "RAW YVU9" | |
2576 status working | |
2577 driver raw | |
7771 | 2578 format 0x0 0x39555659 |
25181
b0180bc36b1e
Add the correct format substitutions to make the raw decoders
reimar
parents:
25092
diff
changeset
|
2579 format 0x20776172 0x39555659 |
6488 | 2580 fourcc yvu9,YVU9 |
2581 out YVU9 | |
2582 | |
14171
83a1fd8cbdd1
Added rawy800 codec as according to the manpage it should be there
reimar
parents:
14133
diff
changeset
|
2583 videocodec rawy800 |
83a1fd8cbdd1
Added rawy800 codec as according to the manpage it should be there
reimar
parents:
14133
diff
changeset
|
2584 info "RAW Y8/Y800" |
83a1fd8cbdd1
Added rawy800 codec as according to the manpage it should be there
reimar
parents:
14133
diff
changeset
|
2585 status working |
83a1fd8cbdd1
Added rawy800 codec as according to the manpage it should be there
reimar
parents:
14133
diff
changeset
|
2586 driver raw |
27440 | 2587 format 0x0 |
14171
83a1fd8cbdd1
Added rawy800 codec as according to the manpage it should be there
reimar
parents:
14133
diff
changeset
|
2588 format 0x20203859 ; "Y8 " |
83a1fd8cbdd1
Added rawy800 codec as according to the manpage it should be there
reimar
parents:
14133
diff
changeset
|
2589 fourcc y800,Y800 |
83a1fd8cbdd1
Added rawy800 codec as according to the manpage it should be there
reimar
parents:
14133
diff
changeset
|
2590 out Y800,Y8 |
83a1fd8cbdd1
Added rawy800 codec as according to the manpage it should be there
reimar
parents:
14133
diff
changeset
|
2591 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2592 ; NULL codec - for testing. |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2593 |
1390 | 2594 videocodec null |
2691 | 2595 info "NULL codec (no decoding!)" |
5179
104cd0571dc4
changed status of 'null' codec to avoid prefering it over buggy codecs
arpi
parents:
5161
diff
changeset
|
2596 status crashing |
1390 | 2597 comment "for unknown/unsupported codecs or testing" |
2598 driver null | |
2599 out YV12 | |
2600 out I420 | |
2601 out YUY2 | |
2602 out UYVY | |
6584 | 2603 out YVU9 |
1390 | 2604 out BGR32,BGR24,BGR16,BGR15 |
2605 | |
471 | 2606 ;============================================================================= |
2607 ; AUDIO CODECS | |
2608 ;============================================================================= | |
2609 | |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2610 audiocodec wma9dmo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2611 info "Windows Media Audio 9 DMO" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2612 status working |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2613 format 0x162 |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2614 format 0x163 |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2615 driver dmo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2616 dll "wma9dmod.dll" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2617 guid 0x27ca0808, 0x01f5, 0x4e7a, 0x8b, 0x05, 0x87, 0xf8, 0x07, 0xa2, 0x33, 0xd1 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2618 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2619 audiocodec wmadmo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2620 info "Windows Media Audio DMO" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2621 status working |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2622 format 0x160 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2623 format 0x161 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2624 format 0x162 |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2625 format 0x163 |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2626 driver dmo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2627 dll "wmadmod.dll" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2628 guid 0x2eeb4adf, 0x4578, 0x4d10, 0xbc, 0xa7, 0xbb, 0x95, 0x5f, 0x56, 0x32, 0x0a |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
2629 |
12328 | 2630 audiocodec wma9spdmo |
2631 info "Windows Media Audio 9 Speech DMO" | |
2632 status working | |
2633 format 0xa | |
2634 driver dmo | |
2635 dll "wmspdmod.dll" | |
2636 guid 0x874131cb, 0x4ecc, 0x443b, 0x89, 0x48, 0x74, 0x6b, 0x89, 0x59, 0x5d, 0x20 | |
2637 | |
2638 audiocodec wma9spdshow | |
2639 info "Windows Media Audio 9 Speech DShow" | |
22366
ce25d75021e8
Mark wma9spdshow audio codec as working, because hissing in audio (only one known
voroshil
parents:
22364
diff
changeset
|
2640 status working |
12328 | 2641 format 0xa |
2642 driver dshow | |
2643 dll "wmavds32.ax" | |
2644 guid 0x795b44c4, 0xf142, 0x493d, 0x8a, 0x02, 0x09, 0xbd, 0x41, 0x08, 0x95, 0xad | |
2645 | |
16796 | 2646 audiocodec ffqdm2 |
2647 info "FFmpeg QDM2 audio decoder" | |
2648 status working | |
2649 format 0x324D4451 ; "QDM2" | |
2650 driver ffmpeg | |
2651 dll "qdm2" | |
2652 | |
8007 | 2653 audiocodec qdmc |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2654 info "QuickTime QDMC/QDM2 audio decoders" |
8007 | 2655 status working |
2656 format 0x324D4451 ; "QDM2" | |
2657 format 0x434D4451 ; "QDMC" | |
2658 driver qtaudio | |
2659 dll "QuickTime.qts" | |
2660 | |
8283 | 2661 audiocodec qclp |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2662 info "QuickTime QCLP audio decoder" |
8283 | 2663 status working |
26108 | 2664 format 0x706C6351 ; "Qclp" |
8283 | 2665 driver qtaudio |
2666 dll "QuickTime.qts" | |
2667 | |
2668 audiocodec qtmace3 | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2669 info "QuickTime MACE3 audio decoder" |
8283 | 2670 status working |
2671 format 0x3343414D ; "MAC3" | |
2672 driver qtaudio | |
2673 dll "QuickTime.qts" | |
2674 | |
2675 audiocodec qtmace6 | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
2676 info "QuickTime MACE6 audio decoder" |
8283 | 2677 status working |
2678 format 0x3643414D ; "MAC6" | |
2679 driver qtaudio | |
2680 dll "QuickTime.qts" | |
2681 | |
17149
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2682 audiocodec ffra144 |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2683 info "FFmpeg RealAudio 1.0" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2684 status working |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2685 format 0x345F3431 ; "14_4" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2686 driver ffmpeg |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2687 dll "real_144" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2688 |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2689 audiocodec ffra288 |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2690 info "FFmpeg RealAudio 2.0" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2691 status working |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2692 format 0x385F3832 ; "28_8" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2693 driver ffmpeg |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2694 dll "real_288" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2695 |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2696 audiocodec ffcook |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2697 info "FFmpeg COOK audio decoder" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2698 status working |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2699 format 0x6B6F6F63 ; "cook" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2700 driver ffmpeg |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2701 dll "cook" |
9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
rtognimp
parents:
17143
diff
changeset
|
2702 |
23002 | 2703 audiocodec ffatrc |
2704 info "FFmpeg Atrac 3 audio decoder" | |
2705 status working | |
2706 format 0x63727461 ; "atrc" | |
23005
661085642a71
update release number and add atrac3 in wav format, works on /samples/a-codecs/atrac3/sample.ATRAC3.66kbps.44100Hz.Stereo.wav
compn
parents:
23002
diff
changeset
|
2707 format 0x270 ; atrac3 in wav |
23002 | 2708 driver ffmpeg |
26568 | 2709 dll "atrac3" |
23002 | 2710 |
10031 | 2711 audiocodec ra144 |
2712 info "RealAudio 1.0" | |
2713 status working | |
2714 format 0x345F3431 ; "14_4" | |
2715 driver realaud | |
2716 dll "14_4.so.6.0" | |
2717 | |
10117 | 2718 audiocodec ra144win |
2719 info "Win32 RealAudio 1.0" | |
2720 status working | |
2721 format 0x345F3431 ; "14_4" | |
2722 driver realaud | |
2723 dll "14_43260.dll" | |
2724 | |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2725 audiocodec ra144mac |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2726 info "Mac OS X RealAudio 1.0" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2727 status working |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2728 format 0x345F3431 ; "14_4" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2729 driver realaud |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2730 dll "14_4.shlb" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2731 |
10031 | 2732 audiocodec ra288 |
2733 info "RealAudio 2.0" | |
2734 status working | |
2735 format 0x385F3832 ; "28_8" | |
2736 driver realaud | |
2737 dll "28_8.so.6.0" | |
2738 | |
10117 | 2739 audiocodec ra288win |
2740 info "Win32 RealAudio 2.0" | |
2741 status working | |
2742 format 0x385F3832 ; "28_8" | |
2743 driver realaud | |
2744 dll "28_83260.dll" | |
2745 | |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2746 audiocodec ra288mac |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2747 info "Mac OS X RealAudio 2.0" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2748 status working |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2749 format 0x385F3832 ; "28_8" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2750 driver realaud |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2751 dll "28_8.shlb" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2752 |
14708
fa717962f8ff
Support for RealPlayer10 cook.so decoder in Linux
rtognimp
parents:
14706
diff
changeset
|
2753 audiocodec ra10cook |
fa717962f8ff
Support for RealPlayer10 cook.so decoder in Linux
rtognimp
parents:
14706
diff
changeset
|
2754 info "RealPlayer 10 COOK audio" |
fa717962f8ff
Support for RealPlayer10 cook.so decoder in Linux
rtognimp
parents:
14706
diff
changeset
|
2755 comment "supports cook 5.1" |
fa717962f8ff
Support for RealPlayer10 cook.so decoder in Linux
rtognimp
parents:
14706
diff
changeset
|
2756 status working |
fa717962f8ff
Support for RealPlayer10 cook.so decoder in Linux
rtognimp
parents:
14706
diff
changeset
|
2757 format 0x6B6F6F63 ; "cook" |
fa717962f8ff
Support for RealPlayer10 cook.so decoder in Linux
rtognimp
parents:
14706
diff
changeset
|
2758 driver realaud |
fa717962f8ff
Support for RealPlayer10 cook.so decoder in Linux
rtognimp
parents:
14706
diff
changeset
|
2759 dll "cook.so" |
fa717962f8ff
Support for RealPlayer10 cook.so decoder in Linux
rtognimp
parents:
14706
diff
changeset
|
2760 |
6375 | 2761 audiocodec racook |
2762 info "RealAudio COOK" | |
6584 | 2763 status working |
6375 | 2764 format 0x6B6F6F63 ; "cook" |
2765 driver realaud | |
2766 dll "cook.so.6.0" | |
2767 | |
22908 | 2768 audiocodec ra10cookwin |
2769 info "Win32 RealAudio 10 COOK" | |
2770 comment "supports cook 5.1" | |
2771 status working | |
2772 format 0x6B6F6F63 ; "cook" | |
2773 driver realaud | |
2774 dll "cook.dll" | |
2775 | |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2776 audiocodec racookwin |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2777 info "Win32 RealAudio COOK" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2778 status working |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2779 format 0x6B6F6F63 ; "cook" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2780 driver realaud |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2781 dll "cook3260.dll" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2782 |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2783 audiocodec racookmac |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2784 info "Mac OS X RealAudio COOK" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2785 status working |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2786 format 0x6B6F6F63 ; "cook" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2787 driver realaud |
13860
d6f716fdd734
remove mac shlb support to use new helix codec for realvideo support on osx
nplourde
parents:
13825
diff
changeset
|
2788 dll "cook.bundle/Contents/MacOS/cook" |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2789 |
6934
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
2790 audiocodec rasipr |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
2791 info "RealAudio Sipro" |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
2792 status working |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
2793 format 0x72706973 ; "sipr" |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
2794 driver realaud |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
2795 dll "sipr.so.6.0" |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
2796 |
20240 | 2797 audiocodec ra10sipr |
2798 info "RealPlayer 10 RealAudio Sipro" | |
2799 status working | |
2800 format 0x72706973 ; "sipr" | |
2801 driver realaud | |
2802 dll "sipr.so" | |
2803 | |
22908 | 2804 audiocodec ra10siprwin |
2805 info "Win32 RealAudio 10 Sipro" | |
2806 status working | |
2807 format 0x72706973 ; "sipr" | |
2808 driver realaud | |
2809 dll "sipr.dll" | |
2810 | |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2811 audiocodec rasiprwin |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2812 info "Win32 RealAudio Sipro" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2813 status working |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2814 format 0x72706973 ; "sipr" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2815 driver realaud |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2816 dll "sipr3260.dll" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2817 |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2818 audiocodec rasiprmac |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2819 info "Mac OS X RealAudio Sipro" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2820 status working |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2821 format 0x72706973 ; "sipr" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2822 driver realaud |
13860
d6f716fdd734
remove mac shlb support to use new helix codec for realvideo support on osx
nplourde
parents:
13825
diff
changeset
|
2823 dll "sipr.bundle/Contents/MacOS/sipr" |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2824 |
8094 | 2825 audiocodec raatrc |
2826 info "RealAudio ATRAC3" | |
2827 status working | |
2828 format 0x63727461 ; "atrc" | |
2829 driver realaud | |
2830 dll "atrc.so.6.0" | |
2831 | |
20240 | 2832 audiocodec ra10atrc |
2833 info "RealPlayer 10 RealAudio ATRAC3" | |
2834 status working | |
2835 format 0x63727461 ; "atrc" | |
2836 driver realaud | |
2837 dll "atrc.so" | |
2838 | |
22908 | 2839 audiocodec ra10atrcwin |
2840 info "Win32 RealAudio 10 ATRAC3" | |
2841 status working | |
2842 format 0x63727461 ; "atrc" | |
2843 driver realaud | |
2844 dll "atrc.dll" | |
2845 | |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2846 audiocodec raatrcwin |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2847 info "Win32 RealAudio ATRAC3" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2848 status working |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2849 format 0x63727461 ; "atrc" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2850 driver realaud |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2851 dll "atrc3260.dll" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
2852 |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2853 audiocodec raatrcmac |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2854 info "Mac OS X RealAudio ATRAC3" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2855 status working |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2856 format 0x63727461 ; "atrc" |
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2857 driver realaud |
13860
d6f716fdd734
remove mac shlb support to use new helix codec for realvideo support on osx
nplourde
parents:
13825
diff
changeset
|
2858 dll "atrc.bundle/Contents/MacOS/atrc" |
12628
985e1813e298
support for realvideo codecs under macosx, original patch by Donnie Smith
alex
parents:
12614
diff
changeset
|
2859 |
24653 | 2860 audiocodec ffadpcmimaamv |
2861 info "FFmpeg AMV IMA ADPCM audio" | |
2862 status working | |
24672
73a7e3da473e
"AMV IMA ADPCM" can not use 0x1 as tag, it breaks normal PCM.
reimar
parents:
24653
diff
changeset
|
2863 fourcc AMVA ; internal MPlayer FourCC |
24653 | 2864 driver ffmpeg |
2865 dll adpcm_ima_amv | |
2866 | |
27244
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2867 audiocodec ffadpcmimaqt |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2868 info "FFmpeg QT IMA ADPCM audio" |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2869 status working |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2870 format 0x34616d69 ; "ima4" (MOV files) |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2871 driver ffmpeg |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2872 dll adpcm_ima_qt |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2873 |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2874 audiocodec ffadpcmimawav |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2875 info "FFmpeg WAV IMA ADPCM audio" |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2876 status working |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2877 format 0x11 |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2878 format 0x1100736d ; "ms\x00\x11" (MOV files) |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2879 driver ffmpeg |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2880 dll adpcm_ima_wav |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2881 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2882 audiocodec imaadpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2883 info "IMA ADPCM" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2884 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2885 format 0x11 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2886 format 0x34616d69 ; "ima4" (MOV files) |
8104 | 2887 format 0x1100736d ; "ms\x00\x11" (MOV files) |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2888 driver imaadpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2889 |
27244
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2890 audiocodec ffadpcmms |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2891 info "FFmpeg MS ADPCM audio" |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2892 status working |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2893 format 0x2 |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2894 format 0x0200736d ; "ms\x00\x02" (MOV files) |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2895 driver ffmpeg |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2896 dll adpcm_ms |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2897 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2898 audiocodec msadpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2899 info "MS ADPCM" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2900 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2901 format 0x2 |
8104 | 2902 format 0x0200736d ; "ms\x00\x02" (MOV files) |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2903 driver msadpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2904 |
27244
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2905 audiocodec ffadpcmimadk4 |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2906 info "FFmpeg DK4 IMA ADPCM audio" |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2907 status working |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2908 format 0x61 ; This format number was used by Duck Corp. but not officially |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2909 ; registered with Microsoft |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2910 driver ffmpeg |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2911 dll adpcm_ima_dk4 |
a25810edd65a
Add support for FFmpeg's ADPCM codecs and make them the default
reimar
parents:
27200
diff
changeset
|
2912 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2913 audiocodec dk4adpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2914 info "Duck DK4 ADPCM (rogue format number)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2915 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
2916 format 0x61 ; This format number was used by Duck Corp. but not officially |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
2917 ; registered with Microsoft |
5408 | 2918 driver imaadpcm |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2919 |
27245
ccf1f8602a9d
Add support for FFmpeg DK3 ADPCM codec and prefer it over MPlayer's
reimar
parents:
27244
diff
changeset
|
2920 audiocodec ffadpcmimadk3 |
ccf1f8602a9d
Add support for FFmpeg DK3 ADPCM codec and prefer it over MPlayer's
reimar
parents:
27244
diff
changeset
|
2921 info "FFmpeg DK3 IMA ADPCM audio" |
ccf1f8602a9d
Add support for FFmpeg DK3 ADPCM codec and prefer it over MPlayer's
reimar
parents:
27244
diff
changeset
|
2922 status working |
ccf1f8602a9d
Add support for FFmpeg DK3 ADPCM codec and prefer it over MPlayer's
reimar
parents:
27244
diff
changeset
|
2923 format 0x62 ; This format number was used by Duck Corp. but not officially |
ccf1f8602a9d
Add support for FFmpeg DK3 ADPCM codec and prefer it over MPlayer's
reimar
parents:
27244
diff
changeset
|
2924 ; registered with Microsoft |
ccf1f8602a9d
Add support for FFmpeg DK3 ADPCM codec and prefer it over MPlayer's
reimar
parents:
27244
diff
changeset
|
2925 driver ffmpeg |
ccf1f8602a9d
Add support for FFmpeg DK3 ADPCM codec and prefer it over MPlayer's
reimar
parents:
27244
diff
changeset
|
2926 dll adpcm_ima_dk3 |
ccf1f8602a9d
Add support for FFmpeg DK3 ADPCM codec and prefer it over MPlayer's
reimar
parents:
27244
diff
changeset
|
2927 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2928 audiocodec dk3adpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2929 info "Duck DK3 ADPCM (rogue format number)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2930 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
2931 format 0x62 ; This format number was used by Duck Corp. but not officially |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
2932 ; registered with Microsoft |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2933 driver dk3adpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
2934 |
12444
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
2935 audiocodec ffroqaudio |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
2936 info "Id RoQ File Audio Decoder" |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
2937 status working |
20939 | 2938 fourcc RoQA ; internal MPlayer FourCC |
12444
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
2939 driver ffmpeg |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
2940 dll "roq_dpcm" |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
2941 |
18526 | 2942 audiocodec ffsmkaud |
2943 info "FFmpeg Smacker Audio" | |
2944 status buggy | |
2945 fourcc SMKA | |
2946 driver ffmpeg | |
2947 dll "smackaud" | |
2948 | |
20940 | 2949 audiocodec ffdsicinaudio |
2950 info "FFmpeg Delphine CIN audio" | |
2951 status working | |
2952 fourcc DCIA ; internal MPlayer FourCC | |
2953 driver ffmpeg | |
2954 dll dsicinaudio | |
2955 | |
20694 | 2956 audiocodec ff4xmadmpcm |
2957 info "FFmpeg 4XM ADPCM audio" | |
2958 status working | |
20939 | 2959 fourcc 4XMA ; internal MPlayer FourCC |
20694 | 2960 driver ffmpeg |
2961 dll adpcm_4xm | |
2962 | |
20931 | 2963 audiocodec ffadpcmimaws |
2964 info "FFmpeg Westwood IMA ADPCM audio" | |
2965 status working | |
20939 | 2966 fourcc AIWS ; internal MPlayer FourCC |
20931 | 2967 driver ffmpeg |
2968 dll adpcm_ima_ws | |
2969 | |
21362 | 2970 audiocodec ffwssnd1 |
2971 info "FFmpeg Westwood SND1" | |
2972 status working | |
2973 fourcc SND1 ; internal MPlayer FourCC | |
2974 driver ffmpeg | |
2975 dll ws_snd1 | |
2976 | |
20936 | 2977 audiocodec ffinterplaydpcm |
2978 info "FFmpeg Interplay DPCM audio" | |
2979 status working | |
20939 | 2980 fourcc INPA ; internal MPlayer FourCC |
20936 | 2981 driver ffmpeg |
2982 dll interplay_dpcm | |
2983 | |
20941 | 2984 audiocodec ffadpcmea |
2985 info "FFmpeg EA ADPCM audio" | |
2986 status working | |
2987 fourcc ADEA ; internal MPlayer FourCC | |
2988 driver ffmpeg | |
2989 dll adpcm_ea | |
2990 | |
26760 | 2991 audiocodec ffadpcmeamaxis |
2992 info "FFmpeg EA MAXIS XA ADPCM audio" | |
2993 status working | |
2994 fourcc ADXA ; internal MPlayer FourCC | |
2995 driver ffmpeg | |
2996 dll adpcm_ea_maxis_xa | |
2997 | |
27101 | 2998 audiocodec ffadpcmxa |
2999 info "FFmpeg XA ADPCM audio" | |
3000 status working | |
3001 fourcc PSXA ; internal MPlayer FourCC | |
3002 driver ffmpeg | |
3003 dll adpcm_xa | |
3004 | |
20990 | 3005 audiocodec ffxandpcm |
3006 info "FFmpeg XAN DPCM audio" | |
22952
73a4fa72d04a
Convert source comments into proper codecs.conf entry comments.
diego
parents:
22918
diff
changeset
|
3007 comment "only works with libavformat demuxer" |
20990 | 3008 status working |
3009 fourcc Axan | |
3010 driver ffmpeg | |
3011 dll xan_dpcm | |
3012 | |
22916 | 3013 audiocodec ffadpcmthp |
3014 info "FFmpeg THP ADPCM audio" | |
3015 status working | |
3016 fourcc THPA | |
3017 driver ffmpeg | |
3018 dll adpcm_thp | |
3019 | |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
3020 audiocodec libdv |
8209 | 3021 info "raw DV audio decoder (libdv)" |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
3022 status working |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
3023 fourcc RADV |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
3024 driver libdv |
8209 | 3025 dll libdv.so.2 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
3026 |
9233 | 3027 audiocodec ffdv |
3028 info "FFmpeg DV audio decoder" | |
3029 status working | |
3030 fourcc RADV | |
27609 | 3031 fourcc vdva,dvca |
27612 | 3032 fourcc dvau |
9233 | 3033 driver ffmpeg |
3034 dll "dvaudio" | |
3035 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
3036 audiocodec faad |
15531 | 3037 info "FAAD AAC (MPEG-2/MPEG-4 Audio) decoder" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
3038 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
3039 fourcc mp4a,MP4A |
26621
853fce906154
VLB audio is quite similar to AAC, and faad decodes somewhat usably (though
reimar
parents:
26568
diff
changeset
|
3040 fourcc "VLB " ; Used in NSV, not really working |
12177 | 3041 fourcc "AAC " ; Used in NSV |
18515 | 3042 fourcc "AACP" ; Used in NSV for AACPlus |
12474 | 3043 format 0xff |
15261
aaea91cac37c
added format 0x706D for faac, compatible with ffmpeg
nicodvb
parents:
15228
diff
changeset
|
3044 format 0x706D |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
3045 driver faad |
8209 | 3046 dll libfaad2 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
3047 |
27441
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3048 audiocodec ffaac |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3049 info "FFmpeg AAC (MPEG-2/MPEG-4 Audio) decoder" |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3050 status working |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3051 fourcc mp4a,MP4A |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3052 fourcc "VLB " ; Used in NSV, not really working |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3053 fourcc "AAC " ; Used in NSV |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3054 fourcc "AACP" ; Used in NSV for AACPlus |
27611 | 3055 fourcc raac,racp |
27441
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3056 format 0xff |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3057 format 0x706D |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3058 driver ffmpeg |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3059 dll aac |
8e8992737a19
Add support for AAC decoding through FFmpeg; libfaad is preferred for now.
diego
parents:
27440
diff
changeset
|
3060 |
11973 | 3061 audiocodec ffflac |
3062 info "FFmpeg FLAC audio decoder" | |
3063 status working | |
3064 format 0x43614C66 | |
20327 | 3065 format 0xF1AC |
11973 | 3066 driver ffmpeg |
3067 dll "flac" | |
3068 | |
14922 | 3069 audiocodec ffalac |
3070 info "FFmpeg ALAC audio decoder" | |
3071 status working | |
3072 fourcc alac | |
3073 driver ffmpeg | |
3074 dll "alac" | |
3075 | |
20099 | 3076 audiocodec fftta |
3077 info "FFmpeg True Audio (TTA) decoder" | |
3078 status working | |
20939 | 3079 fourcc TTA1 ; internal MPlayer FourCC |
20099 | 3080 driver ffmpeg |
3081 dll "tta" | |
3082 | |
3083 audiocodec ffwavpack | |
3084 info "FFmpeg WavPack audio decoder" | |
3085 status working | |
20939 | 3086 fourcc WVPK ; internal MPlayer FourCC |
20099 | 3087 driver ffmpeg |
3088 dll "wavpack" | |
3089 | |
20192 | 3090 audiocodec ffshorten |
3091 info "FFmpeg Shorten audio decoder" | |
3092 status working | |
20939 | 3093 fourcc shrn ; internal MPlayer FourCC |
20192 | 3094 driver ffmpeg |
3095 dll "shorten" | |
3096 | |
24425 | 3097 audiocodec ffape |
3098 info "FFmpeg Monkey's Audio decoder" | |
24588
8eb1ef462d29
codecs.conf: Change Monkey's Audio decoder status to "working"
uau
parents:
24425
diff
changeset
|
3099 status working |
24425 | 3100 fourcc "APE " |
3101 driver ffmpeg | |
3102 dll "ape" | |
3103 | |
27200 | 3104 audiocodec ffmlp |
3105 info "FFmpeg MLP decoder" | |
3106 status working | |
3107 fourcc "MLP " ; internal MPlayer FourCC | |
3108 driver ffmpeg | |
3109 dll "mlp" | |
3110 | |
24764
fbf46414bb48
add nellymoser codec to mplayer with internal fourcc NELL
compn
parents:
24672
diff
changeset
|
3111 audiocodec ffnellymoser |
fbf46414bb48
add nellymoser codec to mplayer with internal fourcc NELL
compn
parents:
24672
diff
changeset
|
3112 info "FFmpeg Nellymoser Audio decoder" |
fbf46414bb48
add nellymoser codec to mplayer with internal fourcc NELL
compn
parents:
24672
diff
changeset
|
3113 status working |
fbf46414bb48
add nellymoser codec to mplayer with internal fourcc NELL
compn
parents:
24672
diff
changeset
|
3114 fourcc "NELL" ; internal MPlayer FourCC |
fbf46414bb48
add nellymoser codec to mplayer with internal fourcc NELL
compn
parents:
24672
diff
changeset
|
3115 driver ffmpeg |
fbf46414bb48
add nellymoser codec to mplayer with internal fourcc NELL
compn
parents:
24672
diff
changeset
|
3116 dll "nellymoser" |
fbf46414bb48
add nellymoser codec to mplayer with internal fourcc NELL
compn
parents:
24672
diff
changeset
|
3117 |
757 | 3118 audiocodec pcm |
3119 info "Uncompressed PCM" | |
3120 status working | |
12537 | 3121 format 0x0 |
757 | 3122 format 0x1 |
14833
78385a72a8bb
Add support for 32-bit float WAV files and support for extended WAV files
ivo
parents:
14820
diff
changeset
|
3123 format 0x3 ; IEEE float |
14843 | 3124 format 0xfffe ; Extended |
2675 | 3125 format 0x20776172 ; "raw " (MOV files) |
3126 format 0x736f7774 ; "twos" (MOV files) | |
8104 | 3127 format 0x74776f73 ; "sowt" (MOV files) |
14055 | 3128 format 0x32336c66 ; "fl32" (MOV files) |
17858
996e419c1671
in24/in32/fl32 little/big-endian QuickTime PCM audio support
rathann
parents:
17813
diff
changeset
|
3129 format 0x666c3332 ; "23lf" (MOV files) |
996e419c1671
in24/in32/fl32 little/big-endian QuickTime PCM audio support
rathann
parents:
17813
diff
changeset
|
3130 ; format 0x34366c66 ; "fl64" (MOV files) |
996e419c1671
in24/in32/fl32 little/big-endian QuickTime PCM audio support
rathann
parents:
17813
diff
changeset
|
3131 ; format 0x666c3634 ; "46lf" (MOV files) |
14133
69677a5c669b
Support for "NONE" audio in MOV files generated by Kodak CX6230
rtognimp
parents:
14057
diff
changeset
|
3132 format 0x454e4f4e ; "NONE" (MOV files from Kodak CX6320) |
17813 | 3133 format 0x34326e69 ; "in24" (MOV files) |
17858
996e419c1671
in24/in32/fl32 little/big-endian QuickTime PCM audio support
rathann
parents:
17813
diff
changeset
|
3134 format 0x696e3234 ; "42ni" (MOV files) |
17813 | 3135 format 0x32336e69 ; "in32" (MOV files) |
17858
996e419c1671
in24/in32/fl32 little/big-endian QuickTime PCM audio support
rathann
parents:
17813
diff
changeset
|
3136 format 0x696e3332 ; "23ni" (MOV files) |
757 | 3137 ;;;; these are for hardware support only: (alaw,ulaw,ima-adpcm,mpeg,ac3) |
3138 ; format 0x6 | |
3139 ; format 0x7 | |
3140 ; format 0x11 | |
3141 ; format 0x50 | |
3142 ; format 0x2000 | |
3143 ;;;; | |
3144 driver pcm | |
3145 | |
267 | 3146 audiocodec divx |
268 | 3147 info "DivX audio (WMA)" |
334 | 3148 status working |
267 | 3149 format 0x160 |
3150 format 0x161 | |
3151 driver acm | |
3152 dll "divxa32.acm" | |
3153 | |
3851 | 3154 audiocodec msadpcmacm |
3155 info "MS ADPCM" | |
3156 status working | |
3157 format 0x2 | |
3158 driver acm | |
3159 dll "msadp32.acm" | |
267 | 3160 |
3161 audiocodec mp3 | |
6584 | 3162 info "mp3lib MPEG layer-2, layer-3" |
334 | 3163 status working |
1928 | 3164 comment "Optimized to MMX/SSE/3Dnow!" |
7521 | 3165 format 0x50 ; layer-1 && layer-2 |
3166 format 0x55 ; layer-3 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
3167 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
17948 | 3168 fourcc ".mp3" ; CBR/VBR MP3 (MOV files) |
3169 fourcc "MP3 " ; used in .nsv files | |
3170 fourcc "LAME" ; used in mythtv .nuv files | |
267 | 3171 driver mp3lib |
3172 | |
16362
b95513343d81
Support D-Cinema audio demuxer and decoder from FFmpeg.
reimar
parents:
16338
diff
changeset
|
3173 audiocodec ffpcmdaud |
b95513343d81
Support D-Cinema audio demuxer and decoder from FFmpeg.
reimar
parents:
16338
diff
changeset
|
3174 info "D-Cinema audio (FFmpeg)" |
b95513343d81
Support D-Cinema audio demuxer and decoder from FFmpeg.
reimar
parents:
16338
diff
changeset
|
3175 status untested |
b95513343d81
Support D-Cinema audio demuxer and decoder from FFmpeg.
reimar
parents:
16338
diff
changeset
|
3176 fourcc "daud" |
b95513343d81
Support D-Cinema audio demuxer and decoder from FFmpeg.
reimar
parents:
16338
diff
changeset
|
3177 driver ffmpeg |
b95513343d81
Support D-Cinema audio demuxer and decoder from FFmpeg.
reimar
parents:
16338
diff
changeset
|
3178 dll "pcm_s24daud" |
b95513343d81
Support D-Cinema audio demuxer and decoder from FFmpeg.
reimar
parents:
16338
diff
changeset
|
3179 |
7939 | 3180 audiocodec ffwmav1 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
3181 info "DivX audio v1 (FFmpeg)" |
8007 | 3182 status untested |
7939 | 3183 format 0x160 |
3184 driver ffmpeg | |
3185 dll "wmav1" | |
3186 | |
3187 audiocodec ffwmav2 | |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
3188 info "DivX audio v2 (FFmpeg)" |
8007 | 3189 status untested |
7939 | 3190 format 0x161 |
3191 driver ffmpeg | |
3192 dll "wmav2" | |
3193 | |
8041 | 3194 audiocodec ffmac3 |
3195 info "Macintosh Audio Compression and Expansion 3:1" | |
3196 status untested | |
3197 fourcc "MAC3" | |
3198 driver ffmpeg | |
3199 dll "mace3" | |
3200 | |
3201 audiocodec ffmac6 | |
3202 info "Macintosh Audio Compression and Expansion 6:1" | |
3203 status untested | |
3204 fourcc "MAC6" | |
3205 driver ffmpeg | |
3206 dll "mace6" | |
3207 | |
13073 | 3208 audiocodec ffsonic |
3209 info "FFmpeg Sonic" | |
3210 status untested | |
3211 fourcc SONC | |
3212 format 0x2048 | |
3213 driver ffmpeg | |
3214 dll "sonic" | |
3215 | |
14706 | 3216 audiocodec ffmp3on4 |
3217 info "FFmpeg Multi-channel MPEG layer-3 on MP4 audio decoder" | |
3218 status working | |
3219 format 0x1d61346d ; 'm','4','a',29 internal MPlayer fourcc | |
3220 driver ffmpeg | |
3221 dll "mp3on4" | |
3222 | |
1928 | 3223 audiocodec ffmp3 |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
3224 info "FFmpeg MPEG layer-3 audio decoder" |
8209 | 3225 comment "integer only" |
1928 | 3226 status working |
3227 format 0x55 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
3228 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
17948 | 3229 fourcc ".mp3" ; CBR/VBR MP3 (MOV files) |
3230 fourcc "MP3 " ; used in .nsv files | |
3231 fourcc "LAME" ; used in mythtv .nuv files | |
1928 | 3232 driver ffmpeg |
5730 | 3233 dll "mp3" |
3234 | |
14498 | 3235 audiocodec ffmp3adu |
3236 info "FFmpeg MPEG layer-3 adu audio decoder" | |
3237 comment "integer only" | |
3238 status working | |
3239 format 0x55756461 ; 'a','d','u',0x55 internal MPlayer fourcc | |
3240 driver ffmpeg | |
3241 dll "mp3adu" | |
3242 | |
5730 | 3243 audiocodec ffmp2 |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
3244 info "FFmpeg MPEG layer-1 and layer-2 audio decoder" |
8209 | 3245 comment "integer only" |
5730 | 3246 status working |
3247 format 0x50 | |
3248 driver ffmpeg | |
3249 dll "mp2" | |
1928 | 3250 |
7466
02db452ea5c8
0x50 is not playbackable (minimum only sample), prefer ffmpX to mad, ffmpeg is more often installed then mad. maybe anybody should change the sound-code to automatic try the next codec if it is not playbackable (e.g. mad not installed.
jaf
parents:
7411
diff
changeset
|
3251 audiocodec mad |
8209 | 3252 info "libMAD MPEG layer 1-2-3" |
7466
02db452ea5c8
0x50 is not playbackable (minimum only sample), prefer ffmpX to mad, ffmpeg is more often installed then mad. maybe anybody should change the sound-code to automatic try the next codec if it is not playbackable (e.g. mad not installed.
jaf
parents:
7411
diff
changeset
|
3253 status working |
02db452ea5c8
0x50 is not playbackable (minimum only sample), prefer ffmpX to mad, ffmpeg is more often installed then mad. maybe anybody should change the sound-code to automatic try the next codec if it is not playbackable (e.g. mad not installed.
jaf
parents:
7411
diff
changeset
|
3254 format 0x50 |
02db452ea5c8
0x50 is not playbackable (minimum only sample), prefer ffmpX to mad, ffmpeg is more often installed then mad. maybe anybody should change the sound-code to automatic try the next codec if it is not playbackable (e.g. mad not installed.
jaf
parents:
7411
diff
changeset
|
3255 format 0x55 |
02db452ea5c8
0x50 is not playbackable (minimum only sample), prefer ffmpX to mad, ffmpeg is more often installed then mad. maybe anybody should change the sound-code to automatic try the next codec if it is not playbackable (e.g. mad not installed.
jaf
parents:
7411
diff
changeset
|
3256 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
17948 | 3257 fourcc ".mp3" ; CBR/VBR MP3 (MOV files) |
3258 fourcc "MP3 " ; used in .nsv files | |
3259 fourcc "LAME" ; used in mythtv .nuv files | |
7466
02db452ea5c8
0x50 is not playbackable (minimum only sample), prefer ffmpX to mad, ffmpeg is more often installed then mad. maybe anybody should change the sound-code to automatic try the next codec if it is not playbackable (e.g. mad not installed.
jaf
parents:
7411
diff
changeset
|
3260 driver libmad |
02db452ea5c8
0x50 is not playbackable (minimum only sample), prefer ffmpX to mad, ffmpeg is more often installed then mad. maybe anybody should change the sound-code to automatic try the next codec if it is not playbackable (e.g. mad not installed.
jaf
parents:
7411
diff
changeset
|
3261 dll "libmad" |
02db452ea5c8
0x50 is not playbackable (minimum only sample), prefer ffmpX to mad, ffmpeg is more often installed then mad. maybe anybody should change the sound-code to automatic try the next codec if it is not playbackable (e.g. mad not installed.
jaf
parents:
7411
diff
changeset
|
3262 |
729 | 3263 audiocodec mp3acm |
3264 info "MPEG layer-3" | |
3265 status working | |
1928 | 3266 comment "conflicts with security kernel patches" |
729 | 3267 format 0x55 |
3268 driver acm | |
3269 dll "l3codeca.acm" | |
3270 | |
3758 | 3271 audiocodec imaadpcmacm |
268 | 3272 info "IMA ADPCM" |
334 | 3273 status working |
267 | 3274 format 0x11 |
3275 driver acm | |
3276 dll "imaadp32.acm" | |
27440 | 3277 |
17405 | 3278 audiocodec msgsm |
3279 info "MS GSM" | |
3280 status working | |
3281 format 0x31 | |
3282 format 0x32 | |
26747 | 3283 format 0x204D5347 |
17405 | 3284 fourcc agsm |
3285 driver msgsm | |
3286 | |
267 | 3287 audiocodec msgsmacm |
268 | 3288 info "MS GSM" |
334 | 3289 status working |
267 | 3290 format 0x31 |
6339
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
3291 ; format 0x32 |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
3292 driver acm |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
3293 dll "msgsm32.acm" |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
3294 |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
3295 audiocodec msnaudio |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
3296 info "MSN AUDIO" |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
3297 status working |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
3298 ; format 0x31 |
267 | 3299 format 0x32 |
3300 driver acm | |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
3301 dll "msnaudio.acm" |
267 | 3302 |
303 | 3303 audiocodec alaw |
3304 info "aLaw" | |
334 | 3305 status working |
303 | 3306 format 0x6 |
7771 | 3307 format 0x77616C61 ; 'alaw', .mov files |
303 | 3308 driver alaw |
3309 | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
3310 audiocodec ulaw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
3311 info "uLaw" |
757 | 3312 status working |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
3313 format 0x7 |
2675 | 3314 format 0x77616c75 ; "ulaw" (MOV files) |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
3315 driver alaw |
303 | 3316 |
401 | 3317 audiocodec dvdpcm |
8209 | 3318 info "Uncompressed DVD/VOB LPCM" |
401 | 3319 status working |
3320 format 0x10001 | |
3321 driver dvdpcm | |
3322 | |
3688 | 3323 audiocodec a52 |
3324 info "AC3-liba52" | |
3325 status working | |
3326 format 0x2000 | |
10120 | 3327 fourcc dnet |
3688 | 3328 driver liba52 |
3329 dll "liba52" | |
3330 | |
24261 | 3331 audiocodec ffac3 |
3332 info "FFmpeg AC-3" | |
3333 status working | |
3334 format 0x2000 | |
3335 fourcc dnet | |
3336 driver ffmpeg | |
3337 dll ac3 | |
3338 | |
27482 | 3339 audiocodec ffeac3 |
3340 info "FFmpeg E-AC-3" | |
3341 status working | |
3342 fourcc EAC3 | |
3343 driver ffmpeg | |
3344 dll eac3 | |
3345 | |
23821 | 3346 audiocodec dts |
3347 info "DTS-libdca" | |
3348 status working | |
3349 format 0x2001 | |
3350 driver libdca | |
3351 | |
22679 | 3352 audiocodec ffdca |
3353 info "FFmpeg DTS" | |
3354 status working | |
3355 format 0x2001 | |
3356 driver ffmpeg | |
3357 dll "dca" | |
3358 | |
21763
43c8f1aa82bb
add support for musepack native decoder from ffmpeg (require -demuxer lavf)
aurel
parents:
21647
diff
changeset
|
3359 audiocodec ffmusepack7 |
43c8f1aa82bb
add support for musepack native decoder from ffmpeg (require -demuxer lavf)
aurel
parents:
21647
diff
changeset
|
3360 info "Musepack sv7 audio codec" |
21786
6632d0c08bb1
Comment about lavf required for musepack and remove unneeded format entry.
aurel
parents:
21763
diff
changeset
|
3361 comment "only works with libavformat demuxer" |
21763
43c8f1aa82bb
add support for musepack native decoder from ffmpeg (require -demuxer lavf)
aurel
parents:
21647
diff
changeset
|
3362 status working |
43c8f1aa82bb
add support for musepack native decoder from ffmpeg (require -demuxer lavf)
aurel
parents:
21647
diff
changeset
|
3363 fourcc "MPC " |
43c8f1aa82bb
add support for musepack native decoder from ffmpeg (require -demuxer lavf)
aurel
parents:
21647
diff
changeset
|
3364 driver ffmpeg |
26568 | 3365 dll "mpc7" |
21763
43c8f1aa82bb
add support for musepack native decoder from ffmpeg (require -demuxer lavf)
aurel
parents:
21647
diff
changeset
|
3366 |
25092 | 3367 audiocodec ffmusepack8 |
3368 info "Musepack sv8 audio codec" | |
3369 comment "only works with libavformat demuxer" | |
3370 status working | |
3371 fourcc "MPC8" | |
27612 | 3372 fourcc MPCK |
25092 | 3373 driver ffmpeg |
26568 | 3374 dll "mpc8" |
25092 | 3375 |
15958
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15945
diff
changeset
|
3376 audiocodec musepack |
15960 | 3377 info "Musepack audio codec" |
15958
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15945
diff
changeset
|
3378 status working |
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15945
diff
changeset
|
3379 fourcc "MPC " |
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15945
diff
changeset
|
3380 format 0x2b4d |
15971
1cde99dbc0f9
Forgotten part of the libmusepack->mpcdec renaming
reimar
parents:
15960
diff
changeset
|
3381 driver mpcdec |
15958
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15945
diff
changeset
|
3382 |
14278 | 3383 audiocodec ffamrnb |
3384 info "AMR Narrowband" | |
3385 status working | |
3386 fourcc samr | |
3387 driver ffmpeg | |
23221 | 3388 dll "libamr_nb" |
14278 | 3389 |
3390 audiocodec ffamrwb | |
18310 | 3391 info "AMR Wideband" |
14278 | 3392 status working |
3393 fourcc sawb | |
3394 driver ffmpeg | |
23221 | 3395 dll "libamr_wb" |
14278 | 3396 |
14820 | 3397 audiocodec ffadcpmswf |
3398 info "FFmpeg's ADPCM Flash-variant" | |
3399 status working | |
3400 format 0x5346 ; 'SF', pseudo id | |
3401 driver ffmpeg | |
3402 dll "adpcm_swf" | |
3403 | |
267 | 3404 audiocodec voxware |
268 | 3405 info "VoxWare" |
2691 | 3406 status working |
22364
522954b26e17
comment is a C-string and \ must be properly escaped as \\
reimar
parents:
22360
diff
changeset
|
3407 comment "windows users need msms001.vwp in windows\\system32 folder" |
267 | 3408 format 0x75 |
3409 driver dshow | |
13440
69b7457b6cc7
Add comment to remind that voxmsdec.ax requires also msms001.vwp
rtognimp
parents:
13356
diff
changeset
|
3410 dll "voxmsdec.ax" ; need also msms001.vwp |
267 | 3411 guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d |
3412 | |
333 | 3413 audiocodec acelp |
3414 info "ACELP.net Sipro Lab Audio Decoder" | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3415 status working |
333 | 3416 format 0x130 |
3417 driver dshow | |
3418 dll "acelpdec.ax" | |
334 | 3419 guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7 |
333 | 3420 |
20523 | 3421 audiocodec ffimc |
3422 info "FFmpeg Intel Music Coder" | |
3423 status working | |
3424 format 0x401 | |
3425 driver ffmpeg | |
3426 dll "imc" | |
3427 | |
333 | 3428 audiocodec imc |
3429 info "Intel Music Coder" | |
1372 | 3430 status working |
3431 comment "driver at http://codeczone.virtualave.net/FXIMCAUD.zip" | |
333 | 3432 format 0x401 |
1372 | 3433 driver acm |
3434 dll "imc32.acm" | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
3435 |
12523 | 3436 audiocodec iac25 |
3437 info "Indeo audio" | |
3438 status working | |
3439 format 0x402 | |
3440 driver acm | |
3441 dll "iac25_32.ax" | |
3442 | |
13625 | 3443 audiocodec ffctadp32 |
3444 info "Creative ADPCM native codec" | |
3445 status working | |
3446 format 0x200 | |
3447 driver ffmpeg | |
3448 dll "adpcm_ct" | |
3449 | |
13350
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3450 audiocodec ctadp32 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
3451 info "Creative ADPCM codec" |
13350
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3452 status working |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3453 format 0x200 |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3454 driver acm |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3455 dll "ctadp32.acm" |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3456 |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3457 audiocodec sc4 |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3458 info "SC4 : Micronas speech codec (ADPCM, MPman recording)" |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3459 status working |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3460 format 0x350 |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3461 driver acm |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3462 dll "mi-sc4.acm" |
dab72e81d849
Support "Creative ADPCM codec" and "Micronas speech codec" audio codecs
rtognimp
parents:
13190
diff
changeset
|
3463 |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
3464 audiocodec hwac3 |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
3465 info "AC3 through S/PDIF" |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
3466 status working |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
3467 format 0x2000 |
10120 | 3468 fourcc dnet |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
3469 driver hwac3 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
3470 |
13006 | 3471 audiocodec hwdts |
14683
a99bdb15d2aa
Comment and info field spelling/grammar corrections.
diego
parents:
14629
diff
changeset
|
3472 info "DTS through S/PDIF" |
13006 | 3473 status working |
3474 format 0x2001 | |
3475 driver hwac3 | |
3476 | |
19338
7f1bc9383922
Prefer ffvorbis over Xiph Vorbis decoder, it's faster.
diego
parents:
19289
diff
changeset
|
3477 audiocodec ffvorbis |
7f1bc9383922
Prefer ffvorbis over Xiph Vorbis decoder, it's faster.
diego
parents:
19289
diff
changeset
|
3478 info "FFmpeg Vorbis decoder" |
7f1bc9383922
Prefer ffvorbis over Xiph Vorbis decoder, it's faster.
diego
parents:
19289
diff
changeset
|
3479 status working |
7f1bc9383922
Prefer ffvorbis over Xiph Vorbis decoder, it's faster.
diego
parents:
19289
diff
changeset
|
3480 fourcc vrbs |
7f1bc9383922
Prefer ffvorbis over Xiph Vorbis decoder, it's faster.
diego
parents:
19289
diff
changeset
|
3481 format 0x566F |
7f1bc9383922
Prefer ffvorbis over Xiph Vorbis decoder, it's faster.
diego
parents:
19289
diff
changeset
|
3482 driver ffmpeg |
7f1bc9383922
Prefer ffvorbis over Xiph Vorbis decoder, it's faster.
diego
parents:
19289
diff
changeset
|
3483 dll "vorbis" |
7f1bc9383922
Prefer ffvorbis over Xiph Vorbis decoder, it's faster.
diego
parents:
19289
diff
changeset
|
3484 |
1828 | 3485 audiocodec vorbis |
3486 info "OggVorbis Audio Decoder" | |
1985 | 3487 status working |
1828 | 3488 comment "OggVorbis driver using libvorbis" |
14843 | 3489 fourcc vrbs |
17009
48a041427dbb
libavformat seems to use "Vo" as Vorbis tag, so add that.
reimar
parents:
16964
diff
changeset
|
3490 format 0x566F |
1828 | 3491 driver libvorbis |
3492 dll "libvorbis" | |
26352
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3493 |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3494 audiocodec vorbisacm |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3495 info "OggVorbis ACM" |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3496 status working |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3497 comment "OggVorbis driver using vorbis.acm" |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3498 format 0x674F ; mode1 |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3499 format 0x6750 ; mode2 |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3500 ; format 0x6751 ; mode3 |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3501 format 0x676F ; mode1+ |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3502 format 0x6770 ; mode2+ |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3503 format 0x6771 ; mode3+ |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3504 driver acm |
50ef6af151fa
Support for vorbis.acm decoder (used for some implementations of vorbis
rtogni
parents:
26303
diff
changeset
|
3505 dll "vorbis.acm" |
1828 | 3506 |
16915
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16825
diff
changeset
|
3507 audiocodec speex |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16825
diff
changeset
|
3508 info "Speex Audio Decoder" |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16825
diff
changeset
|
3509 status working |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16825
diff
changeset
|
3510 comment "Speex driver using libspeex" |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16825
diff
changeset
|
3511 fourcc 'spx ' |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16825
diff
changeset
|
3512 driver speex |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16825
diff
changeset
|
3513 dll "speex" |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16825
diff
changeset
|
3514 |
3472 | 3515 audiocodec vivoaudio |
3516 info "Vivo G.723/Siren Audio Codec" | |
3517 status working | |
2675 | 3518 format 0x111 ; vivo g.723 |
3472 | 3519 format 0x112 ; siren |
2675 | 3520 driver acm |
3521 dll "vivog723.acm" | |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
3522 |
3427 | 3523 audiocodec g72x |
3524 info "G.711/G.721/G.723" | |
6584 | 3525 status crashing |
3427 | 3526 comment "does not work yet - just noise :(" |
27440 | 3527 format 0x111 ; vivo g.723 |
3528 format 0x112 ; vivo siren | |
3427 | 3529 driver g72x |
3530 dll "g72x.c" | |
3986 | 3531 |
11956 | 3532 audiocodec ffg726 |
3533 info "Sharp G.726 Audio" | |
3534 status working | |
3535 format 0x45 | |
3536 driver ffmpeg | |
3537 dll "g726" | |
3538 | |
11684 | 3539 audiocodec g726 |
3540 info "Sharp G.726 Audio" | |
3541 status untested | |
3542 format 0x45 | |
3543 driver acm | |
3544 dll "scg726.acm" | |
3545 | |
3986 | 3546 audiocodec atrac3 |
3547 info "Sony ATRAC3" | |
3548 status buggy | |
8209 | 3549 comment "format not accepted" |
3986 | 3550 format 0x270 |
3551 driver acm | |
3552 dll "atrac3.acm" | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3553 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3554 audiocodec ALF2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3555 ; http://www.nctsoft.com/products/NCTALFCD/ |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3556 ; jdp@mail.sonofon.dk |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3557 info "ALF2" |
5762 | 3558 status working |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3559 format 0x1FC4 ; ALF2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3560 driver acm |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3561 dll "alf2cd.acm" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
3562 |
17320 | 3563 audiocodec fftruespeech |
3564 info "FFmpeg TrueSpeech" | |
17555
b56c246ca8c0
fftruespeech works now that the nBlockAlign issue is settled.
diego
parents:
17543
diff
changeset
|
3565 status working |
17320 | 3566 format 0x22 |
3567 driver ffmpeg | |
3568 dll "truespeech" | |
3569 | |
5749 | 3570 audiocodec truespeech |
5757
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3571 info "DSP Group TrueSpeech(TM)" |
5749 | 3572 status working |
3573 format 0x22 | |
3574 driver acm | |
12804
0106b9917013
Status updates and comments about other dll required by some codecs
rtognimp
parents:
12735
diff
changeset
|
3575 dll "tssoft32.acm" ; need also tsd32.dll |
5753 | 3576 |
3577 ; rt32dcmp.dll needed too | |
3578 audiocodec voxwarert24 | |
3579 info "VoxWare RT24 speech codec" | |
3580 status working | |
3581 format 0x181c | |
3582 driver acm | |
3583 dll "nsrt2432.acm" | |
5757
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3584 |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3585 audiocodec lhacm |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3586 info "Lernout & Hauspie CELP and SBC codecs" |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3587 status working |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3588 format 0x1101 ; CELP |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3589 format 0x1102 ; SBC |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3590 format 0x1103 ; SBC |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3591 format 0x1104 ; SBC |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3592 driver acm |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
3593 dll "lhacm.acm" |
14276 | 3594 |
3595 audiocodec TwinVQ | |
3596 info "VQF codec by NTTLabs" | |
3597 status working | |
3598 fourcc TWIN | |
3599 driver vqf | |
3600 dll "tvqdec.dll" | |
17397
2e20dd653147
ad_hwmpa: pass-through fake audio codec for hardware mpeg decoders
nicodvb
parents:
17353
diff
changeset
|
3601 |
17399
5e11e2cb1043
restored hwmpa with 'working' status and lowest priority
nicodvb
parents:
17398
diff
changeset
|
3602 audiocodec hwmpa |
17403 | 3603 info "MPEG audio pass-through for hardware MPEG decoders" |
17399
5e11e2cb1043
restored hwmpa with 'working' status and lowest priority
nicodvb
parents:
17398
diff
changeset
|
3604 status working |
17403 | 3605 comment "for hardware MPEG audio decoders" |
17399
5e11e2cb1043
restored hwmpa with 'working' status and lowest priority
nicodvb
parents:
17398
diff
changeset
|
3606 format 0x50 ; layer-1 && layer-2 |
5e11e2cb1043
restored hwmpa with 'working' status and lowest priority
nicodvb
parents:
17398
diff
changeset
|
3607 format 0x55 ; layer-3 |
5e11e2cb1043
restored hwmpa with 'working' status and lowest priority
nicodvb
parents:
17398
diff
changeset
|
3608 format 0x5500736d ; "ms\0\x55" older MP3 fourcc (MOV files) |
17948 | 3609 fourcc ".mp3" ; CBR/VBR MP3 (MOV files) |
3610 fourcc "MP3 " ; used in .nsv files | |
3611 fourcc "LAME" ; used in mythtv .nuv files | |
17399
5e11e2cb1043
restored hwmpa with 'working' status and lowest priority
nicodvb
parents:
17398
diff
changeset
|
3612 driver hwmpa |
26441
586d7ee3c106
Add support for msn siren audio coced via binary dll sirenacm.dll
rtogni
parents:
26440
diff
changeset
|
3613 |
586d7ee3c106
Add support for msn siren audio coced via binary dll sirenacm.dll
rtogni
parents:
26440
diff
changeset
|
3614 audiocodec msnsiren |
586d7ee3c106
Add support for msn siren audio coced via binary dll sirenacm.dll
rtogni
parents:
26440
diff
changeset
|
3615 info "msn siren audio codec" |
586d7ee3c106
Add support for msn siren audio coced via binary dll sirenacm.dll
rtogni
parents:
26440
diff
changeset
|
3616 status working |
586d7ee3c106
Add support for msn siren audio coced via binary dll sirenacm.dll
rtogni
parents:
26440
diff
changeset
|
3617 format 0x28E |
586d7ee3c106
Add support for msn siren audio coced via binary dll sirenacm.dll
rtogni
parents:
26440
diff
changeset
|
3618 driver acm |
586d7ee3c106
Add support for msn siren audio coced via binary dll sirenacm.dll
rtogni
parents:
26440
diff
changeset
|
3619 dll "sirenacm.dll" |