mirror of
https://github.com/kunkundi/crossdesk.git
synced 2025-10-28 20:06:14 +08:00
38 lines
652 B
C++
38 lines
652 B
C++
/*
|
|
* @Author: DI JUNKUN
|
|
* @Date: 2024-08-02
|
|
* Copyright (c) 2024 by DI JUNKUN, All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef _SPEAKER_CAPTURER_MACOSX_H_
|
|
#define _SPEAKER_CAPTURER_MACOSX_H_
|
|
|
|
#include <thread>
|
|
#include <vector>
|
|
|
|
#include "speaker_capturer.h"
|
|
|
|
class SpeakerCapturerMacosx : public SpeakerCapturer {
|
|
public:
|
|
SpeakerCapturerMacosx();
|
|
~SpeakerCapturerMacosx();
|
|
|
|
public:
|
|
virtual int Init(speaker_data_cb cb);
|
|
virtual int Destroy();
|
|
virtual int Start();
|
|
virtual int Stop();
|
|
|
|
int Pause();
|
|
int Resume();
|
|
|
|
private:
|
|
speaker_data_cb cb_ = nullptr;
|
|
|
|
private:
|
|
bool inited_ = false;
|
|
// thread
|
|
std::thread capture_thread_;
|
|
};
|
|
|
|
#endif |