/
githubmirror
/
yuzu
Обзор
Документация
Войти
/
githubmirror
/
yuzu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/audio_core/device/audio_buffer.h
25 строк
626 B
Liam
general: fix spelling mistakes
12 мар 2023, 18:33
12 мар 2023, 18:33
600f325
Код
Авторство
О чём код?
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include "common/common_types.h" namespace AudioCore { struct AudioBuffer { /// Timestamp this buffer started playing. u64 start_timestamp; /// Timestamp this buffer should finish playing. u64 end_timestamp; /// Timestamp this buffer completed playing. s64 played_timestamp; /// Game memory address for these samples. VAddr samples; /// Unique identifier for this buffer. u64 tag; /// Size of the samples buffer. u64 size; }; } // namespace AudioCore