Пример #1
0
 public SfFormat(
     SfFormatMajor major, SfFormatSubtype subtype, SfFormatEndian endian, int channels, int sampleRate)
 {
     Major      = major;
     Subtype    = subtype;
     Endian     = endian;
     Channels   = channels;
     SampleRate = sampleRate;
 }
Пример #2
0
 public static SfFormatInfo?GetFormatInfo(SfFormatSubtype subtype)
 {
     return(GetFormatInfo(SfCommand.GetFormatInfo, (int)subtype));
 }