From dab73ea7659c6cc54d01099ecc3facbd80a77984 Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 18 Aug 2026 18:06:18 +0000 Subject: [PATCH] fix debian --- src/audio_core/adsp/apps/opus/opus_decoder.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/audio_core/adsp/apps/opus/opus_decoder.cpp b/src/audio_core/adsp/apps/opus/opus_decoder.cpp index 03635ad4d4..0fc0a0619d 100644 --- a/src/audio_core/adsp/apps/opus/opus_decoder.cpp +++ b/src/audio_core/adsp/apps/opus/opus_decoder.cpp @@ -78,10 +78,10 @@ void OpusDecoder::Init(std::stop_token stop_token) { return; } // Main OpusDecoder thread, responsible for processing the incoming Opus packets. - main_thread = std::jthread([this](std::stop_token stop_token) { + main_thread = std::jthread([this](std::stop_token thread_stop_token) { Common::SetCurrentThreadName("DSP_OpusDecoder_Main"); - while (!stop_token.stop_requested()) { - auto msg = Receive(Direction::DSP, stop_token); + while (!thread_stop_token.stop_requested()) { + auto msg = Receive(Direction::DSP, thread_stop_token); switch (msg) { case Shutdown: Send(Direction::Host, Message::ShutdownOK);