| 53 | } |
| 54 | |
| 55 | void processBlocks(ClientDeEss& d, float* buf, int frames) |
| 56 | { |
| 57 | int remaining = frames; |
| 58 | float* p = buf; |
| 59 | while (remaining > 0) { |
| 60 | const int n = std::min(kBlockSize, remaining); |
| 61 | d.process(p, n, 2); |
| 62 | p += n * 2; |
| 63 | remaining -= n; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | bool anyNaNorInf(const float* data, int frames) |
| 68 | { |
no test coverage detected