From 656b7da5e43c2b2110657f9354339f7574beafec Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Thu, 5 Sep 2024 01:55:44 +0300 Subject: [PATCH] Properly pad AAC request struct --- include/audio/aac.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/audio/aac.hpp b/include/audio/aac.hpp index e59a006c..389ecc04 100644 --- a/include/audio/aac.hpp +++ b/include/audio/aac.hpp @@ -59,6 +59,8 @@ namespace Audio::AAC { u32_le size; // Size of input AAC stream u32_le destAddrLeft; // Output address for left channel samples u32_le destAddrRight; // Output address for right channel samples + u32_le unknown1; + u32_le unknown2; }; struct Message {