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