DSP Master VCL
|
Set the property to True, for the component to call Pull method each time a new buffer is requested.
property AutoPull: boolean;
You have to have a TSignal object assigned to the Input property for this to work. Once a new buffer becomes available the component will call Input.Pull. To record to file you would assign:
SignalIn.Input := SignalWrite; SignalWrite.Input := SignalIn;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
|
What do you think about this topic? Send feedback!
|