Components reference
Splits input audio stream into a number of sub-streams.
Frequencies are configured automatically or manually (Get/SetFrequency). Use Get/SetPassThrough to include/exclude a frequency band from the component output stream.
ImplementsIWaveMultiBandSplitter | default |   |
IvcproBaseEvents | default | source |
IvcproProvider |   |   |
IvcproConsumer |   |   |
Methods | |
float GetFrequency(long Index) | Returns frequency of a band specified by the Index parameter |
float SetFrequency(long Index, float Value) | Assigns frequency to a band specified by the Index parameter |
void Flush() | Completes processing of the last available data. Recommended to call before component closing |
VARIANT GetData() | Reads available data from output stream. Usually used when OnDataAvailable event fires |
void SetData(VARIANT* data) | Writes data to input stream |
bool GetPassThrough(long Index) | Returns True if a frequency band is included into the output audio stream |
void SetPassThrough(long Index, bool Value) | Include/exclude a frequency band from the output audio stream |
Properties | |
bool Active | Set to true to activate (open) the component. All other properties should be set to proper values before activation. Set to false to deactivate (close) the component |
bool AutoActivate | When true tells the component it must activate consumer (if any) before activating itself. Same applies for deactivation. When false the component does not change the consumer state |
long DataSizeIn | Returns data written into but not yet processed by the pipe |
long DataSizeOut | Returns data size available to read from the pipe |
BSTR DumpInput | File name to dump the component input data to |
BSTR DumpOutput | File name to dump the component output data to |
bool EnableDataProcessing | When set to False suppresses any new data from being produced by the component itself. For example, WaveIn component will not stream any new data (but will remain Active). In addition, components like Codec and Resampler will not perform any data processing, passing the incoming data down to consumers without any modification |
unaFreqAssignMode FreqAssignMode | Specifies whether automatical (unafam_powerOf2) or manual (unafam_manual) frequency calculation mode is used |
bool IsFormatProvider | When true the component will assign stream format to the consumer (if any). This simplifies the process of distributing stream format among linked components. For example WaveRiff component can assign PCM format to linked WaveOutDevice component, so WAVe file will be played back correctly |
long NumBands | Specifies number of frequency bands |
long OverNum | Specifies how many chunks of data component can store in input or output buffer, if data cannot be processed immediately. Every chunk holds 1/10 sec. of audio. Set this property to 0 to disable the buffer overflow checking (NOTE: be carefully, since this could lead to uncontrolled memory usage grow) |
long PcmBitsPerSample | Specifies number of bits per sample for wave device |
long PcmNumChannels | Specifies number of channels per sample for wave device |
long PcmSamplesPerSec | Specifies number of samples per second for wave device |
bool SyncEvents | Specifies whether events calls synchronized through main thread |
Wave processing components:
WaveIn,
WaveOut,
WaveCodec,
WaveRiff,
WaveMixer,
WaveResampler,
Equalizer
Legacy IP components:
IpServer,
IpClient,
IpBroadcastServer,
IpBroadcastClient,
MediaGate,
ConferenceServer
RTP streaming components:
IPReceiver,
IPTransmitter,
RTPConfClient,
RTPConfServer
Misc. components:
VolumeControl,
DisplayBands