Rest of the owl

This commit is contained in:
James Rowe
2019-03-04 23:07:05 -07:00
parent 5c9e327ff3
commit c669aa8d55
7 changed files with 237 additions and 75 deletions
+3 -1
View File
@@ -13,7 +13,7 @@ namespace AudioCore {
class CubebInput final : public Frontend::Mic::Interface {
public:
CubebInput();
~CubebInput();
~CubebInput() override;
void StartSampling(Frontend::Mic::Parameters params) override;
@@ -21,6 +21,8 @@ public:
void AdjustSampleRate(u32 sample_rate) override;
Frontend::Mic::Samples Read() override;
private:
struct Impl;
std::unique_ptr<Impl> impl;