From a8841063b52c6352a31664f0170e04559f84efc7 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Tue, 7 Apr 2026 22:55:02 +0800 Subject: [PATCH] adjust q3tts chunking --- otherarch/qwen3tts/audio_tokenizer_decoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otherarch/qwen3tts/audio_tokenizer_decoder.cpp b/otherarch/qwen3tts/audio_tokenizer_decoder.cpp index c06925b6e..07d68309f 100644 --- a/otherarch/qwen3tts/audio_tokenizer_decoder.cpp +++ b/otherarch/qwen3tts/audio_tokenizer_decoder.cpp @@ -803,7 +803,7 @@ bool AudioTokenizerDecoder::decode(const int32_t * codes, int32_t n_frames, return true; } - const int32_t max_frames = 32; + const int32_t max_frames = 1024; //this does not actually speed up currently. we just do it to bound the graph size. but it degrades quality! if (max_frames > 0 && n_frames > max_frames) { samples.clear();