From 9d9495f3b3dbfb2a50f797bfc6cd9e4ff9cf3051 Mon Sep 17 00:00:00 2001 From: lizzie Date: Sun, 13 Sep 2026 06:27:57 +0000 Subject: [PATCH] 2026-09-13 06:27:57 Signed-off-by: lizzie --- src/audio_core/adsp/apps/opus/opus_decoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio_core/adsp/apps/opus/opus_decoder.cpp b/src/audio_core/adsp/apps/opus/opus_decoder.cpp index 59ecda1da6..3bf215351e 100644 --- a/src/audio_core/adsp/apps/opus/opus_decoder.cpp +++ b/src/audio_core/adsp/apps/opus/opus_decoder.cpp @@ -62,7 +62,7 @@ public: // However, native opus can also work with swrescale: // it uses planarfloat, we can resample to s16 AVCodec const* codec = avcodec_find_decoder_by_name("libopus"); - bool is_libopus = false;//codec != nullptr; + bool is_libopus = codec != nullptr; if (!codec) { LOG_WARNING(Audio_DSP, "using ffmpeg native opus decoder"); codec = avcodec_find_decoder(AV_CODEC_ID_OPUS);