mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
04a9bc46f4
zealously updates and adds qTox copyright information. Fixes #5713
334 lines
9.3 KiB
C++
334 lines
9.3 KiB
C++
/*
|
|
Copyright © 2019 by The qTox Project Contributors
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "src/core/toxcall.h"
|
|
#include "src/audio/audio.h"
|
|
#include "src/core/coreav.h"
|
|
#include "src/persistence/settings.h"
|
|
#include "src/video/camerasource.h"
|
|
#include "src/video/corevideosource.h"
|
|
#include <QTimer>
|
|
#include <QtConcurrent/QtConcurrent>
|
|
|
|
/**
|
|
* @var uint32_t ToxCall::callId
|
|
* @brief Could be a friendNum or groupNum, must uniquely identify the call. Do not modify!
|
|
*
|
|
* @var bool ToxCall::inactive
|
|
* @brief True while we're not participating. (stopped group call, ringing but hasn't started yet,
|
|
* ...)
|
|
*
|
|
* @var bool ToxFriendCall::videoEnabled
|
|
* @brief True if our user asked for a video call, sending and recieving.
|
|
*
|
|
* @var bool ToxFriendCall::nullVideoBitrate
|
|
* @brief True if our video bitrate is zero, i.e. if the device is closed.
|
|
*
|
|
* @var TOXAV_FRIEND_CALL_STATE ToxFriendCall::state
|
|
* @brief State of the peer (not ours!)
|
|
*
|
|
* @var QMap ToxGroupCall::peers
|
|
* @brief Keeps sources for users in group calls.
|
|
*/
|
|
|
|
ToxCall::ToxCall(bool VideoEnabled, CoreAV& av, IAudioControl& audio)
|
|
: av{&av}
|
|
, audio(audio)
|
|
, videoEnabled{VideoEnabled}
|
|
, audioSource(audio.makeSource())
|
|
{}
|
|
|
|
ToxCall::~ToxCall()
|
|
{
|
|
QObject::disconnect(audioInConn);
|
|
QObject::disconnect(audioSrcInvalid);
|
|
|
|
if (videoEnabled) {
|
|
QObject::disconnect(videoInConn);
|
|
CameraSource::getInstance().unsubscribe();
|
|
}
|
|
}
|
|
|
|
bool ToxCall::isActive() const
|
|
{
|
|
return active;
|
|
}
|
|
|
|
void ToxCall::setActive(bool value)
|
|
{
|
|
active = value;
|
|
}
|
|
|
|
bool ToxCall::getMuteVol() const
|
|
{
|
|
return muteVol;
|
|
}
|
|
|
|
void ToxCall::setMuteVol(bool value)
|
|
{
|
|
muteVol = value;
|
|
}
|
|
|
|
bool ToxCall::getMuteMic() const
|
|
{
|
|
return muteMic;
|
|
}
|
|
|
|
void ToxCall::setMuteMic(bool value)
|
|
{
|
|
muteMic = value;
|
|
}
|
|
|
|
bool ToxCall::getVideoEnabled() const
|
|
{
|
|
return videoEnabled;
|
|
}
|
|
|
|
void ToxCall::setVideoEnabled(bool value)
|
|
{
|
|
videoEnabled = value;
|
|
}
|
|
|
|
bool ToxCall::getNullVideoBitrate() const
|
|
{
|
|
return nullVideoBitrate;
|
|
}
|
|
|
|
void ToxCall::setNullVideoBitrate(bool value)
|
|
{
|
|
nullVideoBitrate = value;
|
|
}
|
|
|
|
CoreVideoSource* ToxCall::getVideoSource() const
|
|
{
|
|
return videoSource;
|
|
}
|
|
|
|
ToxFriendCall::ToxFriendCall(uint32_t FriendNum, bool VideoEnabled, CoreAV& av, IAudioControl& audio)
|
|
: ToxCall(VideoEnabled, av, audio)
|
|
, sink(audio.makeSink())
|
|
, friendId{FriendNum}
|
|
{
|
|
// TODO(sudden6): move this to audio source
|
|
audioInConn =
|
|
QObject::connect(audioSource.get(), &IAudioSource::frameAvailable,
|
|
[this](const int16_t* pcm, size_t samples, uint8_t chans, uint32_t rate) {
|
|
this->av->sendCallAudio(this->friendId, pcm, samples, chans, rate);
|
|
});
|
|
|
|
audioSrcInvalid = QObject::connect(audioSource.get(), &IAudioSource::invalidated,
|
|
[this]() { this->onAudioSourceInvalidated(); });
|
|
|
|
if (!audioInConn) {
|
|
qDebug() << "Audio input connection not working";
|
|
}
|
|
|
|
audioSinkInvalid = QObject::connect(sink.get(), &IAudioSink::invalidated,
|
|
[this]() { this->onAudioSinkInvalidated(); });
|
|
|
|
|
|
// register video
|
|
if (videoEnabled) {
|
|
videoSource = new CoreVideoSource();
|
|
CameraSource& source = CameraSource::getInstance();
|
|
|
|
if (source.isNone()) {
|
|
source.setupDefault();
|
|
}
|
|
source.subscribe();
|
|
videoInConn = QObject::connect(&source, &VideoSource::frameAvailable,
|
|
[&av, FriendNum](std::shared_ptr<VideoFrame> frame) {
|
|
av.sendCallVideo(FriendNum, frame);
|
|
});
|
|
if (!videoInConn) {
|
|
qDebug() << "Video connection not working";
|
|
}
|
|
}
|
|
}
|
|
|
|
ToxFriendCall::~ToxFriendCall()
|
|
{
|
|
QObject::disconnect(audioSinkInvalid);
|
|
}
|
|
|
|
void ToxFriendCall::onAudioSourceInvalidated()
|
|
{
|
|
auto newSrc = audio.makeSource();
|
|
audioInConn =
|
|
QObject::connect(newSrc.get(), &IAudioSource::frameAvailable,
|
|
[this](const int16_t* pcm, size_t samples, uint8_t chans, uint32_t rate) {
|
|
this->av->sendCallAudio(this->friendId, pcm, samples, chans, rate);
|
|
});
|
|
audioSource = std::move(newSrc);
|
|
|
|
audioSrcInvalid = QObject::connect(audioSource.get(), &IAudioSource::invalidated,
|
|
[this]() { this->onAudioSourceInvalidated(); });
|
|
}
|
|
|
|
void ToxFriendCall::onAudioSinkInvalidated()
|
|
{
|
|
auto newSink = audio.makeSink();
|
|
|
|
audioSinkInvalid = QObject::connect(newSink.get(), &IAudioSink::invalidated,
|
|
[this]() { this->onAudioSinkInvalidated(); });
|
|
sink = std::move(newSink);
|
|
}
|
|
|
|
void ToxFriendCall::startTimeout(uint32_t callId)
|
|
{
|
|
if (!timeoutTimer) {
|
|
timeoutTimer = std::unique_ptr<QTimer>{new QTimer{}};
|
|
// We might move, so we need copies of members. CoreAV won't move while we're alive
|
|
CoreAV* avCopy = av;
|
|
QObject::connect(timeoutTimer.get(), &QTimer::timeout,
|
|
[avCopy, callId]() { avCopy->timeoutCall(callId); });
|
|
}
|
|
|
|
if (!timeoutTimer->isActive())
|
|
timeoutTimer->start(CALL_TIMEOUT);
|
|
}
|
|
|
|
void ToxFriendCall::stopTimeout()
|
|
{
|
|
if (!timeoutTimer)
|
|
return;
|
|
|
|
timeoutTimer->stop();
|
|
timeoutTimer.reset();
|
|
}
|
|
|
|
TOXAV_FRIEND_CALL_STATE ToxFriendCall::getState() const
|
|
{
|
|
return state;
|
|
}
|
|
|
|
void ToxFriendCall::setState(const TOXAV_FRIEND_CALL_STATE& value)
|
|
{
|
|
state = value;
|
|
}
|
|
|
|
void ToxFriendCall::playAudioBuffer(const int16_t* data, int samples, unsigned channels,
|
|
int sampleRate) const
|
|
{
|
|
if (sink) {
|
|
sink->playAudioBuffer(data, samples, channels, sampleRate);
|
|
}
|
|
}
|
|
|
|
ToxGroupCall::ToxGroupCall(int GroupNum, CoreAV& av, IAudioControl& audio)
|
|
: ToxCall(false, av, audio)
|
|
, groupId{GroupNum}
|
|
{
|
|
// register audio
|
|
audioInConn =
|
|
QObject::connect(audioSource.get(), &IAudioSource::frameAvailable,
|
|
[this](const int16_t* pcm, size_t samples, uint8_t chans, uint32_t rate) {
|
|
this->av->sendGroupCallAudio(this->groupId, pcm, samples, chans, rate);
|
|
});
|
|
|
|
if (!audioInConn) {
|
|
qDebug() << "Audio input connection not working";
|
|
}
|
|
|
|
audioSrcInvalid = QObject::connect(audioSource.get(), &IAudioSource::invalidated,
|
|
[this]() { this->onAudioSourceInvalidated(); });
|
|
}
|
|
|
|
ToxGroupCall::~ToxGroupCall()
|
|
{
|
|
// disconnect all Qt connections
|
|
clearPeers();
|
|
}
|
|
|
|
void ToxGroupCall::onAudioSourceInvalidated()
|
|
{
|
|
auto newSrc = audio.makeSource();
|
|
// TODO(sudden6): move this to audio source
|
|
audioInConn =
|
|
QObject::connect(audioSource.get(), &IAudioSource::frameAvailable,
|
|
[this](const int16_t* pcm, size_t samples, uint8_t chans, uint32_t rate) {
|
|
this->av->sendGroupCallAudio(this->groupId, pcm, samples, chans, rate);
|
|
});
|
|
|
|
audioSource = std::move(newSrc);
|
|
|
|
audioSrcInvalid = QObject::connect(audioSource.get(), &IAudioSource::invalidated,
|
|
[this]() { this->onAudioSourceInvalidated(); });
|
|
}
|
|
|
|
|
|
void ToxGroupCall::onAudioSinkInvalidated(ToxPk peerId)
|
|
{
|
|
removePeer(peerId);
|
|
addPeer(peerId);
|
|
}
|
|
|
|
void ToxGroupCall::removePeer(ToxPk peerId)
|
|
{
|
|
const auto& source = peers.find(peerId);
|
|
if (source == peers.cend()) {
|
|
qDebug() << "Peer:" << peerId.toString() << "does not have a source, can't remove";
|
|
return;
|
|
}
|
|
|
|
peers.erase(source);
|
|
QObject::disconnect(sinkInvalid[peerId]);
|
|
sinkInvalid.erase(peerId);
|
|
}
|
|
|
|
void ToxGroupCall::addPeer(ToxPk peerId)
|
|
{
|
|
std::unique_ptr<IAudioSink> newSink = audio.makeSink();
|
|
peers.emplace(peerId, std::move(newSink));
|
|
|
|
QMetaObject::Connection con =
|
|
QObject::connect(newSink.get(), &IAudioSink::invalidated,
|
|
[this, peerId]() { this->onAudioSinkInvalidated(peerId); });
|
|
|
|
sinkInvalid.insert({peerId, con});
|
|
}
|
|
|
|
bool ToxGroupCall::havePeer(ToxPk peerId)
|
|
{
|
|
const auto& source = peers.find(peerId);
|
|
return source != peers.cend();
|
|
}
|
|
|
|
void ToxGroupCall::clearPeers()
|
|
{
|
|
peers.clear();
|
|
for (auto con : sinkInvalid) {
|
|
QObject::disconnect(con.second);
|
|
}
|
|
|
|
sinkInvalid.clear();
|
|
}
|
|
|
|
void ToxGroupCall::playAudioBuffer(const ToxPk& peer, const int16_t* data, int samples,
|
|
unsigned channels, int sampleRate)
|
|
{
|
|
if (!havePeer(peer)) {
|
|
addPeer(peer);
|
|
}
|
|
const auto& source = peers.find(peer);
|
|
if (source->second) {
|
|
source->second->playAudioBuffer(data, samples, channels, sampleRate);
|
|
}
|
|
}
|