audio_core: Implement Sink and SinkStream interfaces with cubeb.

This commit is contained in:
bunnei 2018-07-28 13:44:50 -04:00
parent 9ef227e09d
commit f437c11caf
10 changed files with 269 additions and 6 deletions

View file

@ -8,6 +8,7 @@
#include <vector>
#include "audio_core/buffer.h"
#include "audio_core/sink.h"
#include "audio_core/stream.h"
#include "common/common_types.h"
@ -36,7 +37,6 @@ public:
private:
SinkPtr sink;
std::vector<StreamPtr> streams;
};
} // namespace AudioCore