diff options
| author | 2018-07-30 20:29:17 -0700 | |
|---|---|---|
| committer | 2018-07-30 20:29:17 -0700 | |
| commit | bf9c62bc76a2296c1a81cfc1b83aaf4028578901 (patch) | |
| tree | dad8906c597af3f579d4f72f4c9f493503c40665 /src/audio_core/buffer.h | |
| parent | Port #3758 from Citra (#852): Add missing std::string import in text_formatter (diff) | |
| parent | audio_core: Implement Sink and SinkStream interfaces with cubeb. (diff) | |
| download | yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.tar.gz yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.tar.xz yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.zip | |
Merge pull request #855 from bunnei/cubeb
Audio output backend based on cubeb
Diffstat (limited to 'src/audio_core/buffer.h')
| -rw-r--r-- | src/audio_core/buffer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/audio_core/buffer.h b/src/audio_core/buffer.h index 874ec787e..4bf5fd58a 100644 --- a/src/audio_core/buffer.h +++ b/src/audio_core/buffer.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <memory> | ||
| 7 | #include <vector> | 8 | #include <vector> |
| 8 | 9 | ||
| 9 | #include "common/common_types.h" | 10 | #include "common/common_types.h" |
| @@ -34,4 +35,6 @@ private: | |||
| 34 | std::vector<u8> data; | 35 | std::vector<u8> data; |
| 35 | }; | 36 | }; |
| 36 | 37 | ||
| 38 | using BufferPtr = std::shared_ptr<Buffer>; | ||
| 39 | |||
| 37 | } // namespace AudioCore | 40 | } // namespace AudioCore |