Sample Code
Windows Driver Samples/ Microsoft Virtual Audio Device Driver Sample/ C++/ dynamic/ dynamic.h/
/*++ Copyright (c) 1997-2000 Microsoft Corporation All Rights Reserved Module Name: dynamic.h Abstract: Node and Pin numbers for dynamic sample. --*/ #ifndef _MSVAD_DYNAMIC_H_ #define _MSVAD_DYNAMICE_H_ // Pin properties. #define MAX_OUTPUT_STREAMS 1 // Number of capture streams. #define MAX_INPUT_STREAMS 0 // Number of render streams. #define MAX_TOTAL_STREAMS MAX_OUTPUT_STREAMS + MAX_INPUT_STREAMS // PCM Info #define MIN_CHANNELS 1 // Min Channels. #define MAX_CHANNELS_PCM 2 // Max Channels. #define MIN_BITS_PER_SAMPLE_PCM 8 // Min Bits Per Sample #define MAX_BITS_PER_SAMPLE_PCM 16 // Max Bits Per Sample #define MIN_SAMPLE_RATE 44100 // Min Sample Rate #define MAX_SAMPLE_RATE 48000 // Max Sample Rate // Wave pins enum { KSPIN_WAVE_RENDER_SINK = 0, KSPIN_WAVE_RENDER_SOURCE }; // Wave Topology nodes. enum { KSNODE_WAVE_DAC = 0 }; // topology pins. enum { KSPIN_TOPO_WAVEOUT_SOURCE = 0, KSPIN_TOPO_LINEOUT_DEST }; // topology nodes. enum { KSNODE_TOPO_WAVEOUT_VOLUME = 0, KSNODE_TOPO_WAVEOUT_MUTE }; #endif
Our Services
-
What our customers say about us?
Read our customer testimonials to find out why our clients keep returning for their projects.
View Testimonials