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