mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-25 15:10:14 +00:00
24 lines
562 B
C++
24 lines
562 B
C++
// Copyright 2018 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 WMFDecoder final : public DecoderBase {
|
|
public:
|
|
explicit WMFDecoder(Memory::MemorySystem& memory);
|
|
~WMFDecoder() override;
|
|
std::optional<BinaryResponse> ProcessRequest(const BinaryRequest& request) override;
|
|
bool IsValid() const override;
|
|
|
|
private:
|
|
class Impl;
|
|
std::unique_ptr<Impl> impl;
|
|
};
|
|
|
|
} // namespace AudioCore::HLE
|