summaryrefslogtreecommitdiffstats
path: root/src/audio_core/adsp/apps/opus/shared_memory.h
blob: c696731ed8d2144436e0abb93ee01b3ba2b73511 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "common/common_funcs.h"
#include "common/common_types.h"

namespace AudioCore::ADSP::OpusDecoder {

struct SharedMemory {
    std::array<u8, 0x100> channel_mapping{};
    std::array<u64, 16> host_send_data{};
    std::array<u64, 16> dsp_return_data{};
};

} // namespace AudioCore::ADSP::OpusDecoder