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