citra/src/audio_core/hle/aac_decoder.h

23 lines
527 B
C++
Raw Normal View History

2018-12-09 22:25:45 +01:00
// 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 AACDecoder final : public DecoderBase {
public:
2018-12-16 15:03:23 +01:00
explicit AACDecoder(Memory::MemorySystem& memory);
2018-12-09 22:25:45 +01:00
~AACDecoder() override;
std::optional<BinaryResponse> ProcessRequest(const BinaryRequest& request) override;
private:
class Impl;
std::unique_ptr<Impl> impl;
};
} // namespace AudioCore::HLE