Click or drag to resize
AudioCompressionManagerGetFormatDetails Method (IntPtr)
Gets the format details for specified format.

Namespace: Alvas.Audio
Assembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax
public static FormatDetails GetFormatDetails(
	IntPtr format
)

Parameters

format
Type: SystemIntPtr
The format.

Return Value

Type: FormatDetails

[Missing <returns> documentation for "M:Alvas.Audio.AudioCompressionManager.GetFormatDetails(System.IntPtr)"]

Examples
This example shows simple using of GetFormatDetails method.
IntPtr format = AudioCompressionManager.GetPcmFormat(2, 16, 24000);
FormatDetails fd = AudioCompressionManager.GetFormatDetails(format);
Console.WriteLine(fd.ToString());
See Also