mirror of
https://github.com/Lime3DS/Lime3DS
synced 2025-01-09 13:43:27 +00:00
23 lines
576 B
C++
23 lines
576 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 MediaNDKDecoder final : public DecoderBase {
|
||
|
public:
|
||
|
explicit MediaNDKDecoder(Memory::MemorySystem& memory);
|
||
|
~MediaNDKDecoder() override;
|
||
|
std::optional<BinaryResponse> ProcessRequest(const BinaryRequest& request) override;
|
||
|
bool IsValid() const override;
|
||
|
|
||
|
private:
|
||
|
class Impl;
|
||
|
std::unique_ptr<Impl> impl;
|
||
|
};
|
||
|
|
||
|
} // namespace AudioCore::HLE
|