コード例 #1
0
 /// <summary>
 /// Applies the filter to the given sequence of samples.
 /// </summary>
 /// <remarks>The amount of outputted samples is by value of 'filter
 /// length' smaller than the amount of input samples.</remarks>
 public int Evaluate(ArrayPtr <TSampleType> dst, ArrayPtr <TSampleType> src, int numSamples, int numChannels)
 {
     return(_firFilter.Evaluate(dst, src, numSamples, numChannels));
 }