I try to write an usb audio capture device based on AVStream. So I create a filter with 2 Pins. 1 Bridge Pin and 1 CapturePin, (see below). With Graphedit, or KsStudio all works fine, but my device is not visible/selectable as a system audio device in System->Sound->Audio (mmsys.cpl). Is this a problem of the filter (Pin descriptor, etc.)? Or is this a problen in my Inf -file, because i only add an capture interface
AddInterface=%KSCATEGORY_CAPTURE%,%KSSTRING_FILTER%,DrvInstall.A.Interface
and no KSCATEGORY_AUDIO Interface?
What should I do that the device is an ancessible system audio device? Becaus lot of audio application captures the audio only from the system audio devices, not from KSfilters.
thanx for your help
Can you send me a version of avssamp/avshws wich appears as a system audio device
My Pins:
const KSPIN_DESCRIPTOR_EX CaptureFilterPinDescriptors [CAPTURE_FILTER_PIN_COUNT] =
{
//
// Capture Pin
//
{
&CapturePinDispatch,
NULL,
// KSPIN_DESCRIPTOR
{
NULL, 0, // Interfaces (NULL, 0 == default)
NULL, 0, // Mediums (NULL, 0 == default)
SIZEOF_ARRAY (CapturePinDataRanges), // Range Count
CapturePinDataRanges, // Ranges
KSPIN_DATAFLOW_OUT, // Dataflow
KSPIN_COMMUNICATION_BOTH, // Communication
&KSCATEGORY_AUDIO, // Category
&g_PINNAME_AUDIO_CAPTURE, // Name
0 // Reserved
},
//KSPIN_FLAG_GENERATE_MAPPINGS | // Pin Flags
KSPIN_FLAG_DISPATCH_LEVEL_PROCESSING |
KSPIN_FLAG_PROCESS_IN_RUN_STATE_ONLY,
1, // Instances Possible
1, // Instances Necessary
&CapturePinAllocatorFraming, // Allocator Framing
reinterpret_cast
(CCapturePin::IntersectHandler)
},
// bridge pin
{
NULL,
NULL,
{
0, NULL, // SIZEOF_ARRAY(PinInterfaces), PinInterfaces,
0, NULL, // SIZEOF_ARRAY(PinMediums), PinMediums,
0, NULL, //Ranges…
KSPIN_DATAFLOW_IN,
KSPIN_COMMUNICATION_NONE,
&KSNODETYPE_LINE_CONNECTOR, // Category
&KSNODETYPE_LINE_CONNECTOR, // Name
0
},
KSPIN_FLAG_PROCESS_IN_RUN_STATE_ONLY | // Flags
KSPIN_FLAG_FIXED_FORMAT,
1, //InstancesPossible
0, //InstancesNecessary
NULL,
NULL
}
};