Pascal API for VAD (#1249)

This commit is contained in:
Fangjun Kuang
2024-08-13 16:16:51 +08:00
committed by GitHub
parent a7dc6c2c16
commit 619279b162
24 changed files with 1199 additions and 14 deletions

View File

@@ -95,6 +95,8 @@ void CircularBuffer::Push(const float *p, int32_t n) {
"capacity to: %d",
n, size, n + size, capacity, new_capacity);
Resize(new_capacity);
capacity = new_capacity;
}
int32_t start = tail_ % capacity;