| 76 | static bool WriteDataToFile(const std::string& path, float** data, int numSamples, int channels = 1); |
| 77 | static bool WriteDataToFile(const std::string& path, ChannelBuffer* data, int numSamples); |
| 78 | bool IsPlaying() const { return mOffset < mNumSamples; } |
| 79 | void LockDataMutex(bool lock) { lock ? mDataMutex.lock() : mDataMutex.unlock(); } |
| 80 | void Create(int length); |
| 81 | void Create(ChannelBuffer* data); |
no outgoing calls
no test coverage detected