mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-10 12:50:04 +00:00
audio_core: Only perform audio stretching if below full speed. (#7201)
This commit is contained in:
parent
c0ecdb689d
commit
670e9936a4
13 changed files with 83 additions and 52 deletions
|
@ -14,6 +14,10 @@
|
|||
#include "core/hle/service/dsp/dsp_dsp.h"
|
||||
#include "core/memory.h"
|
||||
|
||||
namespace Core {
|
||||
class Timing;
|
||||
}
|
||||
|
||||
namespace Memory {
|
||||
class MemorySystem;
|
||||
}
|
||||
|
@ -22,7 +26,8 @@ namespace AudioCore {
|
|||
|
||||
class DspHle final : public DspInterface {
|
||||
public:
|
||||
explicit DspHle(Memory::MemorySystem& memory, Core::Timing& timing);
|
||||
explicit DspHle(Core::System& system);
|
||||
explicit DspHle(Core::System& system, Memory::MemorySystem& memory, Core::Timing& timing);
|
||||
~DspHle();
|
||||
|
||||
u16 RecvData(u32 register_number) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue