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