mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
HLE DSP: Add AAC decoder toggle for enabling/disabling AAC decoding (#611)
* HLE DSP: Add AAC decoder toggle * Fix derp
This commit is contained in:
parent
49a94a13c5
commit
89d129211e
1 changed files with 7 additions and 4 deletions
|
@ -632,7 +632,7 @@ namespace Audio {
|
||||||
AAC::Message response;
|
AAC::Message response;
|
||||||
|
|
||||||
switch (request.command) {
|
switch (request.command) {
|
||||||
case AAC::Command::EncodeDecode:
|
case AAC::Command::EncodeDecode: {
|
||||||
// Dummy response to stop games from hanging
|
// Dummy response to stop games from hanging
|
||||||
response.resultCode = AAC::ResultCode::Success;
|
response.resultCode = AAC::ResultCode::Success;
|
||||||
response.decodeResponse.channelCount = 2;
|
response.decodeResponse.channelCount = 2;
|
||||||
|
@ -643,10 +643,13 @@ namespace Audio {
|
||||||
response.command = request.command;
|
response.command = request.command;
|
||||||
response.mode = request.mode;
|
response.mode = request.mode;
|
||||||
|
|
||||||
// We've already got an AAC decoder but it's currently disabled until mixing & output is properly implemented
|
// TODO: Make this a toggle in config.toml. Currently we have it off by default until we finish the DSP mixer.
|
||||||
// TODO: Uncomment this when the time comes
|
constexpr bool enableAAC = false;
|
||||||
// aacDecoder->decode(response, request, [this](u32 paddr) { return getPointerPhys<u8>(paddr); });
|
if (enableAAC) {
|
||||||
|
aacDecoder->decode(response, request, [this](u32 paddr) { return getPointerPhys<u8>(paddr); });
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case AAC::Command::Init:
|
case AAC::Command::Init:
|
||||||
case AAC::Command::Shutdown:
|
case AAC::Command::Shutdown:
|
||||||
|
|
Loading…
Add table
Reference in a new issue