/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #pragma once #include struct AVFrame; namespace Media { namespace Capture { struct Update { int samples = 0; ushort level = 0; }; struct Result { QByteArray bytes; VoiceWaveform waveform; int samples = 0; }; void Start(); void Finish(); class Instance final : public QObject { public: Instance(); ~Instance(); void check(); [[nodiscard]] bool available() const { return _available; } [[nodiscard]] rpl::producer updated() const { return _updates.events(); } [[nodiscard]] rpl::producer startedChanges() const { return _started.changes(); } void start(); void stop(Fn callback = nullptr); private: class Inner; friend class Inner; bool _available = false; rpl::variable _started = false;; rpl::event_stream _updates; QThread _thread; std::unique_ptr _inner; }; [[nodiscard]] Instance *instance(); } // namespace Capture } // namespace Media