Mercurial > mplayer.hg
annotate etc/codecs.conf @ 12616:4b4c748da990
sync VOBsub
author | wight |
---|---|
date | Mon, 21 Jun 2004 14:07:04 +0000 |
parents | d873777f0acf |
children | 985e1813e298 |
rev | line source |
---|---|
5121 | 1 ;============================================================================= |
307 | 2 ; Default codecs config file. It replaces the old codecs.c file! |
5121 | 3 ; Before editing this file, please read DOCS/tech/codecs.conf.txt ! |
4 ;============================================================================= | |
267 | 5 |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
6 release 20030724 |
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 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
12 ; mpeg 1/2 decoding: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
13 ; Note: mpegpes is preferred for hw decoders: |
1278 | 14 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
15 videocodec mpegpes |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
16 info "Mpeg PES output (.mpg or Dxr3/DVB card)" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
17 comment "for hardware decoding" |
1278 | 18 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
19 format 0x10000001 ; mpeg 1 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
20 format 0x10000002 ; mpeg 2 |
5477
fc466845b9e1
mpegpes is no longer handled by libmpeg2 - we have vd_mpegpes now
arpi
parents:
5464
diff
changeset
|
21 driver mpegpes |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
22 out MPES |
1278 | 23 |
303 | 24 videocodec mpeg12 |
8209 | 25 info "MPEG 1 or 2 (libmpeg2)" |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
26 comment "with postprocessing" |
334 | 27 status working |
1463 | 28 format 0x10000001 ; mpeg 1 |
29 format 0x10000002 ; mpeg 2 | |
303 | 30 driver libmpeg2 |
8209 | 31 ; dll "libmpeg2" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
32 out YV12,I420,IYUV |
303 | 33 |
10727 | 34 videocodec ffmpeg1 |
35 info "FFmpeg MPEG 1" | |
36 status working | |
37 format 0x10000001 ; mpeg 1 | |
38 fourcc mpg1 | |
39 fourcc PIM1 ; Pinnacle hardware-mpeg1 | |
40 fourcc VCR2 | |
41 driver ffmpeg | |
42 dll "mpeg1video" | |
43 out YV12,I420,IYUV | |
44 | |
45 videocodec ffmpeg2 | |
46 info "FFmpeg MPEG 2" | |
47 status working | |
48 format 0x10000002 ; mpeg 2 | |
49 fourcc mpg2 | |
50 driver ffmpeg | |
51 dll "mpeg2video" | |
52 out YV12,I420,IYUV | |
12562 | 53 out 422P,444P |
10727 | 54 |
11435 | 55 ; for backward compatibility |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
56 videocodec ffmpeg12 |
6584 | 57 info "FFmpeg MPEG 1/2" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
58 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
59 format 0x10000001 ; mpeg 1 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
60 format 0x10000002 ; mpeg 2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
61 fourcc mpg1,mpg2 |
8336
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
62 fourcc PIM1 ; Pinnacle hardware-mpeg1 |
10469 | 63 fourcc VCR2 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
64 driver ffmpeg |
11438 | 65 dll "mpegvideo" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
66 out YV12,I420,IYUV |
12562 | 67 out 422P,444P |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
68 |
10316 | 69 videocodec ffmpeg12mc |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
70 info "FFmpeg MPEG 1/2 (XvMC)" |
10316 | 71 status buggy |
72 format 0x10000001 ; mpeg 1 | |
73 format 0x10000002 ; mpeg 2 | |
74 fourcc mpg1,mpg2 | |
75 fourcc PIM1 ; Pinnacle hardware-mpeg1 | |
76 driver ffmpeg | |
77 dll "mpegvideo_xvmc" | |
78 out IDCT_MPEG2 | |
79 out MOCO_MPEG2 | |
80 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
81 ; we have only native opensource codecs for these: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
82 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
83 videocodec nuv |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
84 info "NuppelVideo" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
85 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
86 fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
87 driver nuv |
5708 | 88 out I420,IYUV |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
89 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
90 videocodec mpng |
6584 | 91 info "PNG images decoder" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
92 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
93 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
|
94 fourcc mpng,MPNG |
6584 | 95 dll "libpng" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
96 driver mpng |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
97 out BGR32,BGR24 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
98 |
7362 | 99 videocodec mtga |
100 info "TGA images decoder" | |
101 status working | |
102 comment "Only 24bpp and 32bpp RGB TGA files supported" | |
103 fourcc mtga,MTGA | |
104 driver mtga | |
7392
e21841225e2a
query_format support by Tilman Sauerbeck <tsauerbeck@users.sourceforge.net>
alex
parents:
7384
diff
changeset
|
105 out BGR32,BGR24 |
7362 | 106 |
9534
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
107 videocodec sgi |
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
108 info "SGI images decoder" |
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
109 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
110 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
|
111 driver sgi |
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
112 out BGR24 |
87e03d96a4cd
add support for sgi files to mencoder patch by (Todd Kirby <slapcat at pacbell dot net>)
michael
parents:
9320
diff
changeset
|
113 |
9920 | 114 videocodec ffindeo3 |
115 info "FFmpeg Intel Indeo 3.1/3.2" | |
116 status working | |
117 fourcc IV31,iv31 | |
118 fourcc IV32,iv32 | |
119 driver ffmpeg | |
120 dll indeo3 | |
121 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
|
122 |
11847 | 123 videocodec fffli |
124 info "Autodesk FLI/FLC Animation" | |
125 status working | |
126 fourcc FLIC ; FLIC is an internal MPlayer FOURCC | |
127 driver ffmpeg | |
128 dll "flic" | |
129 out BGR8 | |
130 | |
11956 | 131 videocodec ffqtrle |
132 info "Quicktime Animation (RLE)" | |
133 status working | |
134 format 0x20656C72 ; "rle " | |
135 driver ffmpeg | |
136 dll "qtrle" | |
137 out BGR32,RGB24,BGR15,BGR8 query | |
138 | |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
139 videocodec ffrpza |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
140 info "Quicktime Apple Video" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
141 status working |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
142 fourcc rpza,azpr |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
143 driver ffmpeg |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
144 dll "rpza" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
145 out BGR15 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
146 |
11527 | 147 videocodec ffsmc |
148 info "Apple Graphics (SMC) codec" | |
149 status working | |
150 format 0x20636d73 ; "smc " | |
151 driver ffmpeg | |
152 dll "smc" | |
153 out BGR8 | |
154 | |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
155 videocodec ff8bps |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
156 info "Planar RGB (Photoshop)" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
157 status working |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
158 fourcc 8BPS |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
159 driver ffmpeg |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
160 dll "8bps" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
161 out BGR32,BGR24,BGR8 query |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
162 |
12397
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
163 videocodec ffcyuv |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
164 info "Creative YUV (libavcodec)" |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
165 status working |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
166 fourcc cyuv,CYUV |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
167 driver ffmpeg |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
168 dll "cyuv" |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
169 out 411P |
adfd98f1abf7
Enable cyuv decoder from libavcodec, use it as preferred codec for cyuv
rtognimp
parents:
12353
diff
changeset
|
170 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
171 videocodec cyuv |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
172 info "Creative YUV (native codec)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
173 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
174 fourcc cyuv,CYUV |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
175 driver cyuv |
7521 | 176 out 411P |
177 out YUY2,UYVY | |
178 out 422P | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
179 |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
180 videocodec ffmsrle |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
181 info "Microsoft RLE" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
182 status working |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
183 format 0x1 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
184 format 0x2 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
185 driver ffmpeg |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
186 dll "msrle" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
187 out BGR8 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
188 |
12444
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
189 videocodec ffroqvideo |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
190 info "Id RoQ File Video Decoder" |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
191 status buggy |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
192 comment "buggy" |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
193 fourcc RoQV ; RoQV is an internal MPlayer FOURCC |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
194 driver ffmpeg |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
195 dll "roqvideo" |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
196 out YV12 |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
197 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
198 videocodec roqvideo |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
199 info "Id RoQ File Video Decoder" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
200 status buggy |
8209 | 201 comment "buggy" |
202 fourcc RoQV ; RoQV is an internal MPlayer FOURCC | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
203 driver roqvideo |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
204 out YV12 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
205 |
7729 | 206 videocodec lzo |
207 info "LZO compressed" | |
208 status working | |
209 fourcc LZO1 | |
210 driver lzo | |
211 dll "liblzo" | |
212 out YV12,I420 | |
213 out BGR24 flip | |
214 | |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
215 videocodec theora |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
216 info "Theora (free, reworked VP3)" |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
217 status working |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
218 fourcc theo,Thra |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
219 format 0xFFFC |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
220 driver theora |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
221 dll libtheora |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
222 out YV12 |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
223 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
224 ; prefer native codecs over win32? |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
225 ; 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
|
226 ; 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
|
227 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
228 ;WIN32: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
229 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
230 videocodec cram |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
231 info "Microsoft Video 1" |
11261 | 232 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
|
233 status buggy |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
234 fourcc cram,CRAM CRAM |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
235 fourcc msvc,MSVC CRAM |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
236 fourcc wham,WHAM CRAM |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
237 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
238 dll "msvidc32.dll" |
7328 | 239 out BGR24,BGR15,BGR8 static,query |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
240 |
12614 | 241 videocodec ffcvid |
242 info "Cinepak Video (native codec)" | |
243 status working | |
244 fourcc cvid,CVID | |
245 driver ffmpeg | |
246 dll "cinepak" | |
247 out YV12 | |
248 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
249 videocodec cvidvfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
250 info "Cinepak Video" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
251 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
252 fourcc cvid |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
253 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
254 dll "iccvid.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
255 ; out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
256 ; out UYVY |
6104
0fb14001bf06
old vfw codecs don't like double buffering - force static buffer for them
arpi
parents:
6098
diff
changeset
|
257 out BGR24,BGR15 static |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
258 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
259 videocodec huffyuv |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
260 info "HuffYUV" |
6189 | 261 status buggy |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
262 fourcc HFYU |
267 | 263 driver vfw |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
264 dll "huffyuv.dll" |
7328 | 265 out YUY2 flip,noflip,query |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
266 ; out UYVY flip |
7328 | 267 out BGR32,BGR24 flip,query |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
268 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
269 ;NATIVE: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
270 |
11421
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
271 videocodec ffvideo1 |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
272 info "Microsoft Video 1 (native codec)" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
273 status working |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
274 fourcc cram,CRAM |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
275 fourcc msvc,MSVC |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
276 fourcc wham,WHAM |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
277 driver ffmpeg |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
278 dll "msvideo1" |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
279 out BGR15,BGR8 query |
9a34051512b2
Use 8BPS, MS rle, MS Video 1, QT rpza from libavcodec
rtognimp
parents:
11389
diff
changeset
|
280 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
281 videocodec cvid |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
282 info "Cinepak Video (native codec)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
283 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
284 fourcc cvid,CVID |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
285 driver cinepak |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
286 out YV12,I420,IYUV |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
287 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
288 out BGR32,BGR24 |
267 | 289 |
11784 | 290 videocodec ffmszh |
291 info "AVImszh (native codec)" | |
292 status working | |
293 fourcc MSZH | |
294 driver ffmpeg | |
295 dll "mszh" | |
296 out BGR24 | |
297 | |
298 videocodec ffzlib | |
299 info "AVIzlib (native codec)" | |
300 status working | |
301 fourcc ZLIB | |
302 driver ffmpeg | |
303 dll "zlib" | |
304 out BGR24 | |
305 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
306 ;XAnim (slow): |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
307 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
308 videocodec cvidxa |
6584 | 309 info "XAnim's Radius Cinepak Video" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
310 status buggy |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
311 fourcc cvid |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
312 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
313 dll "vid_cvid.xa" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
314 out YV12,IYUV,I420 static |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
315 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
316 ; time to decide what to do with the mpeg4/divx variants... |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
317 ; ff* is fastest... |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
318 |
8190 | 319 videocodec ffhuffyuv |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
320 info "FFmpeg HuffYUV" |
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
321 status working |
8190 | 322 fourcc HFYU |
323 driver ffmpeg | |
324 dll huffyuv | |
9033 | 325 out YUY2,422P,YV12 |
8190 | 326 out BGR32,BGR24 |
327 | |
10264 | 328 videocodec ffv1 |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
329 info "FFV1 (lossless codec)" |
10264 | 330 status working |
331 fourcc FFV1 | |
332 driver ffmpeg | |
333 dll ffv1 | |
334 out 411P,444P,422P,YV12,I420,IYUV,YVU9 | |
11354 | 335 out BGR32 |
336 | |
10131 | 337 videocodec ffasv1 |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
338 info "FFmpeg ASUS V1" |
10131 | 339 status working |
340 fourcc ASV1 | |
341 driver ffmpeg | |
342 dll asv1 | |
343 out YV12,I420,IYUV | |
344 | |
10774 | 345 videocodec ffasv2 |
346 info "FFmpeg ASUS V2" | |
347 status working | |
348 fourcc ASV2 | |
349 driver ffmpeg | |
350 dll asv2 | |
351 out YV12,I420,IYUV | |
352 | |
10465 | 353 videocodec ffvcr1 |
354 info "FFmpeg ATI VCR1" | |
355 status working | |
356 fourcc VCR1 | |
357 driver ffmpeg | |
358 dll vcr1 | |
359 out YVU9 | |
360 | |
10479 | 361 videocodec ffcljr |
362 info "FFmpeg Cirrus Logic AccuPak (CLJR)" | |
363 status working | |
364 fourcc CLJR | |
365 driver ffmpeg | |
366 dll cljr | |
10480 | 367 out 411P |
10479 | 368 |
6682
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
369 videocodec ffsvq1 |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
370 info "FFmpeg Sorenson Video v1 (SVQ1)" |
6682
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
371 status working |
12458 | 372 fourcc SVQ1,svq1 |
6682
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
373 driver ffmpeg |
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
374 dll svq1 |
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
375 out YVU9 |
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
376 |
12172 | 377 videocodec ff4xm |
378 info "FFmpeg 4XM video" | |
379 status working | |
380 fourcc 4XMV | |
381 driver ffmpeg | |
382 dll 4xm | |
383 out BGR16 | |
12173 | 384 |
385 videocodec ffflv | |
386 info "FFmpeg Flash video" | |
387 status working | |
388 fourcc FLV1 | |
389 driver ffmpeg | |
390 dll flv | |
391 out YV12 | |
392 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
393 videocodec ffdivx |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
394 info "FFmpeg DivX ;-) (MS MPEG-4 v3)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
395 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
396 fourcc MPG3,mpg3 div3 |
334 | 397 fourcc MP43,mp43 div3 ; M$ MPEG4 v3 (fourcc mapping to div3) |
398 fourcc DIV5,div5 div3 ; DivX 3.20 | |
399 fourcc DIV6,div6 div4 ; -||- | |
312 | 400 fourcc DIV3,div3,DIV4,div4 |
1526 | 401 fourcc AP41 div3 ; AngelPotion stuff |
7225 | 402 fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax) |
7726 | 403 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
|
404 driver ffmpeg |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
405 dll msmpeg4 |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
406 out YV12,I420,IYUV |
5493 | 407 |
408 videocodec ffmp42 | |
409 info "FFmpeg M$ MPEG-4 v2" | |
5496 | 410 status working |
5493 | 411 fourcc DIV2,div2 mp42 |
6010 | 412 fourcc MP42,mp42 |
5493 | 413 driver ffmpeg |
414 dll msmpeg4v2 | |
415 out YV12,I420,IYUV | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
416 |
6264 | 417 videocodec ffmp41 |
418 info "FFmpeg M$ MPEG-4 v1" | |
419 status working | |
420 fourcc DIV1,div1 mpg4 | |
421 fourcc MPG4,mpg4 | |
422 driver ffmpeg | |
423 dll msmpeg4v1 | |
424 out YV12,I420,IYUV | |
425 | |
6460 | 426 videocodec ffwmv1 |
427 info "FFmpeg M$ WMV1/WMV7" | |
428 status working | |
429 fourcc WMV1,wmv1 | |
430 driver ffmpeg | |
431 dll wmv1 | |
432 out YV12,I420,IYUV | |
433 | |
8589 | 434 videocodec ffwmv2 |
435 info "FFmpeg M$ WMV2/WMV8" | |
436 status buggy | |
437 fourcc WMV2,wmv2 | |
438 driver ffmpeg | |
439 dll wmv2 | |
440 out YV12,I420,IYUV | |
441 | |
9867 | 442 videocodec ffh264 |
443 info "FFmpeg H.264" | |
444 status working | |
445 fourcc H264,h264 | |
446 format 0x10000005 | |
447 driver ffmpeg | |
448 dll h264 | |
449 out YV12,I420,IYUV | |
450 | |
10085 | 451 videocodec ffsvq3 |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
452 info "FFmpeg Sorenson Video v3 (SVQ3)" |
10085 | 453 status working |
454 fourcc SVQ3 | |
455 driver ffmpeg | |
456 dll svq3 | |
457 out YV12,I420,IYUV | |
458 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
459 videocodec ffodivx |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
460 info "FFmpeg MPEG-4" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
461 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
462 fourcc DIVX,divx |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
463 fourcc DIV1,div1 divx |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
464 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
6010 | 465 fourcc M4S2,m4s2 |
8093 | 466 fourcc xvid,XVID,XviD,XVIX |
11611 | 467 fourcc DX50,dx50,BLZ0 DX50 |
12172 | 468 fourcc mp4v,MP4V |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
469 format 0x4 |
7384 | 470 fourcc UMP4 |
7726 | 471 fourcc 3IV2,3iv2 ; 3ivx Delta 4 |
9069
0d2b25a821c9
raw mpeg4-es support (you need to set -fps manually!)
arpi
parents:
9065
diff
changeset
|
472 format 0x10000004 ; mpeg 4 es |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
473 driver ffmpeg |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
474 dll mpeg4 ;opendivx |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
475 out YV12,I420,IYUV |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
476 |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
477 videocodec xvid |
10418
4b0bab36c1c0
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
alex
parents:
10381
diff
changeset
|
478 info "XviD (MPEG-4)" |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
479 status working |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
480 fourcc DIVX,divx |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
481 fourcc xvid,XVID,XviD |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
482 format 0x4 |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
483 driver xvid |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
484 out YV12 |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
485 out I420 |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
486 out YUY2 |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
487 out UYVY |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
488 out YVYU |
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
489 out BGR32,BGR24,BGR16,BGR15 |
8209 | 490 dll "libxvidcore.a" |
6701
522713337297
Support for Xvid using their new api. If divx4 compatiblity is disabeled
albeu
parents:
6683
diff
changeset
|
491 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
492 ; divx4 does direct render, and is native on linux |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
493 |
1390 | 494 videocodec odivx |
6584 | 495 info "OpenDivX API (ODIVX,DIVX4,DIVX5,XVID)" |
1390 | 496 comment "with postprocessing" |
497 status working | |
6893 | 498 fourcc mp4v |
1390 | 499 fourcc DIVX,divx |
500 fourcc DIV1,div1 divx | |
5161 | 501 ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
1390 | 502 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! |
1526 | 503 fourcc AP41 DIV3 ; AngelPotion stuff |
4206 | 504 fourcc xvid,XVID,XviD |
6682
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
505 fourcc DX50,BLZ0 DX50 |
1390 | 506 format 0x4 |
507 driver odivx | |
8209 | 508 dll "libdivxdecore.so" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
509 out YV12,I420,IYUV |
1390 | 510 |
1349 | 511 videocodec divx4 |
6584 | 512 info "DivX4Linux API (DIVX4,DIVX5,XVID)" |
1349 | 513 comment "with postprocessing" |
514 status working | |
6893 | 515 fourcc mp4v |
1349 | 516 fourcc DIVX,divx |
517 fourcc DIV1,div1 divx | |
5161 | 518 ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
1349 | 519 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! |
1526 | 520 fourcc AP41 DIV3 ; AngelPotion stuff |
4206 | 521 fourcc xvid,XVID,XviD |
6682
eb14fbe55a34
Support for Warcraft 3 videos and for FFmpeg SVQ1 codec.
atmos4
parents:
6584
diff
changeset
|
522 fourcc DX50,BLZ0 DX50 |
1349 | 523 format 0x4 |
524 driver divx4 | |
8209 | 525 dll "libdivxdecore.so" |
5464 | 526 ; out I420 ; planar direct rendering |
1349 | 527 out YUY2 |
528 out UYVY | |
529 out BGR32,BGR24,BGR16,BGR15 | |
267 | 530 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
531 ; 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
|
532 |
2088 | 533 videocodec divx4vfw |
6584 | 534 info "DivX4Windows-VFW" |
5521 | 535 status buggy |
536 comment "sig11 with -framedrop" | |
2088 | 537 fourcc DIVX,divx ; opendivx / divx4 |
538 fourcc DIV1,div1 divx | |
5161 | 539 ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
2088 | 540 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! |
541 fourcc AP41 DIV3 ; AngelPotion stuff | |
542 format 0x4 | |
543 driver vfw | |
544 dll "divx.dll" | |
545 ; out YV12 ; buggy | |
546 out YUY2 | |
547 out BGR32,BGR24,BGR15 | |
548 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
549 ; the original ones... prefer DShow for postprocessing: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
550 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
551 videocodec divxds |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
552 info "DivX ;-) (MS MPEG-4 v3)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
553 comment "with postprocessing" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
554 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
555 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
|
556 fourcc DIV5,div5 div3 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
557 fourcc DIV6,div6 div4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
558 fourcc DIV3,div3,DIV4,div4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
559 fourcc AP41 div3 ; AngelPotion stuff |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
560 driver dshow |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
561 dll "divx_c32.ax" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
562 guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa |
6528 | 563 out YUY2,UYVY |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
564 out BGR32,BGR24,BGR16,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
565 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
566 videocodec divx |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
567 info "DivX ;-) (MS MPEG-4 v3)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
568 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
569 fourcc MP43,mp43 div3 ; M$ MPEG4 v3 (fourcc mapping to div3) |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
570 fourcc DIV5,div5 div3 ; DivX 3.20 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
571 fourcc DIV6,div6 div4 ; -||- |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
572 fourcc DIV3,div3,DIV4,div4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
573 fourcc AP41 div3 ; AngelPotion stuff |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
574 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
575 dll "divxc32.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
576 out YUY2 yuvhack |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
577 out BGR32,BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
578 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
579 ; 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
|
580 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
581 videocodec mpeg4ds |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
582 info "Microsoft MPEG-4 v1/v2" |
1453 | 583 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
584 comment "with postprocessing" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
585 fourcc DIV2,div2 mp42 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
586 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
587 fourcc MPG4,mpg4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
588 fourcc MP42,mp42 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
589 driver dshow |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
590 dll "mpg4ds32.ax" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
591 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
|
592 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
593 out BGR32,BGR24,BGR16,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
594 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
595 videocodec mpeg4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
596 info "Microsoft MPEG-4 v1/v2" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
597 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
598 fourcc MPG4,mpg4 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
599 fourcc MP42,mp42 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
600 fourcc DIV2 mp42 |
1453 | 601 driver vfw |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
602 dll "mpg4c32.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
603 out YUY2 yuvhack |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
604 out BGR32,BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
605 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
606 videocodec wmv8 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
607 info "Windows Media Video 8" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
608 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
609 fourcc WMV2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
610 driver dshow |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
611 dll "wmv8ds32.ax" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
612 guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f |
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
|
613 out YV12,I420,IYUV |
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
|
614 out YUY2,UYVY |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
615 out BGR32,BGR24,BGR16,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
616 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
617 videocodec wmv7 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
618 info "Windows Media Video 7" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
619 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
620 fourcc WMV1 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
621 driver dshow |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
622 dll "wmvds32.ax" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
623 guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae |
6528 | 624 out YUY2,UYVY |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
625 out BGR32,BGR24,BGR16,BGR15 |
1453 | 626 |
8296 | 627 videocodec wmv9dmo |
628 info "Windows Media Video 9 DMO" | |
629 status working | |
630 fourcc WMV3 | |
631 driver dmo | |
632 dll "wmv9dmod.dll" | |
633 guid 0x724bb6a4, 0xe526, 0x450f, 0xaf, 0xfa, 0xab, 0x9b, 0x45, 0x12, 0x91, 0x11 | |
634 out YV12 ;,I420,IYUV | |
635 out YUY2,UYVY | |
636 out BGR32,BGR24,BGR16 ;,BGR15 | |
637 | |
638 videocodec wmvdmo | |
639 info "Windows Media Video DMO" | |
640 status working | |
641 fourcc WMV1 | |
642 fourcc WMV2 | |
643 fourcc WMV3 | |
644 driver dmo | |
645 dll "wmvdmod.dll" | |
646 guid 0x82d353df, 0x90bd, 0x4382, 0x8b, 0xc2, 0x3f, 0x61, 0x92, 0xb7, 0x6e, 0x34 | |
647 out YV12 ;,I420,IYUV | |
648 out YUY2,UYVY | |
649 out BGR32,BGR24,BGR16 ;,BGR15 | |
650 | |
5771 | 651 videocodec ubmp4 |
652 info "UB Video MPEG 4" | |
8209 | 653 comment "black&white" |
5771 | 654 status buggy |
6893 | 655 fourcc mp4v UMP4 ; black&white, sometimes buggy too |
5771 | 656 fourcc UMP4 |
657 driver vfw | |
658 dll "ubvmp4d.dll" | |
659 out I420 | |
660 out UYVY | |
661 | |
662 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
663 ; mjpegs: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
664 ; Notes: m3jpeg+mjpeg are mmx optimized. avid is very stable but slow. |
8064 | 665 ; ijpg only decodes jpeg images (no mjpg), and slow. |
666 ; 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
|
667 |
11389 | 668 videocodec zrmjpeg |
669 info "Zoran MJPEG passthrough" | |
670 status buggy | |
671 fourcc MJPG,jpeg | |
672 driver zrmjpeg | |
673 out ZRMJPEGNI,ZRMJPEGIT,ZRMJPEGIB query | |
674 | |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
675 videocodec ffmjpeg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
676 info "FFmpeg MJPEG decoder" |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
677 status working |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
678 fourcc MJPG,mjpg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
679 fourcc AVRn,AVDJ ; AVID |
8336
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
680 fourcc jpeg ; MOV photo-jpeg |
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
681 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
|
682 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
|
683 fourcc ijpg,IJPG ; -mf type=jpeg |
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
684 fourcc JPEG ; SGI's AVI Photo-jpeg |
10295 | 685 fourcc JPGL ; lossless jpeg (pegasus codec) |
10302 | 686 fourcc LJPG ; lossless jpeg |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
687 driver ffmpeg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
688 dll mjpeg |
8064 | 689 out 444P |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
690 out 422P |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
691 out YUY2 ; queryed (conversion from yuv422p) |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
692 out YV12,I420,IYUV |
10295 | 693 out BGR32 ; lossless jpeg |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
694 |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
695 videocodec ffmjpegb |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
696 info "FFmpeg MJPEG-B decoder" |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
697 status buggy |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
698 fourcc mjpb ; Apple MJPEG-B (Quicktime) |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
699 driver ffmpeg |
11316 | 700 dll mjpegb |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
701 out 444P |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
702 out 422P |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
703 out YUY2 ; queryed (conversion from yuv422p) |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
704 out YV12,I420,IYUV |
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
705 |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
706 ; slow. usable only for standalone jpegs, like -mf, avid or photojpeg: |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
707 videocodec ijpg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
708 info "Independent JPEG Group's codec" |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
709 status working |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
710 fourcc ijpg,IJPG ; -mf type=jpeg |
8336
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
711 fourcc jpeg ; MOV Photo Jpeg |
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
712 fourcc AVRn,AVDJ ; AVID |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
713 driver ijpg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
714 dll libjpeg |
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
715 out RGB24,BGR24,BGR32 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
716 |
5914 | 717 ; http://www.morgan-multimedia.com/dev/codec_spec.htm |
5771 | 718 videocodec m3jpeg |
2877 | 719 info "Morgan Motion JPEG Codec" |
720 status working | |
721 fourcc MJPG | |
722 fourcc mjpa,mjpb,mjpg MJPG ; MOV files | |
4366 | 723 fourcc dmb1 MJPG ; MJPEG by Matrox Rainbow Runner |
2877 | 724 driver vfw |
725 dll "m3jpeg32.dll" | |
6528 | 726 ; out YV12,I420 |
727 out YUY2,UYVY | |
2877 | 728 out BGR32,BGR24,BGR15 |
729 | |
1453 | 730 videocodec mjpeg |
2877 | 731 info "MainConcept Motion JPEG" |
1453 | 732 status working |
733 fourcc MJPG | |
2675 | 734 fourcc mjpa,mjpb,mjpg MJPG ; MOV files |
5803
4febd266489c
AVID is buggy (image shifted/scaled?) with mainconcept codec
arpi
parents:
5799
diff
changeset
|
735 ; fourcc AVRn,AVDJ MJPG ; AVID (sometimes buggy) |
1453 | 736 driver vfw |
737 dll "mcmjpg32.dll" | |
6528 | 738 out YUY2,UYVY |
1453 | 739 out BGR32,BGR24,BGR15 |
740 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
741 videocodec avid |
6584 | 742 info "AVID Motion JPEG" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
743 status working |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
744 comment "slooooooooow but stable" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
745 fourcc AVRn |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
746 fourcc AVDJ AVRn |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
747 fourcc MJPG,mjpg AVRn |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
748 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
749 dll "AvidAVICodec.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
750 out BGR24 flip |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
751 |
5748 | 752 videocodec LEAD |
753 info "LEAD (M)Jpeg" | |
754 status working | |
755 comment "supports interlaced MJPEG" | |
756 fourcc MJPG | |
6896
ee5e57b7639c
mjpeg codecs reordered - now it plays almost everything by default
arpi
parents:
6893
diff
changeset
|
757 fourcc jpeg MJPG ; MOV Photo Jpeg |
12050
96336c83b249
Add LEAD fourcc, patch by adland < adland123 (at) yahoo (dot) com >
rtognimp
parents:
12042
diff
changeset
|
758 fourcc LEAD |
5748 | 759 driver vfw |
760 dll "LCodcCMP.dll" | |
761 out BGR24,BGR15 | |
762 | |
8320 | 763 videocodec imagepower |
764 info "ImagePower MJPEG2000" | |
765 status buggy | |
766 fourcc IPJ2 | |
767 driver vfw | |
768 dll "jp2avi.dll" | |
769 out BGR32,BGR24,BGR15 | |
770 | |
771 videocodec m3jpeg2k | |
772 info "Morgan MJPEG2000" | |
773 status working | |
774 fourcc MJ2C | |
775 driver vfw | |
776 dll "m3jp2k32.dll" | |
777 out YV12,I420,IYUV | |
778 out YUY2,UYVY | |
779 out BGR32,BGR24,BGR15 | |
780 | |
5914 | 781 ; http://www.morgan-multimedia.com/dev/directshow_dec_spec.htm |
5771 | 782 videocodec m3jpegds |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
783 info "Morgan MJPEG" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
784 status crashing |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
785 fourcc MJPG mjpg |
5767 | 786 fourcc mjpa,mjpb,mjpg mjpg ; MOV files |
787 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
|
788 driver dshow |
5537 | 789 dll "m3jpegdec.ax" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
790 guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68 |
5914 | 791 out I420 |
6528 | 792 out YUY2,UYVY |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
793 out BGR32,BGR24,BGR16,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
794 |
5767 | 795 videocodec pegasusm |
796 info "Pegasus Motion JPEG" | |
8209 | 797 status crashing |
5767 | 798 fourcc MJPG |
799 driver vfw | |
800 ; dll "pvmjpg20.dll" ; v2.0 | |
801 dll "pvmjpg21.dll" ; v2.1 | |
802 out BGR24 flip | |
803 | |
804 videocodec pegasusl | |
805 info "Pegasus Lossless JPEG" | |
8209 | 806 status crashing |
5767 | 807 fourcc JPGL |
808 fourcc MJPG JPGL | |
809 driver vfw | |
810 dll "pvljpg20.dll" | |
811 out BGR24 flip | |
812 | |
813 videocodec pegasusmwv | |
814 info "Pegasus Motion Wavelet 2000" | |
8209 | 815 status crashing |
5767 | 816 fourcc PVW2 |
817 driver vfw | |
818 dll "pvwv220.dll" | |
819 out BGR24 flip | |
820 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
821 ; h263: - I don't know. comments? |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
822 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
823 videocodec vivo |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
824 info "Vivo H.263" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
825 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
826 fourcc VIVO,vivo vivo |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
827 fourcc viv1,viv2 vivo |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
828 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
829 dll "ivvideo.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
830 out BGR32,BGR24,BGR15 flip |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
831 in BGR24 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
832 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
833 videocodec u263 |
5914 | 834 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
|
835 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
836 fourcc U263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
837 fourcc vivo,VIVO U263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
838 fourcc viv1 U263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
839 driver dshow |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
840 dll "ubv263d+.ax" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
841 guid 0x00af1181, 0x6ebb, 0x11d4, 0x9d, 0x5a, 0x00, 0x50, 0x04, 0x79, 0x6c, 0xc0 |
5914 | 842 ; out UYVY |
843 ; 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
|
844 out BGR24 flip |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
845 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
846 videocodec i263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
847 info "I263" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
848 status working |
9065 | 849 fourcc I263,i263 |
850 ; fourcc I420,i420 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
851 fourcc vivo,VIVO I263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
852 fourcc viv1 I263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
853 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
854 dll "i263_32.drv" |
5914 | 855 out I420 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
856 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
857 out BGR32,BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
858 |
1453 | 859 videocodec ffi263 |
860 info "FFmpeg I263 decoder" | |
861 status working | |
862 fourcc I263,i263 | |
863 driver ffmpeg | |
864 dll h263i | |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
865 out YV12,I420,IYUV |
1453 | 866 |
867 videocodec ffh263 | |
868 info "FFmpeg H263+ decoder" | |
1526 | 869 status working |
8334
0c9a596abe39
found in an AVI file and reported working by Damian Gatabria
rfelker
parents:
8328
diff
changeset
|
870 fourcc H263,U263,h263,X263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
871 fourcc viv1 h263 |
1453 | 872 driver ffmpeg |
873 dll h263 | |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
874 out YV12,I420,IYUV |
1453 | 875 |
11320 | 876 videocodec ffzygo |
877 info "FFmpeg ZyGo" | |
878 status untested | |
879 fourcc ZyGo | |
880 driver ffmpeg | |
881 dll h263 | |
882 out YV12,I420,IYUV flip | |
883 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
884 videocodec h263xa |
6584 | 885 info "XAnim's CCITT H.263" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
886 status crashing |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
887 fourcc H263,h263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
888 fourcc viv1 H263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
889 fourcc VIVO,vivo H263 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
890 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
891 dll "vid_h263.xa" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
892 out YV12,IYUV,I420 |
3969 | 893 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
894 videocodec h261xa |
6584 | 895 info "XAnim's CCITT H.261" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
896 status untested |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
897 fourcc H261,h261 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
898 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
899 dll "vid_h261.xa" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
900 out YV12,IYUV,I420 |
4656 | 901 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
902 videocodec m261 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
903 info "M261" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
904 status untested |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
905 fourcc m261,M261 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
906 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
907 dll "msh261.drv" |
4615
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
908 out BGR32,BGR24,BGR15 |
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
909 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
910 ; indeo: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
911 ; Note: indeo 3 is buggy, both xanim (bad decoding) and VfW (not work with DR) |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
912 ; Prefer win32 ones, they are faster, and 4/5 can DR. for fallback, there are |
5442 | 913 ; Xanim codecs, they provide YV12, useful for YUV display or encoding. |
1938 | 914 |
334 | 915 videocodec indeo5ds |
916 info "Intel Indeo 5" | |
796 | 917 status working |
334 | 918 fourcc IV50,iv50 |
919 driver dshow | |
920 dll "ir50_32.dll" | |
921 guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 | |
6528 | 922 out YV12,IYUV,I420 |
923 out YUY2,UYVY | |
334 | 924 out BGR32,BGR24,BGR16,BGR15 |
925 | |
346 | 926 videocodec indeo5 |
927 info "Intel Indeo 5" | |
928 status working | |
929 fourcc IV50,iv50 | |
6528 | 930 driver vfwex |
346 | 931 dll "ir50_32.dll" |
1358 | 932 ; out YV12,I420 ; flickering |
346 | 933 out YUY2 |
934 out BGR32,BGR24,BGR15 | |
935 | |
267 | 936 videocodec indeo4 |
268 | 937 info "Intel Indeo 4.1" |
746 | 938 status working |
267 | 939 fourcc IV41,iv41 |
940 driver vfw | |
941 dll "ir41_32.dll" | |
6528 | 942 out IF09 |
746 | 943 out BGR24,BGR15 |
6528 | 944 in YVU9 |
267 | 945 |
946 videocodec indeo3 | |
268 | 947 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
|
948 status working |
267 | 949 fourcc IV31,iv31 |
950 fourcc IV32,iv32 | |
6528 | 951 driver vfwex |
267 | 952 dll "ir32_32.dll" |
6528 | 953 out IF09 |
6104
0fb14001bf06
old vfw codecs don't like double buffering - force static buffer for them
arpi
parents:
6098
diff
changeset
|
954 out BGR24,BGR15 flip,static |
6528 | 955 in YVU9 |
267 | 956 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
957 videocodec indeo5xa |
6584 | 958 info "XAnim's Intel Indeo 5" |
2675 | 959 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
960 fourcc IV50,iv50 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
961 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
962 dll "vid_iv50.xa" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
963 out YVU9 |
267 | 964 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
965 videocodec indeo4xa |
6584 | 966 info "XAnim's Intel Indeo 4.1" |
1526 | 967 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
968 fourcc IV41,iv41 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
969 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
970 dll "vid_iv41.xa" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
971 out YVU9 |
713 | 972 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
973 videocodec indeo3xa |
6584 | 974 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
|
975 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
976 fourcc IV31,iv31 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
977 fourcc IV32,iv32 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
978 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
979 dll "vid_iv32.xa" |
7356
12c25243426c
xanim outformats changed, indeo 3/4/5 now outputs YVU9 only
arpi
parents:
7354
diff
changeset
|
980 out YVU9 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
981 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
982 ; 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
|
983 |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
984 videocodec qdv |
334 | 985 info "Sony Digital Video (DV)" |
471 | 986 status working |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
987 fourcc dvsl,dvsd,dvhd ; ???? |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
988 fourcc DVSD dvsd ; pal .avi |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
989 fourcc "dvcp" dvsd ; pal .mov |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
990 fourcc "dvc " dvsd ; ntsc .mov |
334 | 991 driver dshow |
992 dll "qdv.dll" | |
993 guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42 | |
994 out YUY2 | |
471 | 995 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
|
996 out BGR24,BGR16,BGR15 ; BGR32 is buggy, at least with one sample |
334 | 997 |
7601 | 998 videocodec ffdv |
8209 | 999 info "FFmpeg DV decoder" |
7667 | 1000 status working |
7601 | 1001 fourcc DVSD,dvsd ; PAL |
1002 fourcc DVCS,dvcs ; NTSC ? | |
1003 fourcc "dvcp" ; PAL DV in .mov | |
1004 fourcc "dvc " ; NTSC DV in .mov | |
1005 driver ffmpeg | |
1006 dll dvvideo | |
7667 | 1007 out 411P,YV12 |
7601 | 1008 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1009 videocodec libdv |
8209 | 1010 info "Raw DV decoder (libdv)" |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1011 status working |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1012 fourcc DVSD,dvsd ; PAL |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1013 fourcc DVCS,dvcs ; NTSC ? |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1014 fourcc "dvcp" ; PAL DV in .mov |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1015 fourcc "dvc " ; NTSC DV in .mov |
11851
dcc8d9bb5739
support for AVID DV fourcc, patch by xliska at informatics.muni.cz
alex
parents:
11847
diff
changeset
|
1016 fourcc AVdv ; AVID DV |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1017 driver libdv |
8209 | 1018 dll libdv.so.2 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1019 out YUY2 |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1020 |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1021 ; note: it crashes with pond.dv :( |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1022 videocodec mcdv |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1023 info "MainConcept DV Codec" |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1024 status working |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1025 fourcc DVSD,dvsd ; PAL |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1026 fourcc DVCS,dvcs ; NTSC ? |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1027 fourcc CDVC,cdvc ; ??? |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1028 fourcc "dvcp" dvsd ; PAL DV in .mov |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1029 fourcc "dvc " dvcs ; NTSC DV in .mov |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1030 driver vfw |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1031 dll "mcdvd_32.dll" |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1032 out YUY2 |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1033 out UYVY |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1034 out BGR32,BGR24,BGR15 |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
1035 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1036 ; 3ivx: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1037 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1038 videocodec 3ivXxa |
6584 | 1039 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
|
1040 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1041 fourcc 3IV1 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1042 driver xanim |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1043 dll "vid_3ivX.xa" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1044 out YV12,IYUV,I420 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1045 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1046 videocodec 3ivX |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1047 info "3ivX Delta 3.5" |
471 | 1048 status crashing |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1049 fourcc 3IV1 |
334 | 1050 driver dshow |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1051 dll "3ivxdmo.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1052 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
|
1053 out YV12 |
334 | 1054 out YUY2 |
1055 out BGR32,BGR24,BGR16,BGR15 | |
1056 | |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1057 ; experimental real video decoder using closed source codecs |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1058 |
6983 | 1059 videocodec rv40 |
1060 info "Linux RealPlayer 9 RV40 decoder" | |
1061 status working | |
1062 fourcc RV40,rv40 | |
1063 driver realvid | |
1064 dll "drv4.so.6.0" | |
1065 out I420 | |
1066 | |
8527 | 1067 videocodec rv40win |
1068 info "Win32 RealPlayer 9 RV40 decoder" | |
1069 status working | |
1070 fourcc RV40,rv40 | |
1071 driver realvid | |
1072 dll "drv43260.dll" | |
1073 out I420 | |
8526
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1074 |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1075 videocodec rv30 |
6584 | 1076 info "Linux RealPlayer 8 RV30 decoder" |
6343
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1077 status working |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1078 fourcc RV30,rv30 |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1079 driver realvid |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1080 dll "drv3.so.6.0" |
d253cf4f43a9
realvideo support by Florian Schneider <flo-mplayer-dev@gmx.net>
arpi
parents:
6339
diff
changeset
|
1081 out I420 |
5749 | 1082 |
6375 | 1083 videocodec rv30win |
6584 | 1084 info "Win32 RealPlayer 8 RV30 decoder" |
8526
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1085 status working |
6375 | 1086 fourcc RV30,rv30 |
1087 driver realvid | |
1088 dll "drv33260.dll" | |
1089 out I420 | |
1090 | |
6346 | 1091 videocodec rv20 |
6584 | 1092 info "Linux RealPlayer 8 RV20 decoder" |
6346 | 1093 status working |
1094 fourcc RV20,rv20 | |
1095 driver realvid | |
1096 dll "drv2.so.6.0" | |
1097 out I420 | |
1098 | |
8526
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1099 videocodec rv20win |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1100 info "Win32 RealPlayer 8 RV20 decoder" |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1101 status working |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1102 fourcc RV20,rv20 |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1103 driver realvid |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1104 dll "drv23260.dll" |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1105 out I420 |
2b8cb804fe1a
fixed rv30win and added rv20win (and ucod doesn't supports UYVY)
alex
parents:
8336
diff
changeset
|
1106 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1107 ; others: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1108 |
12066
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1109 videocodec alpary |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1110 info "Alparysoft lossless codec dshow" |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1111 status untested |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1112 fourcc ASLC |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1113 driver dshow |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1114 dll "aslcodec_dshow.dll" |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1115 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
|
1116 out BGR24 flip |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1117 |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1118 videocodec alpary2 |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1119 info "Alparysoft lossless codec vfw" |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1120 status untested |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1121 fourcc ASLC |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1122 driver vfw |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1123 dll "aslcodec_vfw.dll" |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1124 out BGR24 flip |
792eec413bd5
Support for Alparysoft lossless video codec (DShow and VfW)
rtognimp
parents:
12059
diff
changeset
|
1125 |
12059
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1126 videocodec LEADMW20 |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1127 info "Lead CMW wavelet 2.0" |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1128 status working |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1129 fourcc LCW2 |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1130 driver dshow |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1131 dll "LCODCCMW2E.dll"; eval |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1132 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
|
1133 out BGR24,BGR8 flip |
937a520811e9
Add support for Lead MCMW 2.0 wavelet codec eval version
rtognimp
parents:
12050
diff
changeset
|
1134 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1135 videocodec ffrv10 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1136 info "FFmpeg RV10 decoder" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1137 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1138 fourcc RV10,rv10 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1139 fourcc RV13,rv13 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1140 driver ffmpeg |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1141 dll rv10 |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1142 out YV12,I420,IYUV |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
1143 |
11541 | 1144 videocodec ffrv20 |
1145 info "FFmpeg RV20 decoder" | |
1146 status untested | |
1147 fourcc RV20,rv20 | |
1148 driver ffmpeg | |
1149 dll rv20 | |
1150 out YV12,I420,IYUV | |
1151 | |
10095
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1152 videocodec ffvp3 |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1153 info "FFmpeg's VP3-Codec" |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1154 status untested |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1155 fourcc VP30,vp30,VP31,vp31 |
10126 | 1156 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
|
1157 driver ffmpeg |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1158 dll "vp3" |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1159 out YV12 |
51da0282b302
Theora demuxer/codec support, patch by David Kuehling <dvdkhlng@gmx.de>
arpi
parents:
10085
diff
changeset
|
1160 |
11315
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1161 videocodec fftheora |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1162 info "FFmpeg's Theora" |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1163 status untested |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1164 fourcc theo,Thra |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1165 format 0xFFFC |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1166 driver ffmpeg |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1167 dll "theora" |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1168 out YV12 |
f7ee031a6a37
forgot to commit fftheora entry, but it's only support by g2 til now
alex
parents:
11314
diff
changeset
|
1169 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1170 videocodec vp3 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1171 info "On2 OpenSource VP3-Codec" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1172 status working |
8209 | 1173 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
|
1174 fourcc VP30,vp30,VP31,vp31 |
6565 | 1175 flags align16 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1176 driver vfwex |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1177 dll "vp31vfw.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1178 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1179 out BGR32,BGR24,BGR15 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
1180 |
10722
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1181 videocodec vp4 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1182 info "On2 VP4 Personal Codec" |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1183 comment "Decodes also VP3" |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1184 status working |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1185 fourcc VP40 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1186 fourcc VP31,VP30,vp31,vp30 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1187 driver vfwex |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1188 dll "vp4vfw.dll" |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1189 out YUY2 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1190 out BGR32,BGR24 |
f06b8ea6f850
On2 VP4 personal codec support via binary vfw dll vp4vfw.dll
rtognimp
parents:
10712
diff
changeset
|
1191 |
12042 | 1192 videocodec vp5 |
1193 info "On2 VP5 Personal Codec" | |
1194 status working | |
1195 fourcc VP50 | |
1196 driver vfwex | |
1197 dll "vp5vfw.dll" | |
1198 out YUY2 | |
1199 out BGR32,BGR24 | |
1200 | |
1201 videocodec vp6 | |
1202 info "On2 VP6 Personal Codec" | |
1203 status working | |
1204 fourcc VP60,VP61,VP62 | |
1205 driver vfwex | |
1206 dll "vp6vfw.dll" | |
1207 out YUY2 | |
1208 out BGR32,BGR24 | |
1209 | |
344 | 1210 videocodec mwv1 |
333 | 1211 info "Motion Wavelets" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1212 status working |
334 | 1213 fourcc MWV1 |
333 | 1214 driver vfw |
1215 dll "icmw_32.dll" | |
5914 | 1216 out BGR24,BGR15 flip |
333 | 1217 |
403 | 1218 videocodec asv2 |
1219 info "ASUS V2" | |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1220 status working |
403 | 1221 fourcc ASV2 |
1222 driver vfw | |
1223 dll "asusasv2.dll" | |
713 | 1224 out UYVY |
1225 out BGR32,BGR24,BGR15 flip | |
1226 | |
1227 videocodec asv1 | |
1228 info "ASUS V1" | |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1229 status working |
713 | 1230 fourcc ASV1 |
1231 driver vfw | |
1232 dll "asusasvd.dll" | |
1233 out UYVY | |
403 | 1234 out BGR32,BGR24,BGR15 flip |
1235 | |
11314 | 1236 videocodec ultimotion |
1237 info "IBM Ultimotion" | |
1238 status working | |
1239 fourcc ULTI | |
1240 driver vfw | |
1241 dll "ultimo.dll" | |
1242 out YUY2,UYVY | |
1243 out BGR32,BGR24,BGR15 flip | |
1244 | |
5749 | 1245 videocodec mss1 |
1246 info "Windows Screen Video" | |
1247 status working | |
1248 fourcc MSS1 | |
1249 driver dshow | |
1250 dll "msscds32.ax" | |
1251 guid 0x3301a7c4, 0x0a8d, 0x11d4, 0x91, 0x4d, 0x00, 0xc0, 0x4f, 0x61, 0x0d, 0x24 | |
1252 out BGR32,BGR24,BGR16,BGR15 | |
1253 | |
1254 ; CLRVIDDC.DLL needed too, with uppercase | |
1255 videocodec ucod | |
1256 info "UCOD-ClearVideo" | |
1257 status working | |
1258 fourcc UCOD | |
1259 driver vfw | |
1260 dll "clrviddd.dll" | |
1261 out BGR32,BGR24,BGR15 flip | |
1262 | |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1263 videocodec vcr2 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1264 info "ATI VCR-2" |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1265 status working |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1266 fourcc VCR2 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1267 driver vfw |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1268 dll "ativcr2.dll" |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1269 out YV12 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1270 out BGR24 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1271 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1272 videocodec CJPG |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1273 info "CJPG" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1274 status untested |
5762 | 1275 comment "need sample files (this dll is decompression only!)" |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1276 fourcc CJPG |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1277 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1278 dll "CtWbJpg.DLL" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1279 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1280 out UYVY |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1281 out BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1282 |
11554 | 1283 videocodec ffduck |
1284 info "Duck Truemotion1" | |
1285 status working | |
1286 fourcc DUCK | |
1287 driver ffmpeg | |
1288 dll "truemotion1" | |
1289 out BGR15 | |
1290 | |
5799 | 1291 ; our BGR15->BGR32 is bad or the DLL? |
1292 videocodec tm20 | |
1293 info "TrueMotion 2.0" | |
1294 status working | |
1295 comment "YUV faulting" | |
1296 fourcc TM20 | |
1297 driver dshow | |
1298 dll "tm20dec.ax" | |
1299 guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84 | |
1300 out BGR32,BGR24,BGR16 | |
1301 | |
11082 | 1302 videocodec ffsp5x |
1303 info "SP5x codec - used by Aiptek MegaCam" | |
1304 status working | |
1305 fourcc SP53,SP54,SP55,SP56,SP57,SP58 | |
1306 driver ffmpeg | |
1307 dll "sp5x" | |
1308 out YV12 | |
1309 | |
7059 | 1310 videocodec sp5x |
1311 info "SP5x codec - used by Aiptek MegaCam" | |
1312 status working | |
1313 fourcc SP53,SP54,SP55,SP56,SP57,SP58 | |
1314 driver vfw | |
1315 dll "sp5x_32.dll" | |
10381
c21e3bceec16
patch for sp5x video codec by "Philip Court" <pccourt (at) hotmail.com>
attila
parents:
10348
diff
changeset
|
1316 out BGR24,BGR15 flip |
7059 | 1317 |
10818
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1318 videocodec vivd2 |
10833 | 1319 info "SoftMedia ViVD V2 codec Vfw" |
10818
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1320 status working |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1321 fourcc GXVE,gxve |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1322 driver vfw |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1323 dll "ViVD2.dll" |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1324 out YUY2,YV12,I420,YVU9 |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1325 out BGR32,BGR24,BGR15 |
fa41f83edff0
ViVD v2 codec (fourcc gxve) support with vfw dll ViVD2.dll
rtognimp
parents:
10774
diff
changeset
|
1326 |
8163 | 1327 ; quicktime codecs: |
1328 | |
8324 | 1329 videocodec qt3ivx |
1330 info "win32/quicktime 3IV1 (3ivx) decoder" | |
1331 status working | |
1332 fourcc 3IV1 | |
1333 driver qtvideo | |
1334 dll "3ivx Delta 3.5.qtx" | |
1335 out YUY2 | |
1336 | |
11968 | 1337 videocodec qtavui |
1338 info "win32/quicktime Avid Meridien Uncompressed" | |
1339 status working | |
1340 fourcc AVUI | |
1341 driver qtvideo | |
1342 dll "AvidQTAVUICodec.qtx" | |
1343 out YUY2 | |
1344 | |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1345 videocodec qth263 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1346 info "win32/quicktime H.263 decoder" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1347 status crashing |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1348 fourcc h263 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1349 driver qtvideo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1350 dll "QuickTime.qts" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1351 out YUY2 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1352 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1353 videocodec qtrlerpza |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1354 info "win32/quicktime RLE/RPZA decoder" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1355 comment "no colorspace accepted" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1356 status crashing |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1357 fourcc rpza |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1358 format 0x20656C72 ; "rle " |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1359 driver qtvideo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1360 dll "QuickTime.qts" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1361 out BGR32,BGR24,BGR15 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1362 |
8324 | 1363 videocodec qtvp3 |
1364 info "win32/quicktime VP3 decoder" | |
1365 status crashing | |
1366 fourcc VP31 | |
1367 driver qtvideo | |
1368 dll "On2_VP3.qtx" | |
1369 out YUY2 | |
1370 | |
1371 videocodec qtzygo | |
1372 info "win32/quicktime ZyGo decoder" | |
1373 status buggy | |
1374 comment "wrong colors" | |
1375 fourcc ZyGo,zygo,lsvx | |
1376 driver qtvideo | |
1377 dll "ZyGoVideo.qtx" | |
1378 out BGR32,RGB32 | |
1379 | |
1380 videocodec qtbhiv | |
1381 info "win32/quicktime BeHereiVideo decoder" | |
1382 comment "sample file wanted!" | |
1383 status untested | |
1384 fourcc bhiv | |
1385 driver qtvideo | |
1386 dll "BeHereiVideo.qtx" | |
1387 out YUY2 | |
1388 | |
8837 | 1389 videocodec qtcvid |
1390 info "win32/quicktime Cinepak decoder" | |
1391 status working | |
1392 fourcc cvid | |
1393 driver qtvideo | |
1394 dll "QuickTime.qts" | |
1395 out YUY2 | |
1396 | |
1397 videocodec qtindeo | |
1398 info "win32/quicktime Indeo decoder" | |
1399 status crashing | |
1400 fourcc IV31,iv31 | |
1401 fourcc IV32,iv32 | |
1402 fourcc IV41 | |
1403 driver qtvideo | |
1404 dll "QuickTime.qts" | |
1405 out YUY2 | |
1406 | |
1407 videocodec qtmjpeg | |
1408 info "win32/quicktime MJPEG decoder" | |
1409 status crashing | |
1410 fourcc dmb1 | |
1411 fourcc mjpa | |
1412 fourcc mjpb | |
1413 driver qtvideo | |
1414 dll "QuickTime.qts" | |
1415 out YUY2 | |
1416 | |
1417 videocodec qtmpeg4 | |
1418 info "win32/quicktime MPEG-4 decoder" | |
1419 status crashing | |
1420 fourcc mp4v | |
1421 driver qtvideo | |
1422 dll "QuickTime.qts" | |
1423 out YUY2 | |
1424 | |
8163 | 1425 videocodec qtsvq3 |
1426 info "win32/quicktime SVQ3 decoder" | |
8324 | 1427 status working |
8163 | 1428 fourcc SVQ3 |
1429 driver qtvideo | |
8324 | 1430 dll "QuickTimeEssentials.qtx" |
8163 | 1431 out YUY2 |
5749 | 1432 |
8322 | 1433 videocodec qtsvq1 |
1434 info "win32/quicktime SVQ1 decoder" | |
1435 status buggy | |
1436 fourcc SVQ1 | |
1437 driver qtvideo | |
1438 dll "QuickTime.qts" | |
1439 out YVU9 | |
1440 | |
9896
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1441 ; 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
|
1442 |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1443 videocodec vsslight |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1444 info "VSS Codec Light" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1445 status working |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1446 fourcc VSSV |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1447 driver vfw |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1448 dll "vsslight.dll" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1449 out BGR24 flip |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1450 |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1451 videocodec vssh264 |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1452 info "VSS H.264" |
9897 | 1453 status working |
9896
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1454 fourcc VSSH |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1455 driver vfw |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1456 dll "vssh264.dll" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1457 out BGR24 flip |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1458 |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1459 videocodec vsswlt |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1460 info "VSS Wavelet Video Codec" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1461 status working |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1462 fourcc VSSW |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1463 driver vfw |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1464 dll "vsswlt.dll" |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1465 out BGR24 flip |
acf96aea152c
Vanguard codecs support, patch by Andreas Hess <jaska (at) gmx (dot) net>
rtognimp
parents:
9867
diff
changeset
|
1466 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1467 ; buggy codecs: (any volunteers for native rewrite?) |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1468 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1469 videocodec zlib |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1470 info "AVIzlib" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1471 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1472 comment "24bpp only" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1473 fourcc ZLIB |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1474 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1475 dll "avizlib.dll" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1476 out BGR24 flip |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1477 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1478 videocodec mszh |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1479 info "AVImszh" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1480 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1481 comment "24bpp only" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1482 fourcc MSZH |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1483 driver vfw |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1484 dll "avimszh.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1485 ; out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1486 ; out BGR32,BGR24,BGR15 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1487 out BGR24 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1488 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1489 videocodec alaris |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1490 info "Alaris VideoGramPiX" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1491 ; http://www.alaris.com/movies/toocool.vgm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1492 ; Martin Schuster <schuster@ap.univie.ac.at> |
6584 | 1493 status crashing |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1494 comment "only produces strange patterns" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1495 fourcc VGPX,VTLP VGPX |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1496 driver vfwex |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1497 dll "vgpix32d.dll" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1498 out UYVY |
5749 | 1499 out BGR24 |
1500 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1501 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1502 ; non-working codecs: |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1503 |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1504 videocodec vcr1 |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1505 info "ATI VCR-1" |
6584 | 1506 status crashing |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1507 fourcc VCR1 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1508 driver vfw |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1509 dll "ativcr1.dll" |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1510 out RGB24 flip |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1511 |
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
|
1512 videocodec pim1 |
8336
071fc9e4c7ce
fixed JPEG issue (sorry atmos, i've tested them now) and added PIM1 name corrections
alex
parents:
8334
diff
changeset
|
1513 info "Pinnacle Hardware MPEG1" |
6584 | 1514 status crashing |
4897
d80537754731
PIM1 is playable with ffmpeg12. thx to Togni Roberto <rtogni@bresciaonline.it>
arpi
parents:
4854
diff
changeset
|
1515 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
|
1516 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
|
1517 driver vfw |
7354 | 1518 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
|
1519 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
|
1520 ; 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
|
1521 ; 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
|
1522 ; 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
|
1523 |
5746 | 1524 videocodec qpeg |
1525 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
|
1526 status working |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1527 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
|
1528 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
|
1529 fourcc Q1.1,qpeq |
5746 | 1530 driver vfw |
1531 dll "qpeg32.dll" | |
1532 out BGR8 flip | |
1533 | |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1534 videocodec rricm |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1535 info "rricm" |
6584 | 1536 status crashing |
5767 | 1537 fourcc dmb1 |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1538 driver vfw |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1539 dll "rricm.dll" |
5767 | 1540 out YUY2 |
5756
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1541 out BGR24 flip |
dbc4e386d829
ATI VCR2 working (YV12) added ATI VCR1 and rricm (matrox marvel mjpeg)
alex
parents:
5753
diff
changeset
|
1542 |
5762 | 1543 ; sample videos: http://www.techsmith.com/products/camtasia/examplevideos.asp |
1544 videocodec camtasia | |
1545 info "TechSmith Camtasia Screen Codec" | |
8209 | 1546 status working |
5762 | 1547 fourcc TSCC,tscc |
1548 driver vfw | |
1549 dll "tsccvid.dll" | |
11959 | 1550 out BGR24,BGR15,BGR8 query,flip |
5762 | 1551 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1552 ; 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
|
1553 |
3399 | 1554 ; 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
|
1555 ; 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
|
1556 ; 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
|
1557 ; 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
|
1558 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1559 videocodec rawrgb32 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1560 info "RAW RGB32" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1561 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1562 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1563 format 0x0 |
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
|
1564 format 0x20776172 |
3399 | 1565 format 0x52474220 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1566 out RGB32 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1567 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1568 videocodec rawrgb24 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1569 info "RAW RGB24" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1570 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1571 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1572 format 0x0 |
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
|
1573 format 0x20776172 |
3399 | 1574 format 0x52474218 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
1575 out RGB24 |
2675 | 1576 |
3399 | 1577 videocodec rawrgb16 |
1578 info "RAW RGB16" | |
1579 status working | |
1580 driver raw | |
1581 format 0x0 | |
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
|
1582 format 0x20776172 |
3399 | 1583 format 0x52474210 |
1584 out RGB16 | |
1585 | |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1586 videocodec rawbgr32flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1587 info "RAW BGR32" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1588 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1589 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1590 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1591 out BGR32 flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1592 |
5996
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
1593 videocodec rawbgr32 |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
1594 info "RAW BGR32" |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
1595 status working |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
1596 driver raw |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
1597 format 0x0 |
73e5c3b80d8c
added rawbgr32 - Artur Zaprzala <zybi@fanthom.math.put.poznan.pl> told us
jaf
parents:
5914
diff
changeset
|
1598 format 0x42475220 |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1599 out BGR32 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1600 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1601 videocodec rawbgr24flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1602 info "RAW BGR24" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1603 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1604 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1605 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1606 out BGR24 flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1607 |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1608 videocodec rawbgr24 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1609 info "RAW BGR24" |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1610 status working |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1611 driver raw |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1612 format 0x0 |
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
|
1613 format 0x20776172 |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4740
diff
changeset
|
1614 format 0x42475218 |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1615 out BGR24 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1616 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1617 videocodec rawbgr16flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1618 info "RAW BGR15" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1619 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1620 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1621 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1622 out BGR16 flip |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1623 |
6584 | 1624 videocodec rawbgr16 |
1625 info "RAW BGR15" | |
1626 status working | |
1627 driver raw | |
1628 format 0x0 | |
1629 format 0x20776172 | |
1630 format 0x42475210 | |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1631 out BGR16 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1632 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1633 videocodec rawbgr15flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1634 info "RAW BGR15" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1635 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1636 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1637 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1638 out BGR15 flip |
6584 | 1639 |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1640 videocodec rawbgr15 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1641 info "RAW BGR15" |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1642 status working |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1643 driver raw |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1644 format 0x0 |
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
|
1645 format 0x20776172 |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4740
diff
changeset
|
1646 format 0x4247520F |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1647 out BGR15 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1648 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1649 videocodec rawbgr8flip |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1650 info "RAW BGR8" |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1651 status working |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1652 driver raw |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1653 format 0x0 |
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1654 out BGR8 flip |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
1655 |
7771 | 1656 videocodec rawbgr8 |
1657 info "RAW BGR8" | |
1658 status working | |
1659 driver raw | |
1660 format 0x0 | |
1661 format 0x20776172 | |
9127 | 1662 format 0x42475208 |
9320
c5bb811fa7fc
seperated flipped fourcc=0 and non-flipped fourcc!=0 raw formats
arpi
parents:
9233
diff
changeset
|
1663 out BGR8 |
7771 | 1664 |
1665 videocodec rawbgr1 | |
7823 | 1666 info "RAW BGR1" |
7771 | 1667 status working |
1668 driver raw | |
1669 format 0x0 | |
1670 format 0x20776172 | |
9127 | 1671 format 0x42475201 |
7771 | 1672 out BGR1 flip |
1673 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1674 videocodec rawyuy2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1675 info "RAW YUY2" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1676 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1677 driver raw |
7771 | 1678 format 0x0 0x32595559 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1679 format 0x20776172 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1680 fourcc yuy2,YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1681 out YUY2 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1682 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1683 videocodec rawuyvy |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1684 info "RAW UYVY" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1685 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1686 driver raw |
7771 | 1687 format 0x0 0x59565955 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1688 format 0x20776172 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1689 fourcc uyvy,UYVY |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1690 out UYVY |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1691 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1692 videocodec rawyv12 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1693 info "RAW YV12" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1694 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1695 driver raw |
7771 | 1696 format 0x0 0x32315659 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1697 format 0x20776172 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1698 fourcc yv12,YV12 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1699 out YV12 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1700 |
10750 | 1701 videocodec rawnv21 |
1702 info "RAW NV21" | |
1703 status working | |
1704 driver hmblck | |
1705 format 0x0 0x3132564E | |
1706 format 0x20776172 | |
1707 fourcc nv21,NV21 | |
1708 out YV12 | |
1709 | |
10305
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1710 videocodec rawnv12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1711 info "RAW NV12" |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1712 status working |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1713 driver hmblck |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1714 format 0x0 0x3231564E |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1715 format 0x20776172 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1716 fourcc nv12,NV12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1717 out YV12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1718 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1719 videocodec rawhm12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1720 info "RAW HM12" |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1721 status working |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1722 driver hmblck |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1723 format 0x0 0x32314D48 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1724 format 0x20776172 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1725 fourcc hm12,HM12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1726 out YV12 |
3e40b8f879c8
HM12 & NV12 "decoder" (specially interleaved YUV formats, used by Hauppauge's PVR cards)
arpi
parents:
10302
diff
changeset
|
1727 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1728 videocodec rawi420 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1729 info "RAW I420" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1730 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1731 driver raw |
7771 | 1732 format 0x0 0x30323449 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1733 format 0x20776172 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1734 fourcc i420,I420 |
6584 | 1735 fourcc IYUV,iyuv |
1736 out I420,IYUV | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1737 |
6488 | 1738 videocodec rawyvu9 |
1739 info "RAW YVU9" | |
1740 status working | |
1741 driver raw | |
7771 | 1742 format 0x0 0x39555659 |
6488 | 1743 format 0x20776172 |
1744 fourcc yvu9,YVU9 | |
1745 out YVU9 | |
1746 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1747 ; NULL codec - for testing. |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1748 |
1390 | 1749 videocodec null |
2691 | 1750 info "NULL codec (no decoding!)" |
5179
104cd0571dc4
changed status of 'null' codec to avoid prefering it over buggy codecs
arpi
parents:
5161
diff
changeset
|
1751 status crashing |
1390 | 1752 comment "for unknown/unsupported codecs or testing" |
1753 driver null | |
1754 out YV12 | |
1755 out I420 | |
1756 out YUY2 | |
1757 out UYVY | |
6584 | 1758 out YVU9 |
1390 | 1759 out BGR32,BGR24,BGR16,BGR15 |
1760 | |
471 | 1761 ;============================================================================= |
1762 ; AUDIO CODECS | |
1763 ;============================================================================= | |
1764 | |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1765 audiocodec wma9dmo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1766 info "Windows Media Audio 9 DMO" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1767 status working |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1768 format 0x162 |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1769 format 0x163 |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1770 driver dmo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1771 dll "wma9dmod.dll" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1772 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
|
1773 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1774 audiocodec wmadmo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1775 info "Windows Media Audio DMO" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1776 status working |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1777 format 0x160 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1778 format 0x161 |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1779 format 0x162 |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1780 format 0x163 |
8328
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1781 driver dmo |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1782 dll "wmadmod.dll" |
6bc2374c6a1b
DMO WMA audio codecs, some nonworking QT video codecs added
arpi
parents:
8324
diff
changeset
|
1783 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
|
1784 |
12328 | 1785 audiocodec wma9spdmo |
1786 info "Windows Media Audio 9 Speech DMO" | |
1787 comment "works only under windows" | |
1788 status working | |
1789 format 0xa | |
1790 driver dmo | |
1791 dll "wmspdmod.dll" | |
1792 guid 0x874131cb, 0x4ecc, 0x443b, 0x89, 0x48, 0x74, 0x6b, 0x89, 0x59, 0x5d, 0x20 | |
1793 | |
1794 audiocodec wma9spdshow | |
1795 info "Windows Media Audio 9 Speech DShow" | |
1796 status buggy | |
1797 format 0xa | |
1798 driver dshow | |
1799 dll "wmavds32.ax" | |
1800 guid 0x795b44c4, 0xf142, 0x493d, 0x8a, 0x02, 0x09, 0xbd, 0x41, 0x08, 0x95, 0xad | |
1801 | |
8007 | 1802 audiocodec qdmc |
1803 info "Quicktime QDMC/QDM2 audio decoders" | |
1804 status working | |
1805 format 0x324D4451 ; "QDM2" | |
1806 format 0x434D4451 ; "QDMC" | |
1807 driver qtaudio | |
1808 dll "QuickTime.qts" | |
1809 | |
8283 | 1810 audiocodec qclp |
1811 info "Quicktime QCLP audio decoder" | |
1812 status working | |
1813 format 0x706C6351 ; "QCLP" | |
1814 driver qtaudio | |
1815 dll "QuickTime.qts" | |
1816 | |
1817 audiocodec qtmace3 | |
1818 info "Quicktime MACE3 audio decoder" | |
1819 status working | |
1820 format 0x3343414D ; "MAC3" | |
1821 driver qtaudio | |
1822 dll "QuickTime.qts" | |
1823 | |
1824 audiocodec qtmace6 | |
1825 info "Quicktime MACE6 audio decoder" | |
1826 status working | |
1827 format 0x3643414D ; "MAC6" | |
1828 driver qtaudio | |
1829 dll "QuickTime.qts" | |
1830 | |
10031 | 1831 audiocodec ra144 |
1832 info "RealAudio 1.0" | |
1833 status working | |
1834 format 0x345F3431 ; "14_4" | |
1835 driver realaud | |
1836 dll "14_4.so.6.0" | |
1837 | |
10117 | 1838 audiocodec ra144win |
1839 info "Win32 RealAudio 1.0" | |
1840 status working | |
1841 format 0x345F3431 ; "14_4" | |
1842 driver realaud | |
1843 dll "14_43260.dll" | |
1844 | |
10031 | 1845 audiocodec ra288 |
1846 info "RealAudio 2.0" | |
1847 status working | |
1848 format 0x385F3832 ; "28_8" | |
1849 driver realaud | |
1850 dll "28_8.so.6.0" | |
1851 | |
10117 | 1852 audiocodec ra288win |
1853 info "Win32 RealAudio 2.0" | |
1854 status working | |
1855 format 0x385F3832 ; "28_8" | |
1856 driver realaud | |
1857 dll "28_83260.dll" | |
1858 | |
10261
05a50c0ce239
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders.
rtognimp
parents:
10131
diff
changeset
|
1859 audiocodec mpra1428 |
05a50c0ce239
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders.
rtognimp
parents:
10131
diff
changeset
|
1860 info "RealAudio 1.0 and 2.0 native decoder" |
05a50c0ce239
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders.
rtognimp
parents:
10131
diff
changeset
|
1861 status working |
05a50c0ce239
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders.
rtognimp
parents:
10131
diff
changeset
|
1862 format 0x345F3431 ; "14_4" |
05a50c0ce239
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders.
rtognimp
parents:
10131
diff
changeset
|
1863 format 0x385F3832 ; "28_8" |
05a50c0ce239
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders.
rtognimp
parents:
10131
diff
changeset
|
1864 driver ra1428 |
05a50c0ce239
RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders.
rtognimp
parents:
10131
diff
changeset
|
1865 |
6375 | 1866 audiocodec racook |
1867 info "RealAudio COOK" | |
6584 | 1868 status working |
6375 | 1869 format 0x6B6F6F63 ; "cook" |
1870 driver realaud | |
1871 dll "cook.so.6.0" | |
1872 | |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1873 audiocodec racookwin |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1874 info "Win32 RealAudio COOK" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1875 status working |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1876 format 0x6B6F6F63 ; "cook" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1877 driver realaud |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1878 dll "cook3260.dll" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1879 |
6934
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
1880 audiocodec rasipr |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
1881 info "RealAudio Sipro" |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
1882 status working |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
1883 format 0x72706973 ; "sipr" |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
1884 driver realaud |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
1885 dll "sipr.so.6.0" |
7f5390468d64
real 'sipr' audio added (not yet working), version bumped
arpi
parents:
6926
diff
changeset
|
1886 |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1887 audiocodec rasiprwin |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1888 info "Win32 RealAudio Sipro" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1889 status working |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1890 format 0x72706973 ; "sipr" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1891 driver realaud |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1892 dll "sipr3260.dll" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1893 |
8094 | 1894 audiocodec raatrc |
1895 info "RealAudio ATRAC3" | |
1896 status working | |
1897 format 0x63727461 ; "atrc" | |
1898 driver realaud | |
1899 dll "atrc.so.6.0" | |
1900 | |
9906
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1901 audiocodec raatrcwin |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1902 info "Win32 RealAudio ATRAC3" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1903 status working |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1904 format 0x63727461 ; "atrc" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1905 driver realaud |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1906 dll "atrc3260.dll" |
30311987666f
forgot to commit win32 realadio entries, and wma id: 0x163
alex
parents:
9897
diff
changeset
|
1907 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1908 audiocodec imaadpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1909 info "IMA ADPCM" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1910 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1911 format 0x11 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1912 format 0x34616d69 ; "ima4" (MOV files) |
8104 | 1913 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
|
1914 driver imaadpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1915 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1916 audiocodec msadpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1917 info "MS ADPCM" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1918 status working |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1919 format 0x2 |
8104 | 1920 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
|
1921 driver msadpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1922 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1923 audiocodec dk4adpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1924 info "Duck DK4 ADPCM (rogue format number)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1925 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1926 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
|
1927 ; registered with Microsoft |
5408 | 1928 driver imaadpcm |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1929 |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1930 audiocodec dk3adpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1931 info "Duck DK3 ADPCM (rogue format number)" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1932 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1933 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
|
1934 ; registered with Microsoft |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1935 driver dk3adpcm |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1936 |
12444
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
1937 audiocodec ffroqaudio |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
1938 info "Id RoQ File Audio Decoder" |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
1939 status working |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
1940 fourcc RoQA ; RoQA is an internal MPlayer FOURCC |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
1941 driver ffmpeg |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
1942 dll "roq_dpcm" |
0971849c04b6
Use roqvideo and roqaudio decoders from libavcodec
rtognimp
parents:
12441
diff
changeset
|
1943 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1944 audiocodec roqaudio |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1945 info "Id RoQ File Audio Decoder" |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1946 status working |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1947 fourcc RoQA ; RoQA is an internal MPlayer FOURCC |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1948 driver roqaudio |
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1949 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1950 audiocodec libdv |
8209 | 1951 info "raw DV audio decoder (libdv)" |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1952 status working |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1953 fourcc RADV |
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1954 driver libdv |
8209 | 1955 dll libdv.so.2 |
6926
9f325578fac9
native libdv added, fourccs fixed/commented for qdv & mcdv
arpi
parents:
6896
diff
changeset
|
1956 |
9233 | 1957 audiocodec ffdv |
1958 info "FFmpeg DV audio decoder" | |
1959 status working | |
1960 fourcc RADV | |
1961 driver ffmpeg | |
1962 dll "dvaudio" | |
1963 | |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1964 audiocodec faad |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
1965 info "FAAD AAC (MPEG2/MPEG4 Audio) decoder" |
5375
c4e62a4e44ee
I420 added to native YV12 codecs, useless cpuinfo removed, native zlib added, some cosmetics
arpi
parents:
5374
diff
changeset
|
1966 status working |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1967 fourcc mp4a,MP4A |
12177 | 1968 fourcc "AAC " ; Used in NSV |
12474 | 1969 format 0xff |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1970 driver faad |
8209 | 1971 dll libfaad2 |
5374
774189ab0446
reordered video codecs to work better with new codec selection code
arpi
parents:
5351
diff
changeset
|
1972 |
11973 | 1973 audiocodec flac |
1974 info "Free Lossless Audio Codec" | |
1975 status untested | |
1976 comment "using libmpflac or libflac" | |
1977 format 0x43614C66 | |
1978 driver flac | |
1979 dll "libmpflac" | |
1980 | |
1981 audiocodec ffflac | |
1982 info "FFmpeg FLAC audio decoder" | |
1983 status working | |
1984 format 0x43614C66 | |
1985 driver ffmpeg | |
1986 dll "flac" | |
1987 | |
757 | 1988 audiocodec pcm |
1989 info "Uncompressed PCM" | |
1990 status working | |
12537 | 1991 format 0x0 |
757 | 1992 format 0x1 |
2675 | 1993 format 0x20776172 ; "raw " (MOV files) |
1994 format 0x736f7774 ; "twos" (MOV files) | |
8104 | 1995 format 0x74776f73 ; "sowt" (MOV files) |
757 | 1996 ;;;; these are for hardware support only: (alaw,ulaw,ima-adpcm,mpeg,ac3) |
1997 ; format 0x6 | |
1998 ; format 0x7 | |
1999 ; format 0x11 | |
2000 ; format 0x50 | |
2001 ; format 0x2000 | |
2002 ;;;; | |
2003 driver pcm | |
2004 | |
267 | 2005 audiocodec divx |
268 | 2006 info "DivX audio (WMA)" |
334 | 2007 status working |
267 | 2008 format 0x160 |
2009 format 0x161 | |
2010 driver acm | |
2011 dll "divxa32.acm" | |
2012 | |
3851 | 2013 audiocodec msadpcmacm |
2014 info "MS ADPCM" | |
2015 status working | |
2016 format 0x2 | |
2017 driver acm | |
2018 dll "msadp32.acm" | |
267 | 2019 |
2020 audiocodec mp3 | |
6584 | 2021 info "mp3lib MPEG layer-2, layer-3" |
334 | 2022 status working |
1928 | 2023 comment "Optimized to MMX/SSE/3Dnow!" |
7521 | 2024 format 0x50 ; layer-1 && layer-2 |
2025 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
|
2026 format 0x33706d2e ; ".mp3" CBR/VBR MP3 (MOV files) |
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
2027 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
10126 | 2028 format 0x2033504D ; "MP3 " (used in .nsv files) |
267 | 2029 driver mp3lib |
2030 | |
7939 | 2031 audiocodec ffwmav1 |
2032 info "DivX audio v1 (ffmpeg)" | |
8007 | 2033 status untested |
7939 | 2034 format 0x160 |
2035 driver ffmpeg | |
2036 dll "wmav1" | |
2037 | |
2038 audiocodec ffwmav2 | |
2039 info "DivX audio v2 (ffmpeg)" | |
8007 | 2040 status untested |
7939 | 2041 format 0x161 |
2042 driver ffmpeg | |
2043 dll "wmav2" | |
2044 | |
8041 | 2045 audiocodec ffmac3 |
2046 info "Macintosh Audio Compression and Expansion 3:1" | |
2047 status untested | |
2048 fourcc "MAC3" | |
2049 driver ffmpeg | |
2050 dll "mace3" | |
2051 | |
2052 audiocodec ffmac6 | |
2053 info "Macintosh Audio Compression and Expansion 6:1" | |
2054 status untested | |
2055 fourcc "MAC6" | |
2056 driver ffmpeg | |
2057 dll "mace6" | |
2058 | |
10348 | 2059 audiocodec ffra144 |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
2060 info "FFmpeg RealAudio 1.0" |
10348 | 2061 status untested |
2062 format 0x345F3431 ; "14_4" | |
2063 driver ffmpeg | |
2064 dll "real_144" | |
2065 | |
2066 audiocodec ffra288 | |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
2067 info "FFmpeg RealAudio 2.0" |
11545 | 2068 status crashing |
10348 | 2069 format 0x385F3832 ; "28_8" |
2070 driver ffmpeg | |
2071 dll "real_288" | |
2072 | |
1928 | 2073 audiocodec ffmp3 |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
2074 info "FFmpeg MPEG layer-3 audio decoder" |
8209 | 2075 comment "integer only" |
1928 | 2076 status working |
2077 format 0x55 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
2078 format 0x33706d2e ; ".mp3" CBR/VBR MP3 (MOV files) |
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
2079 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
1928 | 2080 driver ffmpeg |
5730 | 2081 dll "mp3" |
2082 | |
2083 audiocodec ffmp2 | |
10466
6bd5700854b1
consistency fixes, bumped version number (and added ffmjpegb)
alex
parents:
10465
diff
changeset
|
2084 info "FFmpeg MPEG layer-1 and layer-2 audio decoder" |
8209 | 2085 comment "integer only" |
5730 | 2086 status working |
2087 format 0x50 | |
2088 driver ffmpeg | |
2089 dll "mp2" | |
1928 | 2090 |
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
|
2091 audiocodec mad |
8209 | 2092 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
|
2093 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
|
2094 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
|
2095 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
|
2096 format 0x33706d2e ; ".mp3" CBR/VBR MP3 (MOV files) |
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
|
2097 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
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
|
2098 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
|
2099 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
|
2100 |
729 | 2101 audiocodec mp3acm |
2102 info "MPEG layer-3" | |
2103 status working | |
1928 | 2104 comment "conflicts with security kernel patches" |
729 | 2105 format 0x55 |
2106 driver acm | |
2107 dll "l3codeca.acm" | |
2108 | |
3758 | 2109 audiocodec imaadpcmacm |
268 | 2110 info "IMA ADPCM" |
334 | 2111 status working |
267 | 2112 format 0x11 |
2113 driver acm | |
2114 dll "imaadp32.acm" | |
2115 | |
2116 audiocodec msgsmacm | |
268 | 2117 info "MS GSM" |
334 | 2118 status working |
267 | 2119 format 0x31 |
6339
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
2120 ; format 0x32 |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
2121 driver acm |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
2122 dll "msgsm32.acm" |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
2123 |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
2124 audiocodec msnaudio |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
2125 info "MSN AUDIO" |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
2126 status working |
637a29345340
split msgsm from msnaudio, because msnaudio doesn;'t support old (0x31)
arpi
parents:
6312
diff
changeset
|
2127 ; format 0x31 |
267 | 2128 format 0x32 |
2129 driver acm | |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
2130 dll "msnaudio.acm" |
267 | 2131 |
2132 audiocodec msgsm | |
268 | 2133 info "MS GSM" |
334 | 2134 status working |
267 | 2135 format 0x31 |
2136 format 0x32 | |
7411 | 2137 fourcc agsm |
267 | 2138 driver msgsm |
2139 | |
303 | 2140 audiocodec alaw |
2141 info "aLaw" | |
334 | 2142 status working |
303 | 2143 format 0x6 |
7771 | 2144 format 0x77616C61 ; 'alaw', .mov files |
303 | 2145 driver alaw |
2146 | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
2147 audiocodec ulaw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
2148 info "uLaw" |
757 | 2149 status working |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
2150 format 0x7 |
2675 | 2151 format 0x77616c75 ; "ulaw" (MOV files) |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
2152 driver alaw |
303 | 2153 |
401 | 2154 audiocodec dvdpcm |
8209 | 2155 info "Uncompressed DVD/VOB LPCM" |
401 | 2156 status working |
2157 format 0x10001 | |
2158 driver dvdpcm | |
2159 | |
3688 | 2160 audiocodec a52 |
2161 info "AC3-liba52" | |
2162 status working | |
2163 format 0x2000 | |
10120 | 2164 fourcc dnet |
3688 | 2165 driver liba52 |
2166 dll "liba52" | |
2167 | |
303 | 2168 audiocodec ac3 |
8209 | 2169 info "AC3-libac3" |
6584 | 2170 comment "removed from mplayer, use liba52" |
334 | 2171 status working |
303 | 2172 format 0x2000 |
10120 | 2173 fourcc dnet |
303 | 2174 driver libac3 |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
2175 dll "libac3" |
303 | 2176 |
267 | 2177 audiocodec voxware |
268 | 2178 info "VoxWare" |
2691 | 2179 status working |
267 | 2180 format 0x75 |
2181 driver dshow | |
2182 dll "voxmsdec.ax" | |
2183 guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d | |
2184 | |
333 | 2185 audiocodec acelp |
2186 info "ACELP.net Sipro Lab Audio Decoder" | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2187 status working |
333 | 2188 format 0x130 |
2189 driver dshow | |
2190 dll "acelpdec.ax" | |
334 | 2191 guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7 |
333 | 2192 |
2193 audiocodec imc | |
2194 info "Intel Music Coder" | |
1372 | 2195 status working |
2196 comment "driver at http://codeczone.virtualave.net/FXIMCAUD.zip" | |
333 | 2197 format 0x401 |
1372 | 2198 driver acm |
2199 dll "imc32.acm" | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
2200 |
12523 | 2201 audiocodec iac25 |
2202 info "Indeo audio" | |
2203 status working | |
2204 format 0x402 | |
2205 driver acm | |
2206 dll "iac25_32.ax" | |
2207 | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
2208 audiocodec hwac3 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
2209 info "AC3 through SPDIF" |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
2210 status working |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
2211 format 0x2000 |
10120 | 2212 fourcc dnet |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
2213 driver hwac3 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
2214 |
1828 | 2215 audiocodec vorbis |
2216 info "OggVorbis Audio Decoder" | |
1985 | 2217 status working |
1828 | 2218 comment "OggVorbis driver using libvorbis" |
2219 format 0xFFFE | |
2220 driver libvorbis | |
2221 dll "libvorbis" | |
2222 ; acm codec doesn't work, haven't tried zorannt dshow codec | |
2223 ; driver acm | |
2224 ; dll "vorbis.acm" | |
2225 | |
3472 | 2226 audiocodec vivoaudio |
2227 info "Vivo G.723/Siren Audio Codec" | |
2228 status working | |
2675 | 2229 format 0x111 ; vivo g.723 |
3472 | 2230 format 0x112 ; siren |
2675 | 2231 driver acm |
2232 dll "vivog723.acm" | |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
2233 |
3427 | 2234 audiocodec g72x |
2235 info "G.711/G.721/G.723" | |
6584 | 2236 status crashing |
3427 | 2237 comment "does not work yet - just noise :(" |
2238 format 0x111 ; vivo g.723 | |
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
|
2239 format 0x112 ; vivo siren |
3427 | 2240 driver g72x |
2241 dll "g72x.c" | |
3986 | 2242 |
11956 | 2243 audiocodec ffg726 |
2244 info "Sharp G.726 Audio" | |
2245 status working | |
2246 format 0x45 | |
2247 driver ffmpeg | |
2248 dll "g726" | |
2249 | |
11684 | 2250 audiocodec g726 |
2251 info "Sharp G.726 Audio" | |
2252 status untested | |
2253 format 0x45 | |
2254 driver acm | |
2255 dll "scg726.acm" | |
2256 | |
3986 | 2257 audiocodec atrac3 |
2258 info "Sony ATRAC3" | |
2259 status buggy | |
8209 | 2260 comment "format not accepted" |
3986 | 2261 format 0x270 |
2262 driver acm | |
2263 dll "atrac3.acm" | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2264 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2265 audiocodec ALF2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2266 ; http://www.nctsoft.com/products/NCTALFCD/ |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2267 ; jdp@mail.sonofon.dk |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2268 info "ALF2" |
5762 | 2269 status working |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2270 format 0x1FC4 ; ALF2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2271 driver acm |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2272 dll "alf2cd.acm" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
2273 |
5749 | 2274 audiocodec truespeech |
5757
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2275 info "DSP Group TrueSpeech(TM)" |
5749 | 2276 status working |
2277 format 0x22 | |
2278 driver acm | |
2279 dll "tssoft32.acm" | |
5753 | 2280 |
2281 ; rt32dcmp.dll needed too | |
2282 audiocodec voxwarert24 | |
2283 info "VoxWare RT24 speech codec" | |
2284 status working | |
2285 format 0x181c | |
2286 driver acm | |
2287 dll "nsrt2432.acm" | |
5757
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2288 |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2289 audiocodec lhacm |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2290 info "Lernout & Hauspie CELP and SBC codecs" |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2291 status working |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2292 format 0x1101 ; CELP |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2293 format 0x1102 ; SBC |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2294 format 0x1103 ; SBC |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2295 format 0x1104 ; SBC |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2296 driver acm |
7109fbe9a749
removed some silly comments and added lhacm audio - working
alex
parents:
5756
diff
changeset
|
2297 dll "lhacm.acm" |