~medibuntu-maintainers/mplayer/medibuntu.lucid

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
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
;=============================================================================
;  Default codecs config file.
;  Before editing this file, please read DOCS/tech/codecs.conf.txt !
;=============================================================================

release 20090308

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

videocodec ffmvi1
  info "FFmpeg Motion Pixels"
  status working
  fourcc MVI1 ; internal MPlayer FourCC
  driver ffmpeg
  dll motionpixels
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8
  out YV12,YUY2

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

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

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

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

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

videocodec zmbv
  info "Zip Motion-Block Video"
  status working
  fourcc ZMBV
  driver vfw
  dll "zmbv.dll"
  out BGR24,BGR15,BGR8 query,flip

videocodec yuv8
  info "YUV422 = Cb0 Y0 Cr0 Y1 Cb1 Y2 Cr1 Y3 (U Y V Y U Y V Y)"
  status working
  fourcc yuv8
  driver vfwex
  dll "kdvyuv8.dll" ; i wonder if this works with raw codecs?
  out YV12,I420,UYVY
  out BGR24,BGR15,BGR32

videocodec blackmagic
  info "Blackmagic 10-bit"
  status working
  comment "requires libguide40.dll"
  fourcc r210
  driver vfw
  dll "BMDCodecLib.dll"
  out BGR32,RGB32

; MPEG-1/2 decoding:
; Note: mpegpes is preferred for hw decoders:

videocodec mpegpes
  info "MPEG-PES output (.mpg or DXR3/IVTV/DVB/V4L2 card)"
  comment "for hardware decoding"
  status working
  format 0x10000001  ; mpeg 1
  format 0x10000002  ; mpeg 2
  fourcc mpg1,MPG1,mpg2,MPG2
  fourcc MPEG
  fourcc hdv1,hdv2,hdv3
  fourcc hdv5
  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 xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc mp2v,mpgv
  fourcc VCR2
  driver mpegpes
  out MPES

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

videocodec ffmpeg2
  info "FFmpeg MPEG-2"
  status working
  format 0x10000002  ; MPEG-2
  fourcc mpg2,MPG2
  fourcc "DVR "
  fourcc hdv1
  fourcc hdv2
  fourcc MPEG
  fourcc hdv3        ; HDV 1080i50
  fourcc hdv5        ; HDV  720p25
  fourcc mx5p        ; MPEG IMX 625/50 (50 Mb/s)
  fourcc MMES,mmes   ; matrox mpeg2 in avi
  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 xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc VCR2
  fourcc mp2v,mpgv
  fourcc PIM2
  fourcc LMP2 ; Lead mpeg2 in avi
  driver ffmpeg
  dll "mpeg2video"
  out YV12,I420,IYUV
  out 422P,444P

; 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 hdv2
  fourcc MPEG
  fourcc hdv1
  fourcc hdv3        ; HDV 1080i50
  fourcc hdv5        ; HDV  720p25
  fourcc mx5p        ; MPEG IMX 625/50 (50 Mb/s)
  fourcc MMES,mmes   ; matrox mpeg2 in avi
  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 xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc mp2v,mpgv
  fourcc LMP2 ; Lead mpeg2 in avi
  driver ffmpeg
  dll "mpegvideo"
  out YV12,I420,IYUV
  out 422P,444P

videocodec mpeg12
  info "MPEG-1 or 2 (libmpeg2)"
  comment "with postprocessing"
  status working
  format 0x10000001  ; MPEG-1
  format 0x10000002  ; MPEG-2
  fourcc "DVR "
  fourcc hdv2
  fourcc mpg1
  fourcc PIM1        ; Pinnacle hardware-MPEG-1
  fourcc PIM2        ; Pinnacle hardware-MPEG-2
  fourcc VCR2
  fourcc mpg2,MPG2
  fourcc MPEG
  fourcc hdv1
  fourcc hdv3        ; HDV 1080i50
  fourcc hdv5        ; HDV  720p25
  fourcc mx5p        ; MPEG IMX 625/50 (50 Mb/s)
  fourcc MMES,mmes   ; matrox mpeg2 in avi
  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 xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc mp2v,mpgv
  fourcc LMP2 ; Lead mpeg2 in avi
  driver libmpeg2
;  dll "libmpeg2"
  out YV12,I420,IYUV
  out 422P

videocodec ffmpeg12mc
  info "FFmpeg MPEG-1/2 (XvMC)"
  status buggy
  format 0x10000001  ; MPEG-1
  format 0x10000002  ; MPEG-2
  fourcc mpg1,mpg2,MPG2
  fourcc "DVR "
  fourcc hdv1
  fourcc hdv2
  fourcc PIM1        ; Pinnacle hardware-MPEG-1
  fourcc PIM2        ; Pinnacle hardware-MPEG-2
  fourcc VCR2
  fourcc MPEG
  fourcc hdv3        ; HDV 1080i50
  fourcc hdv5        ; HDV  720p25
  fourcc mx5p        ; MPEG IMX 625/50 (50 Mb/s)
  fourcc MMES,mmes   ; matrox mpeg2 in avi
  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 xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc mp2v,mpgv
  fourcc LMP2 ; Lead mpeg2 in avi
  driver ffmpeg
  dll "mpegvideo_xvmc"
  out IDCT_MPEG2
  out MOCO_MPEG2

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 VCR2
  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 MMES,mmes   ; matrox mpeg2 in avi
  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 xd5a,xd5b,xd5c
  fourcc xd5d,xd5e,xd5f
  fourcc xd59
  fourcc mx5n,mx4n,mx4p
  fourcc mx3n,mx3p
  fourcc AVmp
  fourcc mp2v,mpgv
  fourcc LMP2 ; Lead mpeg2 in avi
  driver ffmpeg
  dll "mpegvideo_vdpau"
  out VDPAU_MPEG1
  out VDPAU_MPEG2

; 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
  out I420

videocodec ffbmp
  info "FFmpeg BMP"
  status working
  fourcc "bmp " ; for BMP-encoded QuickTime files
  format 0x706D62 ;               AVI
  driver ffmpeg
  dll bmp
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8

videocodec ffgif
  info "FFmpeg GIF"
  status working
  fourcc "gif " ; for GIF-encoded QuickTime files
  driver ffmpeg
  dll gif
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8

videocodec fftiff
  info "FFmpeg TIFF"
  status working
  fourcc "tiff" ; for TIFF-encoded QuickTime files
  driver ffmpeg
  dll tiff
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8

videocodec ffpcx
  info "FFmpeg PCX"
  status working
  fourcc "pcx "
  driver ffmpeg
  dll pcx
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8

videocodec ffpng
  info "FFmpeg PNG"
  status working
  fourcc mpng,MPNG
  fourcc "png " ; for PNG-encoded QuickTime files
  driver ffmpeg
  dll png
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8

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
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8

videocodec fftga
  info "FFmpeg TGA"
  status untested
  fourcc mtga,MTGA
  fourcc "tga " ; for TGA-encoded QuickTime files
  driver ffmpeg
  dll targa
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8

videocodec mtga
  info "TGA image"
  status working
  comment "Only 24bpp and 32bpp RGB TGA files supported"
  fourcc mtga,MTGA
  driver mtga
  out BGR32,BGR24

videocodec sgi
  info "SGI image"
  status working
  fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC
  driver sgi
  out BGR24

videocodec ffsunras
  info "FFmpeg SUN Rasterfile"
  status working
  fourcc "sun " ; sun is an internal MPlayer FOURCC
  driver ffmpeg
  dll sunrast
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8

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

videocodec fffli
  info "Autodesk FLI/FLC Animation"
  status working
  fourcc FLIC ; FLIC is an internal MPlayer FOURCC
  driver ffmpeg
  dll "flic"
  out BGR16,BGR15,BGR8 query

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

videocodec ffloco
  info "LOCO video"
  status working
  fourcc LOCO
  driver ffmpeg
  dll "loco"
  out 422P,YV12,BGR32,BGR24 query

videocodec ffqtrle
  info "QuickTime Animation (RLE)"
  status working
  format 0x20656C72 ; "rle "
  driver ffmpeg
  dll "qtrle"
  out BGR32,RGB24,BGR15,BGR8 query

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

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

videocodec ff8bps
  info "Planar RGB (Photoshop)"
  status working
  fourcc 8BPS
  driver ffmpeg
  dll "8bps"
  out BGR32,BGR24,BGR8 query

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

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

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

videocodec lzo
  info "LZO compressed"
  status working
  fourcc LZO1
  driver lzo
  dll "liblzo"
  out YV12,I420
  out BGR24 flip

videocodec theora
  info "Theora (free, reworked VP3)"
  status working
  fourcc theo,Thra
  driver theora
  dll libtheora
  out YV12

; prefer native codecs over win32?
; the win32 codecs probably are (better) optimized and support direct
; rendering, so this may be not the best idea...

;WIN32:

videocodec smartsight
  info "Verint Video Manager"
  status working
  fourcc SN40
  fourcc SN41,SJPG ; untested
  driver vfw
  dll "SN4Codec.dll"
  out BGR24 flip

videocodec msuscls
  info "MSU Screen Capture Lossless Codec"
  status working
  fourcc SCLS
  driver vfw
  dll "SCLS.DLL"
  out BGR32,BGR24,BGR16 flip

videocodec wincam
  info "wincam screen capture codec"
  comment "requires Zlib.dll"
  status working
  fourcc WCMV
  driver vfw
  dll "wcmv.dll" ; requires Zlib.dll
  out BGR15 flip

videocodec cram
  info "Microsoft Video 1"
  comment "-vf palette required for 8bpp"
  status buggy
  fourcc cram,CRAM CRAM
  fourcc msvc,MSVC CRAM
  fourcc wham,WHAM CRAM
  driver vfw
  dll "msvidc32.dll"
  out BGR24,BGR15,BGR8 static,query

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

videocodec cvidvfw
  info "Cinepak Video"
  status working
  fourcc cvid
  driver vfw
  dll "iccvid.dll"
;  out YUY2
;  out UYVY
  out BGR24,BGR15 static

videocodec huffyuv
  info "HuffYUV"
  status buggy
  fourcc HFYU
  driver vfw
  dll "huffyuv.dll"
  out YUY2 flip,noflip,query
;  out UYVY flip
  out BGR32,BGR24 flip,query

;NATIVE:

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

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

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

;XAnim (slow):

videocodec cvidxa
  info "XAnim's Radius Cinepak Video"
  status buggy
  fourcc cvid
  driver xanim
  dll "vid_cvid.xa"
  out YV12,IYUV,I420 static

; time to decide what to do with the MPEG-4/DivX variants...
; ff* is fastest...

videocodec ffhuffyuv
  info "FFmpeg HuffYUV"
  status working
  fourcc HFYU,FFVH
  driver ffmpeg
  dll huffyuv
  out YUY2,422P,YV12
  out BGR32,BGR24

videocodec ffv1
  info "FFV1 (lossless codec)"
  status working
  fourcc FFV1
  driver ffmpeg
  dll ffv1
  out 411P,444P,422P,YV12,I420,IYUV,YVU9
  out BGR32

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

videocodec ffasv1
  info "FFmpeg ASUS V1"
  status working
  fourcc ASV1
  driver ffmpeg
  dll asv1
  out YV12,I420,IYUV

videocodec ffasv2
  info "FFmpeg ASUS V2"
  status working
  fourcc ASV2
  driver ffmpeg
  dll asv2
  out YV12,I420,IYUV

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

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

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

videocodec ff4xm
  info "FFmpeg 4XM video"
  status working
  fourcc 4XMV
  driver ffmpeg
  dll 4xm
  out BGR15,BGR16 query

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

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

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

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

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

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
  out YV12,I420,IYUV

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

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

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

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

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

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

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

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 ffh264
  info "FFmpeg H.264"
  status working
  fourcc H264,h264
  fourcc X264,x264
  fourcc avc1,AVC1
  fourcc davc,DAVC
  format 0x10000005
  driver ffmpeg
  dll h264
  out YV12,I420,IYUV

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

videocodec ffsvq3
  info "FFmpeg Sorenson Video v3 (SVQ3)"
  status working
  fourcc SVQ3
  driver ffmpeg
  dll svq3
  out YV12,I420,IYUV

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
  driver ffmpeg
  dll mpeg4 ;opendivx
  out YV12,I420,IYUV

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
  out I420,IYUV,422P,444P

videocodec fflibdirac
  info "Dirac (through FFmpeg libdirac)"
  status working
  fourcc drac
  driver ffmpeg
  dll libdirac
  out I420,IYUV,422P,444P

videocodec xvid
  info "Xvid (MPEG-4)"
  status working
  fourcc FMP4,fmp4
  fourcc DIVX,divx
  fourcc xvid,XVID,XviD,XVIX
  fourcc DIV1,div1 divx
  fourcc MP4S,mp4s      ; ISO MPEG-4 Video V1
  fourcc M4S2,m4s2
  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
  fourcc FFDS
  fourcc DCOD,MVXM,EM4A,PM4V
  fourcc M4T3,DMK2,DIGI,INMC
  fourcc EPHV,SN40
  format 0x10000004  ; mpeg 4 es
  driver xvid
  out YV12
  out I420
  out YUY2
  out UYVY
  out YVYU
  out BGR32,BGR24,BGR16,BGR15
  dll "libxvidcore.a"

; is divx4vfw stable enough, working everywhere and faster than divxds?

videocodec divx4vfw
  info "DivX4Windows-VFW"
  status buggy
  comment "sig11 with -framedrop"
  fourcc DIVX,divx        ; opendivx / divx4
  fourcc DIV1,div1 divx
;  fourcc MP4S,mp4s       ; ISO MPEG-4 Video V1
  fourcc MP43,mp43,DIV3,div3,DIV4,div4 DIV3  ; for DivX4Linux only!
  fourcc AP41 DIV3        ; AngelPotion stuff
  format 0x4
  driver vfw
  dll "divx.dll"
;  out YV12   ; buggy
  out YUY2
  out BGR32,BGR24,BGR15

; the original ones...  prefer DShow for postprocessing:

videocodec divxds
  info "DivX ;-) (MSMPEG-4 v3)"
  comment "with postprocessing"
  status working
  fourcc MP43,mp43 div3   ; fourcc mapping to div3
  fourcc DIV5,div5 div3
  fourcc DIV6,div6 div4
  fourcc DIV3,div3,DIV4,div4
  fourcc AP41 div3        ; AngelPotion stuff
  driver dshow
  dll "divx_c32.ax"
  guid 0x82CCd3E0, 0xF71A, 0x11D0, 0x9f, 0xe5, 0x00, 0x60, 0x97, 0x78, 0xaa, 0xaa
  out YUY2,UYVY
  out BGR32,BGR24,BGR16,BGR15

videocodec divx
  info "DivX ;-) (MSMPEG-4 v3)"
  status working
  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 AP41 div3        ; AngelPotion stuff
  driver vfw
  dll "divxc32.dll"
  out YUY2 yuvhack
  out BGR32,BGR24,BGR15

; hmm. we should check, maybe these are/will be playable with libavcodec:

videocodec mpeg4ds
  info "Microsoft MPEG-4 v1/v2"
  status working
  comment "with postprocessing"
  fourcc DIV2,div2 mp42
  fourcc MP4S,mp4s      ; ISO MPEG-4 Video V1
  fourcc MPG4,mpg4
  fourcc MP42,mp42
  driver dshow
  dll "mpg4ds32.ax"
  guid 0x82CCD3E0, 0xF71A, 0x11D0, 0x9F, 0xE5, 0x00, 0x60, 0x97, 0x78, 0xEA, 0x66
  out YUY2
;  out BGR32,BGR24,BGR16,BGR15

videocodec mpeg4
  info "Microsoft MPEG-4 v1/v2"
  status working
  fourcc MPG4,mpg4
  fourcc MP42,mp42
  fourcc DIV2 mp42
  driver vfw
  dll "mpg4c32.dll"
  out YUY2 yuvhack
  out BGR32,BGR24,BGR15

videocodec wmv9dmo
  info "Windows Media Video 9 DMO"
  status working
  fourcc WMV3
  fourcc WMVP
  driver dmo
  dll "wmv9dmod.dll"
  guid 0x724bb6a4, 0xe526, 0x450f, 0xaf, 0xfa, 0xab, 0x9b, 0x45, 0x12, 0x91, 0x11
  out YV12 ;,I420,IYUV
  out YUY2,UYVY
;  out BGR32,BGR24,BGR16 ;,BGR15

videocodec wmvdmo
  info "Windows Media Video DMO"
  status working
  fourcc WMV1
  fourcc WMV2
  fourcc WMV3
  fourcc WMVP
  driver dmo
  dll "wmvdmod.dll"
  guid 0x82d353df, 0x90bd, 0x4382, 0x8b, 0xc2, 0x3f, 0x61, 0x92, 0xb7, 0x6e, 0x34
  out YV12 ;,I420,IYUV
  out YUY2,UYVY
;  out BGR32,BGR24,BGR16 ;,BGR15

videocodec wmv8
  info "Windows Media Video 8"
  status working
  fourcc WMV2
  driver dshow
  dll "wmv8ds32.ax"
  guid 0x521fb373, 0x7654, 0x49f2, 0xbd, 0xb1, 0x0c, 0x6e, 0x66, 0x60, 0x71, 0x4f
  out YV12,I420,IYUV
  out YUY2,UYVY
;  out BGR32,BGR24,BGR16,BGR15

videocodec wmv7
  info "Windows Media Video 7"
  status working
  fourcc WMV1
  driver dshow
  dll "wmvds32.ax"
  guid 0x4facbba1, 0xffd8, 0x4cd7, 0x82, 0x28, 0x61, 0xe2, 0xf6, 0x5c, 0xb1, 0xae
  out YUY2,UYVY
;  out BGR32,BGR24,BGR16,BGR15

videocodec wmvadmo
  info "Windows Media Video Adv DMO"
  status working
  fourcc WMVA
  fourcc WVP2
  driver dmo
  dll "wmvadvd.dll"
  guid 0x03be3ac4, 0x84b7, 0x4e0e, 0xa7, 0x8d, 0xd3, 0x52, 0x4e, 0x60, 0x39, 0x5a
  out YV12 ;,I420,IYUV
  out YUY2,UYVY
;  out BGR32,BGR24,BGR16 ;,BGR15

videocodec wmvvc1dmo
  info "Windows Media Video (VC-1) Advanced Profile"
  status working
  fourcc WVC1
  driver dmo
  dll "wvc1dmod.dll"
  guid 0xc9bfbccf, 0xe60e, 0x4588, 0xa3, 0xdf, 0x5a, 0x03, 0xb1, 0xfd, 0x95, 0x85
  out YV12,YUY2

videocodec wmsdmod
  info "Windows Media Screen Codec 2"
  status working
  fourcc MSS1
  fourcc MSS2
  driver dmo
  dll "wmsdmod.dll"
  guid 0x7bafb3b1, 0xd8f4, 0x4279, 0x92, 0x53, 0x27, 0xda, 0x42, 0x31, 0x08, 0xde
  out BGR32,BGR24,BGR16

videocodec gotomeeting
  info "GoToMeeting codec"
  status working
  fourcc G2M2,G2M3
  driver dmo
  dll "G2M.dll"
  guid 0x23F891A4, 0x572B, 0x474A, 0x86, 0xDA, 0x66, 0xCD, 0xD3, 0xD1, 0xAC, 0x2E
  out BGR24,RGB24 flip

videocodec ubmp4
  info "UB Video MPEG-4"
  comment "black&white"
  status buggy
  fourcc mp4v UMP4 ; black&white, sometimes buggy too
  fourcc UMP4
  driver vfw
  dll "ubvmp4d.dll"
  out I420
  out UYVY

videocodec geomp4
  info "GeoVision Advanced MPEG-4"
  status working
  fourcc GMP4,GM40
  driver vfw
  dll "GXAMP4.dll"
  out BGR24 flip

; 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 zrmjpeg
  info "Zoran MJPEG passthrough"
  status buggy
  fourcc MJPG,jpeg
  driver zrmjpeg
  out ZRMJPEGNI,ZRMJPEGIT,ZRMJPEGIB query

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
  driver ffmpeg
  dll mjpeg
  out 444P
  out 422P
  out YUY2  ; queried (conversion from yuv422p)
  out YV12,I420,IYUV
  out BGR32 ; lossless JPEG
  out RGB24 ; JPEG-LS
  out Y800

videocodec ffmjpegb
  info "FFmpeg MJPEG-B"
  status working
  fourcc mjpb       ; Apple MJPEG-B (Quicktime)
  driver ffmpeg
  dll mjpegb
  out 444P
  out 422P
  out YUY2  ; queryed (conversion from yuv422p)
  out YV12,I420,IYUV

; slow. usable only for standalone JPEGs, like -mf, avid or Photo-JPEG:
videocodec ijpg
  info "Independent JPEG Group's codec"
  status working
  fourcc ijpg,IJPG   ; -mf type=jpeg
  fourcc jpeg        ; MOV Photo-JPEG
  fourcc AVRn,AVDJ   ; AVID
  fourcc CJPG
  driver ijpg
  dll libjpeg
  out RGB24,Y8

; http://www.morgan-multimedia.com/dev/codec_spec.htm
videocodec m3jpeg
  info "Morgan Motion JPEG Codec"
  status working
  fourcc MJPG
  fourcc mjpa,mjpb,mjpg MJPG  ; MOV files
  fourcc dmb1 MJPG            ; MJPEG by Matrox Rainbow Runner
  driver vfw
  dll "m3jpeg32.dll"
;  out YV12,I420
  out YUY2,UYVY
  out BGR32,BGR24,BGR15

videocodec mjpeg
  info "MainConcept Motion JPEG"
  status working
  fourcc MJPG
  fourcc mjpa,mjpb,mjpg MJPG  ; MOV files
;  fourcc AVRn,AVDJ MJPG ; AVID (sometimes buggy)
  driver vfw
  dll "mcmjpg32.dll"
  out YUY2,UYVY
  out BGR32,BGR24,BGR15

videocodec avid
  info "AVID Motion JPEG"
  status working
  comment "slooooooooow but stable"
  fourcc AVRn
  fourcc AVDJ AVRn
  fourcc MJPG,mjpg AVRn
  driver vfw
  dll "AvidAVICodec.dll"
  out BGR24 flip

videocodec LEAD
  info "LEAD (M)JPEG"
  status working
  comment "supports interlaced MJPEG"
  fourcc MJPG
  fourcc jpeg MJPG  ; MOV Photo-JPEG
  fourcc LEAD
  driver vfw
  dll "LCodcCMP.dll"
  out BGR24,BGR15

videocodec acdsee
  info "ACDSee mjpeg"
  status working
  fourcc ACDV
  driver vfw
  dll "ACDV.dll"
  out BGR32,BGR24,BGR15 flip

videocodec imagepower
  info "ImagePower MJPEG2000"
  status buggy
  fourcc IPJ2
  driver vfw
  dll "jp2avi.dll"
  out BGR32,BGR24,BGR15

videocodec m3jpeg2k
  info "Morgan MJPEG2000"
  status working
  fourcc MJ2C
  fourcc MJP2
  driver vfw
  dll "m3jp2k32.dll"
  out YV12,I420,IYUV
  out YUY2,UYVY
  out BGR32,BGR24,BGR15

; http://www.morgan-multimedia.com/dev/directshow_dec_spec.htm
videocodec m3jpegds
  info "Morgan MJPEG"
  status crashing
  fourcc MJPG mjpg
  fourcc mjpa,mjpb,mjpg mjpg  ; MOV files
  fourcc dmb1 mjpg            ; MJPEG by Matrox Rainbow Runner
  driver dshow
  dll "m3jpegdec.ax"
  guid 0x6988b440, 0x8352, 0x11d3, 0x9b, 0xda, 0xca, 0x86, 0x73, 0x7c, 0x71, 0x68
  out I420
  out YUY2,UYVY
  out BGR32,BGR24,BGR16,BGR15

videocodec pegasusm
  info "Pegasus Motion JPEG"
  status crashing
  fourcc MJPG
  driver vfw
;  dll "pvmjpg20.dll"   ; v2.0
  dll "pvmjpg21.dll"    ; v2.1
  out BGR24 flip

videocodec pegasusl
  info "Pegasus lossless JPEG"
  status crashing
  fourcc JPGL
  fourcc MJPG JPGL
  driver vfw
  dll "pvljpg20.dll"
  out BGR24 flip

videocodec pegasusmwv
  info "Pegasus Motion Wavelet 2000"
  status crashing
  fourcc PVW2
  driver vfw
  dll "pvwv220.dll"
  out BGR24 flip

videocodec frwuvfw
  info "Forward Uncompressed Video Codec"
  status working
  fourcc FRWU
  driver vfw
  dll "FRWU.dll"
  out BGR24 flip

videocodec frwdvfw
  info "Forward JPEG Video Codec"
  status working
  fourcc FRWD
  driver vfw
  dll "FRWD.dll"
  out BGR24 flip

videocodec frwtvfw
  info "Forward JPEG+Alpha Video"
  status working
  fourcc FRWT
  driver vfw
  dll "FRWT.dll"
  out BGR24 flip

; h263: - I don't know. comments?

videocodec vivo
  info "Vivo H.263"
  status working
  fourcc VIVO,vivo vivo
  fourcc viv1,viv2 vivo
  driver vfw
  dll "ivvideo.dll"
  out BGR32,BGR24,BGR15 flip
  in BGR24

videocodec u263
  info "UB Video H.263/H.263+/H.263++"
  status working
  fourcc U263
  fourcc vivo,VIVO U263
  fourcc viv1 U263
  driver dshow
  dll "ubv263d+.ax"
  guid 0x00af1181, 0x6ebb, 0x11d4, 0x9d, 0x5a, 0x00, 0x50, 0x04, 0x79, 0x6c, 0xc0
;  out UYVY
; BGR32,BGR16,BGR15 seems to work too
  out BGR24 flip

videocodec i263
  info "I263"
  status working
  fourcc I263,i263
;  fourcc I420,i420
  fourcc vivo,VIVO I263
  fourcc viv1 I263
  driver vfw
  dll "i263_32.drv"
  out I420
  out YUY2
  out BGR32,BGR24,BGR15

videocodec ffi263
  info "FFmpeg I263"
  status working
  fourcc I263,i263
  driver ffmpeg
  dll h263i
  out YV12,I420,IYUV

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
  out YV12,I420,IYUV

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

videocodec h263xa
  info "XAnim's CCITT H.263"
  status crashing
  fourcc H263,h263
  fourcc viv1 H263
  fourcc VIVO,vivo H263
  driver xanim
  dll "vid_h263.xa"
  out YV12,IYUV,I420

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

videocodec qt261
  info "QuickTime H.261 video"
  status working
  fourcc H261,h261
  driver qtvideo
  dll "QuickTime.qts"
  out YUY2

videocodec h261xa
  info "XAnim's CCITT H.261"
  status buggy
  fourcc H261,h261
  driver xanim
  dll "vid_h261.xa"
  out YV12,IYUV,I420

videocodec m261
  info "M261"
  status untested
  fourcc m261,M261
  driver vfw
  dll "msh261.drv"
  out BGR32,BGR24,BGR15

; Indeo:
; Note: Indeo 3 is buggy, both XAnim (bad decoding) and VfW (fails with DR)
; Prefer win32 ones, they are faster, and 4/5 can DR. For fallback, there are
; Xanim codecs, they provide YV12, useful for YUV display or encoding.

videocodec indeo5ds
  info "Intel Indeo 5"
  status working
  fourcc IV50,iv50
  driver dshow
  dll "ir50_32.dll"
  guid 0x30355649, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71
  out YV12,IYUV,I420
  out YUY2,UYVY
  out BGR32,BGR24,BGR16,BGR15

videocodec indeo5
  info "Intel Indeo 5"
  status working
  fourcc IV50,iv50
  driver vfwex
  dll "ir50_32.dll"
;  out YV12,I420   ; flickering
  out YUY2
  out BGR32,BGR24,BGR15

videocodec indeo4
  info "Intel Indeo 4.1"
  status working
  fourcc IV41,iv41
  driver vfw
  dll "ir41_32.dll"
  out IF09
  out BGR24,BGR15
  in YVU9

videocodec indeo3
  info "Intel Indeo 3.1/3.2"
  status working
  fourcc IV31,iv31
  fourcc IV32,iv32
  driver vfwex
  dll "ir32_32.dll"
  out IF09
  out BGR24,BGR15 flip,static
  in YVU9

videocodec indeo5xa
  info "XAnim's Intel Indeo 5"
  status working
  fourcc IV50,iv50
  driver xanim
  dll "vid_iv50.xa"
  out YVU9

videocodec indeo4xa
  info "XAnim's Intel Indeo 4.1"
  status working
  fourcc IV41,iv41
  driver xanim
  dll "vid_iv41.xa"
  out YVU9

videocodec indeo3xa
  info "XAnim's Intel Indeo 3.1/3.2"
  status working
  fourcc IV31,iv31
  fourcc IV32,iv32
  driver xanim
  dll "vid_iv32.xa"
  out YVU9

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

videocodec ffdv
  info "FFmpeg DV"
  status working
  fourcc CDVC,cdvc
  fourcc DVSD,dvsd   ; PAL
  fourcc DVCS,dvcs   ; NTSC ?
  fourcc "dvcp"      ; PAL DV in .mov
  fourcc "dvc "      ; NTSC DV in .mov
  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
  driver ffmpeg
  dll dvvideo
  out 411P,422P,YV12

videocodec qdv
  info "Sony Digital Video (DV)"
  status working
  fourcc dvsl,dvsd,dvhd  ; ????
  fourcc DVSD dvsd   ; pal .avi
  fourcc "dvcp" dvsd ; pal .mov
  fourcc "dvc " dvsd ; ntsc .mov
  driver dshow
  dll "qdv.dll"
  guid 0xB1B77C00, 0xC3E4, 0x11CF, 0xAF, 0x79, 0x00, 0xAA, 0x00, 0xB6, 0x7A, 0x42
  out YUY2
  out UYVY
  out BGR24,BGR16,BGR15 ; BGR32 is buggy, at least with one sample

videocodec libdv
  info "Raw DV (libdv)"
  status working
  fourcc DVSD,dvsd   ; PAL
  fourcc DVCS,dvcs   ; NTSC ?
  fourcc "dvcp"      ; PAL DV in .mov
  fourcc "dvc "      ; NTSC DV in .mov
  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   ; AVID DV
  fourcc dvhq,dvhp
  fourcc dvh5,dvh6,dvh3
  driver libdv
  dll libdv.so.2
  out YUY2

; note: it crashes with pond.dv :(
videocodec mcdv
  info "MainConcept DV Codec"
  status working
  fourcc DVSD,dvsd   ; PAL
  fourcc DVCS,dvcs   ; NTSC ?
  fourcc CDVC,cdvc   ; ???
  fourcc "dvcp" dvsd ; PAL DV in .mov
  fourcc "dvc " dvcs ; NTSC DV in .mov
  driver vfw
  dll "mcdvd_32.dll"
  out YUY2
  out UYVY
  out BGR32,BGR24,BGR15

; 3ivx:

videocodec 3ivXxa
  info "XAnim's 3ivx Delta 3.5 plugin"
  status working
  fourcc 3IV1
  driver xanim
  dll "vid_3ivX.xa"
  out YV12,IYUV,I420

videocodec 3ivX
  info "3ivx Delta 4.5"
  status working
  fourcc 3IV1
  driver dshow
  dll "3ivxDSDecoder.ax" ; 3ivx.dll is also required
  guid 0x0E6772C0, 0xDD80, 0x11D4, 0xB5, 0x8f, 0xA8, 0x6B, 0x66, 0xd0, 0x61, 0x1c
  out YV12
  out YUY2
  out BGR32,BGR24,BGR16,BGR15

; RealVideo variants

videocodec rv3040
  info "Linux RealPlayer 10 RV30/40"
  status buggy ; tries to use multi-threaded decoding on SMP systems and crashes on exit
  fourcc RV30,rv30
  fourcc RV40,rv40
  driver realvid
  dll "drvc.so"
  out I420

videocodec rv3040win
  info "Win32 RealPlayer 10 RV30/40"
  status working
  fourcc RV30,rv30
  fourcc RV40,rv40
  driver realvid
  dll "drvc.dll"
  out I420

videocodec rv40
  info "Linux RealPlayer 9 RV40"
  status buggy
  fourcc RV40,rv40
  driver realvid
  dll "drv4.so.6.0"
  out I420

videocodec rv40win
  info "Win32 RealPlayer 9 RV40"
  status working
  fourcc RV40,rv40
  driver realvid
  dll "drv43260.dll"
  out I420

videocodec rv40mac
  info "Mac OS X RealPlayer 9 RV40"
  status working
  fourcc RV40,rv40
  driver realvid
  dll "drvc.bundle/Contents/MacOS/drvc"
  out I420

videocodec rv30
  info "Linux RealPlayer 8 RV30"
  status buggy
  fourcc RV30,rv30
  driver realvid
  dll "drv3.so.6.0"
  out I420

videocodec rv30win
  info "Win32 RealPlayer 8 RV30"
  status working
  fourcc RV30,rv30
  driver realvid
  dll "drv33260.dll"
  out I420

videocodec rv30mac
  info "Mac OS X RealPlayer 9 RV30"
  status working
  fourcc RV30,rv30
  driver realvid
  dll "drvc.bundle/Contents/MacOS/drvc"
  out I420

videocodec ffrv20
  info "FFmpeg RV20"
  status working
  fourcc RV20,rv20
  fourcc RVTR
  driver ffmpeg
  dll rv20
  out YV12,I420,IYUV

videocodec ffrv30
  info "FFmpeg RV30"
  status buggy
  fourcc RV30,rv30
  driver ffmpeg
  dll rv30
  out YV12,I420,IYUV

videocodec ffrv40
  info "FFmpeg RV40"
  status working
  fourcc RV40,rv40
  driver ffmpeg
  dll rv40
  out YV12,I420,IYUV

videocodec rv20
  info "Linux RealPlayer 8 RV20"
  status buggy
  fourcc RV20,rv20
  driver realvid
  dll "drv2.so.6.0"
  out I420

videocodec rv20winrp10
  info "Win32 RealPlayer 10 RV20"
  status working
  fourcc RV20,rv20
  driver realvid
  dll "drv2.dll"
  out I420

videocodec rv20win
  info "Win32 RealPlayer 8 RV20"
  status working
  fourcc RV20,rv20
  driver realvid
  dll "drv23260.dll"
  out I420

videocodec rv20mac
  info "Mac OS X RealPlayer 9 RV20"
  status working
  fourcc RV20,rv20
  driver realvid
  dll "drv2.bundle/Contents/MacOS/drv2"
  out I420

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

; others:

videocodec alpary
  info "Alparysoft lossless codec dshow"
  status working
  fourcc ASLC
  driver dshow
  dll "aslcodec_dshow.dll"
  guid 0x7f9de066, 0xbf3d, 0x4c17, 0x86, 0xb7, 0x33, 0xe4, 0x3e, 0xbe, 0xae, 0xf0
  out BGR24 flip

videocodec alpary2
  info "Alparysoft lossless codec vfw"
  status working
  fourcc ASLC
  driver vfw
  dll "aslcodec_vfw.dll"
  out BGR24 flip

videocodec LEADMW20
  info "Lead CMW wavelet 2.0"
  status working
  fourcc LCW2
  driver dshow
  dll "LCODCCMW2E.dll"; eval also needs LCMW2.dll
  guid 0xe2b7dc56, 0x38c5, 0x11d5, 0x91, 0xf6, 0x00, 0x10, 0x4b, 0xdb, 0x8f, 0xf9
  out BGR24,BGR8 flip

videocodec lagarith
  info "Lagarith Lossless Video Codec"
  comment "http://lags.leetcode.net/codec.html, requires an MMX2 CPU."
  status working
  fourcc LAGS
  driver vfw
  dll "lagarith.dll"
  out BGR32,BGR24 flip

videocodec psiv
  info "Infinite Video PSI_V"
  status working
  fourcc PSIV
  driver vfw
  dll "psiv.dll"
  out BGR32,BGR24 query,flip

videocodec midivid3
  info "www.midivid.com/codec/mv3codec.html"
  status working
  fourcc MV30
  driver vfw
  dll "MV3.dll"
  out BGR24,BGR16

videocodec moyea
  info "Moyea Flash to Video Converter"
  comment "requires zlib1.dll" ; c7d4d685a0af2a09cbc21cb474358595
  status working
  fourcc MFZ0
  driver vfw
  dll "MyFlashZip0.ax"
  out BGR24 flip

videocodec nsvideo
  info "Power VideoWorks video"
  status working
  fourcc NSVI
  driver vfw
  dll "nsvideo.dll"
  out BGR24 flip

videocodec smv2vfw
  info "DideoNET SMV2"
  status working
  fourcc SMV2
  driver vfw
  dll "smv2vfw.dll"
  out BGR32,BGR24,BGR8,RGB32,RGB24,RGB8 flip

videocodec canopushq
  status working
  info "Canopus HQ Codec"
  comment "requires csehqa.dll and cseuvec.dll"
  fourcc CUVC
  driver vfw
  dll "CUVCcodc.dll"
  out BGR24

videocodec canopusll
  status working
  info "Canopus Lossless Codec"
  comment "requires csellc.dll"
  fourcc CLLC
  driver vfw
  dll "CLLCcodc.dll"
  out BGR24

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

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

videocodec vp3
  info "On2 Open Source VP3 Codec"
  status working
  comment "For SSE-systems use fixed DLL from ftp://mplayerhq.hu/MPlayer/samples/drivers32/"
  fourcc VP30,vp30,VP31,vp31
  flags align16
  driver vfwex
  dll "vp31vfw.dll"
  out YUY2
  out BGR32,BGR24,BGR15

videocodec vp4
  info "On2 VP4 Personal Codec"
  comment "Decodes also VP3"
  status working
  fourcc VP40
  fourcc VP31,VP30,vp31,vp30
  driver vfwex
  dll "vp4vfw.dll"
  out YUY2
  out BGR32,BGR24

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

videocodec vp5
  info "On2 VP5 Personal Codec"
  status working
  fourcc VP50
  driver vfwex
  dll "vp5vfw.dll"
  out YUY2
  out BGR32,BGR24

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

videocodec ffvp6a
  info "FFmpeg VP6A"
  status untested
  fourcc VP6A
  driver ffmpeg
  dll "vp6a"
  out I420,YUY2,YV12

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

videocodec vp6
  info "On2 VP6 Personal Codec"
  status working
  fourcc VP60,VP61,VP62
  fourcc VP6F VP60
  driver vfwex
  dll "vp6vfw.dll"
  out YUY2
  out BGR32,BGR24

videocodec vp7
  info "On2 VP7 Personal Codec"
  status working
  fourcc VP70
  driver vfwex
  dll "vp7vfw.dll"
  out YUY2
  out BGR32,BGR24

videocodec mwv1
  info "Motion Wavelets"
  status working
  fourcc MWV1
  driver vfw
  dll "icmw_32.dll"
  out BGR24,BGR15 flip

videocodec wavcvfw
  info "centre for wavelets, approximation and infromation processing"
  status working
  fourcc wavc
  driver vfw
  dll "WavCWAIP.dll"
  out BGR24 flip

videocodec asv2
  info "ASUS V2"
  status working
  fourcc ASV2
  driver vfw
  dll "asusasv2.dll"
  out UYVY
  out BGR32,BGR24,BGR15 flip

videocodec asv1
  info "ASUS V1"
  status working
  fourcc ASV1
  driver vfw
  dll "asusasvd.dll"
  out UYVY
  out BGR32,BGR24,BGR15 flip

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

videocodec ultimotion
  info "IBM Ultimotion"
  status working
  fourcc ULTI
  driver vfw
  dll "ultimo.dll"
  out YUY2,UYVY
  out BGR32,BGR24,BGR15 flip

videocodec mss1
  info "Windows Screen Video"
  status working
  fourcc MSS1
  driver dshow
  dll "msscds32.ax"
  guid 0x3301a7c4, 0x0a8d, 0x11d4, 0x91, 0x4d, 0x00, 0xc0, 0x4f, 0x61, 0x0d, 0x24
  out BGR32,BGR24,BGR16,BGR15

; CLRVIDDC.DLL needed too, with uppercase
videocodec ucod
  info "UCOD-ClearVideo"
  status working
  fourcc UCOD
  driver vfw
  dll "clrviddd.dll"
  out BGR32,BGR24,BGR15 flip

videocodec vcr2
  info "ATI VCR-2"
  status working
  fourcc VCR2
  driver vfw
  dll "ativcr2.dll"
  out YV12
  out BGR24

videocodec cjpg
  info "Creative Labs Video Blaster Webcam"
  comment "sequential jpeg files?"
  status working
  fourcc CJPG
  driver vfw
  dll "CtWbJpg.DLL"
  out YUY2
  out UYVY
  out BGR24,BGR15

videocodec kensington
  info "kensington webcam"
  status working
  fourcc AJPG,ABYR
  fourcc LBYR,JBYR  ; untested, creative labs cam
  fourcc UV12               ; untested 
  driver vfw
  dll "aoxdxipl.ax"
  out BGR24 flip

videocodec xjpg
  info "xiricam Veo PC Camera"
  status working
  fourcc XJPG
  driver vfw
  dll "camfc.dll"
  out BGR24 flip

videocodec ffduck
  info "Duck Truemotion1"
  status working
  fourcc DUCK
  fourcc PVEZ
  driver ffmpeg
  dll "truemotion1"
  out BGR15,BGR16,BGR24,BGR32 query

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

; our BGR15->BGR32 is bad or the DLL?
videocodec tm20
  info "TrueMotion 2.0"
  status working
  comment "YUV faulting"
  fourcc TM20
  driver dshow
  dll "tm20dec.ax"
  guid 0x4cb63e61, 0xc611, 0x11D0, 0x83, 0xaa, 0x00, 0x00, 0x92, 0x90, 0x01, 0x84
  out BGR32,BGR24,BGR16 flip

videocodec sif1vfw
  info "sif1 alpha4"
  status working
  fourcc SIF1
  driver vfw
  dll "Sif1_vfw.dll"
  out YV12,YUY2

videocodec sif1ds
  info "sif1 alpha4"
  status buggy
  comment "one frame every 5 seconds?"
  fourcc SIF1
  driver dshow
  dll "Sif1Dec.ax"
  guid 0x31666973, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xAA, 0x00, 0x38, 0x9B, 0x71
  out BGR32

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

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

videocodec sp6x
  info "SP6x codec"
  status buggy
  fourcc SP60,SP61,SP62
  driver vfw
  dll "sp6x_32.dll"
  out BGR24 flip

videocodec sp5x
  info "SP5x codec - used by Aiptek MegaCam"
  status working
  fourcc SP53,SP54,SP55,SP56,SP57,SP58
  driver vfw
  dll "sp5x_32.dll"
  out BGR24,BGR15 flip

videocodec sp4x
  info "SP4x codec - used by Aiptek MegaCam"
  status working
  fourcc SP40,SP41,SP42,SP43,SP44,SP45
  fourcc SP46,SP47
  driver vfw
  dll "SP4X_32.DLL"
  out BGR24,BGR15 flip

videocodec bt411
  info "Brooktree 411 codec"
  status working
  fourcc BT20,Y41P
  driver vfwex
  dll "btvvc32.drv"
  out BGR24

videocodec bwmpeg
  info "Broadway MPEG Capture Codec"
  status working
  fourcc BW10
  driver vfwex
  dll "bw10.dll" ;requires vtaccess.dll
  out YV12,YUY2,I420  

videocodec zdsoft
  info "zdsoft screen recorder"
  status working
  fourcc ZDSV
  driver vfwex
  dll "scrvid.dll"
  out BGR32

videocodec webtrain
  info "WebTrain Communication lossless screen recorder"
  status working
  fourcc WTVC
  driver vfw
  dll "wtvc.dll"
  out BGR16 flip

videocodec xfire
  info "xfire video"
  status working
  fourcc XFR1
  driver vfw
  dll "xfcodec.dll"
  out YV12,YUY2

videocodec vfapi
  info "VFAPI rgb transcode codec"
  status untested
  fourcc vifp
  driver vfwex
  dll "VFCodec.dll"
  out BGR24 flip

videocodec eyecon
  info "nokia eti camcorder eyecon"
  status working
  fourcc NUB0,NUB1,NUB2
  driver vfw
  dll "nub2.dll"
  out YV12,YUY2

videocodec smsvvfw
  info "WorldConnect Wavelet Video"
  comment "found in visualmail videos"
  status working
  fourcc SMSV
  driver vfw
  dll "wv32vfw.dll"
  out BGR24 flip

videocodec foxmotion
  info "fox motion video"
  status working
  fourcc FMVC
  driver vfw
  dll "fmcodec.dll"
  out BGR32,BGR24,BGR15 flip

videocodec tridvfw
  status untested
  fourcc ty2c,TY2C,ty0n
  fourcc TY2N,TY0N,T565
  driver vfw
  dll "TRICDC32.DRV"
  out BGR24 flip

videocodec vdtzvfw
  info "Telegeny VDTZ"
  status working
  fourcc VDTZ
  driver vfw
  dll "VTZ32.DLL"
  out BGR24 flip

videocodec vivd2
  info "SoftMedia ViVD V2 codec VfW"
  status working
  fourcc GXVE,gxve
  driver vfw
  dll "ViVD2.dll"
  out YUY2,YV12,I420,YVU9
  out BGR32,BGR24,BGR15

videocodec winx
  info "Winnov Videum winx codec"
  status working
  fourcc WINX
  driver vfwex
  dll "wnvwinx.dll"
  out BGR32,BGR24,BGR15

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

videocodec wnv1
  info "Winnov Videum wnv1 codec"
  status working
  fourcc WNV1
  driver vfwex
  dll "wnvplay1.dll"
  out BGR32,BGR24,BGR15

videocodec vdom
  info "VDOWave codec"
  status working
  fourcc VDOM,VDOW
  driver vfw
  dll "vdowave.drv" ; Need also VDODEC32.dll and DECVW_32.DLL
  out BGR24 flip

videocodec vdowave3
  info "VDOWave 3 advanced codec"
  status working
  fourcc VDO3
  fourcc VDOM,VDOW
  driver vfw
  dll "vdo32_30.drv" ; Need also decvdo.dll
  out BGR24 flip

videocodec lsv
  info "Vianet Lsvx Video"
  status working
  fourcc lsvx
  fourcc lsvm
  fourcc lsvc
  driver vfw
  dll "lsvxdec.dll"
  out BGR32,BGR24,BGR16 flip

videocodec ffvmnc
  info "FFmpeg VMware video"
  status working
  fourcc VMnc
  driver ffmpeg
  dll "vmnc"
  out BGR32,BGR15,BGR8

videocodec vmnc
  info "VMware video"
  status working
  fourcc VMnc
  driver vfw
  dll "vmnc.dll"
  out BGR24,BGR15,BGR8 query,flip

videocodec ffsmkvid
  info "FFmpeg Smacker Video"
  status working
  fourcc SMK2
  fourcc SMK4
  out BGR8
  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"
  out I420

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

; quicktime codecs:

videocodec qt3ivx
  info "win32/quicktime 3IV1 (3ivx)"
  status working
  fourcc 3IV1
  driver qtvideo
  dll "3ivx Delta 3.5.qtx"
  out YUY2

videocodec qtactl
  info "Win32/QuickTime Streambox ACT-L2"
  status working
  fourcc ACTL
  driver qtvideo
  dll ACTLComponent.qtx
  out YUY2

videocodec qtavui
  info "Win32/QuickTime Avid Meridien Uncompressed"
  status working
  fourcc AVUI
  driver qtvideo
  dll "AvidQTAVUICodec.qtx"
  out YUY2

videocodec qth263
  info "Win32/QuickTime H.263"
  status crashing
  fourcc h263
  driver qtvideo
  dll "QuickTime.qts"
  out YUY2

videocodec qtrlerpza
  info "Win32/Quicktime RLE/RPZA"
  comment "no colorspace accepted"
  status crashing
  fourcc rpza
  format 0x20656C72 ; "rle "
  driver qtvideo
  dll "QuickTime.qts"
  out BGR32,BGR24,BGR15

videocodec qtvp3
  info "Win32/QuickTime VP3"
  status crashing
  fourcc VP31
  driver qtvideo
  dll "On2_VP3.qtx"
  out YUY2

videocodec qtzygo
  info "win32/quicktime ZyGo"
  status buggy
  comment "wrong colors"
  fourcc ZyGo,zygo,lsvx
  driver qtvideo
  dll "ZyGoVideo.qtx"
  out BGR32,RGB32

videocodec qtbhiv
  info "Win32/QuickTime BeHereiVideo"
  comment "sample file wanted!"
  status untested
  fourcc bhiv
  driver qtvideo
  dll "BeHereiVideo.qtx"
  out YUY2

videocodec qtcvid
  info "Win32/QuickTime Cinepak"
  status working
  fourcc cvid
  driver qtvideo
  dll "QuickTime.qts"
  out YUY2

videocodec qtindeo
  info "Win32/QuickTime Indeo"
  status crashing
  fourcc IV31,iv31
  fourcc IV32,iv32
  fourcc IV41
  driver qtvideo
  dll "QuickTime.qts"
  out YUY2

videocodec qtmjpeg
  info "Win32/QuickTime MJPEG"
  status crashing
  fourcc dmb1
  fourcc mjpa
  fourcc mjpb
  driver qtvideo
  dll "QuickTime.qts"
  out YUY2

videocodec qtmpeg4
  info "Win32/QuickTime MPEG-4"
  status crashing
  fourcc mp4v
  driver qtvideo
  dll "QuickTime.qts"
  out YUY2

videocodec qtsvq3
  info "Win32/QuickTime SVQ3"
  status working
  fourcc SVQ3
  driver qtvideo
  dll "QuickTimeEssentials.qtx"
  out YUY2

videocodec qtsvq1
  info "Win32/QuickTime SVQ1"
  status buggy
  fourcc SVQ1
  driver qtvideo
  dll "QuickTime.qts"
  out YVU9

videocodec qtcine
  info "cinewave uncompressed 10-bit codec"
  status working
;  fourcc 2yuv,R210,r210,2Vu1,R10g,R10k,r11k    ;untested
  fourcc v210
  driver qtvideo
  dll "CineWave.qtx"
  out BGR32,BGR24,BGR8,Y800,RGB32,RGB24,RGB8
  out YV12,YUY2

; VSS codecs (http://vsofts.com/solutions.html):

videocodec vsslight
  info "VSS Codec Light"
  status working
  fourcc VSSV
  driver vfw
  dll "vsslight.dll"
  out BGR24 flip

videocodec vssh264
  info "VSS H.264 New"
  status working
  fourcc VSSH
  driver dshow
  dll "vsshdsd.dll"
  guid 0x6931C7e7, 0x75b7, 0x4729, 0xa1, 0x53, 0xa8, 0xad, 0x99, 0xbd, 0xf7, 0x0b
  out YV12

videocodec vssh264old
  info "VSS H.264 Old"
  status working
  fourcc VSSH
  driver vfw
  dll "vssh264.dll" ; need also vssh264core.dll, vssh264dec.dll
  out BGR24 flip

videocodec vsswlt
  info "VSS Wavelet Video Codec"
  status working
  fourcc VSSW
  driver vfw
  dll "vsswlt.dll"
  out BGR24 flip

; buggy codecs:  (any volunteers for native rewrite?)

videocodec zlib
  info "AVIzlib"
  status working
  comment "24bpp only"
  fourcc ZLIB
  driver vfw
  dll "avizlib.dll"
  out BGR24 flip

videocodec mszh
  info "AVImszh"
  status working
  comment "24bpp only"
  fourcc MSZH
  driver vfw
  dll "avimszh.dll"
;  out YUY2
;  out BGR32,BGR24,BGR15
  out BGR24

videocodec alaris
  info "Alaris VideoGramPiX"
  status working
  fourcc VGPX,VTLP VGPX
  driver vfwex
  dll "vgpix32d.dll"
  out UYVY
  out BGR24


; non-working codecs:

videocodec vcr1
  info "ATI VCR-1"
  status crashing
  fourcc VCR1
  driver vfw
  dll "ativcr1.dll"
  out RGB24 flip

videocodec pim1
  info "Pinnacle Hardware MPEG-1"
  status crashing
  comment "no picture. use ffmpeg12!"
  fourcc PIM1
  driver vfw
  dll "pclepim1.dll"
  out BGR24 flip
;  out I420
;  out YUY2
;  out BGR32,BGR24,BGR16,BGR15

videocodec qpeg
  info "Q-Team's QPEG (www.q-team.de)"
  status working
  comment "BGR8 only!"
  fourcc Q1.0,QPEG
  fourcc Q1.1,qpeq
  driver vfw
  dll "qpeg32.dll"
  out BGR8 flip

videocodec rricm
  info "rricm"
  status crashing
  fourcc dmb1
  driver vfw
  dll "rricm.dll"
  out YUY2
  out BGR24 flip

videocodec ffcamtasia
  info "FFmpeg TechSmith Camtasia Screen Codec"
  status working
  fourcc TSCC,tscc
  driver ffmpeg
  dll "camtasia"
  out BGR32,BGR24,BGR15,BGR8 query

; sample videos: http://www.techsmith.com/products/camtasia/examplevideos.asp
videocodec camtasia
  info "TechSmith Camtasia Screen Codec"
  status working
  fourcc TSCC,tscc
  driver vfw
  dll "tsccvid.dll"
  out BGR32,BGR24,BGR15,BGR8 query,flip

videocodec ffcamstudio
  info "CamStudio Screen Codec"
  status working
  fourcc CSCD,cscd
  driver ffmpeg
  dll "camstudio"
  out BGR32,BGR24,BGR15 query

; Fraps - Realtime Video Capture - http://www.fraps.com/
videocodec fraps
  info "FRAPS: Realtime Video Capture"
  comment "Requires a processor with SSE???"
  status working
  fourcc FPS1,fps1
  driver vfw
  dll "frapsvid.dll"
  out BGR32 flip

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

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

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

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

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

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

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

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

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

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

videocodec xan
  info "XAN Video"
  status working
  fourcc Xxan
  driver vfw
  dll "xanlib.dll"
  out BGR24,BGR15,BGR8 query,flip

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

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

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

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

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


; raw formats:  (now RGB formats are autodetected)

; these raw codecs are used mostly by TV input
; 0x20776172 is used by Quicktime ('raw ')
; 0x0 is used by AVI
; YV12,RGB|32,RGB|24.. is created by MPlayer

videocodec rawrgb32
  info "RAW RGB32"
  status working
  driver raw
  format 0x0
  format 0x20776172 0x52474220
  format 0x52474220
  out RGB32

videocodec rawrgb24
  info "RAW RGB24"
  status working
  driver raw
  format 0x0
  format 0x20776172 0x52474218
  format 0x52474218
  out RGB24

videocodec rawrgb16
  info "RAW RGB16"
  status working
  driver raw
  format 0x0
  format 0x20776172 0x52474210
  format 0x52474210
  out RGB16

videocodec rawbgr32flip
  info "RAW BGR32"
  status working
  driver raw
  format 0x0
  out BGR32 flip

videocodec rawbgr32
  info "RAW BGR32"
  status working
  driver raw
  format 0x0
  format 0x42475220
  out BGR32

videocodec rawbgr24flip
  info "RAW BGR24"
  status working
  driver raw
  format 0x0
  out BGR24 flip

videocodec rawbgr24
  info "RAW BGR24"
  status working
  driver raw
  format 0x0
  format 0x20776172 0x42475218
  format 0x42475218
  out BGR24

videocodec rawbgr16flip
  info "RAW BGR15"
  status working
  driver raw
  format 0x0
  format 0x10424752 0x0
  out BGR16 flip

videocodec rawbgr16
  info "RAW BGR15"
  status working
  driver raw
  format 0x0
  format 0x20776172 0x42475210
  format 0x42475210
  out BGR16

videocodec rawbgr15flip
  info "RAW BGR15"
  status working
  driver raw
  format 0x0
  out BGR15 flip

videocodec rawbgr15
  info "RAW BGR15"
  status working
  driver raw
  format 0x0
  format 0x20776172 0x4247520F
  format 0x4247520F
  out BGR15

videocodec rawbgr8flip
  info "RAW BGR8"
  status working
  driver raw
  format 0x0
  out BGR8 flip

videocodec rawbgr8
  info "RAW BGR8"
  status working
  driver raw
  format 0x0
  format 0x20776172 0x42475208
  format 0x42475208
  out BGR8

videocodec rawbgr1
  info "RAW BGR1"
  status working
  driver raw
  format 0x0
  format 0x20776172 0x42475201
  format 0x42475201
  out BGR1 flip

videocodec rawyuy2
  info "RAW YUY2"
  status working
  driver raw
  format 0x0 0x32595559
  format 0x20776172 0x32595559
  fourcc yuy2,YUY2
  out YUY2

videocodec rawyuv2
  info "RAW YUV2"
  status working
  driver raw
  format 0x0 0x32565559
  format 0x20776172 0x32565559
  fourcc yuv2,YUV2
  out YUY2

videocodec rawuyvy
  info "RAW UYVY"
  status working
  driver raw
  format 0x0 0x59565955
  format 0x79757632 0x59565955 # 2vuy as created by QuickTime captures
  format 0x20776172 0x59565955
  fourcc uyvy,UYVY
  out UYVY

videocodec raw444P
  info "RAW 444P"
  status working
  driver raw
  format 0x0 0x50343434
  format 0x20776172 0x50343434
  fourcc 444p,444P
  out 444P

videocodec raw422P
  info "RAW 422P"
  status working
  driver raw
  format 0x0 0x50323234
  format 0x20776172 0x50323234
  fourcc 422p,422P
  out 422P

videocodec rawyv12
  info "RAW YV12"
  status working
  driver raw
  format 0x0 0x32315659
  format 0x20776172 0x32315659
  fourcc yv12,YV12
  out YV12

videocodec rawnv21
  info "RAW NV21"
  status working
  driver hmblck
  format 0x0 0x3132564E
  format 0x20776172 0x3132564E
  fourcc nv21,NV21
  out YV12

videocodec rawnv12
  info "RAW NV12"
  status working
  driver hmblck
  format 0x0 0x3231564E
  format 0x20776172 0x3231564E
  fourcc nv12,NV12
  out YV12

videocodec rawhm12
  info "RAW HM12"
  status working
  driver hmblck
  format 0x0 0x32314D48
  format 0x20776172 0x32314D48
  fourcc hm12,HM12
  out YV12

videocodec rawi420
  info "RAW I420"
  status working
  driver raw
  format 0x0 0x30323449
  format 0x20776172 0x30323449
  fourcc i420,I420
  fourcc IYUV,iyuv
  out I420,IYUV

videocodec rawyvu9
  info "RAW YVU9"
  status working
  driver raw
  format 0x0 0x39555659
  format 0x20776172 0x39555659
  fourcc yvu9,YVU9
  out YVU9

videocodec rawy800
  info "RAW Y8/Y800"
  status working
  driver raw
  format 0x0
  format 0x20203859 ; "Y8  "
  fourcc y800,Y800
  out Y800,Y8

; NULL codec - for testing.

videocodec null
  info "NULL codec (no decoding!)"
  status crashing
  comment "for unknown/unsupported codecs or testing"
  driver null
  out YV12
  out I420
  out YUY2
  out UYVY
  out YVU9
  out BGR32,BGR24,BGR16,BGR15

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

audiocodec wma9dmo
  info "Windows Media Audio 9 DMO"
  status working
  format 0x162
  format 0x163
  driver dmo
  dll "wma9dmod.dll"
  guid 0x27ca0808, 0x01f5, 0x4e7a, 0x8b, 0x05, 0x87, 0xf8, 0x07, 0xa2, 0x33, 0xd1

audiocodec wmadmo
  info "Windows Media Audio DMO"
  status working
  format 0x160
  format 0x161
  format 0x162
  format 0x163
  driver dmo
  dll "wmadmod.dll"
  guid 0x2eeb4adf, 0x4578, 0x4d10, 0xbc, 0xa7, 0xbb, 0x95, 0x5f, 0x56, 0x32, 0x0a

audiocodec wma9spdmo
  info "Windows Media Audio 9 Speech DMO"
  status working
  format 0xa
  driver dmo
  dll "wmspdmod.dll"
  guid 0x874131cb, 0x4ecc, 0x443b, 0x89, 0x48, 0x74, 0x6b, 0x89, 0x59, 0x5d, 0x20

audiocodec wma9spdshow
  info "Windows Media Audio 9 Speech DShow"
  status working
  format 0xa
  driver dshow
  dll "wmavds32.ax"
  guid 0x795b44c4, 0xf142, 0x493d, 0x8a, 0x02, 0x09, 0xbd, 0x41, 0x08, 0x95, 0xad

audiocodec ffqdm2
  info "FFmpeg QDM2 audio"
  status working
  format 0x324D4451 ; "QDM2"
  driver ffmpeg
  dll "qdm2"

audiocodec qdmc
  info "QuickTime QDMC/QDM2 audio"
  status working
  format 0x324D4451 ; "QDM2"
  format 0x434D4451 ; "QDMC"
  driver qtaudio
  dll "QuickTime.qts"

audiocodec ffqclp
  info "FFmpeg QCLP audio"
  status buggy
  format 0x706C6351 ; "Qclp"
  format 0x70637173 ; "sqcp"
  driver ffmpeg
  dll "qcelp"

audiocodec qclp
  info "QuickTime QCLP audio"
  status working
  format 0x706C6351 ; "Qclp"
  driver qtaudio
  dll "QuickTime.qts"

audiocodec qtmace3
  info "QuickTime MACE3 audio"
  status working
  format 0x3343414D ; "MAC3"
  driver qtaudio
  dll "QuickTime.qts"

audiocodec qtmace6
  info "QuickTime MACE6 audio"
  status working
  format 0x3643414D ; "MAC6"
  driver qtaudio
  dll "QuickTime.qts"

audiocodec zygoaudio
  info "Zygo audio"
  status working
  fourcc SPXN
  driver qtaudio
  dll "ZyGoAudioS.qtx"

audiocodec ffra144
  info "FFmpeg RealAudio 1.0"
  status working
  format 0x345F3431 ; "14_4"
  driver ffmpeg
  dll "real_144"

audiocodec ffra288
  info "FFmpeg RealAudio 2.0"
  status working
  format 0x385F3832 ; "28_8"
  driver ffmpeg
  dll "real_288"

audiocodec ffcook
  info "FFmpeg COOK audio"
  status working
  format 0x6B6F6F63 ; "cook"
  driver ffmpeg
  dll "cook"

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

audiocodec ra144
  info "RealAudio 1.0"
  status working
  format 0x345F3431 ; "14_4"
  driver realaud
  dll "14_4.so.6.0"

audiocodec ra144win
  info "Win32 RealAudio 1.0"
  status working
  format 0x345F3431 ; "14_4"
  driver realaud
  dll "14_43260.dll"

audiocodec ra144mac
  info "Mac OS X RealAudio 1.0"
  status working
  format 0x345F3431 ; "14_4"
  driver realaud
  dll "14_4.shlb"

audiocodec ra288
  info "RealAudio 2.0"
  status working
  format 0x385F3832 ; "28_8"
  driver realaud
  dll "28_8.so.6.0"

audiocodec ra288win
  info "Win32 RealAudio 2.0"
  status working
  format 0x385F3832 ; "28_8"
  driver realaud
  dll "28_83260.dll"

audiocodec ra288mac
  info "Mac OS X RealAudio 2.0"
  status working
  format 0x385F3832 ; "28_8"
  driver realaud
  dll "28_8.shlb"

audiocodec ra10cook
  info "RealPlayer 10 COOK audio"
  comment "supports cook 5.1"
  status working
  format 0x6B6F6F63 ; "cook"
  driver realaud
  dll "cook.so"

audiocodec racook
  info "RealAudio COOK"
  status working
  format 0x6B6F6F63 ; "cook"
  driver realaud
  dll "cook.so.6.0"

audiocodec ra10cookwin
  info "Win32 RealAudio 10 COOK"
  comment "supports cook 5.1"
  status working
  format 0x6B6F6F63 ; "cook"
  driver realaud
  dll "cook.dll"

audiocodec racookwin
  info "Win32 RealAudio COOK"
  status working
  format 0x6B6F6F63 ; "cook"
  driver realaud
  dll "cook3260.dll"

audiocodec racookmac
  info "Mac OS X RealAudio COOK"
  status working
  format 0x6B6F6F63 ; "cook"
  driver realaud
  dll "cook.bundle/Contents/MacOS/cook"

audiocodec rasipr
  info "RealAudio Sipro"
  status working
  format 0x72706973 ; "sipr"
  driver realaud
  dll "sipr.so.6.0"

audiocodec ra10sipr
  info "RealPlayer 10 RealAudio Sipro"
  status working
  format 0x72706973 ; "sipr"
  driver realaud
  dll "sipr.so"

audiocodec ra10siprwin
  info "Win32 RealAudio 10 Sipro"
  status working
  format 0x72706973 ; "sipr"
  driver realaud
  dll "sipr.dll"

audiocodec rasiprwin
  info "Win32 RealAudio Sipro"
  status working
  format 0x72706973 ; "sipr"
  driver realaud
  dll "sipr3260.dll"

audiocodec rasiprmac
  info "Mac OS X RealAudio Sipro"
  status working
  format 0x72706973 ; "sipr"
  driver realaud
  dll "sipr.bundle/Contents/MacOS/sipr"

audiocodec raatrc
  info "RealAudio ATRAC3"
  status working
  format 0x63727461 ; "atrc"
  driver realaud
  dll "atrc.so.6.0"

audiocodec ra10atrc
  info "RealPlayer 10 RealAudio ATRAC3"
  status working
  format 0x63727461 ; "atrc"
  driver realaud
  dll "atrc.so"

audiocodec ra10atrcwin
  info "Win32 RealAudio 10 ATRAC3"
  status working
  format 0x63727461 ; "atrc"
  driver realaud
  dll "atrc.dll"

audiocodec raatrcwin
  info "Win32 RealAudio ATRAC3"
  status working
  format 0x63727461 ; "atrc"
  driver realaud
  dll "atrc3260.dll"

audiocodec raatrcmac
  info "Mac OS X RealAudio ATRAC3"
  status working
  format 0x63727461 ; "atrc"
  driver realaud
  dll "atrc.bundle/Contents/MacOS/atrc"

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
  format 0x34616d69  ; "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)
  driver ffmpeg
  dll adpcm_ima_wav

audiocodec imaadpcm
  info "IMA ADPCM"
  status working
  format 0x11
  format 0x34616d69  ; "ima4" (MOV files)
  format 0x1100736d ; "ms\x00\x11" (MOV files)
  driver imaadpcm

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

audiocodec msadpcm
  info "MS ADPCM"
  status working
  format 0x2
  format 0x0200736d  ; "ms\x00\x02" (MOV files)
  driver msadpcm

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 dk4adpcm
  info "Duck DK4 ADPCM (rogue format number)"
  status working
  format 0x61 ; This format number was used by Duck Corp. but not officially
              ; registered with Microsoft
  driver imaadpcm

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 dk3adpcm
  info "Duck DK3 ADPCM (rogue format number)"
  status working
  format 0x62 ; This format number was used by Duck Corp. but not officially
              ; registered with Microsoft
  driver dk3adpcm

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 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 "only works with libavformat demuxer"
  status working
  fourcc Axan
  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 libdv
  info "raw DV audio (libdv)"
  status working
  fourcc RADV
  driver libdv
  dll libdv.so.2

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

audiocodec faad
  info "FAAD 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
  format 0xff
  format 0x706D
  format 0x4143 ; aac in asf
  driver faad
  dll libfaad2

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
  driver ffmpeg
  dll aac

audiocodec ffflac
  info "FFmpeg FLAC audio"
  status working
  format 0x43614C66
  format 0xF1AC
  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 ffmlp
  info "FFmpeg MLP"
  status working
  fourcc "MLP " ; internal MPlayer FourCC
  driver ffmpeg
  dll "mlp"

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
  format 0x20776172  ; "raw " (MOV files)
  format 0x736f7774  ; "twos" (MOV files)
  format 0x74776f73  ; "sowt" (MOV files)
  format 0x32336c66  ; "fl32" (MOV files)
  format 0x666c3332  ; "23lf" (MOV files)
;  format 0x34366c66  ; "fl64" (MOV files)
;  format 0x666c3634  ; "46lf" (MOV files)
  format 0x454e4f4e  ; "NONE" (MOV files from Kodak CX6320)
  format 0x34326e69  ; "in24" (MOV files)
  format 0x696e3234  ; "42ni" (MOV files)
  format 0x32336e69  ; "in32" (MOV files)
  format 0x696e3332  ; "23ni" (MOV files)
;;;; 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 divx
  info "DivX audio (WMA)"
  status working
  format 0x160
  format 0x161
  driver acm
  dll "divxa32.acm"

audiocodec vdowaveacm
  info "vdowave ACM"
  status working
  format 0xFFFC
  driver acm
  dll "vdowave.acm"

audiocodec msadpcmacm
  info "MS ADPCM"
  status working
  format 0x2
  driver acm
  dll "msadp32.acm"

audiocodec mp3
  info "mp3lib MPEG layer-2, layer-3"
  status working
  comment "Optimized to MMX/SSE/3Dnow!"
  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 "MP3 "      ; used in .nsv files
  fourcc "LAME"      ; used in mythtv .nuv files
  driver mp3lib

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 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 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"

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)
  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 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"

audiocodec ffmp2
  info "FFmpeg MPEG layer-1 and layer-2 audio"
  comment "integer only"
  status working
  format 0x50
  driver ffmpeg
  dll "mp2"

audiocodec mad
  info "libMAD MPEG layer 1-2-3"
  status working
  format 0x50
  format 0x55
  format 0x5500736d  ; "ms\0\x55" older mp3 fcc (MOV files)
  fourcc ".mp3"      ; CBR/VBR MP3 (MOV files)
  fourcc "MP3 "      ; used in .nsv files
  fourcc "LAME"      ; used in mythtv .nuv files
  driver libmad
  dll "libmad"

audiocodec mp3acm
  info "MPEG layer-3"
  status working
  comment "conflicts with security kernel patches"
  format 0x55
  driver acm
  dll "l3codeca.acm"

audiocodec imaadpcmacm
  info "IMA ADPCM"
  status working
  format 0x11
  driver acm
  dll "imaadp32.acm"

audiocodec msgsm
  info "MS GSM"
  status working
  format 0x31
  format 0x32
  format 0x204D5347
  fourcc agsm
  driver msgsm

audiocodec msgsmacm
  info "MS GSM"
  status working
  format 0x31
;  format 0x32
  driver acm
  dll "msgsm32.acm"

audiocodec msnaudio
  info "MSN AUDIO"
  status working
;  format 0x31
  format 0x32
  driver acm
  dll "msnaudio.acm"

audiocodec alaw
  info "aLaw"
  status working
  format 0x6
  format 0x77616C61 ; 'alaw', .mov files
  driver alaw

audiocodec ulaw
  info "uLaw"
  status working
  format 0x7
  format 0x77616c75  ; "ulaw" (MOV files)
  driver alaw

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

audiocodec a52
  info "AC3-liba52"
  status working
  format 0x2000
  ; format 0x332D6361 ; ac-3 in mp4  -- not working
  fourcc dnet
  driver liba52
  dll "liba52"

audiocodec ffac3
  info "FFmpeg AC-3"
  status working
  format 0x2000
  format 0x332D6361 ; ac-3 in mp4
  fourcc dnet
  driver ffmpeg
  dll ac3

audiocodec ffeac3
  info "FFmpeg E-AC-3"
  status working
  fourcc EAC3
  driver ffmpeg
  dll eac3

audiocodec dts
  info "DTS-libdca"
  status working
  format 0x2001
  driver libdca

audiocodec ffdca
  info "FFmpeg DTS"
  status working
  format 0x2001
  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 musepack
  info "Musepack audio codec"
  status  working
  fourcc  "MPC "
  format 0x2b4d
  driver mpcdec

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

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

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

audiocodec voxvoice
  info "VoxWare MetaVoice"
  status working
  comment "windows users need msms001.vwp and mvoice.vwp in windows\\system32 folder"
  format 0x74
  driver dshow
  dll "voxmvdec.ax" ; need also msms001.vwp and mvoice.vwp
  guid 0x46e32b01, 0xa465, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d

audiocodec voxware
  info "VoxWare"
  status working
  comment "windows users need msms001.vwp in windows\\system32 folder"
  format 0x75
  driver dshow
  dll "voxmsdec.ax" ; need also msms001.vwp
  guid 0x73f7a062, 0x8829, 0x11d1, 0xb5, 0x50, 0x00, 0x60, 0x97, 0x24, 0x2d, 0x8d

audiocodec acelp
  info "ACELP.net Sipro Lab Audio"
  status working
  format 0x130
  driver dshow
  dll "acelpdec.ax"
  guid 0x4009f700, 0xaeba, 0x11d1, 0x83, 0x44, 0x00, 0xc0, 0x4f, 0xb9, 0x2e, 0xb7

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

audiocodec imc
  info "Intel Music Coder"
  status working
  comment "driver at http://codeczone.virtualave.net/FXIMCAUD.zip"
  format 0x401
  driver acm
  dll "imc32.acm"

audiocodec iac25
  info "Indeo audio"
  status working
  format 0x402
  driver acm
  dll "iac25_32.ax"

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

audiocodec ctadp32
  info "Creative ADPCM codec"
  status working
  format 0x200
  driver acm
  dll "ctadp32.acm"

audiocodec sc4
  info "SC4 : Micronas speech codec (ADPCM, MPman recording)"
  status working
  format 0x350
  driver acm
  dll "mi-sc4.acm"

audiocodec hwac3
  info "AC3 through S/PDIF"
  status working
  format 0x2000
  format 0x332D6361 ; ac-3 in mp4
  fourcc dnet
  driver hwac3

audiocodec hwdts
  info "DTS through S/PDIF"
  status working
  format 0x2001
  driver hwac3

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

audiocodec vorbis
  info "OggVorbis Audio"
  status working
  comment "OggVorbis driver using libvorbis"
  fourcc vrbs
  format 0x566F
  driver libvorbis
  dll "libvorbis"

audiocodec tremor
  info "OggVorbis audio"
  status working
  comment "fixed-point decoder useful systems without floating-point unit"
  fourcc vrbs
  format 0x566F
  driver tremor
  dll "tremor"

audiocodec vorbisacm
  info "OggVorbis ACM"
  status working
  comment "OggVorbis driver using vorbis.acm"
  format 0x674F ; mode1
  format 0x6750 ; mode2
;  format 0x6751 ; mode3
  format 0x676F ; mode1+
  format 0x6770 ; mode2+
  format 0x6771 ; mode3+
  driver acm
  dll "vorbis.acm"

audiocodec speex
  info "Speex audio"
  status working
  comment "Speex driver using libspeex"
  fourcc 'spx '
  driver speex
  dll "speex"

audiocodec vivoaudio
  info "Vivo G.723/Siren Audio Codec"
  status working
  format 0x111       ; vivo g.723
  format 0x112       ; siren
  driver acm
  dll "vivog723.acm"

audiocodec g72x
  info "G.711/G.721/G.723"
  status crashing
  comment "does not work yet - just noise :("
  format 0x111      ; vivo g.723
  format 0x112      ; vivo siren
  driver g72x
  dll "g72x.c"

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

audiocodec g726
  info "Sharp G.726 Audio"
  status untested
  format 0x45
  driver acm
  dll "scg726.acm"

audiocodec atrac3
  info "Sony ATRAC3"
  status buggy
  comment "format not accepted"
  format 0x270
  driver acm
  dll "atrac3.acm"

audiocodec ALF2
; http://www.nctsoft.com/products/NCTALFCD/
; jdp@mail.sonofon.dk
  info "ALF2"
  status working
  format 0x1FC4     ; ALF2
  driver acm
  dll "alf2cd.acm"

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

audiocodec truespeech
  info "DSP Group TrueSpeech(TM)"
  status working
  format 0x22
  driver acm
  dll "tssoft32.acm" ; need also tsd32.dll

; rt32dcmp.dll needed too
audiocodec voxwarert24
  info "VoxWare RT24 speech codec"
  status working
  format 0x181c
  driver acm
  dll "nsrt2432.acm"

audiocodec lhacm
  info "Lernout & Hauspie CELP and SBC codecs"
  status working
  format 0x1101 ; CELP
  format 0x1102 ; SBC
  format 0x1103 ; SBC
  format 0x1104 ; SBC
  driver acm
  dll "lhacm.acm"

audiocodec pscelp
  info "Philips Speech Processing CELP"
  status working
  format 0x120
  driver acm
  dll "smcelp32.acm"

audiocodec TwinVQ
  info "VQF codec by NTTLabs"
  status working
  fourcc TWIN
  driver vqf
  dll "tvqdec.dll"

audiocodec hwmpa
  info "MPEG audio pass-through for hardware MPEG decoders"
  status working
  comment "for hardware MPEG audio decoders"
  format 0x50        ; layer-1 && layer-2
  format 0x55        ; layer-3
  format 0x5500736d  ; "ms\0\x55" older MP3 fourcc (MOV files)
  fourcc ".mp3"      ; CBR/VBR MP3 (MOV files)
  fourcc "MP3 "      ; used in .nsv files
  fourcc "LAME"      ; used in mythtv .nuv files
  driver hwmpa

audiocodec msnsiren
  info "msn siren audio codec"
  status working
  format 0x28E
  driver acm
  dll "sirenacm.dll"

audiocodec uleaddva
  info "Ulead DV ACM"
  status working
  format 0x215
  format 0x216
  driver acm
  dll "dvacm.acm"