AudioCompressionManagerResample Method (IntPtr, Byte, IntPtr) |
Performs resampling audio data from and to 8/16/24/32-bit integer PCM and 32-bit IEEE Float audio formats.
Namespace: Alvas.AudioAssembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax public static byte[] Resample(
IntPtr inFormat,
byte[] data,
IntPtr outFormat
)
Public Shared Function Resample (
inFormat As IntPtr,
data As Byte(),
outFormat As IntPtr
) As Byte()
public:
static array<unsigned char>^ Resample(
IntPtr inFormat,
array<unsigned char>^ data,
IntPtr outFormat
)
Parameters
- inFormat
- Type: SystemIntPtr
input audio format - data
- Type: SystemByte
input audio data - outFormat
- Type: SystemIntPtr
output audio format
Return Value
Type:
Byteoutput audio data
See Also