aboutsummaryrefslogtreecommitdiffhomepage
path: root/etc/codecs.conf
blob: 9442ec34ad5ba9344e320346d8b613291ef579dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
;=============================================================================
;  Default codecs config file.
;  Before editing this file, please read DOCS/tech/codecs.conf.txt !
;=============================================================================

release 20120812

;=============================================================================
;                   VIDEO CODECS
;=============================================================================

videocodec lavc
  info "Generic libavcodec decoder"
  status buggy
  driver ffmpeg
  anyinput

videocodec ffanm
  info "FFmpeg Deluxe Paint Animation"
  status working
  fourcc "ANM " ; internal MPlayer FourCC
  driver ffmpeg
  dll anm

videocodec ffbinkvideo
  info "FFmpeg Bink Video"
  status working
  fourcc BIKf ; internal MPlayer FourCC
  fourcc BIKg ; internal MPlayer FourCC
  fourcc BIKh ; internal MPlayer FourCC
  fourcc BIKi ; internal MPlayer FourCC
  driver ffmpeg
  dll binkvideo

videocodec ffcdgraphics
  info "FFmpeg CD-Graphics"
  status working
  fourcc CDGR ; internal MPlayer FourCC
  driver ffmpeg
  dll cdgraphics

videocodec ffmvi1
  info "FFmpeg Motion Pixels"
  status working
  fourcc MVI1 ; internal MPlayer FourCC
  driver ffmpeg
  dll motionpixels

videocodec ffmdec
  info "FFmpeg Sony PlayStation MDEC (Motion DECoder)"
  status working
  fourcc MDEC ; internal MPlayer FourCC
  driver ffmpeg
  dll mdec

videocodec ffsiff
  info "FFmpeg Beam Software SIFF"
  status working
  fourcc VBV1
  driver ffmpeg
  dll vb

videocodec ffmimic
  info "FFmpeg Mimic video"
  status working
  fourcc ML20
  fourcc LM20 ; mimic in avi
  driver ffmpeg
  dll "mimic"

videocodec ffkmvc
  info "FFmpeg Karl Morton Video Codec"
  status working
  fourcc KMVC
  driver ffmpeg
  dll "kmvc"

videocodec ffzmbv
  info "FFmpeg Zip Motion-Block Video"
  status working
  fourcc ZMBV
  driver ffmpeg
  dll "zmbv"

videocodec ffr210
  info "FFmpeg R210 - 10-bit RGB"
  status working
  fourcc r210
  driver ffmpeg
  dll "r210"

videocodec ffr10k
  info "FFmpeg R10k - 10-bit RGB"
  status working
  fourcc R10k,R10g
  driver ffmpeg
  dll "r10k"

; MPEG-1/2 decoding:

videocodec ffmpeg1
  info "FFmpeg MPEG-1"
  status working
  format 0x10000001  ; MPEG-1
  fourcc mpg1
  fourcc PIM1        ; Pinnacle hardware-MPEG-1
  fourcc VCR2
  fourcc MPEG
  fourcc m1v1
  driver ffmpeg
  dll "mpeg1video"

videocodec ffmpeg2
  info "FFmpeg MPEG-2"
  status working
  format 0x10000002  ; MPEG-2
  fourcc mpg2,MPG2
  fourcc "DVR "
  fourcc MPEG
  fourcc mx5p        ; MPEG IMX 625/50 (50 Mb/s)
  fourcc MMES,mmes   ; matrox mpeg2 in avi
  fourcc M701        ; matrox mpeg2 intra-only
  fourcc hdv1,hdv2,hdv3
  fourcc hdv4,hdv5,hdv6
  fourcc hdv7,hdv8,hdv9
  fourcc xdv1,xdv2,xdv3
  fourcc xdv4,xdv5,xdv6
  fourcc xdv7,xdv8,xdv9
  fourcc xdva,xdvb,xdvc
  fourcc xdvd,xdve,xdvf
  fourcc xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59,xd54,xd55
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc VCR2
  fourcc mp2v,mpgv
  fourcc m2v1
  fourcc PIM2
  fourcc LMP2 ; Lead mpeg2 in avi
  fourcc slif ; SoftLab MPEG-2 I-frames Codec
  driver ffmpeg
  dll "mpeg2video"

; for backward compatibility
videocodec ffmpeg12
  info "FFmpeg MPEG-1/2"
  status working
  format 0x10000001  ; MPEG-1
  format 0x10000002  ; MPEG-2
  fourcc mpg1,mpg2,MPG2
  fourcc PIM1        ; Pinnacle hardware-MPEG-1
  fourcc PIM2        ; Pinnacle hardware-MPEG-2
  fourcc VCR2
  fourcc "DVR "
  fourcc MPEG
  fourcc mx5p        ; MPEG IMX 625/50 (50 Mb/s)
  fourcc MMES,mmes   ; matrox mpeg2 in avi
  fourcc M701        ; matrox mpeg2 intra-only
  fourcc hdv1,hdv2,hdv3
  fourcc hdv4,hdv5,hdv6
  fourcc hdv7,hdv8,hdv9
  fourcc xdv1,xdv2,xdv3
  fourcc xdv4,xdv5,xdv6
  fourcc xdv7,xdv8,xdv9
  fourcc xdva,xdvb,xdvc
  fourcc xdvd,xdve,xdvf
  fourcc xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59,xd54,xd55
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc mp2v,mpgv
  fourcc m2v1,m1v1
  fourcc LMP2 ; Lead mpeg2 in avi
  fourcc slif ; SoftLab MPEG-2 I-frames Codec
  fourcc EM2V ; Etymonix MPEG-2 I-frame Video Codec
  driver ffmpeg
  dll "mpegvideo"

videocodec ffmpeg12vdpau
  info "FFmpeg MPEG-1/2 (VDPAU)"
  status working
  format 0x10000001  ; MPEG-1
  format 0x10000002  ; MPEG-2
  fourcc mpg1,mpg2,MPG2
  fourcc PIM1        ; Pinnacle hardware-MPEG-1
  fourcc PIM2        ; Pinnacle hardware-MPEG-2
  fourcc "DVR "
  fourcc hdv2
  fourcc MPEG
  fourcc hdv1
  fourcc hdv3        ; HDV 1080i50
  fourcc hdv5        ; HDV  720p25
  fourcc mx5p        ; MPEG IMX 625/50 (50 Mb/s)
  fourcc hdv6,hdv7,hdv8
  fourcc xdv1,xdv2,xdv3
  fourcc xdv4,xdv5,xdv6
  fourcc xdv7,xdv8,xdv9
  fourcc xdva,xdvb,xdvc
  fourcc xdvd,xdve,xdvf
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc mp2v,mpgv
  fourcc LMP2 ; Lead mpeg2 in avi
  fourcc m2v1,m1v1
  driver ffmpeg
  dll "mpegvideo_vdpau"
  out VDPAU_MPEG1
  out VDPAU_MPEG2

videocodec ffmpeg2crystalhd
  info "FFmpeg MPEG-2 (CrystalHD)"
  status working
  format 0x10000002  ; MPEG-2
  fourcc mpg2,MPG2
  fourcc "DVR "
  fourcc MPEG
  fourcc mx5p        ; MPEG IMX 625/50 (50 Mb/s)
  fourcc MMES,mmes   ; matrox mpeg2 in avi
  fourcc M701        ; matrox mpeg2 intra-only
  fourcc hdv1,hdv2,hdv3
  fourcc hdv4,hdv5,hdv6
  fourcc hdv7,hdv8,hdv9
  fourcc xdv1,xdv2,xdv3
  fourcc xdv4,xdv5,xdv6
  fourcc xdv7,xdv8,xdv9
  fourcc xdva,xdvb,xdvc
  fourcc xdvd,xdve,xdvf
  fourcc xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59,xd54
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc VCR2
  fourcc mp2v,mpgv
  fourcc m2v1
  fourcc PIM2
  fourcc LMP2 ; Lead mpeg2 in avi
  fourcc slif ; SoftLab MPEG-2 I-frames Codec
  driver ffmpeg
  dll mpeg2_crystalhd

; we have only native open source codecs for these:

videocodec ffnuv
  info "NuppelVideo"
  status working
  fourcc NUV1 ; NUV1 is an internal MPlayer FOURCC
  fourcc RJPG
  driver ffmpeg
  dll nuv

videocodec ffbmp
  info "FFmpeg BMP"
  status working
  fourcc "bmp " ; for BMP-encoded QuickTime files
  format 0x706D62 ;               AVI
  driver ffmpeg
  dll bmp

videocodec ffdpx
  info "FFmpeg DPX"
  status working
  fourcc "dpx " ; "dpx " is an internal MPlayer FOURCC
  driver ffmpeg
  dll dpx

videocodec ffgif
  info "FFmpeg GIF"
  status working
  fourcc "gif " ; for GIF-encoded QuickTime files
  driver ffmpeg
  dll gif

videocodec fftiff
  info "FFmpeg TIFF"
  status working
  fourcc "tiff" ; for TIFF-encoded QuickTime files
  driver ffmpeg
  dll tiff

videocodec ffpcx
  info "FFmpeg PCX"
  status working
  fourcc "pcx "
  driver ffmpeg
  dll pcx

videocodec ffpng
  info "FFmpeg PNG"
  status working
  fourcc mpng,MPNG
  fourcc "png " ; for PNG-encoded QuickTime files
  driver ffmpeg
  dll png

videocodec mpng
  info "PNG image"
  status working
  comment "Gray scaled PNG with Alpha channel not supported"
  fourcc mpng,MPNG
  fourcc "png " ; for PNG-encoded QuickTime files
  dll "libpng"
  driver mpng
  out BGR32,BGR24,BGR8,Y800

videocodec ffptx
  info "FFmpeg V.Flash PTX"
  status working
  fourcc "ptx " ; internal MPlayer FourCC
  driver ffmpeg
  dll ptx

videocodec fftga
  info "FFmpeg TGA"
  status untested
  fourcc mtga,MTGA
  fourcc "tga " ; for TGA-encoded QuickTime files
  driver ffmpeg
  dll targa

videocodec ffsgi
  info "FFmpeg SGI image"
  status working
  fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC
  driver ffmpeg
  dll sgi

videocodec ffsunras
  info "FFmpeg SUN Rasterfile"
  status working
  fourcc "sun " ; sun is an internal MPlayer FOURCC
  driver ffmpeg
  dll sunrast

videocodec ffindeo3
  info "FFmpeg Intel Indeo 3.1/3.2"
  status working
  fourcc IV31,iv31
  fourcc IV32,iv32
  driver ffmpeg
  dll indeo3

videocodec fffli
  info "Autodesk FLI/FLC Animation"
  status working
  fourcc FLIC ; FLIC is an internal MPlayer FOURCC
  driver ffmpeg
  dll "flic"

videocodec ffaasc
  info "Autodesk RLE"
  status working
  fourcc AASC
  driver ffmpeg
  dll "aasc"

videocodec ffloco
  info "LOCO video"
  status working
  fourcc LOCO
  driver ffmpeg
  dll "loco"

videocodec ffqtrle
  info "QuickTime Animation (RLE)"
  status working
  format 0x20656C72 ; "rle "
  driver ffmpeg
  dll "qtrle"

videocodec ffrpza
 info "QuickTime Apple Video"
 status working
 fourcc rpza,azpr,RPZA,AZPR
 driver ffmpeg
 dll "rpza"

videocodec ffsmc
  info "Apple Graphics (SMC) codec"
  status working
  format 0x20636d73 ; "smc "
  driver ffmpeg
  dll "smc"

videocodec ff8bps
  info "Planar RGB (Photoshop)"
  status working
  fourcc 8BPS
  driver ffmpeg
  dll "8bps"

videocodec ffcyuv
  info "Creative YUV (libavcodec)"
  status working
  fourcc cyuv,CYUV
  driver ffmpeg
  dll "cyuv"

videocodec ffaura
  info "Auravision Aura (libavcodec)"
  status working
  fourcc aura,AURA
  driver ffmpeg
  dll "aura"

videocodec ffaura2
  info "Auravision Aura 2 (libavcodec)"
  status working
  fourcc aur2,AUR2
  driver ffmpeg
  dll "aura2"

videocodec ffmsrle
  info "Microsoft RLE"
  status working
  format 0x1
  format 0x2
  fourcc WRLE
  driver ffmpeg
  dll "msrle"

videocodec ffroqvideo
  info "Id RoQ File Video"
  status working
  fourcc RoQV ; RoQV is an internal MPlayer FOURCC
  driver ffmpeg
  dll "roqvideo"

videocodec ffcvid
  info "FFmpeg Cinepak Video"
  status working
  fourcc cvid,CVID
  driver ffmpeg
  dll "cinepak"

videocodec ffvideo1
  info "FFmpeg Microsoft Video 1"
  status working
  fourcc cram,CRAM
  fourcc msvc,MSVC
  fourcc wham,WHAM
  driver ffmpeg
  dll "msvideo1"

videocodec ffmszh
  info "FFmpeg AVImszh"
  status working
  fourcc MSZH
  driver ffmpeg
  dll "mszh"

videocodec ffzlib
  info "FFmpeg AVIzlib"
  status working
  fourcc ZLIB
  driver ffmpeg
  dll "zlib"

videocodec ffhuffyuv
  info "FFmpeg HuffYUV"
  status working
  fourcc HFYU,FFVH
  driver ffmpeg
  dll huffyuv

videocodec ffv1
  info "FFV1 (lossless codec)"
  status working
  fourcc FFV1
  driver ffmpeg
  dll ffv1

videocodec ffsnow
  info "FFSNOW (Michael's wavelet codec)"
  status working
  fourcc snow,SNOW
  driver ffmpeg
  dll snow

videocodec ffasv1
  info "FFmpeg ASUS V1"
  status working
  fourcc ASV1
  driver ffmpeg
  dll asv1

videocodec ffasv2
  info "FFmpeg ASUS V2"
  status working
  fourcc ASV2
  driver ffmpeg
  dll asv2

videocodec ffvcr1
  info "FFmpeg ATI VCR1"
  status working
  fourcc VCR1
  driver ffmpeg
  dll vcr1

videocodec ffcljr
  info "FFmpeg Cirrus Logic AccuPak (CLJR)"
  status working
  fourcc CLJR
  driver ffmpeg
  dll cljr

videocodec ffsvq1
  info "FFmpeg Sorenson Video v1 (SVQ1)"
  status working
  fourcc SVQ1,svq1
  driver ffmpeg
  dll svq1

videocodec ff4xm
  info "FFmpeg 4XM video"
  status working
  fourcc 4XMV
  driver ffmpeg
  dll 4xm

videocodec ffvixl
  info "Miro/Pinnacle VideoXL codec"
  status working
  fourcc VIXL
  fourcc PIXL ; this is Pinnacle one
  fourcc XIXL
  driver ffmpeg
  dll xl

videocodec ffqtdrw
  info "FFmpeg QuickDraw"
  status working
  fourcc qdrw
  driver ffmpeg
  dll qdraw

videocodec ffindeo2
  info "FFmpeg Indeo 2"
  status working
  fourcc RT21
  fourcc IV20
  driver ffmpeg
  dll indeo2

videocodec ffflv
  info "FFmpeg Flash video"
  status working
  fourcc FLV1
  driver ffmpeg
  dll flv

videocodec fffsv
  info "FFmpeg Flash Screen video"
  status working
  fourcc FSV1
  driver ffmpeg
  dll flashsv

videocodec ffdivx
  info "FFmpeg DivX ;-) (MSMPEG-4 v3)"
  status working
  fourcc MPG3,mpg3 div3
  fourcc MP43,mp43 div3   ; MSMPEG-4 v3   (fourcc mapping to div3)
  fourcc DIV5,div5 div3   ; DivX 3.20
  fourcc DIV6,div6 div4   ;   -||-
  fourcc DIV3,div3,DIV4,div4
  fourcc DIVF,divf    ; divx4.12
  fourcc AP41 div3        ; AngelPotion stuff
  fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax)
  fourcc 3IVD,3ivd    ; divxdoctored files (3ivx.com)
  fourcc DVX3
  driver ffmpeg
  dll msmpeg4

videocodec ffdivxcrystalhd
  info "FFmpeg DivX ;-) (MSMPEG-4 v3) (CrystalHD)"
  status buggy
  fourcc MPG3,mpg3 div3
  fourcc MP43,mp43 div3   ; MSMPEG-4 v3   (fourcc mapping to div3)
  fourcc DIV5,div5 div3   ; DivX 3.20
  fourcc DIV6,div6 div4   ;   -||-
  fourcc DIV3,div3,DIV4,div4
  fourcc DIVF,divf    ; divx4.12
  fourcc AP41 div3        ; AngelPotion stuff
  fourcc COL1,col1,COL0,col0 ; Cool codec (based on mpg4ds32.ax)
  fourcc 3IVD,3ivd    ; divxdoctored files (3ivx.com)
  fourcc DVX3
  driver ffmpeg
  dll msmpeg4_crystalhd

videocodec ffmp42
  info "FFmpeg MSMPEG-4 v2"
  status working
  fourcc DIV2,div2 mp42
  fourcc MP42,mp42,Mp42
  driver ffmpeg
  dll msmpeg4v2

videocodec ffmp41
  info "FFmpeg MSMPEG-4 v1"
  status working
  fourcc DIV1,div1 mpg4
  fourcc MPG4,mpg4
  fourcc MP41
  driver ffmpeg
  dll msmpeg4v1

videocodec ffwmv1
  info "FFmpeg WMV1/WMV7"
  status working
  fourcc WMV1,wmv1
  driver ffmpeg
  dll wmv1

videocodec ffwmv2
  info "FFmpeg WMV2/WMV8"
  status working
  fourcc WMV2,wmv2
  driver ffmpeg
  dll wmv2

videocodec ffwmv3
  info "FFmpeg WMV3/WMV9"
  status buggy
  fourcc WMV3,wmv3
  driver ffmpeg
  dll wmv3

videocodec ffwmvp
  info "FFmpeg WVC1"
  comment "requires demuxer lavf"
  status buggy
  fourcc wmvp,WMVP
  driver ffmpeg
  dll wmv3

videocodec ffwmv3vdpau
  info "FFmpeg WMV3/WMV9 (VDPAU)"
  status buggy
  fourcc WMV3,wmv3
  driver ffmpeg
  dll wmv3_vdpau
  out VDPAU_WMV3

videocodec ffwmv3crystalhd
  info "FFmpeg WMV3/WMV9 (CrystalHD)"
  status buggy
  fourcc WMV3,wmv3
  driver ffmpeg
  dll wmv3_crystalhd

videocodec ffvc1
  info "FFmpeg WVC1"
  status buggy
  fourcc WVC1,wvc1,WMVA
  fourcc vc-1,VC-1
  driver ffmpeg
  dll vc1

videocodec ffvc1vdpau
  info "FFmpeg WVC1 (VDPAU)"
  status buggy
  fourcc WVC1,wvc1,WMVA
  fourcc vc-1,VC-1
  driver ffmpeg
  dll vc1_vdpau
  out VDPAU_VC1

videocodec ffvc1crystalhd
  info "FFmpeg WVC1 (CrystalHD)"
  status buggy
  fourcc WVC1,wvc1,WMVA
  fourcc vc-1,VC-1
  driver ffmpeg
  dll vc1_crystalhd

videocodec ffh264
  info "FFmpeg H.264"
  status working
  fourcc H264,h264
  fourcc X264,x264
  fourcc avc1,AVC1
  fourcc davc,DAVC
  fourcc vvvc ; only one sample using this fourcc
  fourcc ai55,ai15 ; flip4mac avc intra
  fourcc ai1q,ai5q ; flip4mac avc intra
  fourcc ai12 ;AVC Intra 100 / 1080
  format 0x10000005
  driver ffmpeg
  dll h264

videocodec ffh264vdpau
  info "FFmpeg H.264 (VDPAU)"
  status working
  fourcc H264,h264
  fourcc X264,x264
  fourcc avc1,AVC1
  fourcc davc,DAVC
  fourcc ai55,ai15 ; flip4mac avc intra
  fourcc ai1q,ai5q ; flip4mac avc intra
  format 0x10000005
  driver ffmpeg
  dll h264_vdpau
  out VDPAU_H264

videocodec ffh264crystalhd
  info "FFmpeg H.264 (CrystalHD)"
  status working
  fourcc H264,h264
  fourcc X264,x264
  fourcc avc1,AVC1
  fourcc davc,DAVC
  fourcc vvvc ; only one sample using this fourcc
  fourcc ai55,ai15 ; flip4mac avc intra
  fourcc ai1q,ai5q ; flip4mac avc intra
  format 0x10000005
  driver ffmpeg
  dll h264_crystalhd

videocodec ffh264vda
  info "FFmpeg H.264 (VDA)"
  status working
  fourcc H264,h264
  fourcc X264,x264
  fourcc avc1,AVC1
  fourcc davc,DAVC
  fourcc vvvc ; only one sample using this fourcc
  fourcc ai55,ai15 ; flip4mac avc intra
  fourcc ai1q,ai5q ; flip4mac avc intra
  fourcc ai12 ;AVC Intra 100 / 1080
  format 0x10000005
  driver ffmpeg
  dll h264_vda
  out YUY2,UYVY,YV12,NV12

videocodec ffsvq3
  info "FFmpeg Sorenson Video v3 (SVQ3)"
  status working
  fourcc SVQ3
  driver ffmpeg
  dll svq3

videocodec ffodivx
  info "FFmpeg MPEG-4"
  status working
  fourcc FMP4,fmp4
  fourcc DIVX,divx
  fourcc DIV1,div1 divx
  fourcc MP4S,mp4s ; ISO MPEG-4 Video V1
  fourcc M4S2,m4s2
  fourcc xvid,XVID,XviD,XVIX
  fourcc DX50,dx50,BLZ0 DX50
  fourcc mp4v,MP4V
  format 0x4
  fourcc UMP4
  fourcc RMP4
  fourcc 3IV2,3iv2  ; 3ivx Delta 4
  fourcc DXGM
  fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110
  fourcc SMP4,smp4 ; Samsung SMP4 video codec
  fourcc VIDM ; vidm 4.01 codec
  format 0x10000004  ; mpeg 4 es
  fourcc m4cc,M4CC
  fourcc hdx4,HDX4
  fourcc FVFW,fvfw
  fourcc FFDS
  fourcc DCOD,MVXM,EM4A,PM4V
  fourcc M4T3,DMK2,DIGI,INMC
  fourcc EPHV,SN40,WAWV
  fourcc uldx,ULDX,VSPX
  fourcc SIPP ; Samsung SHR-6040
  driver ffmpeg
  dll mpeg4 ;opendivx

videocodec ffodivxvdpau
  info "FFmpeg MPEG-4,DIVX-4/5 (VDPAU)"
  status working
  fourcc FMP4,fmp4
  fourcc DIVX,divx
  fourcc DIV1,div1 divx
  fourcc MP4S,mp4s ; ISO MPEG-4 Video V1
  fourcc M4S2,m4s2
  fourcc xvid,XVID,XviD,XVIX
  fourcc DX50,dx50,BLZ0 DX50
  fourcc mp4v,MP4V
  format 0x4
  fourcc UMP4
  fourcc RMP4
  fourcc 3IV2,3iv2  ; 3ivx Delta 4
  fourcc DXGM
  fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110
  fourcc SMP4,smp4 ; Samsung SMP4 video codec
  fourcc VIDM ; vidm 4.01 codec
  format 0x10000004  ; mpeg 4 es
  fourcc m4cc,M4CC
  fourcc hdx4,HDX4
  fourcc FVFW,fvfw
  fourcc FFDS
  fourcc DCOD,MVXM,EM4A,PM4V
  fourcc M4T3,DMK2,DIGI,INMC
  fourcc EPHV,SN40,WAWV
  fourcc uldx,ULDX,VSPX
  fourcc SIPP ; Samsung SHR-6040
  driver ffmpeg
  dll mpeg4_vdpau
  out VDPAU_MPEG4

videocodec ffodivxcrystalhd
  info "FFmpeg MPEG-4,DIVX-4/5 (CrystalHD)"
  status working
  fourcc FMP4,fmp4
  fourcc DIVX,divx
  fourcc DIV1,div1 divx
  fourcc MP4S,mp4s ; ISO MPEG-4 Video V1
  fourcc M4S2,m4s2
  fourcc xvid,XVID,XviD,XVIX
  fourcc DX50,dx50,BLZ0 DX50
  fourcc mp4v,MP4V
  format 0x4
  fourcc UMP4
  fourcc RMP4
  fourcc 3IV2,3iv2  ; 3ivx Delta 4
  fourcc DXGM
  fourcc SEDG ; diskless camcorder Samsung Miniket VP-M110
  fourcc SMP4,smp4 ; Samsung SMP4 video codec
  fourcc VIDM ; vidm 4.01 codec
  format 0x10000004  ; mpeg 4 es
  fourcc m4cc,M4CC
  fourcc hdx4,HDX4
  fourcc FVFW,fvfw
  fourcc FFDS
  fourcc DCOD,MVXM,EM4A,PM4V
  fourcc M4T3,DMK2,DIGI,INMC
  fourcc EPHV,SN40,WAWV
  fourcc uldx,ULDX,VSPX
  fourcc SIPP ; Samsung SHR-6040
  driver ffmpeg
  dll mpeg4_crystalhd

videocodec ffwv1f
  info "WV1F MPEG-4"
  status working
  fourcc WV1F
  driver ffmpeg
  dll mpeg4
  out YV12,I420,IYUV flip

videocodec fflibschroedinger
  info "Dirac (through FFmpeg libschroedinger)"
  status working
  fourcc drac
  driver ffmpeg
  dll libschroedinger

videocodec fflibdirac
  info "Dirac (through FFmpeg libdirac)"
  status working
  fourcc drac
  driver ffmpeg
  dll libdirac

; MJPEG:
; Notes: m3jpeg+mjpeg are MMX optimized. avid is very stable but slow.
; ijpg only decodes JPEG images (no MJPEG), and slow.
; Update: ffmjpeg is almost perfect (and optimized) now, prefer it to others.

videocodec ffmjpeg
  info "FFmpeg MJPEG"
  status working
  fourcc MJPG,mjpg
  fourcc AVRn,AVDJ  ; AVID
  fourcc ADJV       ; Avid Motion JPEG
  fourcc jpeg       ; MOV Photo-JPEG
  fourcc mjpa       ; Apple MJPEG-A (Quicktime)
  fourcc JFIF       ; SMJPEG (Loki)
  fourcc ijpg,IJPG  ; -mf type=jpeg
  fourcc JPEG       ; SGI's AVI Photo-JPEG
  fourcc JPGL       ; lossless JPEG (pegasus codec)
  fourcc LJPG       ; lossless JPEG
  fourcc dmb1       ; MJPEG by Matrox Rainbow Runner
  fourcc MJLS       ; JPEG-LS custom FOURCC for avi - encoder
  fourcc MMJP,QIVG
  fourcc ACDV       ; ACDSee jpeg
  fourcc SLMJ       ; SL M-JPEG
  fourcc MVJP       ; Midvid JPEG Video Codec
  fourcc IJLV       ; Intel JPEG Library Video Codec
  fourcc avi1,avi2
  fourcc MTSJ,ZJPG
  driver ffmpeg
  dll mjpeg

videocodec ffmjpegb
  info "FFmpeg MJPEG-B"
  status working
  fourcc mjpb       ; Apple MJPEG-B (Quicktime)
  driver ffmpeg
  dll mjpegb

videocodec fflibopenjpeg
  info "OpenJPEG MJPEG2000"
  status working
  fourcc MJ2C
  fourcc MJP2
  fourcc mjp2
  driver ffmpeg
  dll "libopenjpeg"

videocodec fffrwu
  info "FFmpeg Forward Uncompressed Video Codec"
  status working
  fourcc FRWU
  driver ffmpeg
  dll "FRWU"

videocodec ffi263
  info "FFmpeg I263"
  status working
  fourcc I263,i263
  driver ffmpeg
  dll h263i

videocodec ffh263
  info "FFmpeg H.263+"
  status working
  fourcc H263,U263,h263,X263,M263
  fourcc viv1 h263
  fourcc s263,S263
  fourcc T263
  fourcc D263     ; DEC H263
  fourcc L263     ; Lead H263
  fourcc ILVR     ; ITU H263+
  fourcc VX1K     ; Agora Labs VX1000S H263
  driver ffmpeg
  dll h263

videocodec ffzygo
  info "FFmpeg ZyGo"
  status untested
  fourcc ZyGo
  driver ffmpeg
  dll h263
  out YV12,I420,IYUV flip

videocodec ffh261
  info "CCITT H.261"
  status working
  fourcc H261,h261
  driver ffmpeg
  dll h261

videocodec ffindeo5
  info "FFmpeg Indeo 5"
  status working
  fourcc IV50
  driver ffmpeg
  dll indeo5

; DV:  qdv is more stable...  libdv is slow, mcdv is unstable

videocodec ffdv
  info "FFmpeg DV"
  status working
  fourcc CDVC,cdvc
  fourcc CDVH,cdvh   ; Canopus DVCPRO HD
  fourcc CDV5        ; Canopus SD50
  fourcc DVSD,dvsd   ; PAL
  fourcc DVCS,dvcs   ; NTSC ?
  fourcc "dvcp"      ; PAL DV in .mov
  fourcc "dvc "      ; NTSC DV in .mov
  fourcc "dvp "
  fourcc dvpp        ; DVCPRO - PAL
  fourcc dv50        ; DVCPRO 50
  fourcc dv5n        ; DVCPRO 50 NTSC in .mov
  fourcc dv5p        ; DVCPRO 50 PAL in .mov
  fourcc AVdv,AVd1
  fourcc dvhq,dvhp
  fourcc dvh5,dvh6,dvh3
  fourcc dvhd,dvsl,dv25
  fourcc dvs1,dvh1
  driver ffmpeg
  dll dvvideo

videocodec ffrv20
  info "FFmpeg RV20"
  status working
  fourcc RV20,rv20
  fourcc RVTR
  driver ffmpeg
  dll rv20

videocodec ffrv30
  info "FFmpeg RV30"
  status buggy
  fourcc RV30,rv30
  driver ffmpeg
  dll rv30

videocodec ffrv40
  info "FFmpeg RV40"
  status working
  fourcc RV40,rv40
  driver ffmpeg
  dll rv40

videocodec ffrv10
  info "FFmpeg RV10"
  status working
  fourcc RV10,rv10
  fourcc RV13,rv13
  driver ffmpeg
  dll rv10

videocodec fflagarith
  info "Lagarith Lossless Video Codec"
  status buggy
  fourcc LAGS
  driver ffmpeg
  dll lagarith

videocodec ffvp3
  info "FFmpeg VP3"
  status untested
  fourcc VP30,vp30,VP31,vp31
  format 0x20335056 ; "VP3 " (used in .nsv files)
  driver ffmpeg
  dll "vp3"

videocodec fftheora
  info "FFmpeg Theora"
  status untested
  fourcc theo
  fourcc Thra theo
  format 0xFFFC
  driver ffmpeg
  dll "theora"

videocodec ffvp5
  info "FFmpeg VP5"
  status working
  fourcc VP50
  driver ffmpeg
  dll "vp5"

videocodec ffvp6
  info "FFmpeg VP6"
  status working
  fourcc VP60,VP61,VP62
  driver ffmpeg
  dll "vp6"

videocodec ffvp6a
  info "FFmpeg VP6A"
  status untested
  fourcc VP6A
  driver ffmpeg
  dll "vp6a"

videocodec ffvp6f
  info "FFmpeg VP6 Flash"
  status working
  fourcc VP6F
  fourcc FLV4
  driver ffmpeg
  dll "vp6f"

videocodec ffvp8
  info "FFmpeg VP8"
  comment "not using direct rendering due to missing edge emulation"
  status working
  fourcc VP80
  driver ffmpeg
  dll "vp8"

videocodec fflibvpx
  info "FFmpeg wrapper for libvpx/VP8"
  status working
  fourcc VP80
  driver ffmpeg
  dll "libvpx"

videocodec ffultimotion
  info "FFmpeg IBM Ultimotion"
  status working
  fourcc ULTI
  driver ffmpeg
  dll "ultimotion"

videocodec ffduck
  info "Duck Truemotion1"
  status working
  fourcc DUCK
  fourcc PVEZ
  driver ffmpeg
  dll "truemotion1"

videocodec fftm20
  info "FFmpeg Duck/On2 TrueMotion 2.0"
  status working
  fourcc TM20
  driver ffmpeg
  dll truemotion2

videocodec ffamv
  info "Modified MJPEG, used in AMV files"
  status working
  fourcc AMVV  ; internal MPlayer FourCC
  driver ffmpeg
  dll "amv"

videocodec ffsp5x
  info "SP5x codec - used by Aiptek MegaCam"
  status working
  fourcc SP53,SP54,SP55,SP56,SP57,SP58
  driver ffmpeg
  dll "sp5x"

videocodec ffkega
  info "FFmpeg Kega Video"
  status working
  fourcc KGV1
  driver ffmpeg
  dll kgv1

videocodec ffwnv1
  info "FFmpeg wnv1 codec"
  status working
  fourcc WNV1
  driver ffmpeg
  dll wnv1

videocodec ffvmnc
  info "FFmpeg VMware video"
  status working
  fourcc VMnc
  driver ffmpeg
  dll "vmnc"

videocodec ffsmkvid
  info "FFmpeg Smacker Video"
  status working
  fourcc SMK2
  fourcc SMK4
  driver ffmpeg
  dll "smackvid"

videocodec ffcavs
  info "Chinese AVS Video"
  comment "only works with libavformat demuxer"
  status working
  fourcc CAVS
  fourcc avs2
  driver ffmpeg
  dll "cavs"

videocodec ffdnxhd
  info "FFmpeg DNxHD"
  status working
  fourcc AVdn
  driver ffmpeg
  dll "dnxhd"

videocodec ffv210
  info "FFmpeg V210 - 10-bit"
  status untested
  fourcc v210
  driver ffmpeg
  dll v210

videocodec ffprores
  info "Libav ProRes"
  status working
  fourcc apch
  fourcc apcn
  fourcc apcs
  fourcc apco
  fourcc ap4h
  driver ffmpeg
  dll prores

videocodec ffcamtasia
  info "FFmpeg TechSmith Camtasia Screen Codec"
  status working
  fourcc TSCC,tscc
  driver ffmpeg
  dll "camtasia"

videocodec ffcamstudio
  info "CamStudio Screen Codec"
  status working
  fourcc CSCD,cscd
  driver ffmpeg
  dll "camstudio"

videocodec fffraps
  info "FFmpeg Fraps"
  status working
  fourcc FPS1,fps1
  driver ffmpeg
  dll "fraps"

videocodec ffjv
  info "FFmpeg Bitmap Brothers JV"
  status working
  fourcc FFJV ; internal MPlayer FourCC
  driver ffmpeg
  dll "jv"

videocodec fftiertexseq
  info "FFmpeg Tiertex SEQ"
  status working
  fourcc TSEQ ; internal MPlayer FourCC
  driver ffmpeg
  dll "tiertexseqvideo"

videocodec ffvmd
  info "FFmpeg Sierra VMD video"
  status working
  fourcc VMDV ; internal MPlayer FourCC
  driver ffmpeg
  dll "vmdvideo"

videocodec ffdxa
  info "FFmpeg Feeble Files DXA video"
  status working
  fourcc DXA1 ; internal MPlayer FourCC
  driver ffmpeg
  dll "dxa"

videocodec ffdsicinvideo
  info "FFmpeg Delphine CIN video"
  status working
  fourcc DCIV ; internal MPlayer FourCC
  driver ffmpeg
  dll "dsicinvideo"

videocodec ffthp
  info "FFmpeg THP video"
  status working
  fourcc THPV ; internal MPlayer FourCC
  driver ffmpeg
  dll thp

videocodec ffbfi
  info "FFmpeg BFI Video"
  status working
  fourcc BFIV ; internal MPlayer FourCC
  driver ffmpeg
  dll bfi

videocodec ffbethsoftvid
  info "FFmpeg Bethesda Software VID"
  comment "video plays much too fast"
  status buggy
  fourcc BETH ; internal MPlayer FourCC
  driver ffmpeg
  dll bethsoftvid

videocodec ffrl2
  info "FFmpeg RL2"
  status working
  fourcc RL2V ; internal MPlayer FourCC
  driver ffmpeg
  dll rl2

videocodec fftxd
  info "FFmpeg Renderware TeXture Dictionary"
  status working
  fourcc TXDV ; internal MPlayer FourCC
  driver ffmpeg
  dll txd

videocodec ffwc4
  info "FFmpeg XAN wc4"
  status working
  fourcc Xxan
  driver ffmpeg
  dll "xan_wc4"

videocodec ffwc3
  info "FFmpeg XAN wc3"
  status buggy
  fourcc WC3V ; internal MPlayer FourCC
  driver ffmpeg
  dll "xan_wc3"

videocodec ffidcin
  info "FFmpeg Id CIN video"
  status buggy
  fourcc IDCI ; internal MPlayer FourCC
  driver ffmpeg
  dll "idcinvideo"

videocodec ffinterplay
  info "FFmpeg Interplay Video"
  status buggy
  fourcc INPV ; internal MPlayer FourCC
  driver ffmpeg
  dll "interplayvideo"

videocodec ffvqa
  info "FFmpeg VQA Video"
  status buggy
  fourcc VQAV ; internal MPlayer FourCC
  driver ffmpeg
  dll "vqavideo"

videocodec ffc93
  info "FFmpeg C93 Video"
  status buggy
  fourcc C93V ; internal MPlayer FourCC
  driver ffmpeg
  dll c93

videocodec ffeatgv
  info "FFmpeg Electronic Arts TGV"
  status working
  fourcc fVGT
  driver ffmpeg
  dll eatgv

;lavc raw codecs

videocodec ffrawyuy2
  info "RAW YUY2"
  status working
  format 0x0
  format 0x20776172
  fourcc yuy2,YUY2
  fourcc V422,v422
  fourcc YUNV,yunv
  fourcc VYUY,vyuy
  fourcc yuvs,YUVS
  fourcc DVOO
  driver ffmpeg
  dll rawvideo

videocodec ffrawyuv2
  info "RAW YUV2"
  status working
  format 0x0
  format 0x20776172
  fourcc yuv2,YUV2
  driver ffmpeg
  dll rawvideo

videocodec ffrawuyvy
  info "RAW UYVY"
  status working
  format 0x0
  format 0x20776172
  fourcc uyvy,UYVY
  fourcc HDYC,hdyc
  fourcc UYNV,uynv
  fourcc UYNY,uyny
  fourcc uyv1,UYV1
  fourcc 2Vu1,2vu1,2VU1
  fourcc 2Vuy,2vuy,2VUY
  fourcc AV1x,AVup
  fourcc VDTZ
  driver ffmpeg
  dll rawvideo

videocodec ffraw444P
  info "RAW 444P"
  status working
  format 0x0
  format 0x20776172
  fourcc 444p,444P
  fourcc YV24
  driver ffmpeg
  dll rawvideo

videocodec ffraw422P
  info "RAW 422P"
  status working
  format 0x0
  format 0x20776172
  fourcc 422p,422P
  fourcc P422,p422
  fourcc Y42B,y42b
  fourcc YV16,yv16
  driver ffmpeg
  dll rawvideo

videocodec ffrawyv12
  info "RAW YV12"
  status working
  format 0x0
  format 0x20776172
  fourcc yv12,YV12
  driver ffmpeg
  dll rawvideo

videocodec ffrawi420
  info "RAW I420"
  status working
  format 0x0
  format 0x20776172
  fourcc i420,I420
  fourcc IYUV,iyuv
  driver ffmpeg
  dll rawvideo

videocodec ffrawyvu9
  info "RAW YVU9"
  status working
  format 0x0
  format 0x20776172
  fourcc yvu9,YVU9
  driver ffmpeg
  dll rawvideo

videocodec ffrawy800
  info "RAW Y8/Y800"
  status working
  format 0x0
  format 0x20203859 ; "Y8  "
  fourcc y800,Y800
  driver ffmpeg
  dll rawvideo

;=============================================================================
;                   AUDIO CODECS
;=============================================================================

audiocodec lavc
  info "Generic libavcodec decoder"
  status buggy
  driver ffmpeg
  anyinput

audiocodec ffqdm2
  info "FFmpeg QDM2 audio"
  status working
  fourcc QDM2
  driver ffmpeg
  dll "qdm2"

audiocodec ffqclp
  info "FFmpeg QCLP audio"
  status working
  fourcc Qclp
  fourcc sqcp
  fourcc Qclq
  driver ffmpeg
  dll "qcelp"

audiocodec ffra144
  info "FFmpeg RealAudio 1.0"
  status working
  fourcc 14_4
  fourcc lpcJ
  driver ffmpeg
  dll "real_144"

audiocodec ffra288
  info "FFmpeg RealAudio 2.0"
  status working
  fourcc 28_8
  driver ffmpeg
  dll "real_288"

audiocodec ffcook
  info "FFmpeg COOK audio"
  status working
  fourcc cook
  driver ffmpeg
  dll "cook"

audiocodec ffatrc
  info "FFmpeg Atrac 3 audio"
  status working
  fourcc atrc
  format 0x270      ; atrac3 in wav
  driver ffmpeg
  dll "atrac3"

audiocodec ffsipr
  info "FFmpeg Sipr/Acelp.net audio"
  status working
  fourcc sipr
  format 0x130 ; acelp.net
  driver ffmpeg
  dll "sipr"

audiocodec ffadpcmadx
  info "FFmpeg SEGA CRI adx codec"
  status working
  fourcc Sadx ; internal MPlayer FourCC
  driver ffmpeg
  dll adpcm_adx

audiocodec ffadpcmimaamv
  info "FFmpeg AMV IMA ADPCM audio"
  status working
  fourcc AMVA  ; internal MPlayer FourCC
  driver ffmpeg
  dll adpcm_ima_amv

audiocodec ffadpcmimaqt
  info "FFmpeg QT IMA ADPCM audio"
  status working
  fourcc ima4 ; (MOV files)
  driver ffmpeg
  dll adpcm_ima_qt

audiocodec ffadpcmimawav
  info "FFmpeg WAV IMA ADPCM audio"
  status working
  format 0x11
  format 0x1100736d ; "ms\x00\x11" (MOV files)
  format 0x11005354 ; "TS\x00\x11" (MOV files) works with -demuxer mov
  driver ffmpeg
  dll adpcm_ima_wav

audiocodec ffadpcmms
  info "FFmpeg MS ADPCM audio"
  status working
  format 0x2
  format 0x0200736d  ; "ms\x00\x02" (MOV files)
  driver ffmpeg
  dll adpcm_ms

audiocodec ffadpcmimadk4
  info "FFmpeg DK4 IMA ADPCM audio"
  status working
  format 0x61 ; This format number was used by Duck Corp. but not officially
              ; registered with Microsoft
  driver ffmpeg
  dll adpcm_ima_dk4

audiocodec ffadpcmimadk3
  info "FFmpeg DK3 IMA ADPCM audio"
  status working
  format 0x62 ; This format number was used by Duck Corp. but not officially
              ; registered with Microsoft
  driver ffmpeg
  dll adpcm_ima_dk3

audiocodec ffroqaudio
  info "Id RoQ File Audio"
  status working
  fourcc RoQA ; internal MPlayer FourCC
  driver ffmpeg
  dll "roq_dpcm"

audiocodec ffsmkaud
  info "FFmpeg Smacker Audio"
  status buggy
  fourcc SMKA
  driver ffmpeg
  dll "smackaud"

audiocodec ffbinkdctaud
  info "FFmpeg Bink Audio (DCT)"
  status buggy
  fourcc BAU1 ; internal MPlayer FourCC
  driver ffmpeg
  dll "binkaudio_dct"

audiocodec ffbinkrdftaud
  info "FFmpeg Bink Audio (RDFT)"
  status working
  fourcc BAU2 ; internal MPlayer FourCC
  driver ffmpeg
  dll "binkaudio_rdft"

audiocodec ffdsicinaudio
  info "FFmpeg Delphine CIN audio"
  status working
  fourcc DCIA ; internal MPlayer FourCC
  driver ffmpeg
  dll dsicinaudio

audiocodec ff4xmadmpcm
  info "FFmpeg 4XM ADPCM audio"
  status working
  fourcc 4XMA ; internal MPlayer FourCC
  driver ffmpeg
  dll adpcm_4xm

audiocodec ffadpcmimaws
  info "FFmpeg Westwood IMA ADPCM audio"
  status working
  fourcc AIWS ; internal MPlayer FourCC
  driver ffmpeg
  dll adpcm_ima_ws

audiocodec ffwssnd1
  info "FFmpeg Westwood SND1"
  status working
  fourcc SND1 ; internal MPlayer FourCC
  driver ffmpeg
  dll ws_snd1

audiocodec ffinterplaydpcm
  info "FFmpeg Interplay DPCM audio"
  status working
  fourcc INPA ; internal MPlayer FourCC
  driver ffmpeg
  dll interplay_dpcm

audiocodec ffadpcmea
  info "FFmpeg EA ADPCM audio"
  status working
  fourcc ADEA ; internal MPlayer FourCC
  driver ffmpeg
  dll adpcm_ea

audiocodec ffadpcmeamaxis
  info "FFmpeg EA MAXIS XA ADPCM audio"
  status working
  fourcc ADXA ; internal MPlayer FourCC
  driver ffmpeg
  dll adpcm_ea_maxis_xa

audiocodec ffadpcmxa
  info "FFmpeg XA ADPCM audio"
  status working
  fourcc PSXA ; internal MPlayer FourCC
  driver ffmpeg
  dll adpcm_xa

audiocodec ffxandpcm
  info "FFmpeg XAN DPCM audio"
  comment "Wing Commander 4 files only work with libavformat demuxer"
  status working
  fourcc Axan
  format 0x594A
  driver ffmpeg
  dll xan_dpcm

audiocodec ffyamahaadpcm
  info "FFmpeg Yamaha ADPCM audio"
  status working
  format 0x20
  driver ffmpeg
  dll adpcm_yamaha

audiocodec ffadpcmthp
  info "FFmpeg THP ADPCM audio"
  status working
  fourcc THPA
  driver ffmpeg
  dll adpcm_thp

audiocodec ffdv
  info "FFmpeg DV audio"
  status working
  fourcc RADV
  fourcc vdva,dvca
  fourcc dvau
  driver ffmpeg
  dll "dvaudio"

; add every new fourcc also to allocate_parser()
; in libmpdemux/demuxer.c
audiocodec fflatm
  info "FFmpeg AAC in LATM"
  status working
  fourcc MP4L ; internal MPlayer FourCC
  driver ffmpeg
  dll aac_latm

audiocodec ffaac
  info "FFmpeg AAC (MPEG-2/MPEG-4 Audio)"
  status working
  fourcc mp4a,MP4A
  fourcc "VLB " ; Used in NSV, not really working
  fourcc "AAC " ; Used in NSV
  fourcc "AACP" ; Used in NSV for AACPlus
  fourcc raac,racp
  format 0xff
  format 0x706D
  format 0x4143 ; aac in asf
  format 0xA106 ; aac in avi not yet working
  format 0xAAC0 ; Borgtech nonsense tag
  driver ffmpeg
  dll aac

audiocodec ffflac
  info "FFmpeg FLAC audio"
  status working
  fourcc "fLaC"
  format 0xF1AC
  format 0xACF1736D
  driver ffmpeg
  dll "flac"

audiocodec ffalac
  info "FFmpeg ALAC audio"
  status working
  fourcc alac
  driver ffmpeg
  dll "alac"

audiocodec fftta
  info "FFmpeg True Audio (TTA)"
  status working
  fourcc TTA1 ; internal MPlayer FourCC
  driver ffmpeg
  dll "tta"

audiocodec ffwavpack
  info "FFmpeg WavPack audio"
  status working
  fourcc WVPK ; internal MPlayer FourCC
  driver ffmpeg
  dll "wavpack"

audiocodec ffshorten
  info "FFmpeg Shorten audio"
  status working
  fourcc shrn ; internal MPlayer FourCC
  driver ffmpeg
  dll "shorten"

audiocodec ffape
  info "FFmpeg Monkey's Audio"
  status working
  fourcc "APE "
  driver ffmpeg
  dll "ape"

audiocodec ffals
  info "FFmpeg ALS"
  status working
  fourcc "ALS " ; internal MPlayer FourCC
  driver ffmpeg
  dll "als"

; add every new fourcc also to allocate_parser()
; in libmpdemux/demuxer.c
audiocodec ffmlp
  info "FFmpeg MLP"
  status working
  fourcc "MLP " ; internal MPlayer FourCC
  driver ffmpeg
  dll "mlp"

; add every new fourcc also to allocate_parser()
; in libmpdemux/demuxer.c
audiocodec fftruehd
  info "FFmpeg TrueHD"
  status working
  fourcc TRHD ; internal MPlayer FourCC
  driver ffmpeg
  dll "truehd"

audiocodec ffnellymoser
  info "FFmpeg Nellymoser Audio"
  status working
  fourcc "NELL" ; internal MPlayer FourCC
  driver ffmpeg
  dll "nellymoser"

audiocodec pcm
  info "Uncompressed PCM"
  status working
  format 0x0
  format 0x1
  format 0x3         ; IEEE float
  format 0xfffe      ; Extended
  fourcc "raw " ; (MOV files)
  fourcc twos ; (MOV files)
  fourcc sowt ; (MOV files)
  fourcc fl32 ; (MOV files)
  fourcc 23lf ; (MOV files)
;  fourcc fl64 ; (MOV files)
;  fourcc 46lf ; (MOV files)
  fourcc NONE ; (MOV files from Kodak CX6320)
  fourcc in24 ; (MOV files)
  fourcc 42ni ; (MOV files)
  fourcc in32 ; (MOV files)
  fourcc 23ni ; (MOV files)
  fourcc lpcm ; (MOV files)
  fourcc FL32 ; (aiff files)
  fourcc MPaf ; internal MPlayer FourCC for demux_rawaudio
;;;; these are for hardware support only:  (alaw,ulaw,ima-adpcm,mpeg,ac3)
;  format 0x6
;  format 0x7
;  format 0x11
;  format 0x50
;  format 0x2000
;;;;
  driver pcm

audiocodec ffpcmdaud
  info "D-Cinema audio (FFmpeg)"
  status untested
  fourcc "daud"
  driver ffmpeg
  dll "pcm_s24daud"

audiocodec ffwmav1
  info "DivX audio v1 (FFmpeg)"
  status untested
  format 0x160
  driver ffmpeg
  dll "wmav1"

audiocodec ffwmav2
  info "DivX audio v2 (FFmpeg)"
  status untested
  format 0x161
  driver ffmpeg
  dll "wmav2"

audiocodec ffwmapro
  info "WMA Pro audio (FFmpeg)"
  status untested
  format 0x162
  fourcc "WMA3"
  driver ffmpeg
  dll "wmapro"

audiocodec ffwmavoice
  info "WMA Voice audio (FFmpeg)"
  status untested
  format 0xA
  driver ffmpeg
  dll "wmavoice"

audiocodec ffmac3
  info "Macintosh Audio Compression and Expansion 3:1"
  status untested
  fourcc "MAC3"
  driver ffmpeg
  dll "mace3"

audiocodec ffmac6
  info "Macintosh Audio Compression and Expansion 6:1"
  status untested
  fourcc "MAC6"
  driver ffmpeg
  dll "mace6"

audiocodec ffsonic
  info "FFmpeg Sonic"
  status untested
  fourcc SONC
  format 0x2048
  driver ffmpeg
  dll "sonic"

audiocodec mpg123
  ; this is preferred over ffmp2/ffmp3 since it is faster, generally
  info "MPEG 1.0/2.0/2.5 layers I, II, III"
  status working
  comment "High-performance decoder using libmpg123."
  format 0x50        ; layer-1 && layer-2
  format 0x55        ; layer-3
  format 0x5500736d  ; "ms\0\x55" older mp3 fcc (MOV files)
  format 0x5000736d  ; "ms\0\x50" older mp2 fcc (MOV files)
  format 0x55005354  ;  broken file
  fourcc ".mp3"      ; CBR/VBR MP3 (MOV files)
  fourcc "MP3 "      ; used in .nsv files
  fourcc "LAME"      ; used in mythtv .nuv files
  driver mpg123

audiocodec ffmp3on4float
  info "FFmpeg Multi-channel MPEG layer-3 on MP4 audio"
  status working
  format 0x1d61346d ; 'm','4','a',29 internal MPlayer fourcc
  driver ffmpeg
  dll "mp3on4float"

audiocodec ffmp3on4
  info "FFmpeg Multi-channel MPEG layer-3 on MP4 audio"
  status working
  format 0x1d61346d ; 'm','4','a',29 internal MPlayer fourcc
  driver ffmpeg
  dll "mp3on4"

; add every new fourcc also to allocate_parser()
; in libmpdemux/demuxer.c
audiocodec ffmp3float
  info "FFmpeg MPEG layer-3 audio"
  comment "integer only"
  status working
  format 0x55
  format 0x5500736d  ; "ms\0\x55" older mp3 fcc (MOV files)
  format 0x55005354  ;  broken file
  fourcc ".mp3"      ; CBR/VBR MP3 (MOV files)
  fourcc "MP3 "      ; used in .nsv files
  fourcc "LAME"      ; used in mythtv .nuv files
  driver ffmpeg
  dll "mp3float"

audiocodec ffmp3
  info "FFmpeg MPEG layer-3 audio"
  comment "integer only"
  status working
  format 0x55
  format 0x5500736d  ; "ms\0\x55" older mp3 fcc (MOV files)
  format 0x55005354  ;  broken file
  fourcc ".mp3"      ; CBR/VBR MP3 (MOV files)
  fourcc "MP3 "      ; used in .nsv files
  fourcc "LAME"      ; used in mythtv .nuv files
  driver ffmpeg
  dll "mp3"

audiocodec ffmp3adufloat
  info "FFmpeg MPEG layer-3 adu audio"
  comment "integer only"
  status working
  format 0x55756461  ; 'a','d','u',0x55 internal MPlayer fourcc
  driver ffmpeg
  dll "mp3adufloat"

audiocodec ffmp3adu
  info "FFmpeg MPEG layer-3 adu audio"
  comment "integer only"
  status working
  format 0x55756461  ; 'a','d','u',0x55 internal MPlayer fourcc
  driver ffmpeg
  dll "mp3adu"

; add every new fourcc also to allocate_parser()
; in libmpdemux/demuxer.c
audiocodec ffmp2float
  info "FFmpeg MPEG layer-1 and layer-2 audio"
  comment "integer only"
  status working
  format 0x50
  format 0x5000736d  ; "ms\0\x50" older mp2 fcc (MOV files)
  fourcc ".mp2"      ; MP2 (MOV files)
  fourcc ".mp1"      ; MP1 (MOV files)
  driver ffmpeg
  dll "mp2float"

audiocodec ffmp2
  info "FFmpeg MPEG layer-1 and layer-2 audio"
  comment "integer only"
  status working
  format 0x50
  format 0x5000736d  ; "ms\0\x50" older mp2 fcc (MOV files)
  fourcc ".mp2"      ; MP2 (MOV files)
  fourcc ".mp1"      ; MP1 (MOV files)
  driver ffmpeg
  dll "mp2"

audiocodec ffgsm
  info "FFmpeg GSM 06.10"
  status working
  fourcc "GSM "
  format 0x1500
  fourcc agsm
  driver ffmpeg
  dll "gsm"

audiocodec ffgsmms
  info "FFmpeg MS GSM"
  status working
  format 0x31
  format 0x32
  driver ffmpeg
  dll "gsm_ms"

audiocodec libgsm
  info "libgsm GSM 06.10"
  status working
  fourcc "GSM "
  format 0x1500
  driver ffmpeg
  dll "libgsm"

audiocodec libgsmms
  info "libgsm MS GSM"
  status working
  format 0x31
  format 0x32
  driver ffmpeg
  dll "libgsm_ms"

audiocodec dvdpcm
  info "Uncompressed DVD/VOB LPCM"
  status working
  format 0x10001
  driver dvdpcm

audiocodec fflpcm
  info "Blu-ray LPCM"
  status working
  fourcc BPCM ; internal MPlayer FourCC
  driver ffmpeg
  dll pcm_bluray

audiocodec ffpcmlxf
  info "Leitch/Harris PCM"
  status working
  fourcc PLXF ; internal MPlayer FourCC
  driver ffmpeg
  dll pcm_lxf

audiocodec ffs302m
  info "SMPTE 302M"
  status working
  fourcc BSSD
  driver ffmpeg
  dll s302m

; add every new fourcc also to allocate_parser()
; in libmpdemux/demuxer.c
audiocodec ffac3
  info "FFmpeg AC-3"
  status working
  format 0x2000
  fourcc ac-3 ; ac-3 in mp4
  fourcc AC-3
  format 0x20736D ;  "ms\20" older ac3 fcc (MOV files)
  fourcc dnet
  fourcc sac3
  driver ffmpeg
  dll ac3

; add every new fourcc also to allocate_parser()
; in libmpdemux/demuxer.c
audiocodec ffeac3
  info "FFmpeg E-AC-3"
  status working
  fourcc EAC3
  driver ffmpeg
  dll eac3

; add every new fourcc also to allocate_parser()
; in libmpdemux/demuxer.c
audiocodec ffdca
  info "FFmpeg DTS"
  status working
  format 0x2001
  format 0x86
  driver ffmpeg
  dll "dca"

audiocodec ffmusepack7
  info "Musepack sv7 audio codec"
  comment "only works with libavformat demuxer"
  status  working
  fourcc  "MPC "
  driver ffmpeg
  dll "mpc7"

audiocodec ffmusepack8
  info "Musepack sv8 audio codec"
  comment "only works with libavformat demuxer"
  status  working
  fourcc  "MPC8"
  fourcc MPCK
  driver ffmpeg
  dll "mpc8"

audiocodec ffamrnb
  info "AMR Narrowband"
  status working
  fourcc samr
  format 0x57 ;amr in avi
  driver ffmpeg
  dll "amrnb"

audiocodec libopencoreamrnb
  info "AMR Narrowband"
  status working
  fourcc samr
  format 0x57 ;amr in avi
  driver ffmpeg
  dll "libopencore_amrnb"

audiocodec libopencoreamrwb
  info "AMR Wideband"
  status working
  fourcc sawb
  format 0x58 ;amr in avi
  driver ffmpeg
  dll "libopencore_amrwb"

audiocodec ffadcpmswf
  info "FFmpeg's ADPCM Flash-variant"
  status working
  format 0x5346 ; 'SF', pseudo id
  driver ffmpeg
  dll "adpcm_swf"

audiocodec ffimc
  info "FFmpeg Intel Music Coder"
  status working
  format 0x401
  driver ffmpeg
  dll "imc"

audiocodec ffctadp32
  info "FFmpeg Creative ADPCM codec"
  status working
  format 0x200
  driver ffmpeg
  dll "adpcm_ct"

audiocodec ffvorbis
  info "FFmpeg Vorbis"
  status working
  fourcc vrbs
  format 0x566F
  driver ffmpeg
  dll "vorbis"

audiocodec ffg722
  info "G.722 Audio"
  status working
  format 0x28F
  driver ffmpeg
  dll "g722"

audiocodec ffg726
  info "Sharp G.726 Audio"
  status working
  format 0x45
  driver ffmpeg
  dll "g726"

audiocodec fftruespeech
  info "FFmpeg TrueSpeech"
  status working
  format 0x22
  format 0x1501
  driver ffmpeg
  dll "truespeech"

audiocodec fftwinvq
  info "FFmpeg TwinVQ"
  status working
  fourcc TWI2 ; internal MPlayer FourCC, different from mplayer's TwinVQ decoder
              ; since lavf demuxer is incompatible with it
  driver ffmpeg
  dll twinvq

audiocodec spdifaac
  info "libavformat/spdifenc AAC pass-through decoder"
  status working
  comment "for AAC hardware decoders"
  fourcc MP4A
  dll    aac
  driver spdif

audiocodec spdifac3
  info "libavformat/spdifenc AC-3 pass-through decoder"
  status working
  comment "for AC-3 hardware decoders"
  format 0x2000      ; AC-3
  format 0x332D6361  ; AC-3 in MP4
  fourcc dnet        ; AC-3
  dll    ac3
  driver spdif

audiocodec spdifeac3
  info "libavformat/spdifenc E-AC-3 pass-through decoder"
  status working
  comment "for E-AC-3 hardware decoders"
  fourcc EAC3        ; E-AC-3
  dll    eac3
  driver spdif

audiocodec spdifdts
  info "libavformat/spdifenc DTS pass-through decoder"
  status working
  comment "for DTS hardware decoders"
  format 0x2001
  format 0x86
  dll    dca
  driver spdif

audiocodec spdifmpa
  info "libavformat/spdifenc MPEG AUDIO BC pass-through decoder"
  status working
  comment "for MPEG AUDIO BC hardware decoders"
  format 0x50        ; layer-1 && layer-2
  format 0x55        ; layer-3
  format 0x5500736d  ; "ms\0\x55" older MP3 fcc (MOV files)
  format 0x5000736d  ; "ms\0\x50" older MP2 fcc (MOV files)
  fourcc ".mp3"      ; CBR/VBR MP3 (MOV files)
  fourcc ".mp2"      ; MP2 (MOV files)
  fourcc ".mp1"      ; MP1 (MOV files)
  fourcc "MP3 "      ; used in .nsv files
  fourcc "LAME"      ; used in mythtv .nuv files
  dll    mpa
  driver spdif

audiocodec spdifthd
  info "libavformat/spdifenc Dolby TrueHD pass-through decoder"
  status working
  comment "for Dolby TrueHD hardware decoders"
  fourcc "TRHD"
  dll    thd
  driver spdif