From 1ede2f5b5a43e2eac82d0b0e4976f873aa52e1c8 Mon Sep 17 00:00:00 2001 From: SachinVin Date: Sun, 28 May 2023 23:15:05 +0530 Subject: [PATCH] audio_core\hle\decoder.h: Minor correction in docs --- src/audio_core/hle/decoder.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/audio_core/hle/decoder.h b/src/audio_core/hle/decoder.h index c34e1ab28..69bdaba89 100644 --- a/src/audio_core/hle/decoder.h +++ b/src/audio_core/hle/decoder.h @@ -72,13 +72,12 @@ struct DecodeAACResponse { // The DSP replies with the same contents as the response too. struct EncodeAACInitRequest { - u32_le unknown1 = - 0; // 0:raw 1:ADTS? less than 2 according to the 3DS Sound app. observed 1 here + u32_le unknown1 = 0; // Num channels? 1 or 2. observed 1 here enum_le sample_rate = DecoderSampleRate::Rate16000; // the rate the 3DS Sound app uses - u32_le unknown3 = - 0; // Num channels? less than 3 according to the 3DS Sound app. observed 2 here - u32_le unknown4 = 0; // less than 2 according to the 3DS Sound app. observed 0 here + u32_le unknown3 = 0; // less than 3 according to the 3DS Sound app. observed 2 here + u32_le unknown4 = + 0; // 0:raw 1:ADTS? less than 2 according to the 3DS Sound app. observed 0 here u32_le unknown5 = 0; // unused? u32_le unknown6 = 0; // unused? };