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