| 1155 | } |
| 1156 | |
| 1157 | Impl::Result Impl::run(const Sample &sample, Bins *out) { |
| 1158 | auto &audio_sample = sample.pcm(); |
| 1159 | span<const i16> slice(audio_sample); |
| 1160 | return run(slice, out); |
| 1161 | } |
| 1162 | |
| 1163 | Impl::Result Impl::run(span<const i16> sample, Bins *out) { |
| 1164 | if (!mContext) { |
nothing calls this directly
no test coverage detected