Accord.Audio.Filters.ExtractChannel.ExtractChannel C# (CSharp) Метод

ExtractChannel() публичный Метод

Creates a new ExtractChannel filter.
public ExtractChannel ( int channel ) : System
channel int The index of the channel to be extracted.
Результат System
        public ExtractChannel(int channel)
        {
            Channel = channel;

            formatTranslations[SampleFormat.Format32BitIeeeFloat] = SampleFormat.Format32BitIeeeFloat;
            formatTranslations[SampleFormat.Format16Bit] = SampleFormat.Format16Bit;
            formatTranslations[SampleFormat.Format32Bit] = SampleFormat.Format32Bit;
        }