mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
128 lines
4.4 KiB
C++
128 lines
4.4 KiB
C++
/*
|
|
Copyright (C) 2013 by Maxim Biro <nurupo.contributions@gmail.com>
|
|
Copyright © 2014-2015 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/>.
|
|
*/
|
|
|
|
#ifndef COREAV_H
|
|
#define COREAV_H
|
|
|
|
#include "src/core/toxcall.h"
|
|
#include <QObject>
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <tox/toxav.h>
|
|
|
|
class Friend;
|
|
class Group;
|
|
class QTimer;
|
|
class QThread;
|
|
class CoreVideoSource;
|
|
class CameraSource;
|
|
class VideoSource;
|
|
class VideoFrame;
|
|
class CoreAV;
|
|
struct vpx_image;
|
|
|
|
class CoreAV : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CoreAV(Tox* tox);
|
|
~CoreAV();
|
|
|
|
const ToxAV* getToxAv() const;
|
|
|
|
bool anyActiveCalls() const;
|
|
bool isCallStarted(const Friend* f) const;
|
|
bool isCallStarted(const Group* f) const;
|
|
bool isCallActive(const Friend* f) const;
|
|
bool isCallActive(const Group* g) const;
|
|
bool isCallVideoEnabled(const Friend* f) const;
|
|
bool sendCallAudio(uint32_t friendNum, const int16_t* pcm, size_t samples, uint8_t chans,
|
|
uint32_t rate);
|
|
void sendCallVideo(uint32_t friendNum, std::shared_ptr<VideoFrame> frame);
|
|
bool sendGroupCallAudio(int groupNum, const int16_t* pcm, size_t samples, uint8_t chans,
|
|
uint32_t rate);
|
|
|
|
VideoSource* getVideoSourceFromCall(int callNumber);
|
|
void invalidateCallSources();
|
|
void sendNoVideo();
|
|
|
|
void joinGroupCall(int groupNum);
|
|
void leaveGroupCall(int groupNum);
|
|
void muteCallInput(const Group* g, bool mute);
|
|
void muteCallOutput(const Group* g, bool mute);
|
|
bool isGroupCallInputMuted(const Group* g) const;
|
|
bool isGroupCallOutputMuted(const Group* g) const;
|
|
bool isGroupAvEnabled(int groupNum) const;
|
|
|
|
bool isCallInputMuted(const Friend* f) const;
|
|
bool isCallOutputMuted(const Friend* f) const;
|
|
void toggleMuteCallInput(const Friend* f);
|
|
void toggleMuteCallOutput(const Friend* f);
|
|
|
|
static void groupCallCallback(void* tox, int group, int peer, const int16_t* data, unsigned samples,
|
|
uint8_t channels, unsigned sample_rate, void* core);
|
|
static void invalidateGroupCallPeerSource(int group, int peer);
|
|
|
|
public slots:
|
|
bool startCall(uint32_t friendNum, bool video = false);
|
|
bool answerCall(uint32_t friendNum);
|
|
bool cancelCall(uint32_t friendNum);
|
|
void timeoutCall(uint32_t friendNum);
|
|
void start();
|
|
void stop();
|
|
|
|
signals:
|
|
void avInvite(uint32_t friendId, bool video);
|
|
void avStart(uint32_t friendId, bool video);
|
|
void avEnd(uint32_t friendId, bool error = false);
|
|
|
|
private slots:
|
|
static void callCallback(ToxAV* toxAV, uint32_t friendNum, bool audio, bool video, void* self);
|
|
static void stateCallback(ToxAV*, uint32_t friendNum, uint32_t state, void* self);
|
|
static void bitrateCallback(ToxAV* toxAV, uint32_t friendNum, uint32_t arate, uint32_t vrate,
|
|
void* self);
|
|
void killTimerFromThread();
|
|
|
|
private:
|
|
void process();
|
|
static void audioFrameCallback(ToxAV* toxAV, uint32_t friendNum, const int16_t* pcm,
|
|
size_t sampleCount, uint8_t channels, uint32_t samplingRate,
|
|
void* self);
|
|
static void videoFrameCallback(ToxAV* toxAV, uint32_t friendNum, uint16_t w, uint16_t h,
|
|
const uint8_t* y, const uint8_t* u, const uint8_t* v,
|
|
int32_t ystride, int32_t ustride, int32_t vstride, void* self);
|
|
|
|
private:
|
|
static constexpr uint32_t VIDEO_DEFAULT_BITRATE = 6144;
|
|
|
|
private:
|
|
ToxAV* toxav;
|
|
std::unique_ptr<QThread> coreavThread;
|
|
std::unique_ptr<QTimer> iterateTimer;
|
|
static IndexedList<ToxFriendCall> calls;
|
|
static IndexedList<ToxGroupCall> groupCalls;
|
|
std::atomic_flag threadSwitchLock;
|
|
|
|
friend class Audio;
|
|
};
|
|
|
|
#endif // COREAV_H
|