Merge generic part of Android microphone changes (#5624)

This commit is contained in:
xperia64 2020-12-31 00:21:03 +00:00 committed by GitHub
parent e6ef00b41d
commit 5f1eb7146d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 61 additions and 9 deletions

View file

@ -31,4 +31,11 @@ private:
std::vector<std::string> ListCubebInputDevices();
class CubebFactory final : public Frontend::Mic::RealMicFactory {
public:
~CubebFactory() override;
std::unique_ptr<Frontend::Mic::Interface> Create(std::string mic_device_name) override;
};
} // namespace AudioCore