module Buffer_ext:sig..end
Buffers of variable size. These are particularly useful for temporary buffers.
type t 
val create : int -> int -> tCreate an extensible buffer of given channels and initial size in samples.
val duration : t -> intCurrent duration (in samples) of the buffer.
val prepare : t -> ?channels:int -> int -> Audio.bufferMake sure that the buffer can hold at least a given number of samples.