Method | Description | |
---|---|---|
CircularBuffer ( ISoundObj input, uint bufsize ) : System |
Create a circular buffer with a given size
|
|
CircularBuffer ( uint bufsize ) : System |
Create a circular buffer with a given size
|
|
Mean ( ) : ISample |
"Average" - arithmetical mean of all samples in buffer
|
|
MeanDb ( ) : ISample |
"Average" - arithmetical mean of dB value of all samples in buffer
|
|
Peak ( ) : ISample |
Peak value of all samples, ever
|
|
StdDev ( ) : ISample |
Standard deviation of all samples in buffer
|
|
StdDevDb ( ) : ISample |
Standard deviation in dB of all samples in buffer
|
|
this ( int arg ) : ISample |
Access the nth sample. Sample zero is always the "current" sample (the one most recently returned from the iterator). Sample[-1] is the previous sample. Sample [1] is the oldest sample we have in buffer.
|
public CircularBuffer ( ISoundObj input, uint bufsize ) : System | ||
input | ISoundObj | Input stream |
bufsize | uint | Size of the circular buffer |
return | System |
public CircularBuffer ( uint bufsize ) : System | ||
bufsize | uint | Size of the circular buffer |
return | System |