public SfFormat( SfFormatMajor major, SfFormatSubtype subtype, SfFormatEndian endian, int channels, int sampleRate) { Major = major; Subtype = subtype; Endian = endian; Channels = channels; SampleRate = sampleRate; }
public static SfFormatInfo?GetFormatInfo(SfFormatMajor major) { return(GetFormatInfo(SfCommand.GetFormatInfo, (int)major)); }