| 68 | std::vector<std::vector<float>> stereo; |
| 69 | |
| 70 | WavFileWrapper(std::vector<float> *mono, |
| 71 | std::vector<std::vector<float>> *stereo) |
| 72 | : mono(whisper::as_pyarray(std::move(*mono))), stereo(*stereo){}; |
| 73 | |
| 74 | static WavFileWrapper load_wav_file(const char *filename); |
| 75 | }; |
nothing calls this directly
no test coverage detected