AForge.Video.DirectShow.xml
186.7 KB
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
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
<?xml version="1.0"?>
<doc>
<assembly>
<name>AForge.Video.DirectShow</name>
</assembly>
<members>
<member name="T:AForge.Video.DirectShow.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:AForge.Video.DirectShow.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:AForge.Video.DirectShow.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IPin">
<summary>
This interface is exposed by all input and output pins of DirectShow filters.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.Connect(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Connects the pin to another pin.
</summary>
<param name="receivePin">Other pin to connect to.</param>
<param name="mediaType">Type to use for the connections (optional).</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.ReceiveConnection(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Makes a connection to this pin and is called by a connecting pin.
</summary>
<param name="receivePin">Connecting pin.</param>
<param name="mediaType">Media type of the samples to be streamed.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.Disconnect">
<summary>
Breaks the current pin connection.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.ConnectedTo(AForge.Video.DirectShow.Internals.IPin@)">
<summary>
Returns a pointer to the connecting pin.
</summary>
<param name="pin">Receives <b>IPin</b> interface of connected pin (if any).</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.ConnectionMediaType(AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Returns the media type of this pin's connection.
</summary>
<param name="mediaType">Pointer to an <see cref="T:AForge.Video.DirectShow.Internals.AMMediaType"/> structure. If the pin is connected,
the media type is returned. Otherwise, the structure is initialized to a default state in which
all elements are 0, with the exception of <b>lSampleSize</b>, which is set to 1, and
<b>FixedSizeSamples</b>, which is set to <b>true</b>.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.QueryPinInfo(AForge.Video.DirectShow.Internals.PinInfo@)">
<summary>
Retrieves information about this pin (for example, the name, owning filter, and direction).
</summary>
<param name="pinInfo"><see cref="T:AForge.Video.DirectShow.Internals.PinInfo"/> structure that receives the pin information.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.QueryDirection(AForge.Video.DirectShow.Internals.PinDirection@)">
<summary>
Retrieves the direction for this pin.
</summary>
<param name="pinDirection">Receives direction of the pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.QueryId(System.String@)">
<summary>
Retrieves an identifier for the pin.
</summary>
<param name="id">Pin identifier.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.QueryAccept(AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Queries whether a given media type is acceptable by the pin.
</summary>
<param name="mediaType"><see cref="T:AForge.Video.DirectShow.Internals.AMMediaType"/> structure that specifies the media type.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.EnumMediaTypes(System.IntPtr)">
<summary>
Provides an enumerator for this pin's preferred media types.
</summary>
<param name="enumerator">Address of a variable that receives a pointer to the <b>IEnumMediaTypes</b> interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.QueryInternalConnections(System.IntPtr,System.Int32@)">
<summary>
Provides an array of the pins to which this pin internally connects.
</summary>
<param name="apPin">Address of an array of <b>IPin</b> pointers.</param>
<param name="nPin">On input, specifies the size of the array. When the method returns,
the value is set to the number of pointers returned in the array.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.EndOfStream">
<summary>
Notifies the pin that no additional data is expected.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.BeginFlush">
<summary>
Begins a flush operation.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.EndFlush">
<summary>
Ends a flush operation.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPin.NewSegment(System.Int64,System.Int64,System.Double)">
<summary>
Specifies that samples following this call are grouped as a segment with a given start time, stop time, and rate.
</summary>
<param name="start">Start time of the segment, relative to the original source, in 100-nanosecond units.</param>
<param name="stop">End time of the segment, relative to the original source, in 100-nanosecond units.</param>
<param name="rate">Rate at which this segment should be processed, as a percentage of the original rate.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IFilterGraph">
<summary>
The interface provides methods for building a filter graph. An application can use it to add filters to
the graph, connect or disconnect filters, remove filters, and perform other basic operations.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph.AddFilter(AForge.Video.DirectShow.Internals.IBaseFilter,System.String)">
<summary>
Adds a filter to the graph and gives it a name.
</summary>
<param name="filter">Filter to add to the graph.</param>
<param name="name">Name of the filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph.RemoveFilter(AForge.Video.DirectShow.Internals.IBaseFilter)">
<summary>
Removes a filter from the graph.
</summary>
<param name="filter">Filter to be removed from the graph.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph.EnumFilters(System.IntPtr@)">
<summary>
Provides an enumerator for all filters in the graph.
</summary>
<param name="enumerator">Filter enumerator.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph.FindFilterByName(System.String,AForge.Video.DirectShow.Internals.IBaseFilter@)">
<summary>
Finds a filter that was added with a specified name.
</summary>
<param name="name">Name of filter to search for.</param>
<param name="filter">Interface of found filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph.ConnectDirect(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Connects two pins directly (without intervening filters).
</summary>
<param name="pinOut">Output pin.</param>
<param name="pinIn">Input pin.</param>
<param name="mediaType">Media type to use for the connection.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph.Reconnect(AForge.Video.DirectShow.Internals.IPin)">
<summary>
Breaks the existing pin connection and reconnects it to the same pin.
</summary>
<param name="pin">Pin to disconnect and reconnect.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph.Disconnect(AForge.Video.DirectShow.Internals.IPin)">
<summary>
Disconnects a specified pin.
</summary>
<param name="pin">Pin to disconnect.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph.SetDefaultSyncSource">
<summary>
Sets the reference clock to the default clock.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IFileSourceFilter">
<summary>
The interface is exposed by source filters to set the file name and media type of the media file that they are to render.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFileSourceFilter.Load(System.String,AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Loads the source filter with the file.
</summary>
<param name="fileName">The name of the file to open.</param>
<param name="mediaType">Media type of the file. This can be null.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFileSourceFilter.GetCurFile(System.String@,AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Retrieves the current file.
</summary>
<param name="fileName">Name of media file.</param>
<param name="mediaType">Receives media type.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IAMVideoControl">
<summary>
The interface controls certain video capture operations such as enumerating available
frame rates and image orientation.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMVideoControl.GetCaps(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.VideoControlFlags@)">
<summary>
Retrieves the capabilities of the underlying hardware.
</summary>
<param name="pin">Pin to query capabilities from.</param>
<param name="flags">Get capabilities of the specified pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMVideoControl.SetMode(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.VideoControlFlags)">
<summary>
Sets the video control mode of operation.
</summary>
<param name="pin">The pin to set the video control mode on.</param>
<param name="mode">Value specifying a combination of the flags to set the video control mode.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMVideoControl.GetMode(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.VideoControlFlags@)">
<summary>
Retrieves the video control mode of operation.
</summary>
<param name="pin">The pin to retrieve the video control mode from.</param>
<param name="mode">Gets combination of flags, which specify the video control mode.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMVideoControl.GetCurrentActualFrameRate(AForge.Video.DirectShow.Internals.IPin,System.Int64@)">
<summary>
The method retrieves the actual frame rate, expressed as a frame duration in 100-nanosecond units.
USB (Universal Serial Bus) and IEEE 1394 cameras may provide lower frame rates than requested
because of bandwidth availability. This is only available during video streaming.
</summary>
<param name="pin">The pin to retrieve the frame rate from.</param>
<param name="actualFrameRate">Gets frame rate in frame duration in 100-nanosecond units.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMVideoControl.GetMaxAvailableFrameRate(AForge.Video.DirectShow.Internals.IPin,System.Int32,System.Drawing.Size,System.Int64@)">
<summary>
Retrieves the maximum frame rate currently available based on bus bandwidth usage for connections
such as USB and IEEE 1394 camera devices where the maximum frame rate can be limited by bandwidth
availability.
</summary>
<param name="pin">The pin to retrieve the maximum frame rate from.</param>
<param name="index">Index of the format to query for maximum frame rate. This index corresponds
to the order in which formats are enumerated by <see cref="M:AForge.Video.DirectShow.Internals.IAMStreamConfig.GetStreamCaps(System.Int32,AForge.Video.DirectShow.Internals.AMMediaType@,AForge.Video.DirectShow.Internals.VideoStreamConfigCaps)"/>.</param>
<param name="dimensions">Frame image size (width and height) in pixels.</param>
<param name="maxAvailableFrameRate">Gets maximum available frame rate. The frame rate is expressed as frame duration in 100-nanosecond units.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMVideoControl.GetFrameRateList(AForge.Video.DirectShow.Internals.IPin,System.Int32,System.Drawing.Size,System.Int32@,System.IntPtr@)">
<summary>
Retrieves a list of available frame rates.
</summary>
<param name="pin">The pin to retrieve the maximum frame rate from.</param>
<param name="index">Index of the format to query for maximum frame rate. This index corresponds
to the order in which formats are enumerated by <see cref="M:AForge.Video.DirectShow.Internals.IAMStreamConfig.GetStreamCaps(System.Int32,AForge.Video.DirectShow.Internals.AMMediaType@,AForge.Video.DirectShow.Internals.VideoStreamConfigCaps)"/>.</param>
<param name="dimensions">Frame image size (width and height) in pixels.</param>
<param name="listSize">Number of elements in the list of frame rates.</param>
<param name="frameRate">Array of frame rates in 100-nanosecond units.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.FilterCategory">
<summary>
DirectShow filter categories.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.FilterCategory.AudioInputDevice">
<summary>
Audio input device category.
</summary>
<remarks>Equals to CLSID_AudioInputDeviceCategory.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.FilterCategory.VideoInputDevice">
<summary>
Video input device category.
</summary>
<remarks>Equals to CLSID_VideoInputDeviceCategory.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.FilterCategory.VideoCompressorCategory">
<summary>
Video compressor category.
</summary>
<remarks>Equals to CLSID_VideoCompressorCategory.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.FilterCategory.AudioCompressorCategory">
<summary>
Audio compressor category
</summary>
<remarks>Equals to CLSID_AudioCompressorCategory.</remarks>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IPersist">
<summary>
Provides the CLSID of an object that can be stored persistently in the system. Allows the object to specify which object
handler to use in the client process, as it is used in the default implementation of marshaling.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPersist.GetClassID(System.Guid@)">
<summary>
Retrieves the class identifier (CLSID) of the object.
</summary>
<param name="pClassID"></param>
<returns></returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IAMCameraControl">
<summary>
The IAMCameraControl interface controls camera settings such as zoom, pan, aperture adjustment,
or shutter speed. To obtain this interface, query the filter that controls the camera.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMCameraControl.GetRange(AForge.Video.DirectShow.CameraControlProperty,System.Int32@,System.Int32@,System.Int32@,System.Int32@,AForge.Video.DirectShow.CameraControlFlags@)">
<summary>
Gets the range and default value of a specified camera property.
</summary>
<param name="Property">Specifies the property to query.</param>
<param name="pMin">Receives the minimum value of the property.</param>
<param name="pMax">Receives the maximum value of the property.</param>
<param name="pSteppingDelta">Receives the step size for the property.</param>
<param name="pDefault">Receives the default value of the property. </param>
<param name="pCapsFlags">Receives a member of the CameraControlFlags enumeration, indicating whether the property is controlled automatically or manually.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMCameraControl.Set(AForge.Video.DirectShow.CameraControlProperty,System.Int32,AForge.Video.DirectShow.CameraControlFlags)">
<summary>
Sets a specified property on the camera.
</summary>
<param name="Property">Specifies the property to set.</param>
<param name="lValue">Specifies the new value of the property.</param>
<param name="Flags">Specifies the desired control setting, as a member of the CameraControlFlags enumeration.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMCameraControl.Get(AForge.Video.DirectShow.CameraControlProperty,System.Int32@,AForge.Video.DirectShow.CameraControlFlags@)">
<summary>
Gets the current setting of a camera property.
</summary>
<param name="Property">Specifies the property to retrieve.</param>
<param name="lValue">Receives the value of the property.</param>
<param name="Flags">Receives a member of the CameraControlFlags enumeration.
The returned value indicates whether the setting is controlled manually or automatically.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.VideoCapabilities">
<summary>
Capabilities of video device such as frame size and frame rate.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.VideoCapabilities.FrameSize">
<summary>
Frame size supported by video device.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.VideoCapabilities.AverageFrameRate">
<summary>
Average frame rate of video device for corresponding <see cref="F:AForge.Video.DirectShow.VideoCapabilities.FrameSize">frame size</see>.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.VideoCapabilities.MaximumFrameRate">
<summary>
Maximum frame rate of video device for corresponding <see cref="F:AForge.Video.DirectShow.VideoCapabilities.FrameSize">frame size</see>.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.VideoCapabilities.BitCount">
<summary>
Number of bits per pixel provided by the camera.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.VideoCapabilities.Equals(System.Object)">
<summary>
Check if the video capability equals to the specified object.
</summary>
<param name="obj">Object to compare with.</param>
<returns>Returns true if both are equal are equal or false otherwise.</returns>
</member>
<member name="M:AForge.Video.DirectShow.VideoCapabilities.Equals(AForge.Video.DirectShow.VideoCapabilities)">
<summary>
Check if two video capabilities are equal.
</summary>
<param name="vc2">Second video capability to compare with.</param>
<returns>Returns true if both video capabilities are equal or false otherwise.</returns>
</member>
<member name="M:AForge.Video.DirectShow.VideoCapabilities.GetHashCode">
<summary>
Get hash code of the object.
</summary>
<returns>Returns hash code ot the object </returns>
</member>
<member name="M:AForge.Video.DirectShow.VideoCapabilities.op_Equality(AForge.Video.DirectShow.VideoCapabilities,AForge.Video.DirectShow.VideoCapabilities)">
<summary>
Equality operator.
</summary>
<param name="a">First object to check.</param>
<param name="b">Seconds object to check.</param>
<returns>Return true if both objects are equal or false otherwise.</returns>
</member>
<member name="M:AForge.Video.DirectShow.VideoCapabilities.op_Inequality(AForge.Video.DirectShow.VideoCapabilities,AForge.Video.DirectShow.VideoCapabilities)">
<summary>
Inequality operator.
</summary>
<param name="a">First object to check.</param>
<param name="b">Seconds object to check.</param>
<returns>Return true if both objects are not equal or false otherwise.</returns>
</member>
<member name="P:AForge.Video.DirectShow.VideoCapabilities.FrameRate">
<summary>
Frame rate supported by video device for corresponding <see cref="F:AForge.Video.DirectShow.VideoCapabilities.FrameSize">frame size</see>.
</summary>
<remarks><para><note>This field is depricated - should not be used.
Its value equals to <see cref="F:AForge.Video.DirectShow.VideoCapabilities.AverageFrameRate"/>.</note></para>
</remarks>
</member>
<member name="T:AForge.Video.DirectShow.PhysicalConnectorType">
<summary>
Specifies the physical type of pin (audio or video).
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.Default">
<summary>
Default value of connection type. Physically it does not exist, but just either to specify that
connection type should not be changed (input) or was not determined (output).
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoTuner">
<summary>
Specifies a tuner pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoComposite">
<summary>
Specifies a composite pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoSVideo">
<summary>
Specifies an S-Video (Y/C video) pin.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoRGB">
<summary>
Specifies an RGB pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoYRYBY">
<summary>
Specifies a YRYBY (Y, R–Y, B–Y) pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoSerialDigital">
<summary>
Specifies a serial digital pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoParallelDigital">
<summary>
Specifies a parallel digital pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoSCSI">
<summary>
Specifies a SCSI (Small Computer System Interface) pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoAUX">
<summary>
Specifies an AUX (auxiliary) pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.Video1394">
<summary>
Specifies an IEEE 1394 pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoUSB">
<summary>
Specifies a USB (Universal Serial Bus) pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoDecoder">
<summary>
Specifies a video decoder pin.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoEncoder">
<summary>
Specifies a video encoder pin.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoSCART">
<summary>
Specifies a SCART (Peritel) pin for video.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.VideoBlack">
<summary>
Not used.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioTuner">
<summary>
Specifies a tuner pin for audio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioLine">
<summary>
Specifies a line pin for audio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioMic">
<summary>
Specifies a microphone pin.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioAESDigital">
<summary>
Specifies an AES/EBU (Audio Engineering Society/European Broadcast Union) digital pin for audio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioSPDIFDigital">
<summary>
Specifies an S/PDIF (Sony/Philips Digital Interface Format) digital pin for audio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioSCSI">
<summary>
Specifies a SCSI pin for audio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioAUX">
<summary>
Specifies an AUX pin for audio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.Audio1394">
<summary>
Specifies an IEEE 1394 pin for audio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioUSB">
<summary>
Specifies a USB pin for audio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.PhysicalConnectorType.AudioDecoder">
<summary>
Specifies an audio decoder pin.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.PinDirection">
<summary>
This enumeration indicates a pin's direction.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.PinDirection.Input">
<summary>
Input pin.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.PinDirection.Output">
<summary>
Output pin.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.AMMediaType">
<summary>
The structure describes the format of a media sample.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.MajorType">
<summary>
Globally unique identifier (GUID) that specifies the major type of the media sample.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.SubType">
<summary>
GUID that specifies the subtype of the media sample.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.FixedSizeSamples">
<summary>
If <b>true</b>, samples are of a fixed size.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.TemporalCompression">
<summary>
If <b>true</b>, samples are compressed using temporal (interframe) compression.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.SampleSize">
<summary>
Size of the sample in bytes. For compressed data, the value can be zero.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.FormatType">
<summary>
GUID that specifies the structure used for the format block.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.unkPtr">
<summary>
Not used.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.FormatSize">
<summary>
Size of the format block, in bytes.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.AMMediaType.FormatPtr">
<summary>
Pointer to the format block.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.AMMediaType.Finalize">
<summary>
Destroys the instance of the <see cref="T:AForge.Video.DirectShow.Internals.AMMediaType"/> class.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.AMMediaType.Dispose">
<summary>
Dispose the object.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.AMMediaType.Dispose(System.Boolean)">
<summary>
Dispose the object
</summary>
<param name="disposing">Indicates if disposing was initiated manually.</param>
</member>
<member name="T:AForge.Video.DirectShow.Internals.PinInfo">
<summary>
The structure contains information about a pin.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.PinInfo.Filter">
<summary>
Owning filter.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.PinInfo.Direction">
<summary>
Direction of the pin.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.PinInfo.Name">
<summary>
Name of the pin.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FilterInfo.Name">
<summary>
Filter's name.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FilterInfo.FilterGraph">
<summary>
Owning graph.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.VideoInfoHeader">
<summary>
The structure describes the bitmap and color information for a video image.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader.SrcRect">
<summary>
<see cref="T:AForge.Video.DirectShow.Internals.RECT"/> structure that specifies the source video window.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader.TargetRect">
<summary>
<see cref="T:AForge.Video.DirectShow.Internals.RECT"/> structure that specifies the destination video window.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader.BitRate">
<summary>
Approximate data rate of the video stream, in bits per second.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader.BitErrorRate">
<summary>
Data error rate, in bit errors per second.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader.AverageTimePerFrame">
<summary>
The desired average display time of the video frames, in 100-nanosecond units.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader.BmiHeader">
<summary>
<see cref="T:AForge.Video.DirectShow.Internals.BitmapInfoHeader"/> structure that contains color and dimension information for the video image bitmap.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.VideoInfoHeader2">
<summary>
The structure describes the bitmap and color information for a video image (v2).
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.SrcRect">
<summary>
<see cref="T:AForge.Video.DirectShow.Internals.RECT"/> structure that specifies the source video window.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.TargetRect">
<summary>
<see cref="T:AForge.Video.DirectShow.Internals.RECT"/> structure that specifies the destination video window.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.BitRate">
<summary>
Approximate data rate of the video stream, in bits per second.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.BitErrorRate">
<summary>
Data error rate, in bit errors per second.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.AverageTimePerFrame">
<summary>
The desired average display time of the video frames, in 100-nanosecond units.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.InterlaceFlags">
<summary>
Flags that specify how the video is interlaced.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.CopyProtectFlags">
<summary>
Flag set to indicate that the duplication of the stream should be restricted.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.PictAspectRatioX">
<summary>
The X dimension of picture aspect ratio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.PictAspectRatioY">
<summary>
The Y dimension of picture aspect ratio.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.Reserved1">
<summary>
Reserved for future use.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.Reserved2">
<summary>
Reserved for future use.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.VideoInfoHeader2.BmiHeader">
<summary>
<see cref="T:AForge.Video.DirectShow.Internals.BitmapInfoHeader"/> structure that contains color and dimension information for the video image bitmap.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.BitmapInfoHeader">
<summary>
The structure contains information about the dimensions and color format of a device-independent bitmap (DIB).
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.Size">
<summary>
Specifies the number of bytes required by the structure.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.Width">
<summary>
Specifies the width of the bitmap.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.Height">
<summary>
Specifies the height of the bitmap, in pixels.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.Planes">
<summary>
Specifies the number of planes for the target device. This value must be set to 1.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.BitCount">
<summary>
Specifies the number of bits per pixel.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.Compression">
<summary>
If the bitmap is compressed, this member is a <b>FOURCC</b> the specifies the compression.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.ImageSize">
<summary>
Specifies the size, in bytes, of the image.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.XPelsPerMeter">
<summary>
Specifies the horizontal resolution, in pixels per meter, of the target device for the bitmap.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.YPelsPerMeter">
<summary>
Specifies the vertical resolution, in pixels per meter, of the target device for the bitmap.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.ColorsUsed">
<summary>
Specifies the number of color indices in the color table that are actually used by the bitmap.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.BitmapInfoHeader.ColorsImportant">
<summary>
Specifies the number of color indices that are considered important for displaying the bitmap.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.RECT">
<summary>
The structure defines the coordinates of the upper-left and lower-right corners of a rectangle.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.RECT.Left">
<summary>
Specifies the x-coordinate of the upper-left corner of the rectangle.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.RECT.Top">
<summary>
Specifies the y-coordinate of the upper-left corner of the rectangle.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.RECT.Right">
<summary>
Specifies the x-coordinate of the lower-right corner of the rectangle.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.RECT.Bottom">
<summary>
Specifies the y-coordinate of the lower-right corner of the rectangle.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.CAUUID">
<summary>
The CAUUID structure is a Counted Array of UUID or GUID types.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.CAUUID.cElems">
<summary>
Size of the array pointed to by <b>pElems</b>.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.CAUUID.pElems">
<summary>
Pointer to an array of UUID values, each of which specifies UUID.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.CAUUID.ToGuidArray">
<summary>
Performs manual marshaling of <b>pElems</b> to retrieve an array of Guid objects.
</summary>
<returns>A managed representation of <b>pElems</b>.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.DsEvCode">
<summary>
Enumeration of DirectShow event codes.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.FilterState">
<summary>
Specifies a filter's state or the state of the filter graph.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FilterState.State_Stopped">
<summary>
Stopped. The filter is not processing data.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FilterState.State_Paused">
<summary>
Paused. The filter is processing data, but not rendering it.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FilterState.State_Running">
<summary>
Running. The filter is processing and rendering data.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.ISampleGrabber">
<summary>
The interface is exposed by the Sample Grabber Filter. It enables an application to retrieve
individual media samples as they move through the filter graph.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabber.SetOneShot(System.Boolean)">
<summary>
Specifies whether the filter should stop the graph after receiving one sample.
</summary>
<param name="oneShot">Boolean value specifying whether the filter should stop the graph after receiving one sample.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabber.SetMediaType(AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Specifies the media type for the connection on the Sample Grabber's input pin.
</summary>
<param name="mediaType">Specifies the required media type.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabber.GetConnectedMediaType(AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Retrieves the media type for the connection on the Sample Grabber's input pin.
</summary>
<param name="mediaType"><see cref="T:AForge.Video.DirectShow.Internals.AMMediaType"/> structure, which receives media type.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabber.SetBufferSamples(System.Boolean)">
<summary>
Specifies whether to copy sample data into a buffer as it goes through the filter.
</summary>
<param name="bufferThem">Boolean value specifying whether to buffer sample data.
If <b>true</b>, the filter copies sample data into an internal buffer.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabber.GetCurrentBuffer(System.Int32@,System.IntPtr)">
<summary>
Retrieves a copy of the sample that the filter received most recently.
</summary>
<param name="bufferSize">Pointer to the size of the buffer. If pBuffer is NULL, this parameter receives the required size.</param>
<param name="buffer">Pointer to a buffer to receive a copy of the sample, or NULL.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabber.GetCurrentSample(System.IntPtr)">
<summary>
Not currently implemented.
</summary>
<param name="sample"></param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabber.SetCallback(AForge.Video.DirectShow.Internals.ISampleGrabberCB,System.Int32)">
<summary>
Specifies a callback method to call on incoming samples.
</summary>
<param name="callback"><see cref="T:AForge.Video.DirectShow.Internals.ISampleGrabberCB"/> interface containing the callback method, or NULL to cancel the callback.</param>
<param name="whichMethodToCallback">Index specifying the callback method.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2">
<summary>
This interface builds capture graphs and other custom filter graphs.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.SetFiltergraph(AForge.Video.DirectShow.Internals.IGraphBuilder)">
<summary>
Specify filter graph for the capture graph builder to use.
</summary>
<param name="graphBuilder">Filter graph's interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.GetFiltergraph(AForge.Video.DirectShow.Internals.IGraphBuilder@)">
<summary>
Retrieve the filter graph that the builder is using.
</summary>
<param name="graphBuilder">Filter graph's interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.SetOutputFileName(System.Guid,System.String,AForge.Video.DirectShow.Internals.IBaseFilter@,System.IntPtr@)">
<summary>
Create file writing section of the filter graph.
</summary>
<param name="type">GUID that represents either the media subtype of the output or the
class identifier (CLSID) of a multiplexer filter or file writer filter.</param>
<param name="fileName">Output file name.</param>
<param name="baseFilter">Receives the multiplexer's <see cref="T:AForge.Video.DirectShow.Internals.IBaseFilter"/> interface.</param>
<param name="fileSinkFilter">Receives the file writer's IFileSinkFilter interface. Can be NULL.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.FindInterface(System.Guid,System.Guid,AForge.Video.DirectShow.Internals.IBaseFilter,System.Guid,System.Object@)">
<summary>
Searche the graph for a specified interface, starting from a specified filter.
</summary>
<param name="category">GUID that specifies the search criteria.</param>
<param name="type">GUID that specifies the major media type of an output pin, or NULL.</param>
<param name="baseFilter"><see cref="T:AForge.Video.DirectShow.Internals.IBaseFilter"/> interface of the filter. The method begins searching from this filter.</param>
<param name="interfaceID">Interface identifier (IID) of the interface to locate.</param>
<param name="retInterface">Receives found interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.RenderStream(System.Guid,System.Guid,System.Object,AForge.Video.DirectShow.Internals.IBaseFilter,AForge.Video.DirectShow.Internals.IBaseFilter)">
<summary>
Connect an output pin on a source filter to a rendering filter, optionally through a compression filter.
</summary>
<param name="category">Pin category.</param>
<param name="mediaType">Major-type GUID that specifies the media type of the output pin.</param>
<param name="source">Starting filter for the connection.</param>
<param name="compressor">Interface of an intermediate filter, such as a compression filter. Can be NULL.</param>
<param name="renderer">Sink filter, such as a renderer or mux filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.ControlStream(System.Guid,System.Guid,AForge.Video.DirectShow.Internals.IBaseFilter,System.Int64,System.Int64,System.Int16,System.Int16)">
<summary>
Set the start and stop times for one or more streams of captured data.
</summary>
<param name="category">Pin category.</param>
<param name="mediaType">Major-type GUID that specifies the media type.</param>
<param name="filter"><see cref="T:AForge.Video.DirectShow.Internals.IBaseFilter"/> interface that specifies which filter to control.</param>
<param name="start">Start time.</param>
<param name="stop">Stop time.</param>
<param name="startCookie">Value that is sent as the second parameter of the
EC_STREAM_CONTROL_STARTED event notification.</param>
<param name="stopCookie">Value that is sent as the second parameter of the
EC_STREAM_CONTROL_STOPPED event notification.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.AllocCapFile(System.String,System.Int64)">
<summary>
Preallocate a capture file to a specified size.
</summary>
<param name="fileName">File name to create or resize.</param>
<param name="size">Size of the file to allocate, in bytes.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.CopyCaptureFile(System.String,System.String,System.Boolean,System.IntPtr)">
<summary>
Copy the valid media data from a capture file.
</summary>
<param name="oldFileName">Old file name.</param>
<param name="newFileName">New file name.</param>
<param name="allowEscAbort">Boolean value that specifies whether pressing the ESC key cancels the copy operation.</param>
<param name="callback">IAMCopyCaptureFileProgress interface to display progress information, or NULL.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICaptureGraphBuilder2.FindPin(System.Object,AForge.Video.DirectShow.Internals.PinDirection,System.Guid,System.Guid,System.Boolean,System.Int32,AForge.Video.DirectShow.Internals.IPin@)">
<summary>
</summary>
<param name="source">Interface on a filter, or to an interface on a pin.</param>
<param name="pinDirection">Pin direction (input or output).</param>
<param name="category">Pin category.</param>
<param name="mediaType">Media type.</param>
<param name="unconnected">Boolean value that specifies whether the pin must be unconnected.</param>
<param name="index">Zero-based index of the pin to retrieve, from the set of matching pins.</param>
<param name="pin">Interface of the matching pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IGraphBuilder">
<summary>
This interface provides methods that enable an application to build a filter graph.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.AddFilter(AForge.Video.DirectShow.Internals.IBaseFilter,System.String)">
<summary>
Adds a filter to the graph and gives it a name.
</summary>
<param name="filter">Filter to add to the graph.</param>
<param name="name">Name of the filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.RemoveFilter(AForge.Video.DirectShow.Internals.IBaseFilter)">
<summary>
Removes a filter from the graph.
</summary>
<param name="filter">Filter to be removed from the graph.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.EnumFilters(AForge.Video.DirectShow.Internals.IEnumFilters@)">
<summary>
Provides an enumerator for all filters in the graph.
</summary>
<param name="enumerator">Filter enumerator.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.FindFilterByName(System.String,AForge.Video.DirectShow.Internals.IBaseFilter@)">
<summary>
Finds a filter that was added with a specified name.
</summary>
<param name="name">Name of filter to search for.</param>
<param name="filter">Interface of found filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.ConnectDirect(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Connects two pins directly (without intervening filters).
</summary>
<param name="pinOut">Output pin.</param>
<param name="pinIn">Input pin.</param>
<param name="mediaType">Media type to use for the connection.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.Reconnect(AForge.Video.DirectShow.Internals.IPin)">
<summary>
Breaks the existing pin connection and reconnects it to the same pin.
</summary>
<param name="pin">Pin to disconnect and reconnect.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.Disconnect(AForge.Video.DirectShow.Internals.IPin)">
<summary>
Disconnects a specified pin.
</summary>
<param name="pin">Pin to disconnect.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.SetDefaultSyncSource">
<summary>
Sets the reference clock to the default clock.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.Connect(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.IPin)">
<summary>
Connects two pins. If they will not connect directly, this method connects them with intervening transforms.
</summary>
<param name="pinOut">Output pin.</param>
<param name="pinIn">Input pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.Render(AForge.Video.DirectShow.Internals.IPin)">
<summary>
Adds a chain of filters to a specified output pin to render it.
</summary>
<param name="pinOut">Output pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.RenderFile(System.String,System.String)">
<summary>
Builds a filter graph that renders the specified file.
</summary>
<param name="file">Specifies a string that contains file name or device moniker.</param>
<param name="playList">Reserved.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.AddSourceFilter(System.String,System.String,AForge.Video.DirectShow.Internals.IBaseFilter@)">
<summary>
Adds a source filter to the filter graph for a specific file.
</summary>
<param name="fileName">Specifies the name of the file to load.</param>
<param name="filterName">Specifies a name for the source filter.</param>
<param name="filter">Variable that receives the interface of the source filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.SetLogFile(System.IntPtr)">
<summary>
Sets the file for logging actions taken when attempting to perform an operation.
</summary>
<param name="hFile">Handle to the log file.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.Abort">
<summary>
Requests that the graph builder return as soon as possible from its current task.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IGraphBuilder.ShouldOperationContinue">
<summary>
Queries whether the current operation should continue.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.ISampleGrabberCB">
<summary>
The interface provides callback methods for the <see cref="M:AForge.Video.DirectShow.Internals.ISampleGrabber.SetCallback(AForge.Video.DirectShow.Internals.ISampleGrabberCB,System.Int32)"/> method.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabberCB.SampleCB(System.Double,System.IntPtr)">
<summary>
Callback method that receives a pointer to the media sample.
</summary>
<param name="sampleTime">Starting time of the sample, in seconds.</param>
<param name="sample">Pointer to the sample's <b>IMediaSample</b> interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISampleGrabberCB.BufferCB(System.Double,System.IntPtr,System.Int32)">
<summary>
Callback method that receives a pointer to the sample bufferю
</summary>
<param name="sampleTime">Starting time of the sample, in seconds.</param>
<param name="buffer">Pointer to a buffer that contains the sample data.</param>
<param name="bufferLen">Length of the buffer pointed to by <b>buffer</b>, in bytes</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.VideoCaptureDeviceForm">
<summary>
Local video device selection form.
</summary>
<remarks><para>The form provides a standard way of selecting local video
device (USB web camera, capture board, etc. - anything supporting DirectShow
interface), which can be reused across applications. It allows selecting video
device, video size and snapshots size (if device supports snapshots and
<see cref="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.ConfigureSnapshots">user needs them</see>).</para>
<para><img src="img/video/VideoCaptureDeviceForm.png" width="478" height="205"/></para>
</remarks>
</member>
<member name="F:AForge.Video.DirectShow.VideoCaptureDeviceForm.components">
<summary>
Required designer variable.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDeviceForm.Dispose(System.Boolean)">
<summary>
Clean up any resources being used.
</summary>
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDeviceForm.InitializeComponent">
<summary>
Required method for Designer support - do not modify
the contents of this method with the code editor.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDeviceForm.#ctor">
<summary>
Initializes a new instance of the <see cref="T:AForge.Video.DirectShow.VideoCaptureDeviceForm"/> class.
</summary>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.ConfigureSnapshots">
<summary>
Specifies if snapshot configuration should be done or not.
</summary>
<remarks><para>The property specifies if the dialog form should
allow configuration of snapshot sizes (if selected video source supports
snapshots). If the property is set to <see langword="true"/>, then
the form will provide additional combo box enumerating supported
snapshot sizes. Otherwise the combo boxes will be hidden.
</para>
<para>If the property is set to <see langword="true"/> and selected
device supports snapshots, then <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.ProvideSnapshots"/>
property of the <see cref="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.VideoDevice">configured device</see> is set to
<see langword="true"/>.</para>
<para>Default value of the property is set to <see langword="false"/>.</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.VideoDevice">
<summary>
Provides configured video device.
</summary>
<remarks><para>The property provides configured video device if user confirmed
the dialog using "OK" button. If user canceled the dialog, the property is
set to <see langword="null"/>.</para></remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.VideoDeviceMoniker">
<summary>
Moniker string of the selected video device.
</summary>
<remarks><para>The property allows to get moniker string of the selected device
on form completion or set video device which should be selected by default on
form loading.</para></remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.CaptureSize">
<summary>
Video frame size of the selected device.
</summary>
<remarks><para>The property allows to get video size of the selected device
on form completion or set the size to be selected by default on form loading.</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.SnapshotSize">
<summary>
Snapshot frame size of the selected device.
</summary>
<remarks><para>The property allows to get snapshot size of the selected device
on form completion or set the size to be selected by default on form loading
(if <see cref="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.ConfigureSnapshots"/> property is set <see langword="true"/>).</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDeviceForm.VideoInput">
<summary>
Video input to use with video capture card.
</summary>
<remarks><para>The property allows to get video input of the selected device
on form completion or set it to be selected by default on form loading.</para></remarks>
</member>
<member name="T:AForge.Video.DirectShow.Internals.Tools">
<summary>
Some miscellaneous functions.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.Tools.GetPin(AForge.Video.DirectShow.Internals.IBaseFilter,AForge.Video.DirectShow.Internals.PinDirection,System.Int32)">
<summary>
Get filter's pin.
</summary>
<param name="filter">Filter to get pin of.</param>
<param name="dir">Pin's direction.</param>
<param name="num">Pin's number.</param>
<returns>Returns filter's pin.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.Tools.GetInPin(AForge.Video.DirectShow.Internals.IBaseFilter,System.Int32)">
<summary>
Get filter's input pin.
</summary>
<param name="filter">Filter to get pin of.</param>
<param name="num">Pin's number.</param>
<returns>Returns filter's pin.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.Tools.GetOutPin(AForge.Video.DirectShow.Internals.IBaseFilter,System.Int32)">
<summary>
Get filter's output pin.
</summary>
<param name="filter">Filter to get pin of.</param>
<param name="num">Pin's number.</param>
<returns>Returns filter's pin.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.ISpecifyPropertyPages">
<summary>
The interface indicates that an object supports property pages.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ISpecifyPropertyPages.GetPages(AForge.Video.DirectShow.Internals.CAUUID@)">
<summary>
Fills a counted array of GUID values where each GUID specifies the
CLSID of each property page that can be displayed in the property
sheet for this object.
</summary>
<param name="pPages">Pointer to a CAUUID structure that must be initialized
and filled before returning.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IEnumPins">
<summary>
Enumerates pins on a filter.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IEnumPins.Next(System.Int32,AForge.Video.DirectShow.Internals.IPin[],System.Int32@)">
<summary>
Retrieves a specified number of pins.
</summary>
<param name="cPins">Number of pins to retrieve.</param>
<param name="pins">Array of size <b>cPins</b> that is filled with <b>IPin</b> pointers.</param>
<param name="pinsFetched">Receives the number of pins retrieved.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IEnumPins.Skip(System.Int32)">
<summary>
Skips a specified number of pins in the enumeration sequence.
</summary>
<param name="cPins">Number of pins to skip.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IEnumPins.Reset">
<summary>
Resets the enumeration sequence to the beginning.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IEnumPins.Clone(AForge.Video.DirectShow.Internals.IEnumPins@)">
<summary>
Makes a copy of the enumerator with the same enumeration state.
</summary>
<param name="enumPins">Duplicate of the enumerator.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IAMStreamConfig">
<summary>
This interface sets the output format on certain capture and compression filters,
for both audio and video.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMStreamConfig.SetFormat(AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Set the output format on the pin.
</summary>
<param name="mediaType">Media type to set.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMStreamConfig.GetFormat(AForge.Video.DirectShow.Internals.AMMediaType@)">
<summary>
Retrieves the audio or video stream's format.
</summary>
<param name="mediaType">Retrieved media type.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMStreamConfig.GetNumberOfCapabilities(System.Int32@,System.Int32@)">
<summary>
Retrieve the number of format capabilities that this pin supports.
</summary>
<param name="count">Variable that receives the number of format capabilities.</param>
<param name="size">Variable that receives the size of the configuration structure in bytes.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMStreamConfig.GetStreamCaps(System.Int32,AForge.Video.DirectShow.Internals.AMMediaType@,AForge.Video.DirectShow.Internals.VideoStreamConfigCaps)">
<summary>
Retrieve a set of format capabilities.
</summary>
<param name="index">Specifies the format capability to retrieve, indexed from zero.</param>
<param name="mediaType">Retrieved media type.</param>
<param name="streamConfigCaps">Byte array, which receives information about capabilities.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.FilterInfoCollection">
<summary>
Collection of filters' information objects.
</summary>
<remarks><para>The class allows to enumerate DirectShow filters of specified category. For
a list of categories see <see cref="T:AForge.Video.DirectShow.FilterCategory"/>.</para>
<para>Sample usage:</para>
<code>
// enumerate video devices
videoDevices = new FilterInfoCollection( FilterCategory.VideoInputDevice );
// list devices
foreach ( FilterInfo device in videoDevices )
{
// ...
}
</code>
</remarks>
</member>
<member name="M:AForge.Video.DirectShow.FilterInfoCollection.#ctor(System.Guid)">
<summary>
Initializes a new instance of the <see cref="T:AForge.Video.DirectShow.FilterInfoCollection"/> class.
</summary>
<param name="category">Guid of DirectShow filter category. See <see cref="T:AForge.Video.DirectShow.FilterCategory"/>.</param>
<remarks>Build collection of filters' information objects for the
specified filter category.</remarks>
</member>
<member name="P:AForge.Video.DirectShow.FilterInfoCollection.Item(System.Int32)">
<summary>
Get filter information object.
</summary>
<param name="index">Index of filter information object to retrieve.</param>
<returns>Filter information object.</returns>
</member>
<member name="T:AForge.Video.DirectShow.VideoCaptureDevice">
<summary>
Video source for local video capture device (for example USB webcam).
</summary>
<remarks><para>This video source class captures video data from local video capture device,
like USB web camera (or internal), frame grabber, capture board - anything which
supports <b>DirectShow</b> interface. For devices which has a shutter button or
support external software triggering, the class also allows to do snapshots. Both
video size and snapshot size can be configured.</para>
<para>Sample usage:</para>
<code>
// enumerate video devices
videoDevices = new FilterInfoCollection( FilterCategory.VideoInputDevice );
// create video source
VideoCaptureDevice videoSource = new VideoCaptureDevice( videoDevices[0].MonikerString );
// set NewFrame event handler
videoSource.NewFrame += new NewFrameEventHandler( video_NewFrame );
// start the video source
videoSource.Start( );
// ...
// signal to stop when you no longer need capturing
videoSource.SignalToStop( );
// ...
private void video_NewFrame( object sender, NewFrameEventArgs eventArgs )
{
// get new frame
Bitmap bitmap = eventArgs.Frame;
// process the frame
}
</code>
</remarks>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.#ctor">
<summary>
Initializes a new instance of the <see cref="T:AForge.Video.DirectShow.VideoCaptureDevice"/> class.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:AForge.Video.DirectShow.VideoCaptureDevice"/> class.
</summary>
<param name="deviceMoniker">Moniker string of video capture device.</param>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.Start">
<summary>
Start video source.
</summary>
<remarks>Starts video source and return execution to caller. Video source
object creates background thread and notifies about new frames with the
help of <see cref="E:AForge.Video.DirectShow.VideoCaptureDevice.NewFrame"/> event.</remarks>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.SignalToStop">
<summary>
Signal video source to stop its work.
</summary>
<remarks>Signals video source to stop its background thread, stop to
provide new frames and free resources.</remarks>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.WaitForStop">
<summary>
Wait for video source has stopped.
</summary>
<remarks>Waits for source stopping after it was signalled to stop using
<see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.SignalToStop"/> method.</remarks>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.Stop">
<summary>
Stop video source.
</summary>
<remarks><para>Stops video source aborting its thread.</para>
<para><note>Since the method aborts background thread, its usage is highly not preferred
and should be done only if there are no other options. The correct way of stopping camera
is <see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.SignalToStop">signaling it stop</see> and then
<see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.WaitForStop">waiting</see> for background thread's completion.</note></para>
</remarks>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.Free">
<summary>
Free resource.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.DisplayPropertyPage(System.IntPtr)">
<summary>
Display property window for the video capture device providing its configuration
capabilities.
</summary>
<param name="parentWindow">Handle of parent window.</param>
<remarks><para><note>If you pass parent window's handle to this method, then the
displayed property page will become modal window and none of the controls from the
parent window will be accessible. In order to make it modeless it is required
to pass <see cref="F:System.IntPtr.Zero"/> as parent window's handle.
</note></para>
</remarks>
<exception cref="T:System.NotSupportedException">The video source does not support configuration property page.</exception>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.DisplayCrossbarPropertyPage(System.IntPtr)">
<summary>
Display property page of video crossbar (Analog Video Crossbar filter).
</summary>
<param name="parentWindow">Handle of parent window.</param>
<remarks><para>The Analog Video Crossbar filter is modeled after a general switching matrix,
with n inputs and m outputs. For example, a video card might have two external connectors:
a coaxial connector for TV, and an S-video input. These would be represented as input pins on
the filter. The displayed property page allows to configure the crossbar by selecting input
of a video card to use.</para>
<para><note>This method can be invoked only when video source is running (<see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.IsRunning"/> is
<see langword="true"/>). Otherwise it generates exception.</note></para>
<para>Use <see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.CheckIfCrossbarAvailable"/> method to check if running video source provides
crossbar configuration.</para>
</remarks>
<exception cref="T:System.ApplicationException">The video source must be running in order to display crossbar property page.</exception>
<exception cref="T:System.NotSupportedException">Crossbar configuration is not supported by currently running video source.</exception>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.CheckIfCrossbarAvailable">
<summary>
Check if running video source provides crossbar for configuration.
</summary>
<returns>Returns <see langword="true"/> if crossbar configuration is available or
<see langword="false"/> otherwise.</returns>
<remarks><para>The method reports if the video source provides crossbar configuration
using <see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.DisplayCrossbarPropertyPage(System.IntPtr)"/>.</para>
</remarks>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.SimulateTrigger">
<summary>
Simulates an external trigger.
</summary>
<remarks><para>The method simulates external trigger for video cameras, which support
providing still image snapshots. The effect is equivalent as pressing camera's shutter
button - a snapshot will be provided through <see cref="E:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotFrame"/> event.</para>
<para><note>The <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.ProvideSnapshots"/> property must be set to <see langword="true"/>
to enable receiving snapshots.</note></para>
</remarks>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.SetCameraProperty(AForge.Video.DirectShow.CameraControlProperty,System.Int32,AForge.Video.DirectShow.CameraControlFlags)">
<summary>
Sets a specified property on the camera.
</summary>
<param name="property">Specifies the property to set.</param>
<param name="value">Specifies the new value of the property.</param>
<param name="controlFlags">Specifies the desired control setting.</param>
<returns>Returns true on sucee or false otherwise.</returns>
<exception cref="T:System.ArgumentException">Video source is not specified - device moniker is not set.</exception>
<exception cref="T:System.ApplicationException">Failed creating device object for moniker.</exception>
<exception cref="T:System.NotSupportedException">The video source does not support camera control.</exception>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.GetCameraProperty(AForge.Video.DirectShow.CameraControlProperty,System.Int32@,AForge.Video.DirectShow.CameraControlFlags@)">
<summary>
Gets the current setting of a camera property.
</summary>
<param name="property">Specifies the property to retrieve.</param>
<param name="value">Receives the value of the property.</param>
<param name="controlFlags">Receives the value indicating whether the setting is controlled manually or automatically</param>
<returns>Returns true on sucee or false otherwise.</returns>
<exception cref="T:System.ArgumentException">Video source is not specified - device moniker is not set.</exception>
<exception cref="T:System.ApplicationException">Failed creating device object for moniker.</exception>
<exception cref="T:System.NotSupportedException">The video source does not support camera control.</exception>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.GetCameraPropertyRange(AForge.Video.DirectShow.CameraControlProperty,System.Int32@,System.Int32@,System.Int32@,System.Int32@,AForge.Video.DirectShow.CameraControlFlags@)">
<summary>
Gets the range and default value of a specified camera property.
</summary>
<param name="property">Specifies the property to query.</param>
<param name="minValue">Receives the minimum value of the property.</param>
<param name="maxValue">Receives the maximum value of the property.</param>
<param name="stepSize">Receives the step size for the property.</param>
<param name="defaultValue">Receives the default value of the property.</param>
<param name="controlFlags">Receives a member of the <see cref="T:AForge.Video.DirectShow.CameraControlFlags"/> enumeration, indicating whether the property is controlled automatically or manually.</param>
<returns>Returns true on sucee or false otherwise.</returns>
<exception cref="T:System.ArgumentException">Video source is not specified - device moniker is not set.</exception>
<exception cref="T:System.ApplicationException">Failed creating device object for moniker.</exception>
<exception cref="T:System.NotSupportedException">The video source does not support camera control.</exception>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.WorkerThread">
<summary>
Worker thread.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.OnNewFrame(System.Drawing.Bitmap)">
<summary>
Notifies clients about new frame.
</summary>
<param name="image">New frame's image.</param>
</member>
<member name="M:AForge.Video.DirectShow.VideoCaptureDevice.OnSnapshotFrame(System.Drawing.Bitmap)">
<summary>
Notifies clients about new snapshot frame.
</summary>
<param name="image">New snapshot's image.</param>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.CrossbarVideoInput">
<summary>
Current video input of capture card.
</summary>
<remarks><para>The property specifies video input to use for video devices like capture cards
(those which provide crossbar configuration). List of available video inputs can be obtained
from <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.AvailableCrossbarVideoInputs"/> property.</para>
<para>To check if the video device supports crossbar configuration, the <see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.CheckIfCrossbarAvailable"/>
method can be used.</para>
<para><note>This property can be set as before running video device, as while running it.</note></para>
<para>By default this property is set to <see cref="P:AForge.Video.DirectShow.VideoInput.Default"/>, which means video input
will not be set when running video device, but currently configured will be used. After video device
is started this property will be updated anyway to tell current video input.</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.AvailableCrossbarVideoInputs">
<summary>
Available inputs of the video capture card.
</summary>
<remarks><para>The property provides list of video inputs for devices like video capture cards.
Such devices usually provide several video inputs, which can be selected using crossbar.
If video device represented by the object of this class supports crossbar, then this property
will list all video inputs. However if it is a regular USB camera, for example, which does not
provide crossbar configuration, the property will provide zero length array.</para>
<para>Video input to be used can be selected using <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.CrossbarVideoInput"/>. See also
<see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.DisplayCrossbarPropertyPage(System.IntPtr)"/> method, which provides crossbar configuration dialog.</para>
<para><note>It is recomended not to call this property immediately after <see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.Start"/> method, since
device may not start yet and provide its information. It is better to call the property
before starting device or a bit after (but not immediately after).</note></para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.ProvideSnapshots">
<summary>
Specifies if snapshots should be provided or not.
</summary>
<remarks><para>Some USB cameras/devices may have a shutter button, which may result into snapshot if it
is pressed. So the property specifies if the video source will try providing snapshots or not - it will
check if the camera supports providing still image snapshots. If camera supports snapshots and the property
is set to <see langword="true"/>, then snapshots will be provided through <see cref="E:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotFrame"/>
event.</para>
<para>Check supported sizes of snapshots using <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotCapabilities"/> property and set the
desired size using <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotResolution"/> property.</para>
<para><note>The property must be set before running the video source to take effect.</note></para>
<para>Default value of the property is set to <see langword="false"/>.</para>
</remarks>
</member>
<member name="E:AForge.Video.DirectShow.VideoCaptureDevice.NewFrame">
<summary>
New frame event.
</summary>
<remarks><para>Notifies clients about new available frame from video source.</para>
<para><note>Since video source may have multiple clients, each client is responsible for
making a copy (cloning) of the passed video frame, because the video source disposes its
own original copy after notifying of clients.</note></para>
</remarks>
</member>
<member name="E:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotFrame">
<summary>
Snapshot frame event.
</summary>
<remarks><para>Notifies clients about new available snapshot frame - the one which comes when
camera's snapshot/shutter button is pressed.</para>
<para>See documentation to <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.ProvideSnapshots"/> for additional information.</para>
<para><note>Since video source may have multiple clients, each client is responsible for
making a copy (cloning) of the passed snapshot frame, because the video source disposes its
own original copy after notifying of clients.</note></para>
</remarks>
<seealso cref="P:AForge.Video.DirectShow.VideoCaptureDevice.ProvideSnapshots"/>
</member>
<member name="E:AForge.Video.DirectShow.VideoCaptureDevice.VideoSourceError">
<summary>
Video source error event.
</summary>
<remarks>This event is used to notify clients about any type of errors occurred in
video source object, for example internal exceptions.</remarks>
</member>
<member name="E:AForge.Video.DirectShow.VideoCaptureDevice.PlayingFinished">
<summary>
Video playing finished event.
</summary>
<remarks><para>This event is used to notify clients that the video playing has finished.</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.Source">
<summary>
Video source.
</summary>
<remarks>Video source is represented by moniker string of video capture device.</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.FramesReceived">
<summary>
Received frames count.
</summary>
<remarks>Number of frames the video source provided from the moment of the last
access to the property.
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.BytesReceived">
<summary>
Received bytes count.
</summary>
<remarks>Number of bytes the video source provided from the moment of the last
access to the property.
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.IsRunning">
<summary>
State of the video source.
</summary>
<remarks>Current state of video source object - running or not.</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.DesiredFrameSize">
<summary>
Obsolete - no longer in use
</summary>
<remarks><para>The property is obsolete. Use <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.VideoResolution"/> property instead.
Setting this property does not have any effect.</para></remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.DesiredSnapshotSize">
<summary>
Obsolete - no longer in use
</summary>
<remarks><para>The property is obsolete. Use <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotResolution"/> property instead.
Setting this property does not have any effect.</para></remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.DesiredFrameRate">
<summary>
Obsolete - no longer in use.
</summary>
<remarks><para>The property is obsolete. Setting this property does not have any effect.</para></remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.VideoResolution">
<summary>
Video resolution to set.
</summary>
<remarks><para>The property allows to set one of the video resolutions supported by the camera.
Use <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.VideoCapabilities"/> property to get the list of supported video resolutions.</para>
<para><note>The property must be set before camera is started to make any effect.</note></para>
<para>Default value of the property is set to <see langword="null"/>, which means default video
resolution is used.</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotResolution">
<summary>
Snapshot resolution to set.
</summary>
<remarks><para>The property allows to set one of the snapshot resolutions supported by the camera.
Use <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotCapabilities"/> property to get the list of supported snapshot resolutions.</para>
<para><note>The property must be set before camera is started to make any effect.</note></para>
<para>Default value of the property is set to <see langword="null"/>, which means default snapshot
resolution is used.</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.VideoCapabilities">
<summary>
Video capabilities of the device.
</summary>
<remarks><para>The property provides list of device's video capabilities.</para>
<para><note>It is recomended not to call this property immediately after <see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.Start"/> method, since
device may not start yet and provide its information. It is better to call the property
before starting device or a bit after (but not immediately after).</note></para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.SnapshotCapabilities">
<summary>
Snapshot capabilities of the device.
</summary>
<remarks><para>The property provides list of device's snapshot capabilities.</para>
<para>If the array has zero length, then it means that this device does not support making
snapshots.</para>
<para>See documentation to <see cref="P:AForge.Video.DirectShow.VideoCaptureDevice.ProvideSnapshots"/> for additional information.</para>
<para><note>It is recomended not to call this property immediately after <see cref="M:AForge.Video.DirectShow.VideoCaptureDevice.Start"/> method, since
device may not start yet and provide its information. It is better to call the property
before starting device or a bit after (but not immediately after).</note></para>
</remarks>
<seealso cref="P:AForge.Video.DirectShow.VideoCaptureDevice.ProvideSnapshots"/>
</member>
<member name="P:AForge.Video.DirectShow.VideoCaptureDevice.SourceObject">
<summary>
Source COM object of camera capture device.
</summary>
<remarks><para>The source COM object of camera capture device is exposed for the
case when user may need get direct access to the object for making some custom
configuration of camera through DirectShow interface, for example.
</para>
<para>If camera is not running, the property is set to <see langword="null"/>.</para>
</remarks>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IVideoWindow">
<summary>
The interface sets properties on the video window.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_Caption(System.String)">
<summary>
Sets the video window caption.
</summary>
<param name="caption">Caption.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_Caption(System.String@)">
<summary>
Retrieves the video window caption.
</summary>
<param name="caption">Caption.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_WindowStyle(System.Int32)">
<summary>
Sets the window style on the video window.
</summary>
<param name="windowStyle">Window style flags.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_WindowStyle(System.Int32@)">
<summary>
Retrieves the window style on the video window.
</summary>
<param name="windowStyle">Window style flags.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_WindowStyleEx(System.Int32)">
<summary>
Sets the extended window style on the video window.
</summary>
<param name="windowStyleEx">Window extended style flags.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_WindowStyleEx(System.Int32@)">
<summary>
Retrieves the extended window style on the video window.
</summary>
<param name="windowStyleEx">Window extended style flags.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_AutoShow(System.Boolean)">
<summary>
Specifies whether the video renderer automatically shows the video window when it receives video data.
</summary>
<param name="autoShow">Specifies whether the video renderer automatically shows the video window.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_AutoShow(System.Boolean@)">
<summary>
Queries whether the video renderer automatically shows the video window when it receives video data.
</summary>
<param name="autoShow">REceives window auto show flag.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_WindowState(System.Int32)">
<summary>
Shows, hides, minimizes, or maximizes the video window.
</summary>
<param name="windowState">Window state.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_WindowState(System.Int32@)">
<summary>
Queries whether the video window is visible, hidden, minimized, or maximized.
</summary>
<param name="windowState">Window state.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_BackgroundPalette(System.Boolean)">
<summary>
Specifies whether the video window realizes its palette in the background.
</summary>
<param name="backgroundPalette">Value that specifies whether the video renderer realizes it palette in the background.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_BackgroundPalette(System.Boolean@)">
<summary>
Queries whether the video window realizes its palette in the background.
</summary>
<param name="backgroundPalette">Receives state of background palette flag.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_Visible(System.Boolean)">
<summary>
Shows or hides the video window.
</summary>
<param name="visible">Value that specifies whether to show or hide the window.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_Visible(System.Boolean@)">
<summary>
Queries whether the video window is visible.
</summary>
<param name="visible">Visibility flag.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_Left(System.Int32)">
<summary>
Sets the video window's x-coordinate.
</summary>
<param name="left">Specifies the x-coordinate, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_Left(System.Int32@)">
<summary>
Retrieves the video window's x-coordinate.
</summary>
<param name="left">x-coordinate, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_Width(System.Int32)">
<summary>
Sets the width of the video window.
</summary>
<param name="width">Specifies the width, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_Width(System.Int32@)">
<summary>
Retrieves the width of the video window.
</summary>
<param name="width">Width, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_Top(System.Int32)">
<summary>
Sets the video window's y-coordinate.
</summary>
<param name="top">Specifies the y-coordinate, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_Top(System.Int32@)">
<summary>
Retrieves the video window's y-coordinate.
</summary>
<param name="top">y-coordinate, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_Height(System.Int32)">
<summary>
Sets the height of the video window.
</summary>
<param name="height">Specifies the height, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_Height(System.Int32@)">
<summary>
Retrieves the height of the video window.
</summary>
<param name="height">Height, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_Owner(System.IntPtr)">
<summary>
Specifies a parent window for the video windowю
</summary>
<param name="owner">Specifies a handle to the parent window.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_Owner(System.IntPtr@)">
<summary>
Retrieves the video window's parent window, if anyю
</summary>
<param name="owner">Parent window's handle.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_MessageDrain(System.IntPtr)">
<summary>
Specifies a window to receive mouse and keyboard messages from the video window.
</summary>
<param name="drain">Specifies a handle to the window.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_MessageDrain(System.IntPtr@)">
<summary>
Retrieves the window that receives mouse and keyboard messages from the video window, if any.
</summary>
<param name="drain">Window's handle.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_BorderColor(System.Int32@)">
<summary>
Retrieves the color that appears around the edges of the destination rectangle.
</summary>
<param name="color">Border's color.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_BorderColor(System.Int32)">
<summary>
Sets the color that appears around the edges of the destination rectangle.
</summary>
<param name="color">Specifies the border color.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.get_FullScreenMode(System.Boolean@)">
<summary>
Queries whether the video renderer is in full-screen mode.
</summary>
<param name="fullScreenMode">Full-screen mode.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.put_FullScreenMode(System.Boolean)">
<summary>
Enables or disables full-screen mode.
</summary>
<param name="fullScreenMode">Boolean value that specifies whether to enable or disable full-screen mode.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.SetWindowForeground(System.Int32)">
<summary>
Places the video window at the top of the Z order.
</summary>
<param name="focus">Value that specifies whether to give the window focus.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.NotifyOwnerMessage(System.IntPtr,System.Int32,System.IntPtr,System.IntPtr)">
<summary>
Forwards a message to the video window.
</summary>
<param name="hwnd">Handle to the window.</param>
<param name="msg">Specifies the message.</param>
<param name="wParam">Message parameter.</param>
<param name="lParam">Message parameter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.SetWindowPosition(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Sets the position of the video windowю
</summary>
<param name="left">Specifies the x-coordinate, in pixels.</param>
<param name="top">Specifies the y-coordinate, in pixels.</param>
<param name="width">Specifies the width, in pixels.</param>
<param name="height">Specifies the height, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.GetWindowPosition(System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
<summary>
Retrieves the position of the video window.
</summary>
<param name="left">x-coordinate, in pixels.</param>
<param name="top">y-coordinate, in pixels.</param>
<param name="width">Width, in pixels.</param>
<param name="height">Height, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.GetMinIdealImageSize(System.Int32@,System.Int32@)">
<summary>
Retrieves the minimum ideal size for the video image.
</summary>
<param name="width">Receives the minimum ideal width, in pixels.</param>
<param name="height">Receives the minimum ideal height, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.GetMaxIdealImageSize(System.Int32@,System.Int32@)">
<summary>
Retrieves the maximum ideal size for the video image.
</summary>
<param name="width">Receives the maximum ideal width, in pixels.</param>
<param name="height">Receives the maximum ideal height, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.GetRestorePosition(System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
<summary>
Retrieves the restored window position.
</summary>
<param name="left">x-coordinate, in pixels.</param>
<param name="top">y-coordinate, in pixels.</param>
<param name="width">Width, in pixels.</param>
<param name="height">Height, in pixels.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.HideCursor(System.Boolean)">
<summary>
Hides the cursor.
</summary>
<param name="hideCursor">Specifies whether to hide or display the cursor.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IVideoWindow.IsCursorHidden(System.Boolean@)">
<summary>
Queries whether the cursor is hidden.
</summary>
<param name="hideCursor">Specifies if cursor is hidden or not.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IPropertyBag">
<summary>
The <b>IPropertyBag</b> interface provides an object with a property bag in
which the object can persistently save its properties.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPropertyBag.Read(System.String,System.Object@,System.IntPtr)">
<summary>
Read a property from property bag.
</summary>
<param name="propertyName">Property name to read.</param>
<param name="pVar">Property value.</param>
<param name="pErrorLog">Caller's error log.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IPropertyBag.Write(System.String,System.Object@)">
<summary>
Write property to property bag.
</summary>
<param name="propertyName">Property name to read.</param>
<param name="pVar">Property value.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IMediaFilter">
<summary>
The interface provides methods for controlling the flow of data through the filter graph.
It includes methods for running, pausing, and stopping the graph.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaFilter.Stop">
<summary>
This method informs the filter to transition to the new state.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaFilter.Pause">
<summary>
This method informs the filter to transition to the new state.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaFilter.Run(System.Int64)">
<summary>
This method informs the filter to transition to the new (running) state. Passes a time value to synchronize independent streams.
</summary>
<param name="tStart">Time value of the reference clock. The amount to be added to the IMediaSample time stamp to determine the time at which that sample should be rendered according to the reference clock. That is, it is the reference time at which a sample with a stream time of zero should be rendered.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaFilter.GetState(System.Int32,AForge.Video.DirectShow.Internals.FilterState@)">
<summary>
This method determines the filter's state.
</summary>
<param name="dwMilliSecsTimeout">Duration of the time-out, in milliseconds. To block indefinitely, pass INFINITE. </param>
<param name="filtState">Returned state of the filter. States include stopped, paused, running, or intermediate (in the process of changing). </param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaFilter.SetSyncSource(AForge.Video.DirectShow.Internals.IReferenceClock)">
<summary>
This method identifies the reference clock to which the filter should synchronize activity.
</summary>
<param name="pClock">Pointer to the IReferenceClock interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaFilter.GetSyncSource(AForge.Video.DirectShow.Internals.IReferenceClock@)">
<summary>
This method retrieves the current reference clock in use by this filter.
</summary>
<param name="pClock">Pointer to a reference clock; it will be set to the IReferenceClock interface. </param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IMediaControl">
<summary>
The interface provides methods for controlling the flow of data through the filter graph.
It includes methods for running, pausing, and stopping the graph.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.Run">
<summary>
Runs all the filters in the filter graph.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.Pause">
<summary>
Pauses all filters in the filter graph.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.Stop">
<summary>
Stops all the filters in the filter graph.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.GetState(System.Int32,System.Int32@)">
<summary>
Retrieves the state of the filter graph.
</summary>
<param name="timeout">Duration of the time-out, in milliseconds, or INFINITE to specify an infinite time-out.</param>
<param name="filterState">Мariable that receives a member of the <b>FILTER_STATE</b> enumeration.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.RenderFile(System.String)">
<summary>
Builds a filter graph that renders the specified file.
</summary>
<param name="fileName">Name of the file to render</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.AddSourceFilter(System.String,System.Object@)">
<summary>
Adds a source filter to the filter graph, for a specified file.
</summary>
<param name="fileName">Name of the file containing the source video.</param>
<param name="filterInfo">Receives interface of filter information object.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.get_FilterCollection(System.Object@)">
<summary>
Retrieves a collection of the filters in the filter graph.
</summary>
<param name="collection">Receives the <b>IAMCollection</b> interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.get_RegFilterCollection(System.Object@)">
<summary>
Retrieves a collection of all the filters listed in the registry.
</summary>
<param name="collection">Receives the <b>IDispatch</b> interface of <b>IAMCollection</b> object.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaControl.StopWhenReady">
<summary>
Pauses the filter graph, allowing filters to queue data, and then stops the filter graph.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IFilterGraph2">
<summary>
This interface extends the <see cref="T:AForge.Video.DirectShow.Internals.IFilterGraph"/> and <see cref="T:AForge.Video.DirectShow.Internals.IGraphBuilder"/>
interfaces, which contain methods for building filter graphs.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.AddFilter(AForge.Video.DirectShow.Internals.IBaseFilter,System.String)">
<summary>
Adds a filter to the graph and gives it a name.
</summary>
<param name="filter">Filter to add to the graph.</param>
<param name="name">Name of the filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.RemoveFilter(AForge.Video.DirectShow.Internals.IBaseFilter)">
<summary>
Removes a filter from the graph.
</summary>
<param name="filter">Filter to be removed from the graph.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.EnumFilters(AForge.Video.DirectShow.Internals.IEnumFilters@)">
<summary>
Provides an enumerator for all filters in the graph.
</summary>
<param name="enumerator">Filter enumerator.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.FindFilterByName(System.String,AForge.Video.DirectShow.Internals.IBaseFilter@)">
<summary>
Finds a filter that was added with a specified name.
</summary>
<param name="name">Name of filter to search for.</param>
<param name="filter">Interface of found filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.ConnectDirect(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Connects two pins directly (without intervening filters).
</summary>
<param name="pinOut">Output pin.</param>
<param name="pinIn">Input pin.</param>
<param name="mediaType">Media type to use for the connection.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.Reconnect(AForge.Video.DirectShow.Internals.IPin)">
<summary>
Breaks the existing pin connection and reconnects it to the same pin.
</summary>
<param name="pin">Pin to disconnect and reconnect.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.Disconnect(AForge.Video.DirectShow.Internals.IPin)">
<summary>
Disconnects a specified pin.
</summary>
<param name="pin">Pin to disconnect.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.SetDefaultSyncSource">
<summary>
Sets the reference clock to the default clock.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.Connect(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.IPin)">
<summary>
Connects two pins. If they will not connect directly, this method connects them with intervening transforms.
</summary>
<param name="pinOut">Output pin.</param>
<param name="pinIn">Input pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.Render(AForge.Video.DirectShow.Internals.IPin)">
<summary>
Adds a chain of filters to a specified output pin to render it.
</summary>
<param name="pinOut">Output pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.RenderFile(System.String,System.String)">
<summary>
Builds a filter graph that renders the specified file.
</summary>
<param name="file">Specifies a string that contains file name or device moniker.</param>
<param name="playList">Reserved.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.AddSourceFilter(System.String,System.String,AForge.Video.DirectShow.Internals.IBaseFilter@)">
<summary>
Adds a source filter to the filter graph for a specific file.
</summary>
<param name="fileName">Specifies the name of the file to load.</param>
<param name="filterName">Specifies a name for the source filter.</param>
<param name="filter">Variable that receives the interface of the source filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.SetLogFile(System.IntPtr)">
<summary>
Sets the file for logging actions taken when attempting to perform an operation.
</summary>
<param name="hFile">Handle to the log file.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.Abort">
<summary>
Requests that the graph builder return as soon as possible from its current task.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.ShouldOperationContinue">
<summary>
Queries whether the current operation should continue.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.AddSourceFilterForMoniker(System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.IBindCtx,System.String,AForge.Video.DirectShow.Internals.IBaseFilter@)">
<summary>
</summary>
<param name="moniker">Moniker interface.</param>
<param name="bindContext">Bind context interface.</param>
<param name="filterName">Name for the filter.</param>
<param name="filter"> Receives source filter's IBaseFilter interface.
The caller must release the interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.ReconnectEx(AForge.Video.DirectShow.Internals.IPin,AForge.Video.DirectShow.Internals.AMMediaType)">
<summary>
Breaks the existing pin connection and reconnects it to the same pin,
using a specified media type.
</summary>
<param name="pin">Pin to disconnect and reconnect.</param>
<param name="mediaType">Media type to reconnect with.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IFilterGraph2.RenderEx(AForge.Video.DirectShow.Internals.IPin,System.Int32,System.IntPtr)">
<summary>
Render an output pin, with an option to use existing renderers only.
</summary>
<param name="outputPin">Interface of the output pin.</param>
<param name="flags">Flag that specifies how to render the pin.</param>
<param name="context">Reserved.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IEnumFilters">
<summary>
This interface is used by applications or other filters to determine
what filters exist in the filter graph.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IEnumFilters.Next(System.Int32,AForge.Video.DirectShow.Internals.IBaseFilter[],System.Int32@)">
<summary>
Retrieves the specified number of filters in the enumeration sequence.
</summary>
<param name="cFilters">Number of filters to retrieve.</param>
<param name="filters">Array in which to place <see cref="T:AForge.Video.DirectShow.Internals.IBaseFilter"/> interfaces.</param>
<param name="filtersFetched">Actual number of filters placed in the array.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IEnumFilters.Skip(System.Int32)">
<summary>
Skips a specified number of filters in the enumeration sequence.
</summary>
<param name="cFilters">Number of filters to skip.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IEnumFilters.Reset">
<summary>
Resets the enumeration sequence to the beginning.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IEnumFilters.Clone(AForge.Video.DirectShow.Internals.IEnumFilters@)">
<summary>
Makes a copy of the enumerator with the same enumeration state.
</summary>
<param name="enumFilters">Duplicate of the enumerator.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.ICreateDevEnum">
<summary>
The <b>ICreateDevEnum</b> interface creates an enumerator for devices within a particular category,
such as video capture devices, audio capture devices, video compressors, and so forth.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.ICreateDevEnum.CreateClassEnumerator(System.Guid@,System.Runtime.InteropServices.ComTypes.IEnumMoniker@,System.Int32)">
<summary>
Creates a class enumerator for a specified device category.
</summary>
<param name="type">Specifies the class identifier of the device category.</param>
<param name="enumMoniker">Address of a variable that receives an <b>IEnumMoniker</b> interface pointer</param>
<param name="flags">Bitwise combination of zero or more flags. If zero, the method enumerates every filter in the category.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.Win32">
<summary>
Some Win32 API used internally.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.Win32.CreateBindCtx(System.Int32,System.Runtime.InteropServices.ComTypes.IBindCtx@)">
<summary>
Supplies a pointer to an implementation of <b>IBindCtx</b> (a bind context object).
This object stores information about a particular moniker-binding operation.
</summary>
<param name="reserved">Reserved for future use; must be zero.</param>
<param name="ppbc">Address of <b>IBindCtx*</b> pointer variable that receives the
interface pointer to the new bind context object.</param>
<returns>Returns <b>S_OK</b> on success.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.Win32.MkParseDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx,System.String,System.Int32@,System.Runtime.InteropServices.ComTypes.IMoniker@)">
<summary>
Converts a string into a moniker that identifies the object named by the string.
</summary>
<param name="pbc">Pointer to the IBindCtx interface on the bind context object to be used in this binding operation.</param>
<param name="szUserName">Pointer to a zero-terminated wide character string containing the display name to be parsed. </param>
<param name="pchEaten">Pointer to the number of characters of szUserName that were consumed.</param>
<param name="ppmk">Address of <b>IMoniker*</b> pointer variable that receives the interface pointer
to the moniker that was built from <b>szUserName</b>.</param>
<returns>Returns <b>S_OK</b> on success.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.Win32.memcpy(System.Byte*,System.Byte*,System.Int32)">
<summary>
Copy a block of memory.
</summary>
<param name="dst">Destination pointer.</param>
<param name="src">Source pointer.</param>
<param name="count">Memory block's length to copy.</param>
<returns>Return's the value of <b>dst</b> - pointer to destination.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.Win32.OleCreatePropertyFrame(System.IntPtr,System.Int32,System.Int32,System.String,System.Int32,System.Object@,System.Int32,System.IntPtr,System.Int32,System.Int32,System.IntPtr)">
<summary>
Invokes a new property frame, that is, a property sheet dialog box.
</summary>
<param name="hwndOwner">Parent window of property sheet dialog box.</param>
<param name="x">Horizontal position for dialog box.</param>
<param name="y">Vertical position for dialog box.</param>
<param name="caption">Dialog box caption.</param>
<param name="cObjects">Number of object pointers in <b>ppUnk</b>.</param>
<param name="ppUnk">Pointer to the objects for property sheet.</param>
<param name="cPages">Number of property pages in <b>lpPageClsID</b>.</param>
<param name="lpPageClsID">Array of CLSIDs for each property page.</param>
<param name="lcid">Locale identifier for property sheet locale.</param>
<param name="dwReserved">Reserved.</param>
<param name="lpvReserved">Reserved.</param>
<returns>Returns <b>S_OK</b> on success.</returns>
</member>
<member name="T:AForge.Video.DirectShow.CameraControlProperty">
<summary>
The enumeration specifies a setting on a camera.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlProperty.Pan">
<summary>
Pan control.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlProperty.Tilt">
<summary>
Tilt control.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlProperty.Roll">
<summary>
Roll control.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlProperty.Zoom">
<summary>
Zoom control.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlProperty.Exposure">
<summary>
Exposure control.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlProperty.Iris">
<summary>
Iris control.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlProperty.Focus">
<summary>
Focus control.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.CameraControlFlags">
<summary>
The enumeration defines whether a camera setting is controlled manually or automatically.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlFlags.None">
<summary>
No control flag.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlFlags.Auto">
<summary>
Auto control Flag.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.CameraControlFlags.Manual">
<summary>
Manual control Flag.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.VideoInput">
<summary>
Video input of a capture board.
</summary>
<remarks><para>The class is used to describe video input of devices like video capture boards,
which usually provide several inputs.</para>
</remarks>
</member>
<member name="F:AForge.Video.DirectShow.VideoInput.Index">
<summary>
Index of the video input.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.VideoInput.Type">
<summary>
Type of the video input.
</summary>
</member>
<member name="P:AForge.Video.DirectShow.VideoInput.Default">
<summary>
Default video input. Used to specify that it should not be changed.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.FilterInfo">
<summary>
DirectShow filter information.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.FilterInfo.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:AForge.Video.DirectShow.FilterInfo"/> class.
</summary>
<param name="monikerString">Filters's moniker string.</param>
</member>
<member name="M:AForge.Video.DirectShow.FilterInfo.#ctor(System.Runtime.InteropServices.ComTypes.IMoniker)">
<summary>
Initializes a new instance of the <see cref="T:AForge.Video.DirectShow.FilterInfo"/> class.
</summary>
<param name="moniker">Filter's moniker object.</param>
</member>
<member name="M:AForge.Video.DirectShow.FilterInfo.CompareTo(System.Object)">
<summary>
Compare the object with another instance of this class.
</summary>
<param name="value">Object to compare with.</param>
<returns>A signed number indicating the relative values of this instance and <b>value</b>.</returns>
</member>
<member name="M:AForge.Video.DirectShow.FilterInfo.CreateFilter(System.String)">
<summary>
Create an instance of the filter.
</summary>
<param name="filterMoniker">Filter's moniker string.</param>
<returns>Returns filter's object, which implements <b>IBaseFilter</b> interface.</returns>
<remarks>The returned filter's object should be released using <b>Marshal.ReleaseComObject()</b>.</remarks>
</member>
<member name="P:AForge.Video.DirectShow.FilterInfo.Name">
<summary>
Filter name.
</summary>
</member>
<member name="P:AForge.Video.DirectShow.FilterInfo.MonikerString">
<summary>
Filters's moniker string.
</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.Clsid">
<summary>
DirectShow class IDs.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.Clsid.SystemDeviceEnum">
<summary>
System device enumerator.
</summary>
<remarks>Equals to CLSID_SystemDeviceEnum.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.Clsid.FilterGraph">
<summary>
Filter graph.
</summary>
<remarks>Equals to CLSID_FilterGraph.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.Clsid.SampleGrabber">
<summary>
Sample grabber.
</summary>
<remarks>Equals to CLSID_SampleGrabber.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.Clsid.CaptureGraphBuilder2">
<summary>
Capture graph builder.
</summary>
<remarks>Equals to CLSID_CaptureGraphBuilder2.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.Clsid.AsyncReader">
<summary>
Async reader.
</summary>
<remarks>Equals to CLSID_AsyncReader.</remarks>
</member>
<member name="T:AForge.Video.DirectShow.Internals.FormatType">
<summary>
DirectShow format types.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FormatType.VideoInfo">
<summary>
VideoInfo.
</summary>
<remarks>Equals to FORMAT_VideoInfo.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FormatType.VideoInfo2">
<summary>
VideoInfo2.
</summary>
<remarks>Equals to FORMAT_VideoInfo2.</remarks>
</member>
<member name="T:AForge.Video.DirectShow.Internals.MediaType">
<summary>
DirectShow media types.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaType.Video">
<summary>
Video.
</summary>
<remarks>Equals to MEDIATYPE_Video.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaType.Interleaved">
<summary>
Interleaved. Used by Digital Video (DV).
</summary>
<remarks>Equals to MEDIATYPE_Interleaved.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaType.Audio">
<summary>
Audio.
</summary>
<remarks>Equals to MEDIATYPE_Audio.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaType.Text">
<summary>
Text.
</summary>
<remarks>Equals to MEDIATYPE_Text.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaType.Stream">
<summary>
Byte stream with no time stamps.
</summary>
<remarks>Equals to MEDIATYPE_Stream.</remarks>
</member>
<member name="T:AForge.Video.DirectShow.Internals.MediaSubType">
<summary>
DirectShow media subtypes.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.YUYV">
<summary>
YUY2 (packed 4:2:2).
</summary>
<remarks>Equals to MEDIASUBTYPE_YUYV.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.IYUV">
<summary>
IYUV.
</summary>
<remarks>Equals to MEDIASUBTYPE_IYUV.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.DVSD">
<summary>
A DV encoding format. (FOURCC 'DVSD')
</summary>
<remarks>Equals to MEDIASUBTYPE_DVSD.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.RGB1">
<summary>
RGB, 1 bit per pixel (bpp), palettized.
</summary>
<remarks>Equals to MEDIASUBTYPE_RGB1.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.RGB4">
<summary>
RGB, 4 bpp, palettized.
</summary>
<remarks>Equals to MEDIASUBTYPE_RGB4.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.RGB8">
<summary>
RGB, 8 bpp.
</summary>
<remarks>Equals to MEDIASUBTYPE_RGB8.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.RGB565">
<summary>
RGB 565, 16 bpp.
</summary>
<remarks>Equals to MEDIASUBTYPE_RGB565.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.RGB555">
<summary>
RGB 555, 16 bpp.
</summary>
<remarks>Equals to MEDIASUBTYPE_RGB555.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.RGB24">
<summary>
RGB, 24 bpp.
</summary>
<remarks>Equals to MEDIASUBTYPE_RGB24.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.RGB32">
<summary>
RGB, 32 bpp, no alpha channel.
</summary>
<remarks>Equals to MEDIASUBTYPE_RGB32.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.Avi">
<summary>
Data from AVI file.
</summary>
<remarks>Equals to MEDIASUBTYPE_Avi.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.MediaSubType.Asf">
<summary>
Advanced Streaming Format (ASF).
</summary>
<remarks>Equals to MEDIASUBTYPE_Asf.</remarks>
</member>
<member name="T:AForge.Video.DirectShow.Internals.PinCategory">
<summary>
DirectShow pin categories.
</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.PinCategory.Capture">
<summary>
Capture pin.
</summary>
<remarks>Equals to PIN_CATEGORY_CAPTURE.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.PinCategory.StillImage">
<summary>
Still image pin.
</summary>
<remarks>Equals to PIN_CATEGORY_STILL.</remarks>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FindDirection.UpstreamOnly">
<summary>Equals to LOOK_UPSTREAM_ONLY.</summary>
</member>
<member name="F:AForge.Video.DirectShow.Internals.FindDirection.DownstreamOnly">
<summary>Equals to LOOK_DOWNSTREAM_ONLY.</summary>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IReferenceClock">
<summary>
The IReferenceClock interface provides the reference time for the filter graph.
Filters that can act as a reference clock can expose this interface. It is also exposed by the System Reference Clock.
The filter graph manager uses this interface to synchronize the filter graph. Applications can use this interface to
retrieve the current reference time, or to request notification of an elapsed time.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IReferenceClock.GetTime(System.Int64@)">
<summary>
The GetTime method retrieves the current reference time.
</summary>
<param name="pTime">Pointer to a variable that receives the current time, in 100-nanosecond units.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IReferenceClock.AdviseTime(System.Int64,System.Int64,System.IntPtr,System.Int32@)">
<summary>
The AdviseTime method creates a one-shot advise request.
</summary>
<param name="baseTime">Base reference time, in 100-nanosecond units. See Remarks.</param>
<param name="streamTime">Stream offset time, in 100-nanosecond units. See Remarks.</param>
<param name="hEvent">Handle to an event, created by the caller.</param>
<param name="pdwAdviseCookie">Pointer to a variable that receives an identifier for the advise request.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IReferenceClock.AdvisePeriodic(System.Int64,System.Int64,System.IntPtr,System.Int32@)">
<summary>
The AdvisePeriodic method creates a periodic advise request.
</summary>
<param name="startTime">Time of the first notification, in 100-nanosecond units. Must be greater than zero and less than MAX_TIME.</param>
<param name="periodTime">Time between notifications, in 100-nanosecond units. Must be greater than zero.</param>
<param name="hSemaphore">Handle to a semaphore, created by the caller.</param>
<param name="pdwAdviseCookie">Pointer to a variable that receives an identifier for the advise request.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IReferenceClock.Unadvise(System.Int32)">
<summary>
The Unadvise method removes a pending advise request.
</summary>
<param name="dwAdviseCookie">Identifier of the request to remove. Use the value returned by IReferenceClock::AdviseTime or IReferenceClock::AdvisePeriodic in the pdwAdviseToken parameter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IAMCrossbar">
<summary>
The IAMCrossbar interface routes signals from an analog or digital source to a video capture filter.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMCrossbar.get_PinCounts(System.Int32@,System.Int32@)">
<summary>
Retrieves the number of input and output pins on the crossbar filter.
</summary>
<param name="outputPinCount">Variable that receives the number of output pins.</param>
<param name="inputPinCount">Variable that receives the number of input pins.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMCrossbar.CanRoute(System.Int32,System.Int32)">
<summary>
Queries whether a specified input pin can be routed to a specified output pin.
</summary>
<param name="outputPinIndex">Specifies the index of the output pin.</param>
<param name="inputPinIndex">Specifies the index of input pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMCrossbar.Route(System.Int32,System.Int32)">
<summary>
Routes an input pin to an output pin.
</summary>
<param name="outputPinIndex">Specifies the index of the output pin.</param>
<param name="inputPinIndex">Specifies the index of the input pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMCrossbar.get_IsRoutedTo(System.Int32,System.Int32@)">
<summary>
Retrieves the input pin that is currently routed to the specified output pin.
</summary>
<param name="outputPinIndex">Specifies the index of the output pin.</param>
<param name="inputPinIndex">Variable that receives the index of the input pin, or -1 if no input pin is routed to this output pin.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IAMCrossbar.get_CrossbarPinInfo(System.Boolean,System.Int32,System.Int32@,AForge.Video.DirectShow.PhysicalConnectorType@)">
<summary>
Retrieves information about a specified pin.
</summary>
<param name="isInputPin">Specifies the direction of the pin. Use one of the following values.</param>
<param name="pinIndex">Specifies the index of the pin.</param>
<param name="pinIndexRelated">Variable that receives the index of the related pin, or –1 if no pin is related to this pin.</param>
<param name="physicalType">Variable that receives a member of the PhysicalConnectorType enumeration, indicating the pin's physical type.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IBaseFilter">
<summary>
The IBaseFilter interface provides methods for controlling a filter.
All DirectShow filters expose this interface
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.GetClassID(System.Guid@)">
<summary>
Returns the class identifier (CLSID) for the component object.
</summary>
<param name="ClassID">Points to the location of the CLSID on return.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.Stop">
<summary>
Stops the filter.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.Pause">
<summary>
Pauses the filter.
</summary>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.Run(System.Int64)">
<summary>
Runs the filter.
</summary>
<param name="start">Reference time corresponding to stream time 0.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.GetState(System.Int32,System.Int32@)">
<summary>
Retrieves the state of the filter (running, stopped, or paused).
</summary>
<param name="milliSecsTimeout">Time-out interval, in milliseconds.</param>
<param name="filterState">Pointer to a variable that receives filter's state.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.SetSyncSource(System.IntPtr)">
<summary>
Sets the reference clock for the filter or the filter graph.
</summary>
<param name="clock">Pointer to the clock's <b>IReferenceClock</b> interface, or NULL. </param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.GetSyncSource(System.IntPtr@)">
<summary>
Retrieves the current reference clock.
</summary>
<param name="clock">Address of a variable that receives a pointer to the clock's IReferenceClock interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.EnumPins(AForge.Video.DirectShow.Internals.IEnumPins@)">
<summary>
Enumerates the pins on this filter.
</summary>
<param name="enumPins">Address of a variable that receives a pointer to the IEnumPins interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.FindPin(System.String,AForge.Video.DirectShow.Internals.IPin@)">
<summary>
Retrieves the pin with the specified identifier.
</summary>
<param name="id">Pointer to a constant wide-character string that identifies the pin.</param>
<param name="pin">Address of a variable that receives a pointer to the pin's IPin interface.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.QueryFilterInfo(AForge.Video.DirectShow.Internals.FilterInfo@)">
<summary>
Retrieves information about the filter.
</summary>
<param name="filterInfo">Pointer to <b>FilterInfo</b> structure.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.JoinFilterGraph(AForge.Video.DirectShow.Internals.IFilterGraph,System.String)">
<summary>
Notifies the filter that it has joined or left the filter graph.
</summary>
<param name="graph">Pointer to the Filter Graph Manager's <b>IFilterGraph</b> interface, or NULL
if the filter is leaving the graph.</param>
<param name="name">String that specifies a name for the filter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IBaseFilter.QueryVendorInfo(System.String@)">
<summary>
Retrieves a string containing vendor information.
</summary>
<param name="vendorInfo">Receives a string containing the vendor information.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.Internals.IMediaEventEx">
<summary>
The interface inherits contains methods for retrieving event notifications and for overriding the
filter graph's default handling of events.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.GetEventHandle(System.IntPtr@)">
<summary>
Retrieves a handle to a manual-reset event that remains signaled while the queue contains event notifications.
</summary>
<param name="hEvent">Pointer to a variable that receives the event handle.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.GetEvent(AForge.Video.DirectShow.Internals.DsEvCode@,System.IntPtr@,System.IntPtr@,System.Int32)">
<summary>
Retrieves the next event notification from the event queue.
</summary>
<param name="lEventCode">Variable that receives the event code.</param>
<param name="lParam1">Pointer to a variable that receives the first event parameter.</param>
<param name="lParam2">Pointer to a variable that receives the second event parameter.</param>
<param name="msTimeout">Time-out interval, in milliseconds.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.WaitForCompletion(System.Int32,System.Int32@)">
<summary>
Waits for the filter graph to render all available data.
</summary>
<param name="msTimeout">Time-out interval, in milliseconds. Pass zero to return immediately.</param>
<param name="pEvCode">Pointer to a variable that receives an event code.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.CancelDefaultHandling(System.Int32)">
<summary>
Cancels the Filter Graph Manager's default handling for a specified event.
</summary>
<param name="lEvCode">Event code for which to cancel default handling.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.RestoreDefaultHandling(System.Int32)">
<summary>
Restores the Filter Graph Manager's default handling for a specified event.
</summary>
<param name="lEvCode">Event code for which to restore default handling.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.FreeEventParams(AForge.Video.DirectShow.Internals.DsEvCode,System.IntPtr,System.IntPtr)">
<summary>
Frees resources associated with the parameters of an event.
</summary>
<param name="lEvCode">Event code.</param>
<param name="lParam1">First event parameter.</param>
<param name="lParam2">Second event parameter.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.SetNotifyWindow(System.IntPtr,System.Int32,System.IntPtr)">
<summary>
Registers a window to process event notifications.
</summary>
<param name="hwnd">Handle to the window, or <see cref="F:System.IntPtr.Zero"/> to stop receiving event messages.</param>
<param name="lMsg">Window message to be passed as the notification.</param>
<param name="lInstanceData">Value to be passed as the <i>lParam</i> parameter for the <i>lMsg</i> message.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.SetNotifyFlags(System.Int32)">
<summary>
Enables or disables event notifications.
</summary>
<param name="lNoNotifyFlags">Value indicating whether to enable or disable event notifications.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="M:AForge.Video.DirectShow.Internals.IMediaEventEx.GetNotifyFlags(System.Int32@)">
<summary>
Determines whether event notifications are enabled.
</summary>
<param name="lplNoNotifyFlags">Variable that receives current notification status.</param>
<returns>Return's <b>HRESULT</b> error code.</returns>
</member>
<member name="T:AForge.Video.DirectShow.FileVideoSource">
<summary>
Video source for video files.
</summary>
<remarks><para>The video source provides access to video files. DirectShow is used to access video
files.</para>
<para>Sample usage:</para>
<code>
// create video source
FileVideoSource videoSource = new FileVideoSource( fileName );
// set NewFrame event handler
videoSource.NewFrame += new NewFrameEventHandler( video_NewFrame );
// start the video source
videoSource.Start( );
// ...
// signal to stop
videoSource.SignalToStop( );
// ...
// New frame event handler, which is invoked on each new available video frame
private void video_NewFrame( object sender, NewFrameEventArgs eventArgs )
{
// get new frame
Bitmap bitmap = eventArgs.Frame;
// process the frame
}
</code>
</remarks>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.#ctor">
<summary>
Initializes a new instance of the <see cref="T:AForge.Video.DirectShow.FileVideoSource"/> class.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:AForge.Video.DirectShow.FileVideoSource"/> class.
</summary>
<param name="fileName">Video file name.</param>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.Start">
<summary>
Start video source.
</summary>
<remarks>Starts video source and return execution to caller. Video source
object creates background thread and notifies about new frames with the
help of <see cref="E:AForge.Video.DirectShow.FileVideoSource.NewFrame"/> event.</remarks>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.SignalToStop">
<summary>
Signal video source to stop its work.
</summary>
<remarks>Signals video source to stop its background thread, stop to
provide new frames and free resources.</remarks>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.WaitForStop">
<summary>
Wait for video source has stopped.
</summary>
<remarks>Waits for source stopping after it was signalled to stop using
<see cref="M:AForge.Video.DirectShow.FileVideoSource.SignalToStop"/> method.</remarks>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.Stop">
<summary>
Stop video source.
</summary>
<remarks><para>Stops video source aborting its thread.</para>
<para><note>Since the method aborts background thread, its usage is highly not preferred
and should be done only if there are no other options. The correct way of stopping camera
is <see cref="M:AForge.Video.DirectShow.FileVideoSource.SignalToStop">signaling it stop</see> and then
<see cref="M:AForge.Video.DirectShow.FileVideoSource.WaitForStop">waiting</see> for background thread's completion.</note></para>
</remarks>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.Free">
<summary>
Free resource.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.WorkerThread">
<summary>
Worker thread.
</summary>
</member>
<member name="M:AForge.Video.DirectShow.FileVideoSource.OnNewFrame(System.Drawing.Bitmap)">
<summary>
Notifies client about new frame.
</summary>
<param name="image">New frame's image.</param>
</member>
<member name="E:AForge.Video.DirectShow.FileVideoSource.NewFrame">
<summary>
New frame event.
</summary>
<remarks><para>Notifies clients about new available frame from video source.</para>
<para><note>Since video source may have multiple clients, each client is responsible for
making a copy (cloning) of the passed video frame, because the video source disposes its
own original copy after notifying of clients.</note></para>
</remarks>
</member>
<member name="E:AForge.Video.DirectShow.FileVideoSource.VideoSourceError">
<summary>
Video source error event.
</summary>
<remarks>This event is used to notify clients about any type of errors occurred in
video source object, for example internal exceptions.</remarks>
</member>
<member name="E:AForge.Video.DirectShow.FileVideoSource.PlayingFinished">
<summary>
Video playing finished event.
</summary>
<remarks><para>This event is used to notify clients that the video playing has finished.</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.FileVideoSource.Source">
<summary>
Video source.
</summary>
<remarks>Video source is represented by video file name.</remarks>
</member>
<member name="P:AForge.Video.DirectShow.FileVideoSource.FramesReceived">
<summary>
Received frames count.
</summary>
<remarks>Number of frames the video source provided from the moment of the last
access to the property.
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.FileVideoSource.BytesReceived">
<summary>
Received bytes count.
</summary>
<remarks>Number of bytes the video source provided from the moment of the last
access to the property.
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.FileVideoSource.IsRunning">
<summary>
State of the video source.
</summary>
<remarks>Current state of video source object - running or not.</remarks>
</member>
<member name="P:AForge.Video.DirectShow.FileVideoSource.PreventFreezing">
<summary>
Prevent video freezing after screen saver and workstation lock or not.
</summary>
<remarks>
<para>The value specifies if the class should prevent video freezing during and
after screen saver or workstation lock. To prevent freezing the <i>DirectShow</i> graph
should not contain <i>Renderer</i> filter, which is added by <i>Render()</i> method
of graph. However, in some cases it may be required to call <i>Render()</i> method of graph, since
it may add some more filters, which may be required for playing video. So, the property is
a trade off - it is possible to prevent video freezing skipping adding renderer filter or
it is possible to keep renderer filter, but video may freeze during screen saver.</para>
<para><note>The property may become obsolete in the future when approach to disable freezing
and adding all required filters is found.</note></para>
<para><note>The property should be set before calling <see cref="M:AForge.Video.DirectShow.FileVideoSource.Start"/> method
of the class to have effect.</note></para>
<para>Default value of this property is set to <b>false</b>.</para>
</remarks>
</member>
<member name="P:AForge.Video.DirectShow.FileVideoSource.ReferenceClockEnabled">
<summary>
Enables/disables reference clock on the graph.
</summary>
<remarks><para>Disabling reference clocks causes DirectShow graph to run as fast as
it can process data. When enabled, it will process frames according to presentation
time of a video file.</para>
<para><note>The property should be set before calling <see cref="M:AForge.Video.DirectShow.FileVideoSource.Start"/> method
of the class to have effect.</note></para>
<para>Default value of this property is set to <b>true</b>.</para>
</remarks>
</member>
</members>
</doc>