mirror of
https://github.com/citra-emu/citra.git
synced 2024-12-20 18:50:08 +00:00
24 lines
562 B
C++
24 lines
562 B
C++
|
// Copyright 2019 Citra Emulator Project
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "audio_core/hle/decoder.h"
|
||
|
|
||
|
namespace AudioCore::HLE {
|
||
|
|
||
|
class FDKDecoder final : public DecoderBase {
|
||
|
public:
|
||
|
explicit FDKDecoder(Memory::MemorySystem& memory);
|
||
|
~FDKDecoder() override;
|
||
|
std::optional<BinaryResponse> ProcessRequest(const BinaryRequest& request) override;
|
||
|
bool IsValid() const override;
|
||
|
|
||
|
private:
|
||
|
class Impl;
|
||
|
std::unique_ptr<Impl> impl;
|
||
|
};
|
||
|
|
||
|
} // namespace AudioCore::HLE
|