diff options
| author | bunnei <bunneidev@gmail.com> | 2022-09-10 11:01:11 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-10 11:01:11 -0700 |
| commit | cd4b9bffb2d42b1f8d4386b251a35344891df55a (patch) | |
| tree | 53454fa29c30e9fa7f1f2c31f9586839d799f277 /src/audio_core/device/audio_buffer.h | |
| parent | 16080b6e4e28b49e0e320879ebbab34199fb81c2 (diff) | |
| parent | 2129d040a509754839b82b1ff6d387cb4f84f168 (diff) | |
Merge pull request #8842 from Kelebek1/AudOut
[audio_core] Rework audio output
Diffstat (limited to 'src/audio_core/device/audio_buffer.h')
| -rw-r--r-- | src/audio_core/device/audio_buffer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/audio_core/device/audio_buffer.h b/src/audio_core/device/audio_buffer.h index cae7fa970..7128ef72a 100644 --- a/src/audio_core/device/audio_buffer.h +++ b/src/audio_core/device/audio_buffer.h @@ -8,6 +8,10 @@ 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. |
