dolphin/Source/Core/AudioCommon/SurroundDecoder.h
Pierre Bourdon e149ad4f0a
treewide: convert GPLv2+ license info to SPDX tags
SPDX standardizes how source code conveys its copyright and licensing
information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX
tags are adopted in many large projects, including things like the Linux
kernel.
2021-07-05 04:35:56 +02:00

35 lines
832 B
C++

// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <array>
#include <memory>
#include "Common/CommonTypes.h"
#include "Common/FixedSizeQueue.h"
class DPL2FSDecoder;
namespace AudioCommon
{
class SurroundDecoder
{
public:
explicit SurroundDecoder(u32 sample_rate, u32 frame_block_size);
~SurroundDecoder();
size_t QueryFramesNeededForSurroundOutput(const size_t output_frames) const;
void PutFrames(const short* in, const size_t num_frames_in);
void ReceiveFrames(float* out, const size_t num_frames_out);
void Clear();
private:
u32 m_sample_rate;
u32 m_frame_block_size;
std::unique_ptr<DPL2FSDecoder> m_fsdecoder;
std::array<float, 32768> m_float_conversion_buffer;
FixedSizeQueue<float, 32768> m_decoded_fifo;
};
} // namespace AudioCommon