IEEE 1394 Streaming Filter Driver Registry Settings (Windows CE 5.0)

Send Feedback

You must add the streaming filter driver to your subunit driver's registry entries. The following code example shows how to add the driver to your registry entries.

[HKEY_LOCAL_MACHINE\WDMDrivers\{insert your drivers GUID here}]
    "LowerFilters"=multi_sz:"AVC_STREAM"

The globally unique identifier (GUID) that must be described in the preceding code example is the GUID that defines both your subunit in the registry and you also use this GUID when you advertise your subunit's device interface. The textual term LowerFilters defines for WDM a list of names of drivers that should be inserted into the driver stack below your driver. If the string reads UpperFilters, the drivers listed would be inserted into the driver stack above your driver. However, for the streaming filter driver, this should always read LowerFilters. In the following code example, note the registry entries for the VCR subunit.

[HKEY_LOCAL_MACHINE\WDMDrivers\{2006E508-E0AB-4C10-9A34-CB445F47DDA8}]
    "LowerFilters"=multi_sz:"AVC_STREAM"

[HKEY_LOCAL_MACHINE\WDMDrivers\{2006E508-E0AB-4C10-9A34-CB445F47DDA8}\0000]
    "MatchingDeviceId"="AVC\\TYP_4"
    "Dll"="AVC_VCR.DLL"
    "FriendlyName"="AV/C VCR Subunit"

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.