audio_core: Misc. improvements to stream/buffer/audio_out.

This commit is contained in:
bunnei 2018-07-28 13:35:22 -04:00
parent eaf66b4c9f
commit 0e8a2c7222
5 changed files with 32 additions and 20 deletions

View file

@ -4,6 +4,7 @@
#pragma once
#include <memory>
#include <vector>
#include "common/common_types.h"
@ -34,4 +35,6 @@ private:
std::vector<u8> data;
};
using BufferPtr = std::shared_ptr<Buffer>;
} // namespace AudioCore