display优先级调为最低,避免滚动字幕消耗过多CPU

This commit is contained in:
Terrence
2025-03-04 07:33:49 +08:00
parent 5997ff2ac4
commit 1a808962e2
5 changed files with 8 additions and 6 deletions

View File

@@ -53,7 +53,7 @@ void AudioProcessor::Initialize(int channels, bool reference) {
auto this_ = (AudioProcessor*)arg;
this_->AudioProcessorTask();
vTaskDelete(NULL);
}, "audio_communication", 4096 * 2, this, 1, NULL);
}, "audio_communication", 4096 * 2, this, 2, NULL);
}
AudioProcessor::~AudioProcessor() {