mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 00:07:47 +00:00
Rework ADSP into a wrapper for apps
This commit is contained in:
parent
f6879dce96
commit
de326e42bb
173 changed files with 1059 additions and 1265 deletions
|
@ -5,8 +5,8 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
#include "audio_core/adsp/adsp.h"
|
||||
#include "audio_core/audio_manager.h"
|
||||
#include "audio_core/renderer/adsp/adsp.h"
|
||||
#include "audio_core/sink/sink.h"
|
||||
|
||||
namespace Core {
|
||||
|
@ -55,7 +55,7 @@ public:
|
|||
*
|
||||
* @return Ref to the ADSP.
|
||||
*/
|
||||
AudioRenderer::ADSP::ADSP& GetADSP();
|
||||
ADSP::ADSP& ADSP();
|
||||
|
||||
private:
|
||||
/**
|
||||
|
@ -70,7 +70,7 @@ private:
|
|||
/// Sink used for audio input
|
||||
std::unique_ptr<Sink::Sink> input_sink;
|
||||
/// The ADSP in the sysmodule
|
||||
std::unique_ptr<AudioRenderer::ADSP::ADSP> adsp;
|
||||
std::unique_ptr<ADSP::ADSP> adsp;
|
||||
};
|
||||
|
||||
} // namespace AudioCore
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue