-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathddd.txt
1429 lines (1303 loc) · 84.5 KB
/
ddd.txt
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
------------------
System Information
------------------
Time of this report: 6/20/2022, 19:43:41
Machine name: DESKTOP-N4FKCTD
Machine Id: {6D1C6ABF-4886-4824-AFFD-1F32DD24E85D}
Operating System: Windows 10 Pro 64-bit (10.0, Build 19043) (19041.vb_release.191206-1406)
Language: English (Regional Setting: English)
System Manufacturer: LENOVO
System Model: 20287
BIOS: InsydeH2O Version 03.73.068DCN38WW (type: BIOS)
Processor: Intel(R) Core(TM) i7-4702MQ CPU @ 2.20GHz (8 CPUs), ~2.2GHz
Memory: 6144MB RAM
Available OS Memory: 5900MB RAM
Page File: 7748MB used, 6087MB available
Windows Dir: C:\Windows
DirectX Version: DirectX 12
DX Setup Parameters: Not found
User DPI Setting: 96 DPI (100 percent)
System DPI Setting: 96 DPI (100 percent)
DWM DPI Scaling: Disabled
Miracast: Available, with HDCP
Microsoft Graphics Hybrid: Supported
DirectX Database Version: 1.3.7
DxDiag Version: 10.00.19041.0928 64bit Unicode
------------
DxDiag Notes
------------
Display Tab 1: No problems found.
Display Tab 2: No problems found.
Sound Tab 1: No problems found.
Input Tab: No problems found.
--------------------
DirectX Debug Levels
--------------------
Direct3D: 0/4 (retail)
DirectDraw: 0/4 (retail)
DirectInput: 0/5 (retail)
DirectMusic: 0/5 (retail)
DirectPlay: 0/9 (retail)
DirectSound: 0/5 (retail)
DirectShow: 0/6 (retail)
---------------
Display Devices
---------------
Card name: Intel(R) HD Graphics 4600
Manufacturer: Intel Corporation
Chip type: Intel(R) HD Graphics Family
DAC type: Internal
Device Type: Full Device (POST)
Device Key: Enum\PCI\VEN_8086&DEV_0416&SUBSYS_397817AA&REV_06
Device Status: 0180200A [DN_DRIVER_LOADED|DN_STARTED|DN_DISABLEABLE|DN_NT_ENUMERATOR|DN_NT_DRIVER]
Device Problem Code: No Problem
Driver Problem Code: Unknown
Display Memory: 2160 MB
Dedicated Memory: 112 MB
Shared Memory: 2048 MB
Current Mode: 1280 x 1024 (32 bit) (75Hz)
HDR Support: Not Supported
Display Topology: External
Display Color Space: DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709
Color Primaries: Red(0.639648,0.346680), Green(0.301758,0.586914), Blue(0.142578,0.098633), White Point(0.320312,0.337891)
Display Luminance: Min Luminance = 0.500000, Max Luminance = 270.000000, MaxFullFrameLuminance = 270.000000
Monitor Name: Generic PnP Monitor
Monitor Model: unknown
Monitor Id: HKC1778
Native Mode: 1280 x 1024(p) (75.025Hz)
Output Type: HD15
Monitor Capabilities: HDR Not Supported
Display Pixel Format: DISPLAYCONFIG_PIXELFORMAT_32BPP
Advanced Color: Not Supported
Driver Name: igdumdim64.dll,igd10iumd64.dll,igd10iumd64.dll,igd12umd64.dll
Driver File Version: 20.19.0015.4624 (English)
Driver Version: 20.19.15.4624
DDI Version: 12
Feature Levels: 11_1,11_0,10_1,10_0,9_3,9_2,9_1
Driver Model: WDDM 2.0
Hardware Scheduling: Supported:False Enabled:False
Graphics Preemption: Primitive
Compute Preemption: Thread group
Miracast: Supported
Detachable GPU: No
Hybrid Graphics GPU: Integrated
Power P-states: Not Supported
Virtualization: Not Supported
Block List: DISABLE_HWSCH
Catalog Attributes: N/A
Driver Attributes: Final Retail
Driver Date/Size: 3/8/2017 4:30:00 AM, 39864488 bytes
WHQL Logo'd: Yes
WHQL Date Stamp: Unknown
Device Identifier: {D7B78E66-4756-11CF-0A66-7719BAC2D935}
Vendor ID: 0x8086
Device ID: 0x0416
SubSys ID: 0x397817AA
Revision ID: 0x0006
Driver Strong Name: oem6.inf:5f63e534dd929195:iHSWM_w10:20.19.15.4624:pci\ven_8086&dev_0416&subsys_397817aa
Rank Of Driver: 00D10001
Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_C ModeVC1_C
DXVA2 Modes: DXVA2_ModeMPEG2_VLD DXVA2_ModeMPEG2_IDCT DXVA2_ModeVC1_D2010 {E07EC519-E651-4CD6-AC84-1370CCEEC851} {BCC5DB6D-A2B6-4AF0-ACE4-ADB1F787BC89} DXVA2_ModeWMV9_IDCT DXVA2_ModeVC1_IDCT DXVA2_ModeH264_VLD_NoFGT DXVA2_ModeH264_VLD_Stereo_Progressive_NoFGT DXVA2_ModeH264_VLD_Stereo_NoFGT DXVA2_ModeH264_VLD_Multiview_NoFGT {91CD2D6E-897B-4FA1-B0D7-51DC88010E0A} {97688186-56A8-4094-B543-FC9DAAA49F4B} {C346E8A3-CBED-4D27-87CC-A70EB4DC8C27} {FFC79924-5EAF-4666-A736-06190F281443} {F416F7BD-098A-4CF1-A11B-CE54959CA03D} {BF44DACD-217F-4370-A383-D573BC56707E} {2364D06A-F67F-4186-AED0-62B99E1784F1} {8C56EB1E-2B47-466F-8D33-7DBCD63F3DF2} DXVA2_ModeHEVC_VLD_Main {49761BEC-4B63-4349-A5FF-87FFDF088466}
Deinterlace Caps: {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
{BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
{BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
{BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
{BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
{BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
{BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
{BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
{5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
D3D9 Overlay: Supported
DXVA-HD: Supported
DDraw Status: Enabled
D3D Status: Enabled
AGP Status: Enabled
MPO MaxPlanes: 1
MPO Caps: Not Supported
MPO Stretch: Not Supported
MPO Media Hints: Not Supported
MPO Formats: Not Supported
PanelFitter Caps: Not Supported
PanelFitter Stretch: Not Supported
Card name: NVIDIA GeForce GT 740M
Manufacturer: NVIDIA
Chip type: GeForce GT 740M
DAC type: Integrated RAMDAC
Device Type: Render-Only Device
Device Key: Enum\PCI\VEN_10DE&DEV_1292&SUBSYS_380A17AA&REV_A1
Device Status: 0180200A [DN_DRIVER_LOADED|DN_STARTED|DN_DISABLEABLE|DN_NT_ENUMERATOR|DN_NT_DRIVER]
Device Problem Code: No Problem
Driver Problem Code: Unknown
Display Memory: 4971 MB
Dedicated Memory: 2020 MB
Shared Memory: 2950 MB
Current Mode: Unknown
HDR Support: Unknown
Display Topology: Unknown
Display Color Space: Unknown
Color Primaries: Unknown
Display Luminance: Unknown
Driver Name: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvd3dumx.dll,C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvwgf2umx.dll,C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvwgf2umx.dll,C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvwgf2umx.dll
Driver File Version: 21.21.0013.7654 (English)
Driver Version: 21.21.13.7654
DDI Version: 12
Feature Levels: 11_0,10_1,10_0,9_3,9_2,9_1
Driver Model: WDDM 2.1
Hardware Scheduling: Supported:False Enabled:False
Graphics Preemption: DMA
Compute Preemption: DMA
Miracast: Not Supported by Graphics driver
Detachable GPU: No
Hybrid Graphics GPU: Discrete
Power P-states: Not Supported
Virtualization: Not Supported
Block List: No Blocks
Catalog Attributes: N/A
Driver Attributes: Final Retail
Driver Date/Size: 12/29/2016 4:30:00 AM, 17753968 bytes
WHQL Logo'd: Yes
WHQL Date Stamp: Unknown
Device Identifier: Unknown
Vendor ID: 0x10DE
Device ID: 0x1292
SubSys ID: 0x380A17AA
Revision ID: 0x00A1
Driver Strong Name: oem2.inf:0f066de3bc964f63:Section140:21.21.13.7654:pci\ven_10de&dev_1292&subsys_380a17aa
Rank Of Driver: 00D10001
Video Accel: Unknown
DXVA2 Modes: DXVA2_ModeMPEG2_IDCT {86695F12-340E-4F04-9FD3-9253DD327460} DXVA2_ModeMPEG2_VLD {6F3EC719-3735-42CC-8063-65CC3CB36616} DXVA2_ModeVC1_D2010 DXVA2_ModeVC1_VLD DXVA2_ModeVC1_IDCT DXVA2_ModeWMV9_IDCT {32FCFE3F-DE46-4A49-861B-AC71110649D5} DXVA2_ModeH264_VLD_Stereo_Progressive_NoFGT DXVA2_ModeH264_VLD_Stereo_NoFGT DXVA2_ModeH264_VLD_NoFGT {1B81BE6A-A0C7-11D3-B984-00C04F2E73C5} {8EFA5926-BD9E-4B04-8B72-8F977DC44C36} DXVA2_ModeHEVC_VLD_Main DXVA2_ModeMPEG4pt2_VLD_Simple DXVA2_ModeMPEG4pt2_VLD_AdvSimple_NoGMC {9947EC6F-689B-11DC-A320-0019DBBC4184} {33FCFE41-DE46-4A49-861B-AC71110649D5} {6AFFD11E-1D96-42B1-A215-93A31F09A53D}
Deinterlace Caps: n/a
D3D9 Overlay: Unknown
DXVA-HD: Unknown
DDraw Status: Enabled
D3D Status: Enabled
AGP Status: Enabled
MPO MaxPlanes: 0
MPO Caps: Not Supported
MPO Stretch: Not Supported
MPO Media Hints: Not Supported
MPO Formats: Not Supported
PanelFitter Caps: Not Supported
PanelFitter Stretch: Not Supported
-------------
Sound Devices
-------------
Description: Speakers (Realtek High Definition Audio)
Default Sound Playback: Yes
Default Voice Playback: Yes
Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0282&SUBSYS_17AA3801&REV_1000
Manufacturer ID: N/A
Product ID: N/A
Type: N/A
Driver Name: RTKVHD64.sys
Driver Version: 6.0.1.7514 (English)
Driver Attributes: Final Retail
WHQL Logo'd: Yes
Date and Size: 5/19/2015 4:30:00 AM, 4475136 bytes
Other Files:
Driver Provider: Realtek Semiconductor Corp.
HW Accel Level: Emulation Only
Cap Flags: 0xF1F
Min/Max Sample Rate: 100, 200000
Static/Strm HW Mix Bufs: 1, 0
Static/Strm HW 3D Bufs: 0, 0
HW Memory: 0
Voice Management: No
EAX(tm) 2.0 Listen/Src: No, No
I3DL2(tm) Listen/Src: No, No
Sensaura(tm) ZoomFX(tm): No
---------------------
Sound Capture Devices
---------------------
Description: Microphone (Realtek High Definition Audio)
Default Sound Capture: Yes
Default Voice Capture: Yes
Driver Name: RTKVHD64.sys
Driver Version: 6.0.1.7514 (English)
Driver Attributes: Final Retail
Date and Size: 5/19/2015 4:30:00 AM, 4475136 bytes
Cap Flags: 0x1
Format Flags: 0xFFFFF
---------------------
Video Capture Devices
Number of Devices: 1
---------------------
FriendlyName: Lenovo EasyCamera
Category: Camera
SymbolicLink: \\?\usb#vid_5986&pid_052b&mi_00#6&1f9570a1&0&0000#{e5323777-f976-4f5b-9b55-b94699c46e44}\global
Location: Front
Rotation: 0
Manufacturer: Microsoft
HardwareID: USB\VID_5986&PID_052B&REV_1416&MI_00,USB\VID_5986&PID_052B&MI_00
DriverDesc: USB Video Device
DriverProvider: Microsoft
DriverVersion: 10.0.19041.1387
DriverDateEnglish: 6/21/2006 00:00:00
DriverDateLocalized: 6/21/2006 12:00:00 AM
Service: usbvideo
Class: Camera
DevNodeStatus: 180200A[DN_DRIVER_LOADED|DN_STARTED|DN_DISABLEABLE|DN_NT_ENUMERATOR|DN_NT_DRIVER]
ContainerId: {00000000-0000-0000-FFFF-FFFFFFFFFFFF}
ProblemCode: No Problem
BusReportedDeviceDesc: Lenovo EasyCamera
Parent: USB\VID_5986&PID_052B\200901010001
DriverProblemDesc: n/a
UpperFilters: n/a
LowerFilters: WdmCompanionFilter
Stack: \Driver\ksthunk,\Driver\usbvideo,\Driver\ACPI,\Driver\usbccgp
ContainerCategory: n/a
SensorGroupID: n/a
MFT0: n/a
DMFT: n/a
CustomCaptureSource: n/a
DependentStillCapture: n/a
EnablePlatformDMFT: n/a
DMFTChain: n/a
EnableDshowRedirection: n/a
FrameServerEnabled: n/a
AnalogProviders: n/a
ProfileIDs: n/a
-------------------
DirectInput Devices
-------------------
Device Name: Mouse
Attached: 1
Controller ID: n/a
Vendor/Product ID: n/a
FF Driver: n/a
Device Name: Keyboard
Attached: 1
Controller ID: n/a
Vendor/Product ID: n/a
FF Driver: n/a
Poll w/ Interrupt: No
-----------
USB Devices
-----------
----------------
Gameport Devices
----------------
------------
PS/2 Devices
------------
+ Standard PS/2 Keyboard
| Matching Device ID: *PNP0303
| Service: i8042prt
| Driver: i8042prt.sys, 12/7/2019 13:37:56, 118272 bytes
| Driver: kbdclass.sys, 12/7/2019 13:37:56, 71480 bytes
|
+ ELAN Input Device
| Matching Device ID: acpi\etd061c
| Upper Filters: ETD
| Service: i8042prt
| Driver: ETD.sys, 10/7/2015 13:41:38, 525512 bytes
| Driver: ETDCtrl.exe, 10/7/2015 13:41:38, 3242696 bytes
| Driver: ETDUninst.dll, 10/7/2015 13:41:40, 2238152 bytes
| Driver: ETDUn_inst.exe, 10/7/2015 13:41:40, 2451144 bytes
| Driver: ETDDeviceInformation.exe, 10/7/2015 13:41:38, 2790088 bytes
| Driver: ETD_DLL.dll, 10/7/2015 13:41:40, 2549448 bytes
| Driver: ETDService.exe, 10/7/2015 13:41:38, 144072 bytes
| Driver: ETDCtrlHelper.exe, 10/7/2015 13:41:38, 2580168 bytes
| Driver: ETDApix.dll, 10/7/2015 13:41:38, 2641608 bytes
| Driver: ETDCmds.dll, 10/7/2015 13:41:38, 2755784 bytes
| Driver: ETDMcpl.dll, 10/7/2015 13:41:40, 5241032 bytes
| Driver: ETDAniConf.exe, 10/7/2015 13:41:38, 8405192 bytes
| Driver: ETDSetup.ini, 9/25/2015 15:39:02, 439676 bytes
| Driver: ETDFavorite.dll, 10/7/2015 13:41:38, 2591432 bytes
| Driver: mouclass.sys, 12/7/2019 13:37:56, 67600 bytes
| Driver: i8042prt.sys, 12/7/2019 13:37:56, 118272 bytes
| Driver: ETDCoInstaller01000.dll, 10/7/2015 13:41:38, 56008 bytes
------------------------
Disk & DVD/CD-ROM Drives
------------------------
Drive: C:
Free Space: 91.6 GB
Total Space: 237.2 GB
File System: NTFS
Model: Samsung SSD 860 EVO 250GB
Drive: D:
Free Space: 0.5 GB
Total Space: 0.5 GB
File System: NTFS
Model: Samsung SSD 860 EVO 250GB
Drive: F:
Free Space: 127.7 GB
Total Space: 149.6 GB
File System: NTFS
Model: ST1000LM024 HN-M101MBB
Drive: G:
Free Space: 210.7 GB
Total Space: 803.9 GB
File System: NTFS
Model: ST1000LM024 HN-M101MBB
Drive: E:
Model: ELBY CLONEDRIVE SCSI CdRom Device
Driver: C:\WINDOWS\SYSTEM32\DRIVERS\CDROM.SYS, 10.00.19041.1266 (English), 10/15/2021 08:50:15, 175616 bytes
--------------
System Devices
--------------
Name: Intel(R) 8 Series Chipset Family SATA AHCI Controller
Device ID: PCI\VEN_8086&DEV_8C03&SUBSYS_397817AA&REV_05\3&11583659&0&FA
Driver: C:\Windows\system32\DRIVERS\iaStorA.sys, 12.05.0004.1001 (English), 5/8/2013 20:18:16, 679920 bytes
Name: Intel(R) USB 3.0 eXtensible Host Controller - 1.0 (Microsoft)
Device ID: PCI\VEN_8086&DEV_8C31&SUBSYS_397817AA&REV_05\3&11583659&0&A0
Driver: C:\Windows\system32\DRIVERS\USBXHCI.SYS, 10.00.19041.1566 (English), 3/7/2022 06:28:22, 624976 bytes
Driver: C:\Windows\system32\DRIVERS\UMDF\UsbXhciCompanion.dll, 10.00.19041.1566 (English), 3/7/2022 06:28:22, 138976 bytes
Name: High Definition Audio Controller
Device ID: PCI\VEN_8086&DEV_8C20&SUBSYS_397817AA&REV_05\3&11583659&0&D8
Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 10.00.19041.1566 (English), 3/7/2022 06:28:21, 134656 bytes
Driver: C:\Windows\system32\DRIVERS\drmk.sys, 10.00.19041.0746 (English), 4/9/2021 18:18:53, 97792 bytes
Driver: C:\Windows\system32\DRIVERS\portcls.sys, 10.00.19041.0746 (English), 4/9/2021 18:18:54, 388608 bytes
Name: Intel(R) Xeon(R) processor E3 - 1200 v3/4th Gen Core processor PCI Express x8 Controller - 0C05
Device ID: PCI\VEN_8086&DEV_0C05&SUBSYS_397817AA&REV_06\3&11583659&0&09
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.19041.1387 (English), 3/7/2022 06:28:22, 469840 bytes
Name: Intel(R) 8 Series/C220 Series PCI Express Root Port #4 - 8C16
Device ID: PCI\VEN_8086&DEV_8C16&SUBSYS_397817AA&REV_D5\3&11583659&0&E0
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.19041.1387 (English), 3/7/2022 06:28:22, 469840 bytes
Name: Realtek PCIe FE Family Controller
Device ID: PCI\VEN_10EC&DEV_8136&SUBSYS_012310EC&REV_07\01000000364CE00000
Driver: C:\Windows\system32\DRIVERS\rt640x64.sys, 10.03.0723.2015 (English), 1/23/2017 20:48:20, 888064 bytes
Driver: C:\Windows\system32\RtNicProp64.dll, 1.02.0000.0006 (English), 1/23/2017 20:46:18, 82544 bytes
Name: Intel(R) Management Engine Interface
Device ID: PCI\VEN_8086&DEV_8C3A&SUBSYS_397817AA&REV_04\3&11583659&0&B0
Driver: C:\Windows\system32\DRIVERS\TeeDriverW8x64.sys, 11.00.0000.1181 (English), 2/10/2016 02:41:52, 194624 bytes
Name: Intel(R) 8 Series/C220 Series USB EHCI #1 - 8C26
Device ID: PCI\VEN_8086&DEV_8C26&SUBSYS_397817AA&REV_05\3&11583659&0&E8
Driver: C:\Windows\system32\drivers\usbehci.sys, 10.00.19041.0001 (English), 12/7/2019 13:37:56, 86544 bytes
Driver: C:\Windows\system32\drivers\usbport.sys, 10.00.19041.0001 (English), 12/7/2019 13:37:56, 473400 bytes
Driver: C:\Windows\system32\drivers\usbhub.sys, 10.00.19041.0001 (English), 12/7/2019 13:37:56, 528184 bytes
Name: NVIDIA GeForce GT 740M
Device ID: PCI\VEN_10DE&DEV_1292&SUBSYS_380A17AA&REV_A1\4&6F7AEF6&0&0009
Driver: C:\Program Files\NVIDIA Corporation\Drs\dbInstaller.exe, 21.21.0013.7654 (English), 1/17/2017 17:24:20, 467000 bytes
Driver: C:\Program Files\NVIDIA Corporation\Drs\nvdrsdb.bin, 1/17/2017 12:29:08, 1360664 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\NvContainerSetup.exe, 1.00.0006.0000 (English), 1/17/2017 17:25:04, 4127456 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\NvCplSetupInt.exe, 1.00.0006.0000 (English), 1/17/2017 17:25:04, 97061776 bytes
Driver: C:\Program Files\NVIDIA Corporation\license.txt, 1/17/2017 12:29:06, 26629 bytes
Driver: C:\Program Files\NVIDIA Corporation\NVSMI\MCU.exe, 1.01.5204.20580 (English), 1/17/2017 17:24:36, 858680 bytes
Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvdebugdump.exe, 6.14.0013.7654 (English), 1/17/2017 17:25:12, 419768 bytes
Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.1.pdf, 1/17/2017 12:29:08, 77216 bytes
Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvidia-smi.exe, 8.17.0013.7654 (English), 1/17/2017 17:25:56, 459192 bytes
Driver: C:\Program Files\NVIDIA Corporation\NVSMI\nvml.dll, 8.17.0013.7654 (English), 1/17/2017 17:26:26, 838072 bytes
Driver: C:\Program Files\NVIDIA Corporation\OpenCL\OpenCL.dll, 1.02.0011.0000 (English), 1/17/2017 17:27:56, 210360 bytes
Driver: C:\Program Files\NVIDIA Corporation\OpenCL\OpenCL64.dll, 1.02.0011.0000 (English), 1/17/2017 17:27:58, 222648 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvlddmkm.sys, 21.21.0013.7654 (English), 1/17/2017 17:26:20, 14190520 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvd3dumx.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:34, 17753968 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvwgf2umx.dll, 21.21.0013.7654 (English), 1/17/2017 17:23:10, 24616480 bytes
Driver: C:\Windows\system32\NvFBC64.dll, 6.14.0013.7654 (English), 1/17/2017 17:25:36, 1047096 bytes
Driver: C:\Windows\system32\NvIFR64.dll, 6.14.0013.7654 (English), 1/17/2017 17:26:04, 951224 bytes
Driver: C:\Windows\system32\NvIFROpenGL.dll, 21.21.0013.7654 (English), 1/17/2017 17:26:10, 448568 bytes
Driver: C:\Windows\system32\nv-vk64.json, 1/17/2017 12:29:06, 669 bytes
Driver: C:\Windows\system32\nvEncMFTH264.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:42, 818688 bytes
Driver: C:\Windows\system32\nvEncodeAPI64.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:42, 407240 bytes
Driver: C:\Windows\system32\nvapi64.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:12, 3972960 bytes
Driver: C:\Windows\system32\nvcompiler.dll, 1/17/2017 17:24:56, 40134200 bytes
Driver: C:\Windows\system32\nvcuda.dll, 6.14.0013.7654 (English), 1/17/2017 17:22:20, 10453152 bytes
Driver: C:\Windows\system32\nvcuvid.dll, 7.17.0013.7654 (English), 1/17/2017 17:25:10, 2961336 bytes
Driver: C:\Windows\system32\nvfatbinaryLoader.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:46, 698544 bytes
Driver: C:\Windows\system32\nvinfo.pb, 1/17/2017 12:29:08, 42296 bytes
Driver: C:\Windows\system32\nvoglv64.dll, 21.21.0013.7654 (English), 1/17/2017 17:26:36, 34717624 bytes
Driver: C:\Windows\system32\nvopencl.dll, 6.14.0013.7654 (English), 1/17/2017 17:22:52, 10907368 bytes
Driver: C:\Windows\system32\nvptxJitCompiler.dll, 21.21.0013.7654 (English), 1/17/2017 17:23:00, 11017016 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvd3dum.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:30, 14665360 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\nvwgf2um.dll, 21.21.0013.7654 (English), 1/17/2017 17:23:06, 20939056 bytes
Driver: C:\Windows\SysWow64\NvFBC.dll, 6.14.0013.7654 (English), 1/17/2017 17:25:32, 985144 bytes
Driver: C:\Windows\SysWow64\NvIFR.dll, 6.14.0013.7654 (English), 1/17/2017 17:26:02, 904760 bytes
Driver: C:\Windows\SysWow64\NvIFROpenGL.dll, 21.21.0013.7654 (English), 1/17/2017 17:26:06, 397240 bytes
Driver: C:\Windows\SysWow64\nv-vk32.json, 1/17/2017 12:29:06, 669 bytes
Driver: C:\Windows\SysWow64\nvEncMFTH264.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:42, 658592 bytes
Driver: C:\Windows\SysWow64\nvEncodeAPI.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:42, 339152 bytes
Driver: C:\Windows\SysWow64\nvapi.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:12, 3509152 bytes
Driver: C:\Windows\SysWow64\nvcompiler.dll, 1/17/2017 17:24:48, 35233336 bytes
Driver: C:\Windows\SysWow64\nvcuda.dll, 6.14.0013.7654 (English), 1/17/2017 17:22:16, 8847016 bytes
Driver: C:\Windows\SysWow64\nvcuvid.dll, 7.17.0013.7654 (English), 1/17/2017 17:25:06, 2594744 bytes
Driver: C:\Windows\SysWow64\nvfatbinaryLoader.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:44, 586784 bytes
Driver: C:\Windows\SysWow64\nvoglv32.dll, 21.21.0013.7654 (English), 1/17/2017 17:26:30, 28209080 bytes
Driver: C:\Windows\SysWow64\nvopencl.dll, 6.14.0013.7654 (English), 1/17/2017 17:22:50, 9246832 bytes
Driver: C:\Windows\SysWow64\nvptxJitCompiler.dll, 21.21.0013.7654 (English), 1/17/2017 17:22:56, 9000336 bytes
Driver: C:\Windows\System32\DriverStore\FileRepository\nvltwu.inf_amd64_0221ce4ec0827f74\VulkanRT-Installer.exe, 1.00.0026.0000 (English), 1/17/2017 17:28:04, 682128 bytes
Driver: C:\Windows\system32\nvdispco6437654.dll, 2.00.0046.0004 (English), 1/17/2017 17:25:20, 1964600 bytes
Driver: C:\Windows\system32\nvdispgenco6437654.dll, 2.00.0023.0002 (English), 1/17/2017 17:25:22, 1598392 bytes
Name: Intel(R) Wireless-N 7260
Device ID: PCI\VEN_8086&DEV_08B2&SUBSYS_42628086&REV_73\AC7BA1FFFFD1121700
Driver: C:\Intel\Wireless\WUSetupLauncher.exe, 5/3/2019 07:46:00, 146656 bytes
Driver: C:\Intel\Wireless\Setup.exe, , 0 bytes
Driver: C:\Intel\Wireless\setup.xml, , 0 bytes
Driver: C:\Intel\Wireless\Data\WiFi.msi, , 0 bytes
Driver: C:\Intel\Wireless\Data\Driver.msi, , 0 bytes
Driver: C:\Windows\system32\DRIVERS\Netwbw02.sys, 18.33.0017.0001 (English), 5/3/2019 07:45:58, 3529824 bytes
Driver: C:\Windows\system32\DRIVERS\Netwfw02.dat, 5/3/2019 02:26:08, 4535040 bytes
Driver: C:\Windows\system32\Netwuw06.dll, 15.06.0000.0000 (English), 5/3/2019 07:45:58, 2688224 bytes
Name: Intel(R) 8 Series/C220 Series USB EHCI #2 - 8C2D
Device ID: PCI\VEN_8086&DEV_8C2D&SUBSYS_397817AA&REV_05\3&11583659&0&D0
Driver: C:\Windows\system32\drivers\usbehci.sys, 10.00.19041.0001 (English), 12/7/2019 13:37:56, 86544 bytes
Driver: C:\Windows\system32\drivers\usbport.sys, 10.00.19041.0001 (English), 12/7/2019 13:37:56, 473400 bytes
Driver: C:\Windows\system32\drivers\usbhub.sys, 10.00.19041.0001 (English), 12/7/2019 13:37:56, 528184 bytes
Name: Intel(R) HM86 LPC Controller - 8C49
Device ID: PCI\VEN_8086&DEV_8C49&SUBSYS_397817AA&REV_05\3&11583659&0&F8
Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 10.00.19041.1202 (English), 9/25/2021 11:32:56, 20280 bytes
Name: Intel(R) Xeon(R) processor E3 - 1200 v3/4th Gen Core processor PCI Express x16 Controller - 0C01
Device ID: PCI\VEN_8086&DEV_0C01&SUBSYS_397817AA&REV_06\3&11583659&0&08
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.19041.1387 (English), 3/7/2022 06:28:22, 469840 bytes
Name: Intel(R) Xeon(R) processor E3 - 1200 v3/4th Gen Core processor DRAM Controller - 0C04
Device ID: PCI\VEN_8086&DEV_0C04&SUBSYS_397817AA&REV_06\3&11583659&0&00
Driver: n/a
Name: Intel(R) HD Graphics 4600
Device ID: PCI\VEN_8086&DEV_0416&SUBSYS_397817AA&REV_06\3&11583659&0&10
Driver: C:\Windows\system32\DRIVERS\igdkmd64.sys, 20.19.0015.4624 (English), 4/24/2017 09:56:58, 7970296 bytes
Driver: C:\Windows\system32\igd10iumd64.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:44, 16457288 bytes
Driver: C:\Windows\system32\igd10idpp64.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:34, 312312 bytes
Driver: C:\Windows\system32\igd11dxva64.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:54, 33479880 bytes
Driver: C:\Windows\system32\igd12umd64.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:02, 4270688 bytes
Driver: C:\Windows\system32\igdumdim64.dll, 20.19.0015.4624 (English), 4/24/2017 10:01:38, 39864488 bytes
Driver: C:\Windows\system32\igdail64.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:36, 193040 bytes
Driver: C:\Windows\system32\igfxcmrt64.dll, 5.00.0000.1148 (English), 4/24/2017 10:02:00, 183992 bytes
Driver: C:\Windows\system32\igfx11cmrt64.dll, 5.00.0000.1148 (English), 4/24/2017 10:01:52, 182968 bytes
Driver: C:\Windows\system32\igfxcmjit64.dll, 5.00.0000.1148 (English), 4/24/2017 09:57:24, 1590800 bytes
Driver: C:\Windows\system32\igdde64.dll, 20.19.0015.4624 (English), 4/24/2017 10:01:22, 223256 bytes
Driver: C:\Windows\system32\IntelCpHDCPSvc.exe, 1.00.0000.0001 (English), 4/24/2017 09:59:08, 448504 bytes
Driver: C:\Windows\system32\igdusc64.dll, 20.19.0015.4624 (English), 4/24/2017 10:01:44, 6696832 bytes
Driver: C:\Windows\system32\igc64.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:26, 15488936 bytes
Driver: C:\Windows\system32\igdmd64.dll, 20.19.0015.4624 (English), 4/24/2017 10:01:30, 2393176 bytes
Driver: C:\Windows\SysWow64\igd10iumd32.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:38, 13070664 bytes
Driver: C:\Windows\SysWow64\igd10idpp32.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:30, 297176 bytes
Driver: C:\Windows\SysWow64\igd11dxva32.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:48, 34823464 bytes
Driver: C:\Windows\SysWow64\igd12umd32.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:58, 4240216 bytes
Driver: C:\Windows\SysWow64\igdumdim32.dll, 20.19.0015.4624 (English), 4/24/2017 10:01:34, 38903400 bytes
Driver: C:\Windows\SysWow64\igdail32.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:30, 173584 bytes
Driver: C:\Windows\SysWow64\igdde32.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:10, 181848 bytes
Driver: C:\Windows\SysWow64\igfxcmrt32.dll, 5.00.0000.1148 (English), 4/24/2017 10:01:56, 160280 bytes
Driver: C:\Windows\SysWow64\igfx11cmrt32.dll, 5.00.0000.1148 (English), 4/24/2017 10:01:46, 160280 bytes
Driver: C:\Windows\SysWow64\igfxcmjit32.dll, 5.00.0000.1148 (English), 4/24/2017 09:57:20, 1178640 bytes
Driver: C:\Windows\SysWow64\igdusc32.dll, 20.19.0015.4624 (English), 4/24/2017 10:01:42, 5137312 bytes
Driver: C:\Windows\SysWow64\igc32.dll, 20.19.0015.4624 (English), 4/24/2017 09:55:22, 13483208 bytes
Driver: C:\Windows\SysWow64\igdmd32.dll, 20.19.0015.4624 (English), 4/24/2017 10:01:28, 1858648 bytes
Driver: C:\Windows\SysWow64\iglhcp32.dll, 3.00.0001.0026 (English), 4/24/2017 10:02:10, 205368 bytes
Driver: C:\Windows\SysWow64\iglhsip32.dll, 9.00.0030.9000 (English), 4/24/2017 10:02:20, 1814072 bytes
Driver: C:\Windows\SysWow64\IntelCpHeciSvc.exe, 9.00.0031.9015 (English), 4/24/2017 09:59:10, 301560 bytes
Driver: C:\Windows\system32\iglhxs64.vp, 4/24/2017 06:49:40, 4862 bytes
Driver: C:\Windows\system32\iglhxo64.vp, 4/24/2017 06:49:40, 40343 bytes
Driver: C:\Windows\system32\iglhxc64.vp, 4/24/2017 06:49:40, 40316 bytes
Driver: C:\Windows\system32\iglhxg64.vp, 4/24/2017 06:49:40, 39658 bytes
Driver: C:\Windows\system32\iglhxo64_dev.vp, 4/24/2017 06:49:40, 40931 bytes
Driver: C:\Windows\system32\iglhxc64_dev.vp, 4/24/2017 06:49:40, 41296 bytes
Driver: C:\Windows\system32\iglhxg64_dev.vp, 4/24/2017 06:49:40, 39798 bytes
Driver: C:\Windows\system32\iglhxa64.vp, 4/24/2017 06:49:40, 1125 bytes
Driver: C:\Windows\system32\iglhxa64.cpa, 4/24/2017 06:49:40, 2813952 bytes
Driver: C:\Windows\system32\iglhcp64.dll, 3.00.0001.0026 (English), 4/24/2017 10:02:16, 242168 bytes
Driver: C:\Windows\system32\iglhsip64.dll, 9.00.0030.9000 (English), 4/24/2017 10:02:26, 1816728 bytes
Driver: C:\Windows\system32\cp_resources.bin, 4/24/2017 06:48:46, 511260 bytes
Driver: C:\Windows\system32\difx64.exe, 1.04.0003.0000 (English), 4/24/2017 09:55:38, 175096 bytes
Driver: C:\Windows\system32\igfxDH.dll, 6.15.0010.4624 (English), 4/24/2017 09:57:34, 756240 bytes
Driver: C:\Windows\system32\igfxDHLib.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:57:38, 85008 bytes
Driver: C:\Windows\system32\igfxDHLibv2_0.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:57:40, 95248 bytes
Driver: C:\Windows\system32\igfxDI.dll, 6.15.0010.4624 (English), 4/24/2017 09:57:44, 398864 bytes
Driver: C:\Windows\system32\igfxDILib.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:57:48, 29192 bytes
Driver: C:\Windows\system32\igfxDILibv2_0.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:57:52, 29200 bytes
Driver: C:\Windows\system32\igfxLHM.dll, 6.15.0010.4624 (English), 4/24/2017 09:58:28, 2142224 bytes
Driver: C:\Windows\system32\igfxLHMLib.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:58:32, 22544 bytes
Driver: C:\Windows\system32\igfxLHMLibv2_0.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:58:36, 22544 bytes
Driver: C:\Windows\system32\igfxSDK.exe, 4/24/2017 09:58:48, 1027064 bytes
Driver: C:\Windows\system32\igfxSDKLib.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:58:52, 100880 bytes
Driver: C:\Windows\system32\igfxSDKLibv2_0.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:58:54, 111632 bytes
Driver: C:\Windows\system32\igfxEM.exe, 6.15.0010.4624 (English), 4/24/2017 09:58:02, 354800 bytes
Driver: C:\Windows\system32\igfxEMLib.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:58:08, 27664 bytes
Driver: C:\Windows\system32\igfxEMLibv2_0.dll, 1.00.0000.0000 (Invariant Language), 4/24/2017 09:58:14, 27664 bytes
Driver: C:\Windows\system32\GfxUIEx.exe, 6.15.0010.4624 (English), 4/24/2017 09:55:54, 466928 bytes
Driver: C:\Windows\system32\Gfxv4_0.exe, 8.15.0010.4624 (English), 4/24/2017 09:56:00, 968184 bytes
Driver: C:\Windows\system32\Gfxv4_0.exe.config, 4/24/2017 06:48:52, 935 bytes
Driver: C:\Windows\system32\Gfxv2_0.exe, 8.15.0010.4624 (English), 4/24/2017 09:55:56, 964592 bytes
Driver: C:\Windows\system32\Gfxv2_0.exe.config, 4/24/2017 06:48:50, 895 bytes
Driver: C:\Windows\system32\GfxResources.dll, 8.15.0010.4624 (English), 4/24/2017 09:55:50, 5262864 bytes
Driver: C:\Windows\system32\MetroIntelGenericUIFramework.dll, 1.00.0000.0000 (English), 4/24/2017 10:00:26, 705040 bytes
Driver: C:\Windows\system32\igfxCUIServicePS.dll, 4/24/2017 09:57:32, 103440 bytes
Driver: C:\Windows\system32\igfxCUIService.exe, 6.15.0010.4624 (English), 4/24/2017 09:57:30, 373752 bytes
Driver: C:\Windows\system32\igfxCPL.cpl, 4/24/2017 09:57:26, 273424 bytes
Driver: C:\Windows\system32\igfxTray.exe, 4/24/2017 09:58:56, 401912 bytes
Driver: C:\Windows\system32\igfxDTCM.dll, 6.15.0010.4624 (English), 4/24/2017 09:57:58, 254992 bytes
Driver: C:\Windows\system32\igfxHK.exe, 6.15.0010.4624 (English), 4/24/2017 09:58:24, 268792 bytes
Driver: C:\Windows\system32\igfxOSP.dll, 6.15.0010.4624 (English), 4/24/2017 09:58:42, 390160 bytes
Driver: C:\Windows\system32\DPTopologyApp.exe, 8.15.0010.4624 (English), 4/24/2017 09:55:44, 232440 bytes
Driver: C:\Windows\system32\DPTopologyApp.exe.config, 4/24/2017 06:48:48, 935 bytes
Driver: C:\Windows\system32\DPTopologyAppv2_0.exe, 8.15.0010.4624 (English), 4/24/2017 09:55:46, 231928 bytes
Driver: C:\Windows\system32\DPTopologyAppv2_0.exe.config, 4/24/2017 06:48:48, 895 bytes
Driver: C:\Windows\system32\igfxext.exe, 6.15.0010.4624 (English), 4/24/2017 09:58:22, 237048 bytes
Driver: C:\Windows\system32\igfxexps.dll, 6.15.0010.4624 (English), 4/24/2017 10:02:06, 55248 bytes
Driver: C:\Windows\system32\ColorImageEnhancement.wmv, 4/24/2017 06:48:28, 375173 bytes
Driver: C:\Windows\system32\ImageStabilization.wmv, 4/24/2017 06:49:40, 403671 bytes
Driver: C:\Windows\system32\FilmModeDetection.wmv, 4/24/2017 06:48:50, 641530 bytes
Driver: C:\Windows\SysWow64\igfxexps32.dll, 6.15.0010.4624 (English), 4/24/2017 09:58:20, 52752 bytes
Driver: C:\Windows\system32\ig75icd64.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:10, 11753488 bytes
Driver: C:\Windows\SysWow64\ig75icd32.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:04, 8734224 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\llvm_release_license.txt, 4/24/2017 06:49:40, 1981 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\readme.txt, 4/24/2017 06:49:42, 9788 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\version.ini, 4/24/2017 06:49:42, 34 bytes
Driver: C:\Windows\SysWow64\Intel_OpenCL_ICD32.dll, 2.00.0002.0000 (English), 4/24/2017 10:00:18, 103952 bytes
Driver: C:\Windows\SysWow64\IntelOpenCL32.dll, 20.19.0015.4624 (English), 4/24/2017 09:59:16, 318480 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\task_executor32.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:50, 373264 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\OclCpuBackend32.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:42, 7126544 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\intelocl32.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:24, 1408528 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\cpu_device32.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:10, 522768 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfnn8.rtl, 4/24/2017 06:49:40, 1223604 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfnn8_img_cbk.o, 4/24/2017 06:49:40, 296664 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfnn8_img_cbk.rtl, 4/24/2017 06:49:40, 389300 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfng9.rtl, 4/24/2017 06:49:40, 1157132 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfng9_img_cbk.o, 4/24/2017 06:49:40, 287436 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfng9_img_cbk.rtl, 4/24/2017 06:49:40, 389180 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfns9.rtl, 4/24/2017 06:49:40, 785172 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfns9_img_cbk.o, 4/24/2017 06:49:40, 249992 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clbltfns9_img_cbk.rtl, 4/24/2017 06:49:40, 350952 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\clang_compiler32.dll, 5.02.0000.10094 (English), 4/24/2017 10:01:58, 242704 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\__ocl_svml_n8.dll, 3.04.0000.0000 (English), 4/24/2017 10:03:46, 5022736 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\__ocl_svml_g9.dll, 3.04.0000.0000 (English), 4/24/2017 10:03:36, 5360144 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\__ocl_svml_s9.dll, 3.04.0000.0000 (English), 4/24/2017 10:03:52, 5238288 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\tbb\tbbmalloc.dll, 4.02.2014.0601 (English), 4/24/2017 10:03:14, 208552 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\tbb\tbb.dll, 4.02.2014.0601 (English), 4/24/2017 10:02:58, 360104 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x86\tbb\tbb_preview.dll, 4.02.2013.1002 (), 4/24/2017 10:03:22, 356008 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\common\clbltfnshared.rtl, 4/24/2017 06:49:40, 1026520 bytes
Driver: C:\Windows\system32\Intel_OpenCL_ICD64.dll, 2.00.0002.0000 (English), 4/24/2017 10:00:22, 99856 bytes
Driver: C:\Windows\system32\IntelOpenCL64.dll, 20.19.0015.4624 (English), 4/24/2017 09:59:20, 416272 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\task_executor64.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:54, 428560 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\OclCpuBackend64.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:46, 9629200 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\intelocl64.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:26, 1628176 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\cpu_device64.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:20, 669200 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfnh8.rtl, 4/24/2017 06:49:40, 1226660 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfnh8_img_cbk.o, 4/24/2017 06:49:40, 358288 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfnh8_img_cbk.rtl, 4/24/2017 06:49:40, 402580 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfne9.rtl, 4/24/2017 06:49:40, 1159784 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfne9_img_cbk.o, 4/24/2017 06:49:40, 347104 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfne9_img_cbk.rtl, 4/24/2017 06:49:40, 402468 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfnl9.rtl, 4/24/2017 06:49:40, 788292 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfnl9_img_cbk.o, 4/24/2017 06:49:40, 294032 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clbltfnl9_img_cbk.rtl, 4/24/2017 06:49:40, 364424 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\clang_compiler64.dll, 5.02.0000.10094 (English), 4/24/2017 10:02:02, 267792 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\__ocl_svml_h8.dll, 3.04.0000.0000 (English), 4/24/2017 10:03:38, 5234192 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\__ocl_svml_e9.dll, 3.04.0000.0000 (English), 4/24/2017 10:03:28, 5744656 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\__ocl_svml_l9.dll, 3.04.0000.0000 (English), 4/24/2017 10:03:42, 5627408 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\tbb\tbbmalloc.dll, 4.02.2014.0601 (English), 4/24/2017 10:03:20, 248488 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\tbb\tbb.dll, 4.02.2014.0601 (English), 4/24/2017 10:03:04, 438440 bytes
Driver: C:\Program Files (x86)\Common Files\Intel\OpenCL\bin\x64\tbb\tbb_preview.dll, 4.02.2013.1002 (), 4/24/2017 10:03:24, 433832 bytes
Driver: C:\Windows\SysWow64\IntelOpenCL32.dll, 20.19.0015.4624 (English), 4/24/2017 09:59:16, 318480 bytes
Driver: C:\Windows\SysWow64\igdbcl32.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:40, 388624 bytes
Driver: C:\Windows\SysWow64\igdrcl32.dll, 20.19.0015.4624 (English), 4/24/2017 09:57:14, 4368912 bytes
Driver: C:\Windows\SysWow64\common_clang32.dll, 4.00.0000.0000 (English), 4/24/2017 09:55:26, 19861520 bytes
Driver: C:\Windows\SysWow64\igdmcl32.dll, 20.19.0015.4624 (English), 4/24/2017 09:57:08, 3972112 bytes
Driver: C:\Windows\SysWow64\igdfcl32.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:50, 225296 bytes
Driver: C:\Windows\system32\IntelOpenCL64.dll, 20.19.0015.4624 (English), 4/24/2017 09:59:20, 416272 bytes
Driver: C:\Windows\system32\igdbcl64.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:46, 439304 bytes
Driver: C:\Windows\system32\igdrcl64.dll, 20.19.0015.4624 (English), 4/24/2017 09:57:18, 4934160 bytes
Driver: C:\Windows\system32\common_clang64.dll, 4.00.0000.0000 (English), 4/24/2017 09:55:32, 29101584 bytes
Driver: C:\Windows\system32\igdmcl64.dll, 20.19.0015.4624 (English), 4/24/2017 09:57:12, 5688840 bytes
Driver: C:\Windows\system32\igdfcl64.dll, 20.19.0015.4624 (English), 4/24/2017 09:56:54, 266248 bytes
Driver: C:\Windows\system32\igdclbif.bin, 4/24/2017 06:49:24, 5799386 bytes
Driver: C:\Program Files\Intel\Media SDK\libmfxhw32.dll, 7.16.0010.0020 (English), 4/24/2017 10:02:28, 8872608 bytes
Driver: C:\Program Files\Intel\Media SDK\mfxplugin32_hw.dll, 1.16.0010.0020 (English), 4/24/2017 10:00:32, 4741344 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_h264ve_32.dll, 7.16.0010.0020 (English), 4/24/2017 10:02:38, 1457144 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_mjpgvd_32.dll, 7.16.0010.0020 (English), 4/24/2017 10:00:58, 1350368 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_vp8vd_32.dll, 7.16.0010.0020 (English), 4/24/2017 10:01:30, 1358560 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_vp9vd_32.dll, 7.16.0010.0020 (English), 4/24/2017 10:01:38, 1358560 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_h265ve_32.dll, 7.16.0010.0020 (English), 4/24/2017 10:02:50, 1471448 bytes
Driver: C:\Program Files\Intel\Media SDK\h265e_32.vp, 4/24/2017 06:48:54, 63761 bytes
Driver: C:\Program Files\Intel\Media SDK\he_32.vp, 4/24/2017 06:48:54, 62217 bytes
Driver: C:\Program Files\Intel\Media SDK\c_32.cpa, 4/24/2017 06:48:46, 846855 bytes
Driver: C:\Program Files\Intel\Media SDK\cpa_32.vp, 4/24/2017 06:48:46, 993 bytes
Driver: C:\Program Files\Intel\Media SDK\dev_32.vp, 4/24/2017 06:48:48, 21523 bytes
Driver: C:\Program Files\Intel\Media SDK\mj_32.vp, 4/24/2017 06:49:40, 57541 bytes
Driver: C:\Program Files\Intel\Media SDK\libmfxhw64.dll, 7.16.0010.0020 (English), 4/24/2017 10:02:34, 9318400 bytes
Driver: C:\Program Files\Intel\Media SDK\mfxplugin64_hw.dll, 1.16.0010.0020 (English), 4/24/2017 10:00:36, 4919520 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_h264ve_64.dll, 7.16.0010.0020 (English), 4/24/2017 10:02:44, 1810904 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_mjpgvd_64.dll, 7.16.0010.0020 (English), 4/24/2017 10:01:02, 1677536 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_vp8vd_64.dll, 7.16.0010.0020 (English), 4/24/2017 10:01:36, 1686240 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_vp9vd_64.dll, 7.16.0010.0020 (English), 4/24/2017 10:01:40, 1687264 bytes
Driver: C:\Program Files\Intel\Media SDK\mfx_mft_h265ve_64.dll, 7.16.0010.0020 (English), 4/24/2017 10:02:52, 1836760 bytes
Driver: C:\Program Files\Intel\Media SDK\h265e_64.vp, 4/24/2017 06:48:54, 13485 bytes
Driver: C:\Program Files\Intel\Media SDK\he_64.vp, 4/24/2017 06:48:54, 12873 bytes
Driver: C:\Program Files\Intel\Media SDK\c_64.cpa, 4/24/2017 06:48:46, 1519616 bytes
Driver: C:\Program Files\Intel\Media SDK\cpa_64.vp, 4/24/2017 06:48:46, 993 bytes
Driver: C:\Program Files\Intel\Media SDK\dev_64.vp, 4/24/2017 06:48:48, 21523 bytes
Driver: C:\Program Files\Intel\Media SDK\mj_64.vp, 4/24/2017 06:49:40, 12365 bytes
Driver: C:\Windows\system32\igfxCoIn_v4624.dll, 1.03.0024.0000 (English), 4/24/2017 09:59:00, 220176 bytes
Driver: C:\Windows\system32\DisplayAudiox64.cab, 4/24/2017 06:48:48, 831685 bytes
Name: Intel(R) 8 Series/C220 Series SMBus Controller - 8C22
Device ID: PCI\VEN_8086&DEV_8C22&SUBSYS_397817AA&REV_05\3&11583659&0&FB
Driver: n/a
Name: Intel(R) 8 Series/C220 Series PCI Express Root Port #5 - 8C18
Device ID: PCI\VEN_8086&DEV_8C18&SUBSYS_397817AA&REV_D5\3&11583659&0&E4
Driver: C:\Windows\system32\DRIVERS\pci.sys, 10.00.19041.1387 (English), 3/7/2022 06:28:22, 469840 bytes
------------------
DirectShow Filters
------------------
DirectShow Filters:
WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,10.00.19041.1288
WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,10.00.19041.1288
WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,10.00.19041.0001
MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,10.00.19041.0001
Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,10.00.19041.0450
WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,10.00.19041.0001
WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,10.00.19041.1110
Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,10.00.19041.1165
Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,10.00.19041.1165
DV Muxer,0x00400000,0,0,qdv.dll,10.00.19041.0001
Color Space Converter,0x00400001,1,1,quartz.dll,10.00.19041.0746
WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.19041.0001
AVI Splitter,0x00600000,1,1,quartz.dll,10.00.19041.0746
VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,10.00.19041.0746
SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,10.00.19041.0001
Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,10.00.19041.1566
AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,10.00.19041.0329
StreamBufferSink,0x00200000,0,0,sbe.dll,10.00.19041.0001
MJPEG Decompressor,0x00600000,1,1,quartz.dll,10.00.19041.0746
MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,10.00.19041.0746
SAMI (CC) Parser,0x00400000,1,1,quartz.dll,10.00.19041.0746
VBI Codec,0x00600000,1,4,VBICodec.ax,10.00.19041.0746
MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,10.00.19041.0329
Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,10.00.19041.0001
SBE2FileScan,0x00200000,0,0,sbe.dll,10.00.19041.0001
Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,10.00.19041.0001
Internal Script Command Renderer,0x00800001,1,0,quartz.dll,10.00.19041.0746
MPEG Audio Decoder,0x03680001,1,1,quartz.dll,10.00.19041.0746
DV Splitter,0x00600000,1,2,qdv.dll,10.00.19041.0001
Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,10.00.19041.0746
Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,10.00.19041.0001
ACM Wrapper,0x00600000,1,1,quartz.dll,10.00.19041.0746
Video Renderer,0x00800001,1,0,quartz.dll,10.00.19041.0746
MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,10.00.19041.0001
Line 21 Decoder,0x00600000,1,1,,
Video Port Manager,0x00600000,2,1,quartz.dll,10.00.19041.0746
Video Renderer,0x00400000,1,0,quartz.dll,10.00.19041.0746
VPS Decoder,0x00200000,0,0,WSTPager.ax,10.00.19041.0001
WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.19041.0001
VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,
File writer,0x00200000,1,0,qcap.dll,10.00.19041.0001
DVD Navigator,0x00200000,0,3,qdvd.dll,10.00.19041.0746
Overlay Mixer2,0x00200000,1,1,,
AVI Draw,0x00600064,9,1,quartz.dll,10.00.19041.0746
Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,10.00.19041.0001
WST Pager,0x00200000,1,1,WSTPager.ax,10.00.19041.0001
MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,10.00.19041.0329
DV Video Decoder,0x00800000,1,1,qdv.dll,10.00.19041.0001
SampleGrabber,0x00200000,1,1,qedit.dll,10.00.19041.0746
Null Renderer,0x00200000,1,0,qedit.dll,10.00.19041.0746
MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,10.00.19041.0001
Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,10.00.19041.0001
StreamBufferSource,0x00200000,0,0,sbe.dll,10.00.19041.0001
Smart Tee,0x00200000,1,2,qcap.dll,10.00.19041.0001
Overlay Mixer,0x00200000,0,0,,
AVI Decompressor,0x00600000,1,1,quartz.dll,10.00.19041.0746
AVI/WAV File Source,0x00400000,0,2,quartz.dll,10.00.19041.0746
Wave Parser,0x00400000,1,1,quartz.dll,10.00.19041.0746
MIDI Parser,0x00400000,1,1,quartz.dll,10.00.19041.0746
Multi-file Parser,0x00400000,1,1,quartz.dll,10.00.19041.0746
File stream renderer,0x00400000,1,1,quartz.dll,10.00.19041.0746
Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,10.00.19041.0001
StreamBufferSink2,0x00200000,0,0,sbe.dll,10.00.19041.0001
AVI Mux,0x00200000,1,0,qcap.dll,10.00.19041.0001
Line 21 Decoder 2,0x00600002,1,1,quartz.dll,10.00.19041.0746
File Source (Async.),0x00400000,0,1,quartz.dll,10.00.19041.0746
File Source (URL),0x00400000,0,1,quartz.dll,10.00.19041.0746
Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,10.00.19041.0001
Enhanced Video Renderer,0x00200000,1,0,evr.dll,10.00.19041.0546
BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,10.00.19041.0001
MPEG Video Decoder,0x40000001,1,1,quartz.dll,10.00.19041.0746
WDM Streaming Tee/Splitter Devices:
Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,10.00.19041.0746
Video Compressors:
WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,10.00.19041.0867
WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,10.00.19041.0001
MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,10.00.19041.0001
DV Video Encoder,0x00200000,0,0,qdv.dll,10.00.19041.0001
MJPEG Compressor,0x00200000,0,0,quartz.dll,10.00.19041.0746
Audio Compressors:
WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,10.00.19041.0508
WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,10.00.19041.0508
IMA ADPCM,0x00200000,1,1,quartz.dll,10.00.19041.0746
PCM,0x00200000,1,1,quartz.dll,10.00.19041.0746
Microsoft ADPCM,0x00200000,1,1,quartz.dll,10.00.19041.0746
GSM 6.10,0x00200000,1,1,quartz.dll,10.00.19041.0746
CCITT A-Law,0x00200000,1,1,quartz.dll,10.00.19041.0746
CCITT u-Law,0x00200000,1,1,quartz.dll,10.00.19041.0746
MPEG Layer-3,0x00200000,1,1,quartz.dll,10.00.19041.0746
Audio Capture Sources:
Microphone (Realtek High Definition Audio),0x00200000,0,0,qcap.dll,10.00.19041.0001
PBDA CP Filters:
PBDA DTFilter,0x00600000,1,1,CPFilters.dll,10.00.19041.1566
PBDA ETFilter,0x00200000,0,0,CPFilters.dll,10.00.19041.1566
PBDA PTFilter,0x00200000,0,0,CPFilters.dll,10.00.19041.1566
Midi Renderers:
Default MidiOut Device,0x00800000,1,0,quartz.dll,10.00.19041.0746
Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,10.00.19041.0746
WDM Streaming Capture Devices:
Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,10.00.19041.0746
Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,10.00.19041.0746
Lenovo EasyCamera,0x00200000,1,2,ksproxy.ax,10.00.19041.0746
WDM Streaming Rendering Devices:
Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,10.00.19041.0746
BDA Network Providers:
Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,10.00.19041.0001
Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,10.00.19041.0001
Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,10.00.19041.0001
Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,10.00.19041.0001
Microsoft Network Provider,0x00200000,0,1,MSNP.ax,10.00.19041.0001
Video Capture Sources:
Lenovo EasyCamera,0x00200000,1,2,ksproxy.ax,10.00.19041.0746
Multi-Instance Capable VBI Codecs:
VBI Codec,0x00600000,1,4,VBICodec.ax,10.00.19041.0746
BDA Transport Information Renderers:
BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,10.00.19041.0001
MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,10.00.19041.0001
WDM Streaming Communication Transforms:
Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,10.00.19041.0746
Audio Renderers:
Speakers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,10.00.19041.0746
Default DirectSound Device,0x00800000,1,0,quartz.dll,10.00.19041.0746
Default WaveOut Device,0x00200000,1,0,quartz.dll,10.00.19041.0746
DirectSound: Speakers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,10.00.19041.0746
----------------------------
Preferred DirectShow Filters
----------------------------
[HKEY_LOCAL_MACHINE\Software\Microsoft\DirectShow\Preferred]
<media subtype GUID>, [<filter friendly name>, ]<filter CLSID>
MEDIASUBTYPE_DVD_LPCM_AUDIO, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
MEDIASUBTYPE_MPEG2_AUDIO, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
MEDIASUBTYPE_MPEG2_VIDEO, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS
{78766964-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
{7634706D-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
MEDIASUBTYPE_mp4s, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
{64697678-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
{58564944-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
{5634504D-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
MEDIASUBTYPE_MP4S, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
MEDIASUBTYPE_WMVR, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
MEDIASUBTYPE_WMVP, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
{44495658-0000-0010-8000-00AA00389B71}, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
MEDIASUBTYPE_WMVA, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
MEDIASUBTYPE_mpg4, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject
MEDIASUBTYPE_MPG4, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject
MEDIASUBTYPE_h264, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS
MEDIASUBTYPE_H264, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS
MEDIASUBTYPE_WMV3, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
MEDIASUBTYPE_mp43, Mpeg43 Decoder DMO, CLSID_CMpeg43DecMediaObject
MEDIASUBTYPE_MP43, Mpeg43 Decoder DMO, CLSID_CMpeg43DecMediaObject
MEDIASUBTYPE_m4s2, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
MEDIASUBTYPE_WMV2, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
MEDIASUBTYPE_MSS2, WMV Screen decoder DMO, CLSID_CMSSCDecMediaObject
MEDIASUBTYPE_M4S2, Mpeg4s Decoder DMO, CLSID_CMpeg4sDecMediaObject
MEDIASUBTYPE_WVP2, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
MEDIASUBTYPE_mp42, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject
MEDIASUBTYPE_MP42, Mpeg4 Decoder DMO, CLSID_CMpeg4DecMediaObject
MEDIASUBTYPE_WMV1, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
MEDIASUBTYPE_MSS1, WMV Screen decoder DMO, CLSID_CMSSCDecMediaObject
MEDIASUBTYPE_WVC1, WMVideo Decoder DMO, CLSID_CWMVDecMediaObject
MEDIASUBTYPE_AVC1, Microsoft DTV-DVD Video Decoder, CLSID_CMPEG2VidDecoderDS
MEDIASUBTYPE_MPEG_LOAS, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
MEDIASUBTYPE_MPEG_ADTS_AAC, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
MEDIASUBTYPE_WMAUDIO_LOSSLESS, WMAudio Decoder DMO, CLSID_CWMADecMediaObject
MEDIASUBTYPE_WMAUDIO3, WMAudio Decoder DMO, CLSID_CWMADecMediaObject
WMMEDIASUBTYPE_WMAudioV8, WMAudio Decoder DMO, CLSID_CWMADecMediaObject
MEDIASUBTYPE_MSAUDIO1, WMAudio Decoder DMO, CLSID_CWMADecMediaObject
MEDIASUBTYPE_RAW_AAC1, Microsoft DTV-DVD Audio Decoder, CLSID_CMPEG2AudDecoderDS
WMMEDIASUBTYPE_MP3, MP3 Decoder DMO, CLSID_CMP3DecMediaObject
MEDIASUBTYPE_MPEG1Payload, MPEG Video Decoder, CLSID_CMpegVideoCodec
MEDIASUBTYPE_MPEG1Packet, MPEG Video Decoder, CLSID_CMpegVideoCodec
{6C737664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec
{64737664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec
{64687664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec
MEDIASUBTYPE_MJPG, MJPEG Decompressor, CLSID_MjpegDec
{20637664-0000-0010-8000-00AA00389B71}, DV Video Decoder, CLSID_DVVideoCodec
MEDIASUBTYPE_MPEG1AudioPayload, MPEG Audio Decoder, CLSID_CMpegAudioCodec
WMMEDIASUBTYPE_WMSP2, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject
WMMEDIASUBTYPE_WMSP1, WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject
---------------------------
Media Foundation File Versions
---------------------------
mfcore.dll, 10.00.19041.1566
mfreadwrite.dll, 10.00.19041.0746
mfcaptureengine.dll, 10.00.19041.0906
mfsensorgroup.dll, 10.00.19041.1503
windows.media.dll, 10.00.19041.1566
frameserver.dll, 10.00.19041.1503
frameserverclient.dll, 10.00.19041.1503
---------------------------
Media Foundation Transforms
---------------------------
[HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\Transforms]
<category>:
<transform friendly name>, <transform CLSID>, <flags>, [<merit>, ]<file name>, <file version>
Video Decoders:
Intel® Hardware M-JPEG Decoder MFT, {00C69F81-0524-48C0-A353-4DD9D54F9A6E}, 0x6, 7, mfx_mft_mjpgvd_64.dll, 7.16.0010.0020
Intel® Hardware VP8 Decoder MFT, {6D856398-834E-4A89-8EE5-071BB3F58BE4}, 0x6, mfx_mft_vp8vd_64.dll, 7.16.0010.0020
Microsoft MPEG Video Decoder MFT, {2D709E52-123F-49B5-9CBC-9AF5CDE28FB9}, 0x1, msmpeg2vdec.dll, 10.00.19041.1566
DV Decoder MFT, {404A6DE5-D4D6-4260-9BC7-5A6CBD882432}, 0x1, mfdvdec.dll, 10.00.19041.0001
Intel® Hardware VP8 Sync Decoder MFT, {451E3CB7-2622-4BA5-8E1D-44B3C41D0924}, 0x1, mfx_mft_vp8vd_64.dll, 7.16.0010.0020
Mpeg4s Decoder MFT, CLSID_CMpeg4sDecMFT, 0x1, mp4sdecd.dll, 10.00.19041.0450
Microsoft H264 Video Decoder MFT, CLSID_CMSH264DecoderMFT, 0x1, msmpeg2vdec.dll, 10.00.19041.1566
WMV Screen decoder MFT, CLSID_CMSSCDecMediaObject, 0x1, wmvsdecd.dll, 10.00.19041.0001
WMVideo Decoder MFT, CLSID_CWMVDecMediaObject, 0x1, wmvdecod.dll, 10.00.19041.1110
MJPEG Decoder MFT, {CB17E772-E1CC-4633-8450-5617AF577905}, 0x1, mfmjpegdec.dll, 10.00.19041.1348
Mpeg43 Decoder MFT, CLSID_CMpeg43DecMediaObject, 0x1, mp43decd.dll, 10.00.19041.1165
Mpeg4 Decoder MFT, CLSID_CMpeg4DecMediaObject, 0x1, mpg4decd.dll, 10.00.19041.1165
WebpImageExtension
HEIFImageExtension
VP9VideoExtensionDecoder
Video Encoders:
Intel® Quick Sync Video H.264 Encoder MFT, {4BE8D3C0-0515-4A37-AD55-E4BAE19AF471}, 0x4, 7, mfx_mft_h264ve_64.dll, 7.16.0010.0020
NVIDIA H.264 Encoder MFT, {60F44560-5A20-4857-BFEF-D29773CB8040}, 0x4, 8, nvEncMFTH264.dll, 21.21.0013.7654
H264 Encoder MFT, {6CA50344-051A-4DED-9779-A43305165E35}, 0x1, mfh264enc.dll, 10.00.19041.1566
WMVideo8 Encoder MFT, CLSID_CWMVXEncMediaObject, 0x1, wmvxencd.dll, 10.00.19041.0867
H263 Encoder MFT, {BC47FCFE-98A0-4F27-BB07-698AF24F2B38}, 0x1, mfh263enc.dll, 10.00.19041.0001
WMVideo9 Encoder MFT, CLSID_CWMV9EncMediaObject, 0x1, wmvencod.dll, 10.00.19041.0001
Microsoft MPEG-2 Video Encoder MFT, {E6335F02-80B7-4DC4-ADFA-DFE7210D20D5}, 0x2, msmpeg2enc.dll, 10.00.19041.0001
HEIFImageExtension
VP9VideoExtensionEncoder
Video Effects:
Frame Rate Converter, CLSID_CFrameRateConvertDmo, 0x1, mfvdsp.dll, 10.00.19041.0746
Resizer MFT, CLSID_CResizerDMO, 0x1, vidreszr.dll, 10.00.19041.0867
VideoStabilization MFT, {51571744-7FE4-4FF2-A498-2DC34FF74F1B}, 0x1, MSVideoDSP.dll, 10.00.19041.0746
Color Control, CLSID_CColorControlDmo, 0x1, mfvdsp.dll, 10.00.19041.0746
Color Converter MFT, CLSID_CColorConvertDMO, 0x1, colorcnv.dll, 10.00.19041.1110
Video Processor:
Microsoft Video Processor MFT, {88753B26-5B24-49BD-B2E7-0C445C78C982}, 0x1, msvproc.dll, 10.00.19041.1566
Audio Decoders:
Microsoft Dolby Digital Plus Decoder MFT, {177C0AFE-900B-48D4-9E4C-57ADD250B3D4}, 0x1, DolbyDecMFT.dll, 10.00.19041.1566
MS AMRNB Decoder MFT, {265011AE-5481-4F77-A295-ABB6FFE8D63E}, 0x1, MSAMRNBDecoder.dll, 10.00.19041.0001
WMAudio Decoder MFT, CLSID_CWMADecMediaObject, 0x1, WMADMOD.DLL, 10.00.19041.1288
Microsoft AAC Audio Decoder MFT, CLSID_CMSAACDecMFT, 0x1, MSAudDecMFT.dll, 10.00.19041.1165
A-law Wrapper MFT, {36CB6E0C-78C1-42B2-9943-846262F31786}, 0x1, mfcore.dll, 10.00.19041.1566
GSM ACM Wrapper MFT, {4A76B469-7B66-4DD4-BA2D-DDF244C766DC}, 0x1, mfcore.dll, 10.00.19041.1566
WMAPro over S/PDIF MFT, CLSID_CWMAudioSpdTxDMO, 0x1, WMADMOD.DLL, 10.00.19041.1288
Microsoft Opus Audio Decoder MFT, {63E17C10-2D43-4C42-8FE3-8D8B63E46A6A}, 0x1, MSOpusDecoder.dll, 10.00.19041.0746
Microsoft FLAC Audio Decoder MFT, {6B0B3E6B-A2C5-4514-8055-AFE8A95242D9}, 0x1, MSFlacDecoder.dll, 10.00.19041.1566
Microsoft MPEG Audio Decoder MFT, {70707B39-B2CA-4015-ABEA-F8447D22D88B}, 0x1, MSAudDecMFT.dll, 10.00.19041.1165
WMSpeech Decoder DMO, CLSID_CWMSPDecMediaObject, 0x1, WMSPDMOD.DLL, 10.00.19041.0001
G711 Wrapper MFT, {92B66080-5E2D-449E-90C4-C41F268E5514}, 0x1, mfcore.dll, 10.00.19041.1566
IMA ADPCM ACM Wrapper MFT, {A16E1BFF-A80D-48AD-AECD-A35C005685FE}, 0x1, mfcore.dll, 10.00.19041.1566
MP3 Decoder MFT, CLSID_CMP3DecMediaObject, 0x1, mp3dmod.dll, 10.00.19041.0001
Microsoft ALAC Audio Decoder MFT, {C0CD7D12-31FC-4BBC-B363-7322EE3E1879}, 0x1, MSAlacDecoder.dll, 10.00.19041.0746
ADPCM ACM Wrapper MFT, {CA34FE0A-5722-43AD-AF23-05F7650257DD}, 0x1, mfcore.dll, 10.00.19041.1566
Dolby TrueHD IEC-61937 converter MFT, {CF5EEEDF-0E92-4B3B-A161-BD0FFE545E4B}, 0x1, mfaudiocnv.dll, 10.00.19041.0746
DTS IEC-61937 converter MFT, {D035E24C-C877-42D7-A795-2A8A339B472F}, 0x1, mfaudiocnv.dll, 10.00.19041.0746
Audio Encoders:
LPCM DVD-Audio MFT, {068A8476-9229-4CC0-9D49-2FC699DCD30A}, 0x1, mfaudiocnv.dll, 10.00.19041.0746
MP3 Encoder ACM Wrapper MFT, {11103421-354C-4CCA-A7A3-1AFF9A5B6701}, 0x1, mfcore.dll, 10.00.19041.1566
Microsoft FLAC Audio Encoder MFT, {128509E9-C44E-45DC-95E9-C255B8F466A6}, 0x1, MSFlacEncoder.dll, 10.00.19041.0746
WM Speech Encoder DMO, CLSID_CWMSPEncMediaObject2, 0x1, WMSPDMOE.DLL, 10.00.19041.0508
MS AMRNB Encoder MFT, {2FAE8AFE-04A3-423A-A814-85DB454712B0}, 0x1, MSAMRNBEncoder.dll, 10.00.19041.0001
Microsoft MPEG-2 Audio Encoder MFT, {46A4DD5C-73F8-4304-94DF-308F760974F4}, 0x1, msmpeg2enc.dll, 10.00.19041.0001
WMAudio Encoder MFT, CLSID_CWMAEncMediaObject, 0x1, WMADMOE.DLL, 10.00.19041.0508
Microsoft AAC Audio Encoder MFT, {93AF0C51-2275-45D2-A35B-F2BA21CAED00}, 0x1, mfAACEnc.dll, 10.00.19041.0001
Microsoft ALAC Audio Encoder MFT, {9AB6A28C-748E-4B6A-BFFF-CC443B8E8FB4}, 0x1, MSAlacEncoder.dll, 10.00.19041.0746
Microsoft Dolby Digital Encoder MFT, {AC3315C9-F481-45D7-826C-0B406C1F64B8}, 0x1, msac3enc.dll, 10.00.19041.0001
Audio Effects:
AEC, CLSID_CWMAudioAEC, 0x1, mfwmaaec.dll, 10.00.19041.0001
Resampler MFT, CLSID_CResamplerMediaObject, 0x1, resampledmo.dll, 10.00.19041.0001
Multiplexers:
Microsoft MPEG2 Multiplexer MFT, {AB300F71-01AB-46D2-AB6C-64906CB03258}, 0x2, mfmpeg2srcsnk.dll, 10.00.19041.1566
Others:
Microsoft H264 Video Remux (MPEG2TSToMP4) MFT, {05A47EBB-8BF0-4CBF-AD2F-3B71D75866F5}, 0x1, msmpeg2vdec.dll, 10.00.19041.1566
--------------------------------------------
Media Foundation Enabled Hardware Categories
--------------------------------------------
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Media Foundation\HardwareMFT]
EnableEncoders = 1
EnableDecoders = 1
-------------------------------------
Media Foundation Byte Stream Handlers
-------------------------------------
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Media Foundation\ByteStreamHandlers]
[HKEY_LOCAL_MACHINE\Software\Classes\MediaFoundation\MediaSources\Preferred]
<file ext. or MIME type>, <handler CLSID>, <brief description>[, Preferred]
.3g2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
.3gp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
.3gp2, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
.3gpp, {271C3902-6095-4C45-A22F-20091816EE9E}, MPEG4 Byte Stream Handler, Preferred
.aac, {926F41F7-003E-4382-9E84-9E953BE10562}, ADTS Byte Stream Handler, Preferred