|
|
| andy |
| Posted: Jan 13 2013, 07:16 AM |
 |
|
Advanced Member
  
Group: Members
Posts: 35
Member No.: 35896
Joined: 26-December 12

|
| QUOTE (phaeron @ Jan 6 2013, 11:24 PM) | Sorry for the delay in responding.
I meant "AVI Mux" instead of "AVI Splitter"... but if you no longer have the crossbar filter, then that could be the problem. If you can see it on another machine and you have the DLL on the problematic one, then you can try re-registering it with regsvr32.exe. |
The delay's okay, I needed some MAGFest recovery time anyway.
I tried AVI Mux but got the same errors as with AVI Splitter.
I tried "regsvr32.exe" on ksxbar.ax in both system32 and syswow64, but nothing happened. Rebooting didn't help. I still get the same odd behavior.
ksxbar.ax is the right DLL, isn't it? Is there something else I should be looking at?
Now I'm wondering if I ought to set up some kind of development environment so I can step through your code in gdb. Static code analysis suggests VDCaptureDriverDS::DisplayPropertyPages(mpCrossbar, NULL, NULL, 0) is returning false, but without running the code I can't tell which of its "return false" statements is being hit. I'm going to guess mpCrossbar is NULL. How is mpCrossbar set? With this very strange statement:
| CODE | | mpCapGraphBuilder2->FindInterface(NULL, NULL, mpCapFilt, IID_IAMCrossbar, (void **)~mpCrossbar); |
I'm utterly mystified about that "~". I was totally expecting "&". Is this some strange C++ operator overloading? I'm sorry if there's something I'm missing here, just... I'd never seen anyone try to take the bitwise complement of a pointer, let alone an uninitialized pointer with the result cast to be a double pointer.
But this still doesn't explain why things are broken now and used to work, and still do work on my other laptop. The code hasn't changed.
If there's anything further I can do to help debug this, please let me know. Aside from digging in with gdb, the only thing I can think of right now is wiping the disk, reinstalling the OS, seeing if it works, imaging the disk, breaking it again like before, imaging a second time, and comparing the images. |
 |
| dloneranger |
| Posted: Jan 13 2013, 12:07 PM |
 |
|
Moderator
  
Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07

|
the ~ is an operator from the template If you follow the declarations of the variable's type you end up at
| CODE | T **operator~() { if (mp) { mp->Release(); mp = NULL; } return ∓ } |
so, it's freeing any previous instance, nulling it, and returning the ref
-------------------- MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask Windows7/8 Codec Chooser All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3 |
 |
| phaeron |
| Posted: Jan 20 2013, 08:54 PM |
 |
|

Virtualdub Developer
  
Group: Administrator
Posts: 7773
Member No.: 61
Joined: 30-July 02

|
As dloneranger noted, operator~() is overridden in the smart pointer type I use to empty the pointer object and then return a pointer to the internal storage for use in COM out parameters. This is a very commonly needed operation. It's ~ because using operator&() as com_ptr_t breaks a lot of things (such as all of STL).
Based on the message you posted a while back, this would be the code that is failing:
| CODE | DS_VERIFY(mpGraphBuilder->Render(pCapturePin), "render capture pin (hardware display)");
|
However, that doesn't tell us anything we didn't already know from the GraphEdit/GraphStudio explorations. At this point what you would want to do is to hunt down all of the places where the capture driver layers are hiding settings and delete or reset them. There's no easy way to do that, so it would likely involve using Process Monitor to check registry accesses. |
 |
| andy |
| Posted: Jan 20 2013, 11:16 PM |
 |
|
Advanced Member
  
Group: Members
Posts: 35
Member No.: 35896
Joined: 26-December 12

|
I ran VirtualDub and attempted a capture while Process Monitor was running, then saved to CSV the registry accesses made by the VirtualDub.exe process. I then filtered the CSV file using this script:
| CODE | #!/usr/bin/env tclsh
package require Tcl 8.6
proc csv_split {line} { # ... code taken from http://wiki.tcl.tk/csv ... }
set inchan [open Logfile.CSV] set paths {} while {[chan gets $inchan line] >= 0} { lassign [csv_split $line] _ _ _ operation path result if {$operation eq "RegQueryValue" && $result eq "SUCCESS"} { regsub {[^\\]*} $path [dict get { HKLM HKEY_LOCAL_MACHINE HKU HKEY_USERS HKCR HKEY_CLASSES_ROOT HKCU HKEY_CURRENT_USER HKCC HKEY_CURRENT_CONFIG HKPD HKEY_PERFORMANCE_DATA HKDD HKEY_DYN_DATA } [regexp -inline {[^\\]*} $path]] path dict set paths $path "" } } chan close $inchan
set outchan [open reg.txt w] chan puts $outchan [join [lsort -unique [dict keys $paths]] \n] chan close $outchan
exit
# vim: set sts=4 sw=4 tw=80 et ft=tcl:
|
This resulted in a list of 322 successful registry accesses.
Next I uninstalled the driver and ran this script to get a list of all remaining and deleted registry values:
| CODE | #!/usr/bin/env tclsh
package require Tcl 8.6 package require registry
set inchan [open reg.txt] set found {} set missing {} while {[chan gets $inchan line] >= 0} { if {![regexp {(.*)\\(\\.*)} $line _ key value]} { regexp {(.*)\\(.*)} $line _ key value } if {$value eq "(Default)"} { set realvalue "" } else { set realvalue $value } if {[catch {registry -64bit get $key $realvalue}]} { lappend missing $key\\$value } else { lappend found $key\\$value } } chan close $inchan
set outchan [open report.txt w] chan puts $outchan "*** FOUND ***" chan puts $outchan [join $found \n] chan puts $outchan "*** MISSING ***" chan puts $outchan [join $missing \n] chan close $outchan
exit
# vim: set sts=4 sw=4 tw=80 et ft=tcl: |
The following values were REMOVED:
| CODE | HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{964e2275-cd3b-4119-b1f3-ed5b9adf064c}\Properties\{1da5d803-d492-4edd-8c23-e0c0ffee7f0e},0 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{964e2275-cd3b-4119-b1f3-ed5b9adf064c}\Properties\{a45c254e-df1c-4efd-8020-67d146a850e0},2 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{964e2275-cd3b-4119-b1f3-ed5b9adf064c}\Properties\{b3f8fa53-0004-438e-9003-51a46e139bfc},1 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{964e2275-cd3b-4119-b1f3-ed5b9adf064c}\Properties\{b3f8fa53-0004-438e-9003-51a46e139bfc},2 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{964e2275-cd3b-4119-b1f3-ed5b9adf064c}\Properties\{b3f8fa53-0004-438e-9003-51a46e139bfc},6 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{65E8773D-8F56-11D0-A3B9-00A0C9223196}\##?#USB#VID_EB1A&PID_8285&MI_00#6&2185CCA3&2&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\#{54353D15-E717-4d94-B574-685CE1A209E9}\Device Parameters\CLSID HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{65E8773D-8F56-11D0-A3B9-00A0C9223196}\##?#USB#VID_EB1A&PID_8285&MI_00#6&2185CCA3&2&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\#{54353D15-E717-4d94-B574-685CE1A209E9}\Device Parameters\FilterData HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{65E8773D-8F56-11D0-A3B9-00A0C9223196}\##?#USB#VID_EB1A&PID_8285&MI_00#6&2185CCA3&2&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\#{54353D15-E717-4d94-B574-685CE1A209E9}\Device Parameters\FriendlyName HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{A799A801-A46D-11D0-A18C-00A02401DCD4}\##?#USB#VID_EB1A&PID_8285&MI_00#6&2185CCA3&2&0000#{a799a801-a46d-11d0-a18c-00a02401dcd4}\#{C2C9FB1B-795C-4b12-ADBE-D87C6A1D08FC}\Device Parameters\CLSID HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{A799A801-A46D-11D0-A18C-00A02401DCD4}\##?#USB#VID_EB1A&PID_8285&MI_00#6&2185CCA3&2&0000#{a799a801-a46d-11d0-a18c-00a02401dcd4}\#{C2C9FB1B-795C-4b12-ADBE-D87C6A1D08FC}\Device Parameters\FriendlyName HKEY_LOCAL_MACHINE\System\CurrentControlSet\Enum\USB\VID_EB1A&PID_8285&MI_00\6&2185CCA3&2&0000\Driver |
Which left this huge mess of values, listing below... sorry for such a long post! Many look completely irrelevant, as expected. Several are from VirtualDub itself, and I know from experience that deleting the VirtualDub registry values doesn't fix anything. The USB audio device values are messily left behind, but my problem is more with video capture. And I don't know much about the rest. I'm afraid to indiscriminately delete stuff out of this list. Perhaps you might recognize something.
| CODE | HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{0482DDE0-7817-11CF-8A03-00AA006ECB65}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{0482DDE0-7817-11CF-8A03-00AA006ECB65}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{0482DDE0-7817-11CF-8A03-00AA006ECB65}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{05589F80-C356-11CE-BF01-00AA0055595A}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{05589F80-C356-11CE-BF01-00AA0055595A}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{05589F80-C356-11CE-BF01-00AA0055595A}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{083863F1-70DE-11D0-BD40-00A0C911CE86}\Instance\{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}\CLSID HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{083863F1-70DE-11D0-BD40-00A0C911CE86}\Instance\{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}\FriendlyName HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{083863F1-70DE-11D0-BD40-00A0C911CE86}\Instance\{70E102B0-5556-11CE-97C0-00AA0055595A}\CLSID HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{083863F1-70DE-11D0-BD40-00A0C911CE86}\Instance\{70E102B0-5556-11CE-97C0-00AA0055595A}\FriendlyName HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{083863F1-70DE-11D0-BD40-00A0C911CE86}\Instance\{AB9D6472-752F-43F6-B29E-61207BDA8E06}\CLSID HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{083863F1-70DE-11D0-BD40-00A0C911CE86}\Instance\{AB9D6472-752F-43F6-B29E-61207BDA8E06}\FriendlyName HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{083863F1-70DE-11D0-BD40-00A0C911CE86}\Instance\{CF49D4E0-1115-11CE-B03A-0020AF0BA770}\CLSID HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{083863F1-70DE-11D0-BD40-00A0C911CE86}\Instance\{CF49D4E0-1115-11CE-B03A-0020AF0BA770}\FriendlyName HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{17CCA71B-ECD7-11D0-B908-00A0C9223196}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{17CCA71B-ECD7-11D0-B908-00A0C9223196}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{17CCA71B-ECD7-11D0-B908-00A0C9223196}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{4315D437-5B8C-11D0-BD3B-00A0C911CE86}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{4315D437-5B8C-11D0-BD3B-00A0C911CE86}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{4315D437-5B8C-11D0-BD3B-00A0C911CE86}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{4315D437-5B8C-11D0-BD3B-00A0C911CE86}\ProgID\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{62BE5D10-60EB-11D0-BD3B-00A0C911CE86}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{62BE5D10-60EB-11D0-BD3B-00A0C911CE86}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{62BE5D10-60EB-11D0-BD3B-00A0C911CE86}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{6A2E0670-28E4-11D0-A18C-00A0C9118956}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{6A2E0670-28E4-11D0-A18C-00A0C9118956}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{6A2E0670-28E4-11D0-A18C-00A0C9118956}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{6BC1CFFA-8FC1-4261-AC22-CFB4CC38DB50}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{70E102B0-5556-11CE-97C0-00AA0055595A}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{70E102B0-5556-11CE-97C0-00AA0055595A}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{70E102B0-5556-11CE-97C0-00AA0055595A}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{71F96460-78F3-11D0-A18C-00A0C9118956}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{71F96460-78F3-11D0-A18C-00A0C9118956}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{71F96460-78F3-11D0-A18C-00A0C9118956}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{720D4AC0-7533-11D0-A5D6-28DB04C10000}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{720D4AC0-7533-11D0-A5D6-28DB04C10000}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{720D4AC0-7533-11D0-A5D6-28DB04C10000}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{7D8AA343-6E63-4663-BE90-6B80F66540A3}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{7D8AA343-6E63-4663-BE90-6B80F66540A3}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{7D8AA343-6E63-4663-BE90-6B80F66540A3}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{846A4C4E-76D8-42EC-A333-121F365A4DA8}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{846A4C4E-76D8-42EC-A333-121F365A4DA8}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{846A4C4E-76D8-42EC-A333-121F365A4DA8}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{860BB310-5D01-11D0-BD3B-00A0C911CE86}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{860BB310-5D01-11D0-BD3B-00A0C911CE86}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{860BB310-5D01-11D0-BD3B-00A0C911CE86}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{99D54F63-1A69-41AE-AA4D-C976EB3F0713}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{99D54F63-1A69-41AE-AA4D-C976EB3F0713}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{99D54F63-1A69-41AE-AA4D-C976EB3F0713}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{AB9D6472-752F-43F6-B29E-61207BDA8E06}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{AB9D6472-752F-43F6-B29E-61207BDA8E06}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{AB9D6472-752F-43F6-B29E-61207BDA8E06}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{BF87B6E1-8C27-11D0-B3F0-00AA003761C5}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{BF87B6E1-8C27-11D0-B3F0-00AA003761C5}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{BF87B6E1-8C27-11D0-B3F0-00AA003761C5}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13343-30AC-11D0-A18C-00A0C9118956}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13343-30AC-11D0-A18C-00A0C9118956}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13343-30AC-11D0-A18C-00A0C9118956}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13350-30AC-11D0-A18C-00A0C9118956}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13350-30AC-11D0-A18C-00A0C9118956}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13350-30AC-11D0-A18C-00A0C9118956}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13360-30AC-11D0-A18C-00A0C9118956}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13360-30AC-11D0-A18C-00A0C9118956}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{C6E13360-30AC-11D0-A18C-00A0C9118956}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{CDA42200-BD88-11D0-BD4E-00A0C911CE86}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{CDA42200-BD88-11D0-BD4E-00A0C911CE86}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{CDA42200-BD88-11D0-BD4E-00A0C911CE86}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{CF49D4E0-1115-11CE-B03A-0020AF0BA770}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{CF49D4E0-1115-11CE-B03A-0020AF0BA770}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{CF49D4E0-1115-11CE-B03A-0020AF0BA770}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E05592E4-C0B5-11D0-A439-00A0C9223196}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E05592E4-C0B5-11D0-A439-00A0C9223196}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E05592E4-C0B5-11D0-A439-00A0C9223196}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E30629D2-27E5-11CE-875D-00608CB78066}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E30629D2-27E5-11CE-875D-00608CB78066}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E30629D2-27E5-11CE-875D-00608CB78066}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E436EBB3-524F-11CE-9F53-0020AF0BA770}\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E436EBB3-524F-11CE-9F53-0020AF0BA770}\InprocServer32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{E436EBB3-524F-11CE-9F53-0020AF0BA770}\InprocServer32\ThreadingModel HKEY_CLASSES_ROOT\Wow6432Node\Interface\{00000134-0000-0000-C000-000000000046}\ProxyStubClsid32\(Default) HKEY_CLASSES_ROOT\Wow6432Node\Interface\{97EBAACB-95BD-11D0-A3EA-00A0C9223196}\Distributor\(Default) HKEY_CURRENT_USER\Control Panel\Desktop\MuiCached\MachinePreferredUILanguages HKEY_CURRENT_USER\Software\Intel\Display\igfxcui\3D\default HKEY_CURRENT_USER\Software\Microsoft\ActiveMovie\devenum\Version HKEY_CURRENT_USER\Software\Microsoft\ActiveMovie\devenum\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Microphone (Realtek High Defini\FriendlyName HKEY_CURRENT_USER\Software\Microsoft\ActiveMovie\devenum\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Microphone (Realtek High Defini\WaveInId HKEY_CURRENT_USER\Software\Microsoft\ActiveMovie\devenum\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Microphone (USB Audio Device)\CLSID HKEY_CURRENT_USER\Software\Microsoft\ActiveMovie\devenum\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Microphone (USB Audio Device)\ClassManagerFlags HKEY_CURRENT_USER\Software\Microsoft\ActiveMovie\devenum\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Microphone (USB Audio Device)\FriendlyName HKEY_CURRENT_USER\Software\Microsoft\ActiveMovie\devenum\{33D9A762-90C8-11D0-BD43-00A0C911CE86}\Microphone (USB Audio Device)\WaveInId HKEY_CURRENT_USER\Software\Microsoft\Multimedia\ActiveMovie\Filter Cache\0 HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Auto-increment HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Crop bottom HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Crop left HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Crop right HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Crop top HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Display large timer HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Display preroll dialog HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Enable black luma squish HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Enable field swap HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Enable filter chain HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Enable noise reduction HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Enable white luma squish HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Hide on capture HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Multisegment HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Noise reduction level HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Show info panel HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Show status bar HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Show volume meter HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Skip filter chain conversion HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Start on left HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Startup Driver HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Stretch to window HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Allow early drops HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Allow late inserts HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Auto audio latency limit HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Correct video clock HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Disable clock for preview HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Enable log HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Fixed audio latency HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Force audio renderer clock HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Ignore video timestamps HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Insert limit HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Resync mode HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Resync with integrated audio HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Use audio timestamps HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Use fixed audio latency HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Timing: Use limited auto audio latency HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Audio Device HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Audio Format HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Audio input HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Audio playback enabled HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Audio source HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Brightness HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Contrast HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Frame rate denominator HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Frame rate numerator HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Hue HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Saturation HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Sharpness HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\USB 2828x Device (DirectShow)\Video Format HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Capture\Vertical squash mode HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\MRU List\MRUList HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Accelerate preview HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Auto-size panes HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Pane layout mode HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Preview audio sync HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Preview frame skipping HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Show decompressed frame HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Show status window HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Swap panes HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Update input pane HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Update output pane HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Persistence\Vertical display HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\SeenWelcome HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\VirtualDub HKEY_CURRENT_USER\Software\VirtualDub.org\VirtualDub\Window Placement\Main window HKEY_CURRENT_USER\System\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\Winmm\wheel HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\VIDEO\MaxObjectNumber HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\VIDEO\\Device\Video0 HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\VIDEO\\Device\Video1 HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\VIDEO\\Device\Video2 HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\VIDEO\\Device\Video4 HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\VIDEO\\Device\Video5 HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\VIDEO\\Device\Video6 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\COM3\Com+Enabled HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\CTF\TIP\{0000897b-83df-4b96-be07-0fb58b01c4a4}\LanguageProfile\0x00000000\{0001bea3-ed56-483d-a2e2-aeae25577436}\Enable HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography\MachineGuid HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Rpc\Extensions\NdrOleExtDLL HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Rpc\Extensions\RemoteRpcDll HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SQMClient\Windows\CEIPEnable HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SQMClient\Windows\CEIPSampledIn HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\LanguagePack\DataStore_V1.0\DataFilePath HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\LanguagePack\SurrogateFallback\Plane2 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{0dfc34e1-ef8a-4d49-ad3f-d0188900903d}\Properties\{1da5d803-d492-4edd-8c23-e0c0ffee7f0e},0 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{0dfc34e1-ef8a-4d49-ad3f-d0188900903d}\Properties\{a45c254e-df1c-4efd-8020-67d146a850e0},2 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{0dfc34e1-ef8a-4d49-ad3f-d0188900903d}\Properties\{b3f8fa53-0004-438e-9003-51a46e139bfc},2 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture\{0dfc34e1-ef8a-4d49-ad3f-d0188900903d}\Properties\{b3f8fa53-0004-438e-9003-51a46e139bfc},6 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\{7aa1ca63-8fb6-4d31-bda0-3d020848189a}\Properties\{1da5d803-d492-4edd-8c23-e0c0ffee7f0e},0 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\{7aa1ca63-8fb6-4d31-bda0-3d020848189a}\Properties\{a45c254e-df1c-4efd-8020-67d146a850e0},2 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\{7aa1ca63-8fb6-4d31-bda0-3d020848189a}\Properties\{b3f8fa53-0004-438e-9003-51a46e139bfc},2 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\{7aa1ca63-8fb6-4d31-bda0-3d020848189a}\Properties\{b3f8fa53-0004-438e-9003-51a46e139bfc},6 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Cryptography\Defaults\Provider\Microsoft Strong Cryptographic Provider\Image Path HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Cryptography\Defaults\Provider\Microsoft Strong Cryptographic Provider\Type HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Bug!\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Bug!\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Bug!\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\DemolitionDerby2\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\DemolitionDerby2\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\DemolitionDerby2\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Diablo\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Diablo\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Diablo\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\MortalKombat3\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\MortalKombat3\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\MortalKombat3\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\MsGolf98\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\MsGolf98\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\MsGolf98\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\NHLPowerPlay\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\NHLPowerPlay\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\NHLPowerPlay\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\NortonSystemInfo\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\NortonSystemInfo\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\NortonSystemInfo\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Rogue Squadron\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Rogue Squadron\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Rogue Squadron\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Savage\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Savage\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Savage\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ScorchedPlanet\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ScorchedPlanet\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ScorchedPlanet\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\SilentThunder\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\SilentThunder\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\SilentThunder\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraft100\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraft100\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraft100\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraft115\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraft115\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraft115\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraftDemo\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraftDemo\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\StarCraftDemo\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Terracide\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Terracide\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\Terracide\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ThirdDimension\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ThirdDimension\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ThirdDimension\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ZiffDavisQualityBenchmark\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ZiffDavisQualityBenchmark\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ZiffDavisQualityBenchmark\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ZiffDavisWinMarkBenchmark\Flags HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ZiffDavisWinMarkBenchmark\ID HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\ZiffDavisWinMarkBenchmark\Name HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi1 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi2 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi3 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi4 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi5 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi6 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi7 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi8 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midi9 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\midimapper HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.cvid HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.i420 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.iyuv HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.mrle HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.msvc HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.uyvy HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.xvid HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.yuy2 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.yvu9 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\vidc.yvyu HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave1 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave2 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave3 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave4 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave5 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave6 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave7 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave8 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wave9 HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\DRIVERS32\wavemapper HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Windows\LoadAppInit_DLLs HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\DevicePath HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\Windows Error Reporting\WMR\Disable HKEY_LOCAL_MACHINE\SYSTEM\Setup\OOBEInProgress HKEY_LOCAL_MACHINE\SYSTEM\Setup\SystemSetupInProgress HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ActiveComputerName\ComputerName HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\##?#DISPLAY#Default_Monitor#4&377fd03a&0&UID16843008#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\DeviceInstance HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\##?#DISPLAY#LEN40A1#4&377fd03a&0&UID67568640#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\#\Control\Linked HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\##?#DISPLAY#LEN40A1#4&377fd03a&0&UID67568640#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\#\SymbolicLink HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\##?#DISPLAY#LEN40A1#4&377fd03a&0&UID67568640#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\DeviceInstance HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\##?#DISPLAY#SECA600#4&377fd03a&0&UID16843008#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\DeviceInstance HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\##?#DISPLAY#SECA703#4&377fd03a&0&UID50535168#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\DeviceInstance HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\##?#DISPLAY#SHP0FE3#4&377fd03a&0&UID50535168#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\DeviceInstance HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceClasses\{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\##?#DISPLAY#WAC1019#4&377fd03a&0&UID50535168#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}\DeviceInstance HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa\AccessProviders\MartaExtension HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa\EveryoneIncludesAnonymous HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy\Enabled HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MUI\UILanguages\en-US\Type HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaCategories\{FB6C4281-0353-11d1-905F-0000C0CC16BA}\Name HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaCategories\{FB6C4283-0353-11d1-905F-0000C0CC16BA}\Name HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaCategories\{FB6C4284-0353-11d1-905F-0000C0CC16BA}\Name HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaInterfaces\{6A2E0670-28E4-11D0-A18C-00A0C9118956}\iid HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaInterfaces\{720D4AC0-7533-11D0-A5D6-28DB04C10000}\iid HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaInterfaces\{846A4C4E-76D8-42EC-A333-121F365A4DA8}\iid HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaInterfaces\{C6E13343-30AC-11D0-A18C-00A0C9118956}\iid HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaInterfaces\{C6E13350-30AC-11D0-A18C-00A0C9118956}\iid HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaInterfaces\{C6E13360-30AC-11D0-A18C-00A0C9118956}\iid HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaResources\msvideo\MSVideo.VFWWDM\Description HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaResources\msvideo\MSVideo.VFWWDM\Driver HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Nls\Language Groups\1 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Nls\Locale\00000409 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Nls\Sorting\Versions\(Default) HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\SQMServiceList\SQMServiceList HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server\TSUserEnabled HKEY_LOCAL_MACHINE\System\CurrentControlSet\Enum\PCI\VEN_8086&DEV_0166&SUBSYS_21F317AA&REV_09\3&42FFD25&0&10\HardwareID HKEY_LOCAL_MACHINE\System\CurrentControlSet\services\LDAP\LdapClientIntegrity | |
 |
| phaeron |
| Posted: Jan 26 2013, 08:33 PM |
 |
|

Virtualdub Developer
  
Group: Administrator
Posts: 7773
Member No.: 61
Joined: 30-July 02

|
| CODE | | HKEY_LOCAL_MACHINE\System\CurrentControlSet\Enum\USB\VID_EB1A&PID_8285&MI_00\6&2185CCA3&2&0000\Driver |
Based on PCI IDs, it looks like this one is related to your video capture device. |
 |
| andy |
| Posted: Feb 3 2013, 04:47 AM |
 |
|
Advanced Member
  
Group: Members
Posts: 35
Member No.: 35896
Joined: 26-December 12

|
| QUOTE (phaeron @ Jan 26 2013, 08:33 PM) | | CODE | | HKEY_LOCAL_MACHINE\System\CurrentControlSet\Enum\USB\VID_EB1A&PID_8285&MI_00&2185CCA3&2&0000\Driver |
Based on PCI IDs, it looks like this one is related to your video capture device. | Sorry, didn't see your post earlier, was away on business travel.
Meanwhile, I picked up one of these. Doesn't work in VirtualDub, nor can I import any of the files it produces (not AVI I guess). But the pack-in applications seem to work. They suck badly, but they do capture video. The encoding conversion tool fails though since it can't find the encoder DLL it just got done installing, and despite the promises that it supports Windows 7 the installer trips up on permissions in several places. Lousy.
I took another trip through the registry and happened across this:
HKEY_CLASSES_ROOT\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\VfWWDM Mapper
It wasn't empty; it contained some key or value with 8285 in the name. I deleted it, then video capture from my USB capture device worked again. Guess that was the problem all along: terrible software.
I'm a software engineer, so I think you can already guess what I did next. I reselected Microsoft WDM Image Capture (Win32) (VFW) from the Device menu. The system hung for a bit then rewarded me with a popunder dialog asking which video device I'd like to capture from. Picking my USB 2828x resulted in a bluescreen, just like the first time I'd done this. However, I wasn't graced with a key in the aforementioned location, and capture worked following reboot.
Well, now I'm going to return the Hauppauge HD PVR on the grounds that the encoding conversion software doesn't work in Windows 7. Got my receipt right here, and I will be very happy to get my freakin' $200 back. Radio Shack Rental, huh?
Thanks for fighting through this ordeal with me.
Next up: getting A/V sync to work again... apparently I forgot the magic incantation required to align the sound and picture just right. |
 |
|