[feat] audio capture supported on MacOSX

This commit is contained in:
dijunkun
2025-07-02 19:25:21 +08:00
parent e52ec6cde2
commit c13e2613b6
8 changed files with 225 additions and 26 deletions

View File

@@ -26,13 +26,12 @@ class SpeakerCapturerMacosx : public SpeakerCapturer {
int Pause();
int Resume();
private:
public:
speaker_data_cb cb_ = nullptr;
private:
bool inited_ = false;
// thread
std::thread capture_thread_;
class Impl;
Impl* impl_ = nullptr;
};
#endif