public class WMResamplerProps : ComObject
Sets properties on the audio resampler DSP.
WMResamplerProps(IntPtr ptr)
Initializes a new instance of the WMResamplerProps class.
public void WMResamplerProps(IntPtr ptr)
Parameters
ptr
IntPtrThe native pointer of the COM object.
SetHalfFilterLength(Int32 quality)
Specifies the quality of the output.
SetHalfFilterLengthNative(Int32 quality)
Specifies the quality of the output.
public Int32 SetHalfFilterLengthNative(Int32 quality)
Parameters
quality
Int32Specifies the quality of the output. The valid range is 1 to 60, inclusive.
Returns
HRESULT
SetUserChannelMtx(Single[] channelConversitionMatrix)
Specifies the channel matrix.
public void SetUserChannelMtx(Single[] channelConversitionMatrix)
Parameters
channelConversitionMatrix
Single[]An array of floating-point values that represents a channel conversion matrix.
Remarks
Use the ChannelMatrix class to build the channel-conversation-matrix and its GetOneDimensionalMatrix method to convert the channel-conversation-matrix into a compatible array which can be passed as value for the channelConversitionMatrix parameter. For more information, .
SetUserChannelMtxNative(Single[] channelConversitionMatrix)
Specifies the channel matrix.
public Int32 SetUserChannelMtxNative(Single[] channelConversitionMatrix)
Parameters
channelConversitionMatrix
Single[]An array of floating-point values that represents a channel conversion matrix.
Returns
HRESULT
Remarks
Use the ChannelMatrix class to build the channel-conversation-matrix and its GetOneDimensionalMatrix method to convert the channel-conversation-matrix into a compatible array which can be passed as value for the channelConversitionMatrix parameter. For more information, .