Mercurial > mplayer.hg
annotate etc/codecs.conf @ 5270:870e932096ff
Support for cropping in mencoder. New options:
-x0, -y0: upper-left corner of rectangle to be cut out
-xsize, -ysize: Size of rectangle to cut out
Cropping is done before scaling.
author | ksorim |
---|---|
date | Sat, 23 Mar 2002 13:13:12 +0000 |
parents | 3e04fd1074d3 |
children | eea0213d64c8 |
rev | line source |
---|---|
5121 | 1 ;============================================================================= |
307 | 2 ; Default codecs config file. It replaces the old codecs.c file! |
5121 | 3 ; |
4 ; Before editing this file, please read DOCS/tech/codecs.conf.txt ! | |
5 ;============================================================================= | |
267 | 6 |
471 | 7 ;============================================================================= |
8 ; VIDEO CODECS | |
9 ;============================================================================= | |
10 | |
1278 | 11 ; =============== Win32/libmpeg2/ProjectMayo MPEG CODECS ===================== |
12 | |
2691 | 13 videocodec vivo |
14 info "Vivo H.263" | |
15 status working | |
16 fourcc VIVO,vivo vivo | |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
17 fourcc viv1,viv2 vivo |
2691 | 18 driver vfw |
19 dll "ivvideo.dll" | |
3525 | 20 out BGR32,BGR24,BGR15 flip |
5121 | 21 in BGR24 |
3436 | 22 cpuflags mmx |
2691 | 23 |
1278 | 24 videocodec u263 |
25 info "UB Video H.263+ Decoder" | |
2691 | 26 comment "added by Juanjo" |
1278 | 27 status working |
28 fourcc U263 | |
2683 | 29 fourcc vivo,VIVO U263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
30 fourcc viv1 U263 |
1278 | 31 driver dshow |
32 dll "ubv263d+.ax" | |
33 guid 0x00af1181, 0x6ebb, 0x11d4, 0x9d, 0x5a, 0x00, 0x50, 0x04, 0x79, 0x6c, 0xc0 | |
34 ; out I420 flip | |
35 ; out YVYU flip,noflip | |
36 ; out YV12 flip | |
37 ; out UYVY flip,noflip | |
38 ; out YUY2 flip | |
39 out BGR24 flip | |
3436 | 40 cpuflags mmx |
1278 | 41 |
42 videocodec divxds | |
43 info "DivX ;-) (MS MPEG-4 v3)" | |
44 comment "with postprocessing" | |
45 status working | |
46 fourcc MP43,mp43 div3 ; fourcc mapping to div3 | |
47 fourcc DIV5,div5 div3 | |
48 fourcc DIV6,div6 div4 | |
49 fourcc DIV3,div3,DIV4,div4 | |
1526 | 50 fourcc AP41 div3 ; AngelPotion stuff |
1278 | 51 driver dshow |
52 dll "divx_c32.ax" | |
53 guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa | |
54 ; out YV12 | |
55 out YUY2 | |
56 out BGR32,BGR24,BGR16,BGR15 | |
3436 | 57 cpuflags mmx |
1278 | 58 |
303 | 59 videocodec mpeg12 |
60 info "MPEG 1 or 2" | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
61 comment "with postprocessing" |
334 | 62 status working |
1463 | 63 format 0x10000001 ; mpeg 1 |
64 format 0x10000002 ; mpeg 2 | |
303 | 65 driver libmpeg2 |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
66 dll "libmpeg2" |
303 | 67 out YV12 |
68 | |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
69 videocodec mpeg4ds |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
70 info "Microsoft MPEG-4 v1/v2" |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
71 status working |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
72 comment "with postprocessing" |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
73 fourcc DIV2,div2 mp42 |
5161 | 74 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
75 fourcc MPG4,mpg4 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
76 fourcc MP42,mp42 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
77 driver dshow |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
78 dll "mpg4ds32.ax" |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
79 guid 0x82CCD3E0, 0xF71A, 0x11D0, 0x9F, 0xE5, 0x00, 0x60, 0x97, 0x78, 0xEA, 0x66 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
80 out YUY2 |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
81 out BGR32,BGR24,BGR16,BGR15 |
3436 | 82 cpuflags mmx |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
83 |
267 | 84 videocodec mpeg4 |
268 | 85 info "Microsoft MPEG-4 v1/v2" |
334 | 86 status working |
267 | 87 fourcc MPG4,mpg4 |
88 fourcc MP42,mp42 | |
742 | 89 fourcc DIV2 mp42 |
267 | 90 driver vfw |
91 dll "mpg4c32.dll" | |
303 | 92 out YUY2 yuvhack |
93 out BGR32,BGR24,BGR15 | |
3436 | 94 cpuflags mmx |
267 | 95 |
303 | 96 videocodec divx |
97 info "DivX ;-) (MS MPEG-4 v3)" | |
334 | 98 status working |
99 fourcc MP43,mp43 div3 ; M$ MPEG4 v3 (fourcc mapping to div3) | |
100 fourcc DIV5,div5 div3 ; DivX 3.20 | |
101 fourcc DIV6,div6 div4 ; -||- | |
312 | 102 fourcc DIV3,div3,DIV4,div4 |
1526 | 103 fourcc AP41 div3 ; AngelPotion stuff |
303 | 104 driver vfw |
105 dll "divxc32.dll" | |
106 out YUY2 yuvhack | |
107 out BGR32,BGR24,BGR15 | |
3436 | 108 cpuflags mmx |
1390 | 109 |
110 videocodec odivx | |
111 info "OpenDivX (MPEG-4 v2)" | |
112 comment "with postprocessing" | |
113 status working | |
114 fourcc DIVX,divx | |
115 fourcc DIV1,div1 divx | |
5161 | 116 ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
1390 | 117 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! |
1526 | 118 fourcc AP41 DIV3 ; AngelPotion stuff |
4206 | 119 fourcc xvid,XVID,XviD |
5010 | 120 fourcc DX50 |
1390 | 121 format 0x4 |
122 driver odivx | |
123 dll "opendivx decore" | |
124 out YV12 | |
125 | |
1349 | 126 videocodec divx4 |
127 info "DivX4Linux (MPEG-4 v2,v3)" | |
128 comment "with postprocessing" | |
129 status working | |
130 fourcc DIVX,divx | |
131 fourcc DIV1,div1 divx | |
5161 | 132 ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
1349 | 133 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! |
1526 | 134 fourcc AP41 DIV3 ; AngelPotion stuff |
4206 | 135 fourcc xvid,XVID,XviD |
5010 | 136 fourcc DX50 |
1349 | 137 format 0x4 |
138 driver divx4 | |
139 dll "libdivxdecore.0" | |
140 ; out YV12 ; works, but odivx driver is faster with YV12 (DEC_USER) | |
1526 | 141 ; out I420 |
1349 | 142 out YUY2 |
143 out UYVY | |
144 out BGR32,BGR24,BGR16,BGR15 | |
267 | 145 |
2088 | 146 videocodec divx4vfw |
147 info "DivX4Windows-VFW (DivX 3.x, DivX4)" | |
148 status working | |
149 comment "with postprocessing!!!" | |
150 fourcc DIVX,divx ; opendivx / divx4 | |
151 fourcc DIV1,div1 divx | |
5161 | 152 ; fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 |
2088 | 153 fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3 ; for DivX4Linux only! |
154 fourcc AP41 DIV3 ; AngelPotion stuff | |
155 format 0x4 | |
156 driver vfw | |
157 dll "divx.dll" | |
158 ; out YV12 ; buggy | |
159 out YUY2 | |
160 out BGR32,BGR24,BGR15 | |
3436 | 161 cpuflags mmx |
2088 | 162 |
1453 | 163 videocodec i263 |
164 info "I263" | |
165 status working | |
166 fourcc I263,i263,I420,i420 | |
2683 | 167 fourcc vivo,VIVO I263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
168 fourcc viv1 I263 |
1453 | 169 driver vfw |
170 dll "i263_32.drv" | |
171 ; out I420 | |
172 out YUY2 | |
173 out BGR32,BGR24,BGR15 | |
3436 | 174 cpuflags mmx |
1453 | 175 |
2877 | 176 videocodec m3jpeg |
177 info "Morgan Motion JPEG Codec" | |
178 status working | |
179 fourcc MJPG | |
180 fourcc mjpa,mjpb,mjpg MJPG ; MOV files | |
4366 | 181 fourcc dmb1 MJPG ; MJPEG by Matrox Rainbow Runner |
2877 | 182 driver vfw |
183 dll "m3jpeg32.dll" | |
184 out YUY2 | |
185 out UYVY | |
186 out BGR32,BGR24,BGR15 | |
3436 | 187 cpuflags mmx |
2877 | 188 |
1453 | 189 videocodec mjpeg |
2877 | 190 info "MainConcept Motion JPEG" |
1453 | 191 status working |
192 fourcc MJPG | |
2675 | 193 fourcc mjpa,mjpb,mjpg MJPG ; MOV files |
4573 | 194 fourcc AVRn,AVDJ MJPG ; AVID |
1453 | 195 driver vfw |
196 dll "mcmjpg32.dll" | |
197 out YUY2 | |
198 out UYVY | |
199 out BGR32,BGR24,BGR15 | |
3436 | 200 cpuflags mmx |
1453 | 201 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
202 |
1278 | 203 ; =============== FFMPEG MPEG CODECS ========================= |
204 | |
1453 | 205 videocodec ffmjpeg |
206 info "FFmpeg MJPEG decoder" | |
207 status working | |
208 fourcc MJPG,mjpg | |
4573 | 209 ; fourcc AVRn |
4740
54226110dbe5
ffmjpeg decodes qt photo-jpeg - patch by Sascha Sommer <saschasommer@freenet.de>
arpi
parents:
4673
diff
changeset
|
210 fourcc jpeg ; photo-jpeg |
1453 | 211 driver ffmpeg |
212 dll mjpeg | |
4569 | 213 ; out YUY2 |
1453 | 214 out YV12 |
215 | |
216 videocodec ffi263 | |
217 info "FFmpeg I263 decoder" | |
218 status working | |
219 fourcc I263,i263 | |
220 driver ffmpeg | |
221 dll h263i | |
222 out YV12 | |
223 | |
224 videocodec ffh263 | |
225 info "FFmpeg H263+ decoder" | |
1526 | 226 status working |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
227 fourcc H263,U263,h263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
228 fourcc viv1 h263 |
1453 | 229 driver ffmpeg |
230 dll h263 | |
231 out YV12 | |
232 | |
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
|
233 videocodec ffrv10 |
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
|
234 info "FFmpeg RV10 decoder" |
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
|
235 status working |
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
|
236 fourcc RV10,rv10 |
3878 | 237 fourcc RV13,rv13 |
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
|
238 driver ffmpeg |
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
|
239 dll rv10 |
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
|
240 out YV12 |
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
|
241 |
1278 | 242 videocodec ffdivx |
243 info "FFmpeg DivX ;-) (MS MPEG-4 v3)" | |
244 status working | |
1430 | 245 fourcc MPG3,mpg3 div3 |
1278 | 246 fourcc MP43,mp43 div3 ; M$ MPEG4 v3 (fourcc mapping to div3) |
247 fourcc DIV5,div5 div3 ; DivX 3.20 | |
248 fourcc DIV6,div6 div4 ; -||- | |
249 fourcc DIV3,div3,DIV4,div4 | |
1526 | 250 fourcc AP41 div3 ; AngelPotion stuff |
1278 | 251 driver ffmpeg |
252 dll msmpeg4 | |
253 out YV12 | |
254 | |
255 videocodec ffodivx | |
256 info "FFmpeg OpenDivX" | |
257 status working | |
258 fourcc DIVX,divx | |
259 fourcc DIV1,div1 divx | |
260 fourcc MP4S,mp4s ; ISO MPEG-4 Video V1 | |
4206 | 261 fourcc xvid,XVID,XviD |
5012 | 262 fourcc DX50 |
5190
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5179
diff
changeset
|
263 fourcc mp4v |
1278 | 264 format 0x4 |
265 driver ffmpeg | |
1901 | 266 dll mpeg4 ;opendivx |
1278 | 267 out YV12 |
268 | |
269 videocodec ffmpeg12 | |
270 info "FFmpeg-1" | |
1526 | 271 status working |
1463 | 272 format 0x10000001 ; mpeg 1 |
1526 | 273 format 0x10000002 ; mpeg 2 |
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
|
274 fourcc mpg1,mpg2 |
4897
d80537754731
PIM1 is playable with ffmpeg12. thx to Togni Roberto <rtogni@bresciaonline.it>
arpi
parents:
4854
diff
changeset
|
275 fourcc PIM1 |
1278 | 276 driver ffmpeg |
1453 | 277 dll "mpegvideo" |
1278 | 278 out YV12 |
279 | |
1877 | 280 videocodec mpegpes |
281 info "Mpeg PES output (.mpg or DVB card)" | |
282 comment "for hardware decoding" | |
1985 | 283 status working |
1877 | 284 format 0x10000001 ; mpeg 1 |
285 format 0x10000002 ; mpeg 2 | |
286 driver libmpeg2 | |
287 dll "libmpeg2" | |
288 out MPES | |
289 | |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
290 ; ============== MPLAYER OPENSOURCE CODECS ========= |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
291 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
292 videocodec cvid |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
293 info "Cinepak Video (native codec)" |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
294 status working |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
295 fourcc cvid,CVID |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
296 driver cinepak |
4917
6002d8a3b080
reinstated YUY2, BGR32 and BGR24 decoders, all reworked to operate with
melanson
parents:
4911
diff
changeset
|
297 out YV12 |
3646 | 298 out YUY2 |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
299 out BGR32,BGR24 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
300 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
301 videocodec msrle |
5193
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5190
diff
changeset
|
302 info "Microsoft RLE" |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
303 status working |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
304 format 0x1 |
5193
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5190
diff
changeset
|
305 format 0x2 |
abea2deab4d6
MPlayer now has a Microsoft RLE decoder to call its own...only supports
melanson
parents:
5190
diff
changeset
|
306 driver msrle |
5235
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
307 out BGR32,BGR24,BGR16,BGR15 |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
308 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
309 videocodec fli |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
310 info "Autodesk FLI/FLC Animation" |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
311 status working |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
312 comment "FLIC is an internal MPlayer FOURCC" |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
313 fourcc FLIC |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
314 driver fli |
3650 | 315 out BGR32,BGR24 |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
316 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
317 videocodec video1 |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
318 info "Microsoft Video 1" |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
319 status working |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
320 fourcc cram,CRAM |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
321 fourcc msvc,MSVC |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
322 fourcc wham,WHAM |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
323 driver msvidc |
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
324 out BGR32,BGR24 |
1278 | 325 |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
326 videocodec qtrle |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
327 info "Quicktime Animation (RLE)" |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
328 status working |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
329 ; codec fourcc = "rle " |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
330 format 0x20656C72 |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
331 driver qtrle |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
332 out BGR32,BGR24 |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3658
diff
changeset
|
333 |
3812 | 334 videocodec nuv |
335 info "NuppelVideo" | |
336 status working | |
337 fourcc NUV1 | |
338 driver nuv | |
339 out I420 | |
340 | |
3969 | 341 videocodec cyuv |
342 info "Creative YUV (native codec)" | |
343 status working | |
344 fourcc cyuv,CYUV | |
345 driver cyuv | |
346 out UYVY | |
347 | |
4227 | 348 videocodec qtsmc |
349 info "Apple Graphics (SMC) codec" | |
4648
65f05c190b55
blessed the QT SMC video codec as being "working"
melanson
parents:
4626
diff
changeset
|
350 status working |
4227 | 351 ; codec fourcc = "smc " |
352 format 0x20636d73 | |
353 driver qtsmc | |
354 out BGR32,BGR24 | |
355 | |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
356 videocodec ducktm1 |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
357 info "Duck Truemotion v1" |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
358 status buggy |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
359 fourcc DUCK |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
360 driver ducktm1 |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
361 out BGR32,BGR24,BGR16,BGR15 |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4227
diff
changeset
|
362 |
4656 | 363 videocodec mpng |
364 info "mPNG codec" | |
4673 | 365 status working |
366 comment "Gray scaled PNG with Alpha channel not supported" | |
4656 | 367 fourcc mpng,MPNG |
368 driver mpng | |
4673 | 369 out BGR32,BGR24 |
4656 | 370 |
5029 | 371 videocodec ijpg |
372 info "IJPG codec" | |
373 status working | |
374 comment "Hm." | |
375 fourcc ijpg,IJPG | |
5038 | 376 fourcc jpeg ; MOV Photo Jpeg |
377 fourcc AVRn,AVDJ ; AVID | |
5029 | 378 driver ijpg |
379 out BGR24,BGR8 | |
380 | |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
381 videocodec roqvideo |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
382 info "Id RoQ File Video Decoder" |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
383 status buggy |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
384 comment "RoQV is an internal MPlayer FOURCC" |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
385 fourcc RoQV |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
386 driver roqvideo |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
387 out YV12 |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
388 |
4615
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
389 videocodec qtrpza |
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
390 info "Quicktime Apple Video" |
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
391 status working |
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
392 fourcc rpza,azpr |
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
393 driver qtrpza |
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
394 out BGR32,BGR24,BGR15 |
b1fe5f58cd82
Added native codec support for QT RPZA data, courtesy of Roberto Togni
melanson
parents:
4573
diff
changeset
|
395 |
5235
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
396 videocodec mphuffyuv |
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
397 info "HuffYUV Mplayer Native Decoder" |
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
398 status buggy |
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
399 fourcc HFYU |
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
400 driver huffyuv |
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
401 out YUY2 |
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
402 out BGR32,BGR24 |
3e04fd1074d3
added HuffYUV support, courtesy of Roberto Togni <rtogni@bresciaonline.it>
melanson
parents:
5193
diff
changeset
|
403 |
3757 | 404 audiocodec imaadpcm |
405 info "IMA ADPCM" | |
406 status working | |
407 format 0x11 | |
408 format 0x34616d69 ; "ima4" (MOV files) | |
3787 | 409 driver imaadpcm |
410 | |
3875
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
411 audiocodec msadpcm |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
412 info "MS ADPCM" |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
413 status working |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
414 format 0x2 |
e3caff2daa98
fixed stereo MS ADPCM decoder and reinstated opensource decoder as the
melanson
parents:
3864
diff
changeset
|
415 driver msadpcm |
3757 | 416 |
4854
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4774
diff
changeset
|
417 audiocodec dk4adpcm |
4190 | 418 info "Duck DK4 ADPCM (rogue format number)" |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3878
diff
changeset
|
419 status working |
4190 | 420 comment "This format number was used by Duck Corp. but not officially registered with Microsoft" |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3878
diff
changeset
|
421 format 0x61 |
4854
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4774
diff
changeset
|
422 driver dk4adpcm |
3933
60db4273246d
added initial support for format 0x61 ADPCM (sounds good, but still pops)
melanson
parents:
3878
diff
changeset
|
423 |
4854
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4774
diff
changeset
|
424 audiocodec dk3adpcm |
4190 | 425 info "Duck DK3 ADPCM (rogue format number)" |
4001 | 426 status working |
4190 | 427 comment "This format number was used by Duck Corp. but not officially registered with Microsoft" |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3812
diff
changeset
|
428 format 0x62 |
4854
4a6dde59834c
fixed, strengthened, rewrote, and renamed a variety of the ADPCM decoders
melanson
parents:
4774
diff
changeset
|
429 driver dk3adpcm |
3826
8a88ed2473aa
added initial, not-yet-functional, support for fox62 audio
melanson
parents:
3812
diff
changeset
|
430 |
4452
bef7b760bc80
no, wait...roqaudio is an audiocodec, not a videocodec
melanson
parents:
4450
diff
changeset
|
431 audiocodec roqaudio |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
432 info "Id RoQ File Audio Decoder" |
4534
a38001c3f7e5
promoted the RoQ audio decoder from "buggy" to "working"
melanson
parents:
4452
diff
changeset
|
433 status working |
4450
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
434 comment "RoQA is an internal MPlayer FOURCC" |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
435 fourcc RoQA |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
436 driver roqaudio |
3da8c5706371
added skeleton decoders for RoQ audio and video format decoders
melanson
parents:
4445
diff
changeset
|
437 |
5190
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5179
diff
changeset
|
438 audiocodec faad |
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5179
diff
changeset
|
439 info "AAC MPEG2/MPEG4 Audio" |
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5179
diff
changeset
|
440 status buggy |
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5179
diff
changeset
|
441 comment "Under developemnt by Atmos" |
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5179
diff
changeset
|
442 fourcc mp4a,MP4A |
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5179
diff
changeset
|
443 driver faad |
59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
atmos4
parents:
5179
diff
changeset
|
444 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
445 ; =============== WINDOWS DLL's ============== |
1278 | 446 |
1938 | 447 videocodec vp3 |
448 info "On2 OpenSource VP3-Codec" | |
449 status working | |
450 comment "For SSE-systems use hacked dll from ftp://mplayerhq.hu/MPlayer/samples/drivers32/" | |
3571
ceaccd11b8ec
VP30 added - report by Mark Janssen <maniac@maniac.nl>
arpi
parents:
3525
diff
changeset
|
451 fourcc VP30,vp30,VP31,vp31 |
1938 | 452 driver vfwex |
453 dll "vp31vfw.dll" | |
454 out YUY2 | |
455 out BGR32,BGR24,BGR15 | |
3436 | 456 cpuflags mmx |
1938 | 457 |
334 | 458 videocodec indeo5ds |
459 info "Intel Indeo 5" | |
796 | 460 status working |
334 | 461 fourcc IV50,iv50 |
462 driver dshow | |
463 dll "ir50_32.dll" | |
464 guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 | |
2877 | 465 out YV12 |
334 | 466 out YUY2 |
467 out BGR32,BGR24,BGR16,BGR15 | |
3436 | 468 cpuflags mmx |
334 | 469 |
346 | 470 videocodec indeo5 |
471 info "Intel Indeo 5" | |
472 status working | |
473 fourcc IV50,iv50 | |
474 driver vfw | |
475 dll "ir50_32.dll" | |
1358 | 476 ; out YV12,I420 ; flickering |
346 | 477 out YUY2 |
478 out BGR32,BGR24,BGR15 | |
479 | |
267 | 480 videocodec indeo4 |
268 | 481 info "Intel Indeo 4.1" |
746 | 482 status working |
483 ; comment "upside-down" | |
267 | 484 fourcc IV41,iv41 |
485 driver vfw | |
486 dll "ir41_32.dll" | |
746 | 487 out BGR24,BGR15 |
3436 | 488 cpuflags mmx |
267 | 489 |
490 videocodec indeo3 | |
268 | 491 info "Intel Indeo 3.1/3.2" |
334 | 492 status buggy |
1227 | 493 comment "upside-down with some vo drivers, (no yuv)" |
267 | 494 fourcc IV31,iv31 |
495 fourcc IV32,iv32 | |
496 driver vfw | |
497 dll "ir32_32.dll" | |
303 | 498 out BGR24,BGR15 flip |
3436 | 499 cpuflags mmx |
267 | 500 |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
501 videocodec cvidvfw |
268 | 502 info "Cinepak Video" |
334 | 503 status working |
267 | 504 fourcc cvid |
505 driver vfw | |
318
194ba80a8c69
Cinepak loaded msvidc32.dll instead of iccvid.dll :(
gabucino
parents:
315
diff
changeset
|
506 dll "iccvid.dll" |
496 | 507 ; out YUY2 |
508 ; out UYVY | |
303 | 509 out BGR24,BGR15 |
3436 | 510 cpuflags mmx |
267 | 511 |
512 videocodec cram | |
312 | 513 info "Microsoft Video 1" |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
514 comment "Input bpp = output bpp (8bpp is only supported by vo_ggi)" |
2675 | 515 status working |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
516 fourcc cram,CRAM CRAM |
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
517 fourcc msvc,MSVC CRAM |
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
518 fourcc wham,WHAM CRAM |
267 | 519 driver vfw |
520 dll "msvidc32.dll" | |
2683 | 521 out BGR8,BGR15,BGR24 |
267 | 522 |
523 videocodec vcr2 | |
268 | 524 info "ATI VCR-2" |
471 | 525 status crashing |
526 comment "segfault" | |
267 | 527 fourcc VCR2 |
528 driver vfw | |
529 dll "ativcr2.dll" | |
303 | 530 out YUY2 |
531 out BGR32,BGR24,BGR15 | |
3436 | 532 cpuflags mmx |
267 | 533 |
713 | 534 videocodec wmv7 |
268 | 535 info "Windows Media Video 7" |
334 | 536 status working |
267 | 537 fourcc WMV1 |
538 driver dshow | |
539 dll "wmvds32.ax" | |
540 guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae | |
471 | 541 ; out I420 |
303 | 542 out YUY2 |
543 out BGR32,BGR24,BGR16,BGR15 | |
3436 | 544 cpuflags mmx |
267 | 545 |
713 | 546 videocodec wmv8 |
547 info "Windows Media Video 8" | |
1526 | 548 status working |
713 | 549 fourcc WMV2 |
550 driver dshow | |
551 dll "wmv8ds32.ax" | |
552 guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f | |
553 out YUY2 | |
554 out BGR32,BGR24,BGR16,BGR15 | |
3436 | 555 cpuflags mmx |
713 | 556 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
557 videocodec tm20 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
558 info "TrueMotion 2.0" |
334 | 559 status crashing |
713 | 560 comment "segfault in the DLL" |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
561 fourcc TM20 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
562 driver dshow |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
563 dll "tm20dec.ax" |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
564 guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84 |
471 | 565 ; out UYVY |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
566 out YUY2 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
567 out BGR32,BGR24,BGR16,BGR15 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
568 |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
569 videocodec qdv |
334 | 570 info "Sony Digital Video (DV)" |
471 | 571 status working |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
572 fourcc DVSD,dvsd,dvcp dvsd |
4626 | 573 ; fourcc "dvc " dvsd |
334 | 574 driver dshow |
575 dll "qdv.dll" | |
576 guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42 | |
577 out YUY2 | |
471 | 578 out UYVY |
334 | 579 out BGR32,BGR24,BGR16,BGR15 |
3436 | 580 cpuflags mmx |
334 | 581 |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
582 videocodec mcdv |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
583 info "MainConcept DV Codec" |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
584 status working |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
585 fourcc DVSD,dvsd,dvcp dvsd # dvcp stands for PAL DV in mov |
4626 | 586 fourcc "dvc " dvsd |
2162
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
587 driver vfw |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
588 dll "mcdvd_32.dll" |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
589 out YUY2 |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
590 out UYVY |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
591 out BGR32,BGR24,BGR15 |
98e244e5c0a1
DV corrections by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi
parents:
2107
diff
changeset
|
592 |
334 | 593 videocodec morgands |
594 info "Morgan MJPEG" | |
471 | 595 status crashing |
334 | 596 fourcc MJPG mjpg |
597 driver dshow | |
471 | 598 dll "M3JPEGdec.ax" |
334 | 599 guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68 |
600 out YUY2 | |
601 out BGR32,BGR24,BGR16,BGR15 | |
602 | |
471 | 603 videocodec huffyuv |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
604 info "HuffYUV" |
742 | 605 status buggy |
606 comment "YUY2 _or_ 24/32bpp only (depending on file encoding)" | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
607 fourcc HFYU |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
608 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
609 dll "huffyuv.dll" |
776 | 610 out YUY2 flip,noflip |
742 | 611 ; out UYVY flip |
612 out BGR32,BGR24 flip | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
613 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
614 videocodec mszh |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
615 info "AVImszh" |
2713 | 616 status buggy |
617 comment "24bpp only" | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
618 fourcc MSZH |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
619 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
620 dll "avimszh.dll" |
2691 | 621 ; out YUY2 |
2713 | 622 ; out BGR32,BGR24,BGR15 |
623 out BGR24 | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
624 |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
625 videocodec zlib |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
626 info "AVIzlib" |
2713 | 627 status buggy |
628 comment "24bpp only" | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
629 fourcc ZLIB |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
630 driver vfw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
631 dll "avizlib.dll" |
2691 | 632 ; out YUY2 |
2713 | 633 ; out BGR32,BGR24,BGR15 |
634 out BGR24 | |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
635 |
344 | 636 videocodec mwv1 |
333 | 637 info "Motion Wavelets" |
2713 | 638 status buggy |
639 comment "no yuv, flip requires" | |
334 | 640 fourcc MWV1 |
333 | 641 driver vfw |
642 dll "icmw_32.dll" | |
2713 | 643 ; out YV12 flip |
644 ; out YUY2 flip | |
645 out BGR32,BGR24,BGR15 flip | |
3436 | 646 cpuflags mmx |
333 | 647 |
345 | 648 videocodec m261 |
649 info "M261" | |
650 status untested | |
651 fourcc m261,M261 | |
403 | 652 driver vfw |
345 | 653 dll "msh261.drv" |
654 out BGR32,BGR24,BGR15 | |
655 | |
403 | 656 videocodec asv2 |
657 info "ASUS V2" | |
658 status buggy | |
471 | 659 comment "rgb upside down, yuv ok" |
403 | 660 fourcc ASV2 |
661 driver vfw | |
662 dll "asusasv2.dll" | |
412 | 663 ; out YVYU |
713 | 664 out UYVY |
665 out BGR32,BGR24,BGR15 flip | |
3436 | 666 cpuflags mmx |
713 | 667 |
668 videocodec asv1 | |
669 info "ASUS V1" | |
670 status buggy | |
671 comment "rgb upside down, yuv ok" | |
672 fourcc ASV1 | |
673 driver vfw | |
674 dll "asusasvd.dll" | |
675 ; out YVYU | |
676 out UYVY | |
403 | 677 out BGR32,BGR24,BGR15 flip |
3436 | 678 cpuflags mmx |
403 | 679 |
2398 | 680 videocodec 3ivX |
681 info "3ivX Delta 3.5" | |
2691 | 682 status crashing |
2398 | 683 fourcc 3IV1 |
2375
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
684 driver dshow |
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
685 dll "3ivxdmo.dll" |
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
686 guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c |
2398 | 687 out YV12 |
688 out YUY2 | |
2375
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
689 out BGR32,BGR24,BGR16,BGR15 |
0170742db0c8
3ivx dshow added, ulaw/vbr mp3/cbr mp3 for MOV files added
alex
parents:
2165
diff
changeset
|
690 |
3399 | 691 videocodec mss1 |
692 info "Windows Screen Video" | |
693 status crashing | |
694 fourcc MSS1 | |
695 driver dshow | |
696 dll "msscds32.ax" | |
697 guid 0x3301a7c4, 0x0a8d, 0x11d4, 0x91, 0x4d, 0x00, 0xc0, 0x4f, 0x61, 0x0d, 0x24 | |
698 ; out I420 | |
699 ; out YUY2 | |
700 out BGR32,BGR24,BGR16,BGR15 | |
701 | |
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
|
702 videocodec 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
|
703 info "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
|
704 status buggy |
4897
d80537754731
PIM1 is playable with ffmpeg12. thx to Togni Roberto <rtogni@bresciaonline.it>
arpi
parents:
4854
diff
changeset
|
705 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
|
706 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
|
707 driver vfw |
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
|
708 dll "PCLEPIM1.DLL" |
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
|
709 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
|
710 ; 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
|
711 ; 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
|
712 ; 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
|
713 |
2675 | 714 videocodec 3ivXqtx |
715 info "3ivX Delta 3.5" | |
2691 | 716 status crashing |
2675 | 717 fourcc 3IV1 |
718 driver vfw | |
719 dll "qtx/3ivx.qtx" | |
720 out YV12 | |
721 out YUY2 | |
722 out BGR32,BGR24,BGR16,BGR15 | |
723 | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
724 videocodec alaris |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
725 info "Alaris VideoGramPiX" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
726 ; http://www.alaris.com/movies/toocool.vgm |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
727 ; Martin Schuster <schuster@ap.univie.ac.at> |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
728 status buggy |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
729 comment "only produces strange patterns" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
730 fourcc VGPX,VTLP VGPX |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
731 driver vfwex |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
732 dll "vgpix32d.dll" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
733 out UYVY |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
734 |
4445 | 735 videocodec avid |
736 info "AVID" | |
737 status working | |
738 fourcc AVRn | |
4546 | 739 fourcc AVDJ AVRn |
4569 | 740 fourcc MJPG,mjpg AVRn |
4445 | 741 driver vfw |
742 dll "AvidAVICodec.dll" | |
4569 | 743 out BGR24 flip |
4445 | 744 |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
745 videocodec CJPG |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
746 info "CJPG" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
747 status untested |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
748 fourcc CJPG |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
749 driver vfw |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
750 dll "CtWbJpg.DLL" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
751 out YUY2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
752 out UYVY |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
753 out BGR24,BGR15 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
754 |
2398 | 755 ; =============== XANIM DLL's ============= |
756 | |
2392 | 757 videocodec indeo5xa |
758 info "Intel Indeo 5" | |
2398 | 759 status working |
2392 | 760 fourcc IV50,iv50 |
761 driver xanim | |
2400 | 762 dll "vid_iv50.xa" |
2392 | 763 out YV12,IYUV,I420 |
764 | |
2398 | 765 videocodec indeo4xa |
766 info "Intel Indeo 4.1" | |
767 status working | |
768 fourcc IV41,iv41 | |
769 driver xanim | |
2400 | 770 dll "vid_iv41.xa" |
2398 | 771 out YV12,IYUV,I420 |
772 | |
773 videocodec indeo3xa | |
774 info "Intel Indeo 3.1/3.2" | |
775 status working | |
776 fourcc IV31,iv31 | |
777 fourcc IV32,iv32 | |
778 driver xanim | |
2400 | 779 dll "vid_iv32.xa" |
2398 | 780 out YV12,IYUV,I420 |
781 | |
2392 | 782 videocodec cvidxa |
783 info "Radius Cinepak Video" | |
784 status working | |
785 fourcc cvid | |
786 driver xanim | |
2400 | 787 dll "vid_cvid.xa" |
2392 | 788 out YV12,IYUV,I420 |
789 | |
790 videocodec 3ivXxa | |
2398 | 791 info "3ivX Delta 3.5" |
2392 | 792 status working |
793 fourcc 3IV1 | |
794 driver xanim | |
2400 | 795 dll "vid_3ivX.xa" |
2392 | 796 out YV12,IYUV,I420 |
797 | |
2398 | 798 videocodec h263xa |
799 info "CCITT H.263" | |
2683 | 800 status working |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
801 fourcc H263,h263 |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
802 fourcc viv1 H263 |
2683 | 803 fourcc VIVO,vivo H263 |
2398 | 804 driver xanim |
2400 | 805 dll "vid_h263.xa" |
2398 | 806 out YV12,IYUV,I420 |
807 | |
808 videocodec h261xa | |
809 info "CCITT H.261" | |
810 status untested | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
811 fourcc H261,h261 |
2398 | 812 driver xanim |
2400 | 813 dll "vid_h261.xa" |
2398 | 814 out YV12,IYUV,I420 |
815 | |
816 videocodec cyuvxa | |
817 info "Creative CYUV" | |
818 status untested | |
819 fourcc CYUV,cyuv | |
820 driver xanim | |
2400 | 821 dll "vid_cyuv.xa" |
2398 | 822 out YV12,IYUV,I420 |
823 | |
3644
d15713c1480b
native CVID codec added, order of native and vfw codecs changed
arpi
parents:
3571
diff
changeset
|
824 ; ============== RAW (uncompressed) and NULL CODECS ========= |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
825 |
3399 | 826 ; 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
|
827 ; 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
|
828 ; 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
|
829 ; 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
|
830 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
831 videocodec rawyv12 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
832 info "RAW YV12" |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
833 comment "pre-postprocessing support" |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
834 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
835 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
836 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
|
837 format 0x20776172 |
3304 | 838 fourcc yv12,YV12 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
839 out YV12 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
840 |
3767 | 841 videocodec rawi420 |
842 info "RAW I420" | |
843 status working | |
844 driver raw | |
845 format 0x0 | |
846 format 0x20776172 | |
847 fourcc i420,I420 | |
848 out I420 | |
849 | |
3304 | 850 videocodec rawyuy2 |
851 info "RAW YUY2" | |
852 status working | |
853 driver raw | |
854 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
|
855 format 0x20776172 |
3304 | 856 fourcc yuy2,YUY2 |
857 out YUY2 | |
858 | |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
859 videocodec rawuyvy |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
860 info "RAW UYVY" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
861 status working |
2804 | 862 driver raw |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
863 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
|
864 format 0x20776172 |
3399 | 865 fourcc uyvy,UYVY |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
866 out UYVY |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
867 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
868 videocodec rawrgb32 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
869 info "RAW RGB32" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
870 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
871 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
872 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
|
873 format 0x20776172 |
3399 | 874 format 0x52474220 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
875 out RGB32 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
876 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
877 videocodec rawrgb24 |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
878 info "RAW RGB24" |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
879 status working |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
880 driver raw |
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
881 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
|
882 format 0x20776172 |
3399 | 883 format 0x52474218 |
2820
30756e47846a
new rawyv12/rawuyvy/rawrgb32/rawrgb24 for tv (also you can use aalib from now)
alex
parents:
2804
diff
changeset
|
884 out RGB24 |
2675 | 885 |
3399 | 886 videocodec rawrgb16 |
887 info "RAW RGB16" | |
888 status working | |
889 driver raw | |
890 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
|
891 format 0x20776172 |
3399 | 892 format 0x52474210 |
893 out RGB16 | |
894 | |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
895 videocodec rawbgr24 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
896 info "RAW BGR24" |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
897 status working |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
898 driver raw |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
899 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
|
900 format 0x20776172 |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4740
diff
changeset
|
901 format 0x42475218 |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
902 out BGR24 flip |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
903 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
904 videocodec rawbgr15 |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
905 info "RAW BGR15" |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
906 status working |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
907 driver raw |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
908 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
|
909 format 0x20776172 |
4774
fc2f76964606
Patch: Improved raw encoding support in mencoder by Fredrik Kuivinen
atmos4
parents:
4740
diff
changeset
|
910 format 0x4247520F |
3312
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
911 out BGR15 flip |
636d07d2654f
added rawbgr modes by Artur Zaprzala <artur.zaprzala@talex.com.pl>
jaf
parents:
3304
diff
changeset
|
912 |
1390 | 913 videocodec null |
2691 | 914 info "NULL codec (no decoding!)" |
5179
104cd0571dc4
changed status of 'null' codec to avoid prefering it over buggy codecs
arpi
parents:
5161
diff
changeset
|
915 status crashing |
1390 | 916 comment "for unknown/unsupported codecs or testing" |
917 driver null | |
918 out YV12 | |
919 out I420 | |
920 out YUY2 | |
921 out UYVY | |
922 out BGR32,BGR24,BGR16,BGR15 | |
923 | |
471 | 924 ;============================================================================= |
925 ; AUDIO CODECS | |
926 ;============================================================================= | |
927 | |
757 | 928 audiocodec pcm |
929 info "Uncompressed PCM" | |
930 status working | |
931 format 0x1 | |
2675 | 932 format 0x20776172 ; "raw " (MOV files) |
933 format 0x736f7774 ; "twos" (MOV files) | |
757 | 934 ;;;; these are for hardware support only: (alaw,ulaw,ima-adpcm,mpeg,ac3) |
935 ; format 0x6 | |
936 ; format 0x7 | |
937 ; format 0x11 | |
938 ; format 0x50 | |
939 ; format 0x2000 | |
940 ;;;; | |
941 driver pcm | |
942 dll "uncompressed" | |
943 | |
267 | 944 audiocodec divx |
268 | 945 info "DivX audio (WMA)" |
334 | 946 status working |
267 | 947 format 0x160 |
948 format 0x161 | |
949 driver acm | |
950 dll "divxa32.acm" | |
3436 | 951 cpuflags mmx |
267 | 952 |
3851 | 953 audiocodec msadpcmacm |
954 info "MS ADPCM" | |
955 status working | |
956 format 0x2 | |
957 driver acm | |
958 dll "msadp32.acm" | |
267 | 959 |
960 audiocodec mp3 | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
961 info "MPEG layer-2, layer-3" |
334 | 962 status working |
1928 | 963 comment "Optimized to MMX/SSE/3Dnow!" |
267 | 964 format 0x50 |
965 format 0x55 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
966 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
|
967 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
267 | 968 driver mp3lib |
891 | 969 dll "mp3lib (mpglib)" |
267 | 970 flags seekable |
971 | |
2415 | 972 ;MAD library |
973 audiocodec mad | |
974 info "MAD MPEG layer-2, layer-3" | |
975 status working | |
2691 | 976 comment "Optimized for ARM, unstable" |
2415 | 977 format 0x50 |
978 format 0x55 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
979 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
|
980 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
2415 | 981 driver libmad |
982 dll "libmad" | |
983 flags seekable | |
984 | |
1928 | 985 audiocodec ffmp3 |
986 info "FFmpeg layer-123 audio decoder - integer only" | |
987 status working | |
988 format 0x50 | |
989 format 0x55 | |
2485
6d561976740a
corrected some fourcc's at xanim dll's and corrected mov mp3,ulaw,alaw
alex
parents:
2433
diff
changeset
|
990 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
|
991 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) |
1928 | 992 driver ffmpeg |
993 dll "mpegaudio" | |
994 flags seekable | |
995 | |
729 | 996 audiocodec mp3acm |
997 info "MPEG layer-3" | |
998 status working | |
1928 | 999 comment "conflicts with security kernel patches" |
729 | 1000 format 0x55 |
1001 driver acm | |
1002 dll "l3codeca.acm" | |
1003 flags seekable | |
1004 | |
3758 | 1005 audiocodec imaadpcmacm |
268 | 1006 info "IMA ADPCM" |
334 | 1007 status working |
267 | 1008 format 0x11 |
1009 driver acm | |
1010 dll "imaadp32.acm" | |
1011 | |
1012 audiocodec msgsmacm | |
268 | 1013 info "MS GSM" |
334 | 1014 status working |
267 | 1015 format 0x31 |
1016 format 0x32 | |
1017 driver acm | |
2165
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
1018 dll "msnaudio.acm" |
03b83a9eafa3
dshow codec is preferred for mp42 - it does postprocess
arpi
parents:
2162
diff
changeset
|
1019 ; dll "msgsm32.acm" |
267 | 1020 |
1021 audiocodec msgsm | |
268 | 1022 info "MS GSM" |
334 | 1023 status working |
267 | 1024 format 0x31 |
1025 format 0x32 | |
1026 driver msgsm | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
1027 dll "xa_gsm.c" |
267 | 1028 |
303 | 1029 audiocodec alaw |
1030 info "aLaw" | |
334 | 1031 status working |
303 | 1032 format 0x6 |
1033 driver alaw | |
1227 | 1034 dll "alaw" |
303 | 1035 |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
1036 audiocodec ulaw |
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
1037 info "uLaw" |
757 | 1038 status working |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
1039 format 0x7 |
2675 | 1040 format 0x77616c75 ; "ulaw" (MOV files) |
313
df8902c0dccf
inserted some avi codecs, and stupid comments. no, no jokes, sorry.
gabucino
parents:
312
diff
changeset
|
1041 driver alaw |
1227 | 1042 dll "ulaw" |
303 | 1043 |
401 | 1044 audiocodec dvdpcm |
1045 info "Uncompressed DVD PCM" | |
1046 status working | |
1047 format 0x10001 | |
1048 driver dvdpcm | |
757 | 1049 dll "uncompressed" |
401 | 1050 |
3688 | 1051 audiocodec a52 |
1052 info "AC3-liba52" | |
1053 status working | |
1054 format 0x2000 | |
1055 driver liba52 | |
1056 dll "liba52" | |
1057 | |
303 | 1058 audiocodec ac3 |
1059 info "AC3" | |
334 | 1060 status working |
303 | 1061 format 0x2000 |
1062 driver libac3 | |
610
ebd2d0bba43d
comments changed, and dll added for native codecs too (for html)
arpi_esp
parents:
496
diff
changeset
|
1063 dll "libac3" |
303 | 1064 |
267 | 1065 audiocodec voxware |
268 | 1066 info "VoxWare" |
2691 | 1067 status working |
267 | 1068 format 0x75 |
1069 driver dshow | |
1070 dll "voxmsdec.ax" | |
1071 guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d | |
1072 | |
333 | 1073 audiocodec acelp |
1074 info "ACELP.net Sipro Lab Audio Decoder" | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1075 status working |
333 | 1076 format 0x130 |
1077 driver dshow | |
1078 dll "acelpdec.ax" | |
334 | 1079 guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7 |
333 | 1080 |
1081 audiocodec imc | |
1082 info "Intel Music Coder" | |
1372 | 1083 status working |
1084 comment "driver at http://codeczone.virtualave.net/FXIMCAUD.zip" | |
333 | 1085 format 0x401 |
1372 | 1086 driver acm |
1087 dll "imc32.acm" | |
1528
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1088 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1089 audiocodec hwac3 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1090 info "AC3 through SPDIF" |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1091 status working |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1092 format 0x2000 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1093 driver hwac3 |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1094 dll "ac3-iec958.c" |
a444bd456fcc
ac3/spdif patch by German Gomez Garcia <german@piraos.com>
arpi
parents:
1526
diff
changeset
|
1095 |
1828 | 1096 audiocodec vorbis |
1097 info "OggVorbis Audio Decoder" | |
1985 | 1098 status working |
1828 | 1099 comment "OggVorbis driver using libvorbis" |
1100 format 0xFFFE | |
1101 driver libvorbis | |
1102 dll "libvorbis" | |
1103 flags seekable | |
1104 ; acm codec doesn't work, haven't tried zorannt dshow codec | |
1105 ; driver acm | |
1106 ; dll "vorbis.acm" | |
1107 | |
3472 | 1108 audiocodec vivoaudio |
1109 info "Vivo G.723/Siren Audio Codec" | |
1110 status working | |
2675 | 1111 format 0x111 ; vivo g.723 |
3472 | 1112 format 0x112 ; siren |
2675 | 1113 driver acm |
1114 dll "vivog723.acm" | |
3114
6aa09e66c687
updated vivo fourcc's and reorganized some stuff (also new comments and entries)
alex
parents:
3111
diff
changeset
|
1115 |
3427 | 1116 audiocodec g72x |
1117 info "G.711/G.721/G.723" | |
1118 status untested | |
1119 comment "does not work yet - just noise :(" | |
1120 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
|
1121 format 0x112 ; vivo siren |
3427 | 1122 driver g72x |
1123 dll "g72x.c" | |
3986 | 1124 |
1125 audiocodec atrac3 | |
1126 info "Sony ATRAC3" | |
1127 status buggy | |
1128 format 0x270 | |
1129 driver acm | |
1130 dll "atrac3.acm" | |
4092
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1131 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1132 audiocodec ALF2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1133 ; http://www.nctsoft.com/products/NCTALFCD/ |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1134 ; jdp@mail.sonofon.dk |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1135 info "ALF2" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1136 status untested |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1137 comment "Working so try it" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1138 format 0x1FC4 ; ALF2 |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1139 driver acm |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1140 dll "alf2cd.acm" |
447ff640317f
acelp working, added some codecs contributed by users
arpi
parents:
4001
diff
changeset
|
1141 |