Skip to content

Commit

Permalink
Only ever send a single chunk of audio
Browse files Browse the repository at this point in the history
  • Loading branch information
palana committed Aug 6, 2024
1 parent f3fc84d commit 5bf2962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/localvocal-offline-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ int wmain(int argc, wchar_t *argv[])

// sleep up to window size in case whisper is processing, so the buffer builds up similar to OBS
auto now = std::chrono::system_clock::now();
if (now > max_wait)
if (false && now > max_wait)
break;

auto wait_start = now + std::chrono::milliseconds(1);
Expand Down

0 comments on commit 5bf2962

Please sign in to comment.