comparison etc/codecs.conf @ 14683:a99bdb15d2aa

Comment and info field spelling/grammar corrections.
author diego
date Sat, 12 Feb 2005 14:38:50 +0000
parents 0269b0cfeada
children 127c30674725
comparison
equal deleted inserted replaced
14682:36e7e49d9d39 14683:a99bdb15d2aa
7 7
8 ;============================================================================= 8 ;=============================================================================
9 ; VIDEO CODECS 9 ; VIDEO CODECS
10 ;============================================================================= 10 ;=============================================================================
11 11
12 ; mpeg 1/2 decoding: 12 ; MPEG-1/2 decoding:
13 ; Note: mpegpes is preferred for hw decoders: 13 ; Note: mpegpes is preferred for hw decoders:
14 14
15 videocodec mpegpes 15 videocodec mpegpes
16 info "Mpeg PES output (.mpg or Dxr3/DVB card)" 16 info "MPEG-PES output (.mpg or DXR3/DVB card)"
17 comment "for hardware decoding" 17 comment "for hardware decoding"
18 status working 18 status working
19 format 0x10000001 ; mpeg 1 19 format 0x10000001 ; mpeg 1
20 format 0x10000002 ; mpeg 2 20 format 0x10000002 ; mpeg 2
21 driver mpegpes 21 driver mpegpes
22 out MPES 22 out MPES
23 23
24 videocodec mpeg12 24 videocodec mpeg12
25 info "MPEG 1 or 2 (libmpeg2)" 25 info "MPEG-1 or 2 (libmpeg2)"
26 comment "with postprocessing" 26 comment "with postprocessing"
27 status working 27 status working
28 format 0x10000001 ; mpeg 1 28 format 0x10000001 ; MPEG-1
29 format 0x10000002 ; mpeg 2 29 format 0x10000002 ; MPEG-2
30 driver libmpeg2 30 driver libmpeg2
31 ; dll "libmpeg2" 31 ; dll "libmpeg2"
32 out YV12,I420,IYUV 32 out YV12,I420,IYUV
33 out 422P 33 out 422P
34 34
35 videocodec ffmpeg1 35 videocodec ffmpeg1
36 info "FFmpeg MPEG 1" 36 info "FFmpeg MPEG-1"
37 status working 37 status working
38 format 0x10000001 ; mpeg 1 38 format 0x10000001 ; MPEG-1
39 fourcc mpg1 39 fourcc mpg1
40 fourcc PIM1 ; Pinnacle hardware-mpeg1 40 fourcc PIM1 ; Pinnacle hardware-MPEG-1
41 fourcc VCR2 41 fourcc VCR2
42 driver ffmpeg 42 driver ffmpeg
43 dll "mpeg1video" 43 dll "mpeg1video"
44 out YV12,I420,IYUV 44 out YV12,I420,IYUV
45 45
46 videocodec ffmpeg2 46 videocodec ffmpeg2
47 info "FFmpeg MPEG 2" 47 info "FFmpeg MPEG-2"
48 status working 48 status working
49 format 0x10000002 ; mpeg 2 49 format 0x10000002 ; MPEG-2
50 fourcc mpg2 50 fourcc mpg2
51 driver ffmpeg 51 driver ffmpeg
52 dll "mpeg2video" 52 dll "mpeg2video"
53 out YV12,I420,IYUV 53 out YV12,I420,IYUV
54 out 422P,444P 54 out 422P,444P
55 55
56 ; for backward compatibility 56 ; for backward compatibility
57 videocodec ffmpeg12 57 videocodec ffmpeg12
58 info "FFmpeg MPEG 1/2" 58 info "FFmpeg MPEG-1/2"
59 status working 59 status working
60 format 0x10000001 ; mpeg 1 60 format 0x10000001 ; MPEG-1
61 format 0x10000002 ; mpeg 2 61 format 0x10000002 ; MPEG-2
62 fourcc mpg1,mpg2 62 fourcc mpg1,mpg2
63 fourcc PIM1 ; Pinnacle hardware-mpeg1 63 fourcc PIM1 ; Pinnacle hardware-MPEG-1
64 fourcc VCR2 64 fourcc VCR2
65 driver ffmpeg 65 driver ffmpeg
66 dll "mpegvideo" 66 dll "mpegvideo"
67 out YV12,I420,IYUV 67 out YV12,I420,IYUV
68 out 422P,444P 68 out 422P,444P
69 69
70 videocodec ffmpeg12mc 70 videocodec ffmpeg12mc
71 info "FFmpeg MPEG 1/2 (XvMC)" 71 info "FFmpeg MPEG-1/2 (XvMC)"
72 status buggy 72 status buggy
73 format 0x10000001 ; mpeg 1 73 format 0x10000001 ; MPEG-1
74 format 0x10000002 ; mpeg 2 74 format 0x10000002 ; MPEG-2
75 fourcc mpg1,mpg2 75 fourcc mpg1,mpg2
76 fourcc PIM1 ; Pinnacle hardware-mpeg1 76 fourcc PIM1 ; Pinnacle hardware-MPEG-1
77 driver ffmpeg 77 driver ffmpeg
78 dll "mpegvideo_xvmc" 78 dll "mpegvideo_xvmc"
79 out IDCT_MPEG2 79 out IDCT_MPEG2
80 out MOCO_MPEG2 80 out MOCO_MPEG2
81 81
82 ; we have only native opensource codecs for these: 82 ; we have only native open source codecs for these:
83 83
84 videocodec nuv 84 videocodec nuv
85 info "NuppelVideo" 85 info "NuppelVideo"
86 status working 86 status working
87 fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC 87 fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC
88 driver nuv 88 driver nuv
89 out I420,IYUV 89 out I420,IYUV
90 90
91 videocodec mpng 91 videocodec mpng
92 info "PNG images decoder" 92 info "PNG image decoder"
93 status working 93 status working
94 comment "Gray scaled PNG with Alpha channel not supported" 94 comment "Gray scaled PNG with Alpha channel not supported"
95 fourcc mpng,MPNG 95 fourcc mpng,MPNG
96 fourcc "png " ; for PNG-encoded Quicktime files 96 fourcc "png " ; for PNG-encoded QuickTime files
97 dll "libpng" 97 dll "libpng"
98 driver mpng 98 driver mpng
99 out BGR32,BGR24 99 out BGR32,BGR24
100 100
101 videocodec mtga 101 videocodec mtga
102 info "TGA images decoder" 102 info "TGA image decoder"
103 status working 103 status working
104 comment "Only 24bpp and 32bpp RGB TGA files supported" 104 comment "Only 24bpp and 32bpp RGB TGA files supported"
105 fourcc mtga,MTGA 105 fourcc mtga,MTGA
106 driver mtga 106 driver mtga
107 out BGR32,BGR24 107 out BGR32,BGR24
108 108
109 videocodec sgi 109 videocodec sgi
110 info "SGI images decoder" 110 info "SGI image decoder"
111 status working 111 status working
112 fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC 112 fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC
113 driver sgi 113 driver sgi
114 out BGR24 114 out BGR24
115 115
129 driver ffmpeg 129 driver ffmpeg
130 dll "flic" 130 dll "flic"
131 out BGR8 131 out BGR8
132 132
133 videocodec ffqtrle 133 videocodec ffqtrle
134 info "Quicktime Animation (RLE)" 134 info "QuickTime Animation (RLE)"
135 status working 135 status working
136 format 0x20656C72 ; "rle " 136 format 0x20656C72 ; "rle "
137 driver ffmpeg 137 driver ffmpeg
138 dll "qtrle" 138 dll "qtrle"
139 out BGR32,RGB24,BGR15,BGR8 query 139 out BGR32,RGB24,BGR15,BGR8 query
140 140
141 videocodec ffrpza 141 videocodec ffrpza
142 info "Quicktime Apple Video" 142 info "QuickTime Apple Video"
143 status working 143 status working
144 fourcc rpza,azpr 144 fourcc rpza,azpr
145 driver ffmpeg 145 driver ffmpeg
146 dll "rpza" 146 dll "rpza"
147 out BGR15 147 out BGR15
391 391
392 videocodec ffdivx 392 videocodec ffdivx
393 info "FFmpeg DivX ;-) (MS MPEG-4 v3)" 393 info "FFmpeg DivX ;-) (MS MPEG-4 v3)"
394 status working 394 status working
395 fourcc MPG3,mpg3 div3 395 fourcc MPG3,mpg3 div3
396 fourcc MP43,mp43 div3 ; M$ MPEG4 v3 (fourcc mapping to div3) 396 fourcc MP43,mp43 div3 ; M$ MPEG-4 v3 (fourcc mapping to div3)
397 fourcc DIV5,div5 div3 ; DivX 3.20 397 fourcc DIV5,div5 div3 ; DivX 3.20
398 fourcc DIV6,div6 div4 ; -||- 398 fourcc DIV6,div6 div4 ; -||-
399 fourcc DIV3,div3,DIV4,div4 399 fourcc DIV3,div3,DIV4,div4
400 fourcc AP41 div3 ; AngelPotion stuff 400 fourcc AP41 div3 ; AngelPotion stuff
401 fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax) 401 fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax)
495 out UYVY 495 out UYVY
496 out YVYU 496 out YVYU
497 out BGR32,BGR24,BGR16,BGR15 497 out BGR32,BGR24,BGR16,BGR15
498 dll "libxvidcore.a" 498 dll "libxvidcore.a"
499 499
500 ; divx4 does direct render, and is native on linux 500 ; divx4 does direct render, and is native on Linux
501 501
502 videocodec odivx 502 videocodec odivx
503 info "OpenDivX API (ODIVX,DIVX4,DIVX5,XVID)" 503 info "OpenDivX API (ODIVX,DIVX4,DIVX5,XVID)"
504 comment "with postprocessing" 504 comment "with postprocessing"
505 status working 505 status working
679 dll "wmsdmod.dll" 679 dll "wmsdmod.dll"
680 guid 0x7bafb3b1, 0xd8f4, 0x4279, 0x92, 0x53, 0x27, 0xda, 0x42, 0x31, 0x08, 0xde 680 guid 0x7bafb3b1, 0xd8f4, 0x4279, 0x92, 0x53, 0x27, 0xda, 0x42, 0x31, 0x08, 0xde
681 out BGR32,BGR24,BGR16 681 out BGR32,BGR24,BGR16
682 682
683 videocodec ubmp4 683 videocodec ubmp4
684 info "UB Video MPEG 4" 684 info "UB Video MPEG-4"
685 comment "black&white" 685 comment "black&white"
686 status buggy 686 status buggy
687 fourcc mp4v UMP4 ; black&white, sometimes buggy too 687 fourcc mp4v UMP4 ; black&white, sometimes buggy too
688 fourcc UMP4 688 fourcc UMP4
689 driver vfw 689 driver vfw
690 dll "ubvmp4d.dll" 690 dll "ubvmp4d.dll"
691 out I420 691 out I420
692 out UYVY 692 out UYVY
693 693
694 694
695 ; mjpegs: 695 ; MJPEG:
696 ; Notes: m3jpeg+mjpeg are mmx optimized. avid is very stable but slow. 696 ; Notes: m3jpeg+mjpeg are MMX optimized. avid is very stable but slow.
697 ; ijpg only decodes jpeg images (no mjpg), and slow. 697 ; ijpg only decodes JPEG images (no MJPEG), and slow.
698 ; Update: ffmjpeg is almost perfect (and optimized) now, prefer it to others. 698 ; Update: ffmjpeg is almost perfect (and optimized) now, prefer it to others.
699 699
700 videocodec zrmjpeg 700 videocodec zrmjpeg
701 info "Zoran MJPEG passthrough" 701 info "Zoran MJPEG passthrough"
702 status buggy 702 status buggy
707 videocodec ffmjpeg 707 videocodec ffmjpeg
708 info "FFmpeg MJPEG decoder" 708 info "FFmpeg MJPEG decoder"
709 status working 709 status working
710 fourcc MJPG,mjpg 710 fourcc MJPG,mjpg
711 fourcc AVRn,AVDJ ; AVID 711 fourcc AVRn,AVDJ ; AVID
712 fourcc jpeg ; MOV photo-jpeg 712 fourcc jpeg ; MOV Photo-JPEG
713 fourcc mjpa ; Apple MJPEG-A (Quicktime) 713 fourcc mjpa ; Apple MJPEG-A (Quicktime)
714 fourcc JFIF ; SMJPEG (Loki) 714 fourcc JFIF ; SMJPEG (Loki)
715 fourcc ijpg,IJPG ; -mf type=jpeg 715 fourcc ijpg,IJPG ; -mf type=jpeg
716 fourcc JPEG ; SGI's AVI Photo-jpeg 716 fourcc JPEG ; SGI's AVI Photo-JPEG
717 fourcc JPGL ; lossless jpeg (pegasus codec) 717 fourcc JPGL ; lossless JPEG (pegasus codec)
718 fourcc LJPG ; lossless jpeg 718 fourcc LJPG ; lossless JPEG
719 driver ffmpeg 719 driver ffmpeg
720 dll mjpeg 720 dll mjpeg
721 out 444P 721 out 444P
722 out 422P 722 out 422P
723 out YUY2 ; queryed (conversion from yuv422p) 723 out YUY2 ; queried (conversion from yuv422p)
724 out YV12,I420,IYUV 724 out YV12,I420,IYUV
725 out BGR32 ; lossless jpeg 725 out BGR32 ; lossless JPEG
726 726
727 videocodec ffmjpegb 727 videocodec ffmjpegb
728 info "FFmpeg MJPEG-B decoder" 728 info "FFmpeg MJPEG-B decoder"
729 status working 729 status working
730 fourcc mjpb ; Apple MJPEG-B (Quicktime) 730 fourcc mjpb ; Apple MJPEG-B (Quicktime)
733 out 444P 733 out 444P
734 out 422P 734 out 422P
735 out YUY2 ; queryed (conversion from yuv422p) 735 out YUY2 ; queryed (conversion from yuv422p)
736 out YV12,I420,IYUV 736 out YV12,I420,IYUV
737 737
738 ; slow. usable only for standalone jpegs, like -mf, avid or photojpeg: 738 ; slow. usable only for standalone JPEGs, like -mf, avid or Photo-JPEG:
739 videocodec ijpg 739 videocodec ijpg
740 info "Independent JPEG Group's codec" 740 info "Independent JPEG Group's codec"
741 status working 741 status working
742 fourcc ijpg,IJPG ; -mf type=jpeg 742 fourcc ijpg,IJPG ; -mf type=jpeg
743 fourcc jpeg ; MOV Photo Jpeg 743 fourcc jpeg ; MOV Photo-JPEG
744 fourcc AVRn,AVDJ ; AVID 744 fourcc AVRn,AVDJ ; AVID
745 driver ijpg 745 driver ijpg
746 dll libjpeg 746 dll libjpeg
747 out RGB24,BGR24,BGR32 747 out RGB24,BGR24,BGR32
748 748
780 driver vfw 780 driver vfw
781 dll "AvidAVICodec.dll" 781 dll "AvidAVICodec.dll"
782 out BGR24 flip 782 out BGR24 flip
783 783
784 videocodec LEAD 784 videocodec LEAD
785 info "LEAD (M)Jpeg" 785 info "LEAD (M)JPEG"
786 status working 786 status working
787 comment "supports interlaced MJPEG" 787 comment "supports interlaced MJPEG"
788 fourcc MJPG 788 fourcc MJPG
789 fourcc jpeg MJPG ; MOV Photo Jpeg 789 fourcc jpeg MJPG ; MOV Photo-JPEG
790 fourcc LEAD 790 fourcc LEAD
791 driver vfw 791 driver vfw
792 dll "LCodcCMP.dll" 792 dll "LCodcCMP.dll"
793 out BGR24,BGR15 793 out BGR24,BGR15
794 794
832 ; dll "pvmjpg20.dll" ; v2.0 832 ; dll "pvmjpg20.dll" ; v2.0
833 dll "pvmjpg21.dll" ; v2.1 833 dll "pvmjpg21.dll" ; v2.1
834 out BGR24 flip 834 out BGR24 flip
835 835
836 videocodec pegasusl 836 videocodec pegasusl
837 info "Pegasus Lossless JPEG" 837 info "Pegasus lossless JPEG"
838 status crashing 838 status crashing
839 fourcc JPGL 839 fourcc JPGL
840 fourcc MJPG JPGL 840 fourcc MJPG JPGL
841 driver vfw 841 driver vfw
842 dll "pvljpg20.dll" 842 dll "pvljpg20.dll"
895 driver ffmpeg 895 driver ffmpeg
896 dll h263i 896 dll h263i
897 out YV12,I420,IYUV 897 out YV12,I420,IYUV
898 898
899 videocodec ffh263 899 videocodec ffh263
900 info "FFmpeg H263+ decoder" 900 info "FFmpeg H.263+ decoder"
901 status working 901 status working
902 fourcc H263,U263,h263,X263 902 fourcc H263,U263,h263,X263
903 fourcc viv1 h263 903 fourcc viv1 h263
904 fourcc s263 904 fourcc s263
905 driver ffmpeg 905 driver ffmpeg
946 fourcc m261,M261 946 fourcc m261,M261
947 driver vfw 947 driver vfw
948 dll "msh261.drv" 948 dll "msh261.drv"
949 out BGR32,BGR24,BGR15 949 out BGR32,BGR24,BGR15
950 950
951 ; indeo: 951 ; Indeo:
952 ; Note: indeo 3 is buggy, both xanim (bad decoding) and VfW (not work with DR) 952 ; Note: Indeo 3 is buggy, both XAnim (bad decoding) and VfW (fails with DR)
953 ; Prefer win32 ones, they are faster, and 4/5 can DR. for fallback, there are 953 ; Prefer win32 ones, they are faster, and 4/5 can DR. For fallback, there are
954 ; Xanim codecs, they provide YV12, useful for YUV display or encoding. 954 ; Xanim codecs, they provide YV12, useful for YUV display or encoding.
955 955
956 videocodec indeo5ds 956 videocodec indeo5ds
957 info "Intel Indeo 5" 957 info "Intel Indeo 5"
958 status working 958 status working
1075 out BGR32,BGR24,BGR15 1075 out BGR32,BGR24,BGR15
1076 1076
1077 ; 3ivx: 1077 ; 3ivx:
1078 1078
1079 videocodec 3ivXxa 1079 videocodec 3ivXxa
1080 info "XAnim's 3ivX Delta 3.5 plugin" 1080 info "XAnim's 3ivx Delta 3.5 plugin"
1081 status working 1081 status working
1082 fourcc 3IV1 1082 fourcc 3IV1
1083 driver xanim 1083 driver xanim
1084 dll "vid_3ivX.xa" 1084 dll "vid_3ivX.xa"
1085 out YV12,IYUV,I420 1085 out YV12,IYUV,I420
1086 1086
1087 videocodec 3ivX 1087 videocodec 3ivX
1088 info "3ivX Delta 3.5" 1088 info "3ivx Delta 3.5"
1089 status crashing 1089 status crashing
1090 fourcc 3IV1 1090 fourcc 3IV1
1091 driver dshow 1091 driver dshow
1092 dll "3ivxdmo.dll" 1092 dll "3ivxdmo.dll"
1093 guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c 1093 guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c
1200 videocodec LEADMW20 1200 videocodec LEADMW20
1201 info "Lead CMW wavelet 2.0" 1201 info "Lead CMW wavelet 2.0"
1202 status working 1202 status working
1203 fourcc LCW2 1203 fourcc LCW2
1204 driver dshow 1204 driver dshow
1205 dll "LCODCCMW2E.dll"; eval need also LCMW2.dll 1205 dll "LCODCCMW2E.dll"; eval also needs LCMW2.dll
1206 guid 0xe2b7dc56, 0x38c5, 0x11d5, 0x91, 0xf6, 0x00, 0x10, 0x4b, 0xdb, 0x8f, 0xf9 1206 guid 0xe2b7dc56, 0x38c5, 0x11d5, 0x91, 0xf6, 0x00, 0x10, 0x4b, 0xdb, 0x8f, 0xf9
1207 out BGR24,BGR8 flip 1207 out BGR24,BGR8 flip
1208 1208
1209 videocodec ffrv10 1209 videocodec ffrv10
1210 info "FFmpeg RV10 decoder" 1210 info "FFmpeg RV10 decoder"
1222 driver ffmpeg 1222 driver ffmpeg
1223 dll rv20 1223 dll rv20
1224 out YV12,I420,IYUV 1224 out YV12,I420,IYUV
1225 1225
1226 videocodec ffvp3 1226 videocodec ffvp3
1227 info "FFmpeg's VP3-Codec" 1227 info "FFmpeg VP3"
1228 status untested 1228 status untested
1229 fourcc VP30,vp30,VP31,vp31 1229 fourcc VP30,vp30,VP31,vp31
1230 format 0x20335056 ; "VP3 " (used in .nsv files) 1230 format 0x20335056 ; "VP3 " (used in .nsv files)
1231 driver ffmpeg 1231 driver ffmpeg
1232 dll "vp3" 1232 dll "vp3"
1233 out YV12 1233 out YV12
1234 1234
1235 videocodec fftheora 1235 videocodec fftheora
1236 info "FFmpeg's Theora" 1236 info "FFmpeg Theora"
1237 status untested 1237 status untested
1238 fourcc theo,Thra 1238 fourcc theo,Thra
1239 format 0xFFFC 1239 format 0xFFFC
1240 driver ffmpeg 1240 driver ffmpeg
1241 dll "theora" 1241 dll "theora"
1242 out YV12 1242 out YV12
1243 1243
1244 videocodec vp3 1244 videocodec vp3
1245 info "On2 OpenSource VP3-Codec" 1245 info "On2 Open Source VP3 Codec"
1246 status working 1246 status working
1247 comment "For SSE-systems use fixed dll from ftp://mplayerhq.hu/MPlayer/samples/drivers32/" 1247 comment "For SSE-systems use fixed DLL from ftp://mplayerhq.hu/MPlayer/samples/drivers32/"
1248 fourcc VP30,vp30,VP31,vp31 1248 fourcc VP30,vp30,VP31,vp31
1249 flags align16 1249 flags align16
1250 driver vfwex 1250 driver vfwex
1251 dll "vp31vfw.dll" 1251 dll "vp31vfw.dll"
1252 out YUY2 1252 out YUY2
1352 out BGR24 1352 out BGR24
1353 1353
1354 videocodec CJPG 1354 videocodec CJPG
1355 info "CJPG" 1355 info "CJPG"
1356 status untested 1356 status untested
1357 comment "need sample files (this dll is decompression only!)" 1357 comment "sample files needed (this DLL is decompression only!)"
1358 fourcc CJPG 1358 fourcc CJPG
1359 driver vfw 1359 driver vfw
1360 dll "CtWbJpg.DLL" 1360 dll "CtWbJpg.DLL"
1361 out YUY2 1361 out YUY2
1362 out UYVY 1362 out UYVY
1396 driver vfw 1396 driver vfw
1397 dll "sp5x_32.dll" 1397 dll "sp5x_32.dll"
1398 out BGR24,BGR15 flip 1398 out BGR24,BGR15 flip
1399 1399
1400 videocodec vivd2 1400 videocodec vivd2
1401 info "SoftMedia ViVD V2 codec Vfw" 1401 info "SoftMedia ViVD V2 codec VfW"
1402 status working 1402 status working
1403 fourcc GXVE,gxve 1403 fourcc GXVE,gxve
1404 driver vfw 1404 driver vfw
1405 dll "ViVD2.dll" 1405 dll "ViVD2.dll"
1406 out YUY2,YV12,I420,YVU9 1406 out YUY2,YV12,I420,YVU9
1450 driver qtvideo 1450 driver qtvideo
1451 dll "3ivx Delta 3.5.qtx" 1451 dll "3ivx Delta 3.5.qtx"
1452 out YUY2 1452 out YUY2
1453 1453
1454 videocodec qtavui 1454 videocodec qtavui
1455 info "win32/quicktime Avid Meridien Uncompressed" 1455 info "Win32/QuickTime Avid Meridien Uncompressed"
1456 status working 1456 status working
1457 fourcc AVUI 1457 fourcc AVUI
1458 driver qtvideo 1458 driver qtvideo
1459 dll "AvidQTAVUICodec.qtx" 1459 dll "AvidQTAVUICodec.qtx"
1460 out YUY2 1460 out YUY2
1461 1461
1462 videocodec qth263 1462 videocodec qth263
1463 info "win32/quicktime H.263 decoder" 1463 info "Win32/QuickTime H.263 decoder"
1464 status crashing 1464 status crashing
1465 fourcc h263 1465 fourcc h263
1466 driver qtvideo 1466 driver qtvideo
1467 dll "QuickTime.qts" 1467 dll "QuickTime.qts"
1468 out YUY2 1468 out YUY2
1469 1469
1470 videocodec qtrlerpza 1470 videocodec qtrlerpza
1471 info "win32/quicktime RLE/RPZA decoder" 1471 info "Win32/Quicktime RLE/RPZA decoder"
1472 comment "no colorspace accepted" 1472 comment "no colorspace accepted"
1473 status crashing 1473 status crashing
1474 fourcc rpza 1474 fourcc rpza
1475 format 0x20656C72 ; "rle " 1475 format 0x20656C72 ; "rle "
1476 driver qtvideo 1476 driver qtvideo
1477 dll "QuickTime.qts" 1477 dll "QuickTime.qts"
1478 out BGR32,BGR24,BGR15 1478 out BGR32,BGR24,BGR15
1479 1479
1480 videocodec qtvp3 1480 videocodec qtvp3
1481 info "win32/quicktime VP3 decoder" 1481 info "Win32/QuickTime VP3 decoder"
1482 status crashing 1482 status crashing
1483 fourcc VP31 1483 fourcc VP31
1484 driver qtvideo 1484 driver qtvideo
1485 dll "On2_VP3.qtx" 1485 dll "On2_VP3.qtx"
1486 out YUY2 1486 out YUY2
1493 driver qtvideo 1493 driver qtvideo
1494 dll "ZyGoVideo.qtx" 1494 dll "ZyGoVideo.qtx"
1495 out BGR32,RGB32 1495 out BGR32,RGB32
1496 1496
1497 videocodec qtbhiv 1497 videocodec qtbhiv
1498 info "win32/quicktime BeHereiVideo decoder" 1498 info "Win32/QuickTime BeHereiVideo decoder"
1499 comment "sample file wanted!" 1499 comment "sample file wanted!"
1500 status untested 1500 status untested
1501 fourcc bhiv 1501 fourcc bhiv
1502 driver qtvideo 1502 driver qtvideo
1503 dll "BeHereiVideo.qtx" 1503 dll "BeHereiVideo.qtx"
1504 out YUY2 1504 out YUY2
1505 1505
1506 videocodec qtcvid 1506 videocodec qtcvid
1507 info "win32/quicktime Cinepak decoder" 1507 info "Win32/QuickTime Cinepak decoder"
1508 status working 1508 status working
1509 fourcc cvid 1509 fourcc cvid
1510 driver qtvideo 1510 driver qtvideo
1511 dll "QuickTime.qts" 1511 dll "QuickTime.qts"
1512 out YUY2 1512 out YUY2
1513 1513
1514 videocodec qtindeo 1514 videocodec qtindeo
1515 info "win32/quicktime Indeo decoder" 1515 info "Win32/QuickTime Indeo decoder"
1516 status crashing 1516 status crashing
1517 fourcc IV31,iv31 1517 fourcc IV31,iv31
1518 fourcc IV32,iv32 1518 fourcc IV32,iv32
1519 fourcc IV41 1519 fourcc IV41
1520 driver qtvideo 1520 driver qtvideo
1521 dll "QuickTime.qts" 1521 dll "QuickTime.qts"
1522 out YUY2 1522 out YUY2
1523 1523
1524 videocodec qtmjpeg 1524 videocodec qtmjpeg
1525 info "win32/quicktime MJPEG decoder" 1525 info "Win32/QuickTime MJPEG decoder"
1526 status crashing 1526 status crashing
1527 fourcc dmb1 1527 fourcc dmb1
1528 fourcc mjpa 1528 fourcc mjpa
1529 fourcc mjpb 1529 fourcc mjpb
1530 driver qtvideo 1530 driver qtvideo
1531 dll "QuickTime.qts" 1531 dll "QuickTime.qts"
1532 out YUY2 1532 out YUY2
1533 1533
1534 videocodec qtmpeg4 1534 videocodec qtmpeg4
1535 info "win32/quicktime MPEG-4 decoder" 1535 info "Win32/QuickTime MPEG-4 decoder"
1536 status crashing 1536 status crashing
1537 fourcc mp4v 1537 fourcc mp4v
1538 driver qtvideo 1538 driver qtvideo
1539 dll "QuickTime.qts" 1539 dll "QuickTime.qts"
1540 out YUY2 1540 out YUY2
1541 1541
1542 videocodec qtsvq3 1542 videocodec qtsvq3
1543 info "win32/quicktime SVQ3 decoder" 1543 info "Win32/QuickTime SVQ3 decoder"
1544 status working 1544 status working
1545 fourcc SVQ3 1545 fourcc SVQ3
1546 driver qtvideo 1546 driver qtvideo
1547 dll "QuickTimeEssentials.qtx" 1547 dll "QuickTimeEssentials.qtx"
1548 out YUY2 1548 out YUY2
1549 1549
1550 videocodec qtsvq1 1550 videocodec qtsvq1
1551 info "win32/quicktime SVQ1 decoder" 1551 info "Win32/QuickTime SVQ1 decoder"
1552 status buggy 1552 status buggy
1553 fourcc SVQ1 1553 fourcc SVQ1
1554 driver qtvideo 1554 driver qtvideo
1555 dll "QuickTime.qts" 1555 dll "QuickTime.qts"
1556 out YVU9 1556 out YVU9
1625 driver vfw 1625 driver vfw
1626 dll "ativcr1.dll" 1626 dll "ativcr1.dll"
1627 out RGB24 flip 1627 out RGB24 flip
1628 1628
1629 videocodec pim1 1629 videocodec pim1
1630 info "Pinnacle Hardware MPEG1" 1630 info "Pinnacle Hardware MPEG-1"
1631 status crashing 1631 status crashing
1632 comment "no picture. use ffmpeg12!" 1632 comment "no picture. use ffmpeg12!"
1633 fourcc PIM1 1633 fourcc PIM1
1634 driver vfw 1634 driver vfw
1635 dll "pclepim1.dll" 1635 dll "pclepim1.dll"
1674 dll "tsccvid.dll" 1674 dll "tsccvid.dll"
1675 out BGR32,BGR24,BGR15,BGR8 query,flip 1675 out BGR32,BGR24,BGR15,BGR8 query,flip
1676 1676
1677 ; raw formats: (now RGB formats are autodetected) 1677 ; raw formats: (now RGB formats are autodetected)
1678 1678
1679 ; these raw codecs are used mostly by tv input 1679 ; these raw codecs are used mostly by TV input
1680 ; 0x20776172 is used by Quicktime ('raw ') 1680 ; 0x20776172 is used by Quicktime ('raw ')
1681 ; 0x0 is used by AVI 1681 ; 0x0 is used by AVI
1682 ; YV12,RGB|32,RGB|24.. is created by MPlayer 1682 ; YV12,RGB|32,RGB|24.. is created by MPlayer
1683 1683
1684 videocodec rawrgb32 1684 videocodec rawrgb32
1949 driver dshow 1949 driver dshow
1950 dll "wmavds32.ax" 1950 dll "wmavds32.ax"
1951 guid 0x795b44c4, 0xf142, 0x493d, 0x8a, 0x02, 0x09, 0xbd, 0x41, 0x08, 0x95, 0xad 1951 guid 0x795b44c4, 0xf142, 0x493d, 0x8a, 0x02, 0x09, 0xbd, 0x41, 0x08, 0x95, 0xad
1952 1952
1953 audiocodec qdmc 1953 audiocodec qdmc
1954 info "Quicktime QDMC/QDM2 audio decoders" 1954 info "QuickTime QDMC/QDM2 audio decoders"
1955 status working 1955 status working
1956 format 0x324D4451 ; "QDM2" 1956 format 0x324D4451 ; "QDM2"
1957 format 0x434D4451 ; "QDMC" 1957 format 0x434D4451 ; "QDMC"
1958 driver qtaudio 1958 driver qtaudio
1959 dll "QuickTime.qts" 1959 dll "QuickTime.qts"
1960 1960
1961 audiocodec qclp 1961 audiocodec qclp
1962 info "Quicktime QCLP audio decoder" 1962 info "QuickTime QCLP audio decoder"
1963 status working 1963 status working
1964 format 0x706C6351 ; "QCLP" 1964 format 0x706C6351 ; "QCLP"
1965 driver qtaudio 1965 driver qtaudio
1966 dll "QuickTime.qts" 1966 dll "QuickTime.qts"
1967 1967
1968 audiocodec qtmace3 1968 audiocodec qtmace3
1969 info "Quicktime MACE3 audio decoder" 1969 info "QuickTime MACE3 audio decoder"
1970 status working 1970 status working
1971 format 0x3343414D ; "MAC3" 1971 format 0x3343414D ; "MAC3"
1972 driver qtaudio 1972 driver qtaudio
1973 dll "QuickTime.qts" 1973 dll "QuickTime.qts"
1974 1974
1975 audiocodec qtmace6 1975 audiocodec qtmace6
1976 info "Quicktime MACE6 audio decoder" 1976 info "QuickTime MACE6 audio decoder"
1977 status working 1977 status working
1978 format 0x3643414D ; "MAC6" 1978 format 0x3643414D ; "MAC6"
1979 driver qtaudio 1979 driver qtaudio
1980 dll "QuickTime.qts" 1980 dll "QuickTime.qts"
1981 1981
2201 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files) 2201 format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files)
2202 format 0x2033504D ; "MP3 " (used in .nsv files) 2202 format 0x2033504D ; "MP3 " (used in .nsv files)
2203 driver mp3lib 2203 driver mp3lib
2204 2204
2205 audiocodec ffwmav1 2205 audiocodec ffwmav1
2206 info "DivX audio v1 (ffmpeg)" 2206 info "DivX audio v1 (FFmpeg)"
2207 status untested 2207 status untested
2208 format 0x160 2208 format 0x160
2209 driver ffmpeg 2209 driver ffmpeg
2210 dll "wmav1" 2210 dll "wmav1"
2211 2211
2212 audiocodec ffwmav2 2212 audiocodec ffwmav2
2213 info "DivX audio v2 (ffmpeg)" 2213 info "DivX audio v2 (FFmpeg)"
2214 status untested 2214 status untested
2215 format 0x161 2215 format 0x161
2216 driver ffmpeg 2216 driver ffmpeg
2217 dll "wmav2" 2217 dll "wmav2"
2218 2218
2355 driver liba52 2355 driver liba52
2356 dll "liba52" 2356 dll "liba52"
2357 2357
2358 audiocodec ac3 2358 audiocodec ac3
2359 info "AC3-libac3" 2359 info "AC3-libac3"
2360 comment "removed from mplayer, use liba52" 2360 comment "removed from MPlayer, use liba52"
2361 status working 2361 status working
2362 format 0x2000 2362 format 0x2000
2363 fourcc dnet 2363 fourcc dnet
2364 driver libac3 2364 driver libac3
2365 dll "libac3" 2365 dll "libac3"
2422 format 0x200 2422 format 0x200
2423 driver ffmpeg 2423 driver ffmpeg
2424 dll "adpcm_ct" 2424 dll "adpcm_ct"
2425 2425
2426 audiocodec ctadp32 2426 audiocodec ctadp32
2427 info "Creative ADPCM CODEC" 2427 info "Creative ADPCM codec"
2428 status working 2428 status working
2429 format 0x200 2429 format 0x200
2430 driver acm 2430 driver acm
2431 dll "ctadp32.acm" 2431 dll "ctadp32.acm"
2432 2432
2436 format 0x350 2436 format 0x350
2437 driver acm 2437 driver acm
2438 dll "mi-sc4.acm" 2438 dll "mi-sc4.acm"
2439 2439
2440 audiocodec hwac3 2440 audiocodec hwac3
2441 info "AC3 through SPDIF" 2441 info "AC3 through S/PDIF"
2442 status working 2442 status working
2443 format 0x2000 2443 format 0x2000
2444 fourcc dnet 2444 fourcc dnet
2445 driver hwac3 2445 driver hwac3
2446 2446
2447 audiocodec hwdts 2447 audiocodec hwdts
2448 info "DTS through SPDIF" 2448 info "DTS through S/PDIF"
2449 status working 2449 status working
2450 format 0x2001 2450 format 0x2001
2451 driver hwac3 2451 driver hwac3
2452 2452
2453 audiocodec vorbis 2453 audiocodec vorbis