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();