| 70 | } |
| 71 | |
| 72 | bool WasmAudioInput::error(fl::string* msg) { |
| 73 | if (msg && mHasError) { |
| 74 | *msg = mErrorMessage; |
| 75 | } |
| 76 | return mHasError; |
| 77 | } |
| 78 | |
| 79 | audio::Sample WasmAudioInput::read() { |
| 80 | if (!mRunning || isEmpty()) { |
no outgoing calls
no test coverage detected