mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-26 10:45:37 +08:00
Doxygen
This commit is contained in:
committed by
Mat Sutcliffe
parent
2c89275ea6
commit
11ee2413b5
@@ -60,16 +60,23 @@ namespace BlackCore
|
||||
QByteArray m_buffer;
|
||||
};
|
||||
|
||||
//! Opus data arguments
|
||||
struct OpusDataAvailableArgs
|
||||
{
|
||||
uint sequenceCounter = 0;
|
||||
QByteArray audio;
|
||||
uint sequenceCounter = 0; //!< sequence counter
|
||||
QByteArray audio; //!< audio data
|
||||
};
|
||||
|
||||
//! Input volume stream arguments
|
||||
struct InputVolumeStreamArgs
|
||||
{
|
||||
//! Peak volume raw
|
||||
double PeakRaw = 0.0;
|
||||
|
||||
//! Peak volume in dB
|
||||
double PeakDB = -1.0 * std::numeric_limits<double>::infinity();
|
||||
|
||||
//! Peak volume in VU
|
||||
double PeakVU = 0.0;
|
||||
};
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace BlackCore
|
||||
//! Update PTT
|
||||
void pttUpdate(bool active, const QVector<TxTransceiverDto> &txTransceivers);
|
||||
|
||||
//! \copydoc ISampleProvider::readSamples
|
||||
//! \copydoc BlackSound::SampleProvider::ISampleProvider::readSamples
|
||||
virtual int readSamples(QVector<float> &samples, qint64 count) override;
|
||||
|
||||
//! Add OPUS samples
|
||||
|
||||
@@ -31,6 +31,7 @@ namespace BlackCore
|
||||
} // ns
|
||||
} // ns
|
||||
|
||||
//! \private
|
||||
MSGPACK_ADD_ENUM(BlackCore::Afv::Crypto::CryptoDtoMode);
|
||||
|
||||
#endif // guard
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#include <QtDebug>
|
||||
|
||||
#ifndef crypto_aead_chacha20poly1305_IETF_ABYTES
|
||||
//! Number of a bytes
|
||||
#define crypto_aead_chacha20poly1305_IETF_ABYTES 16U
|
||||
#endif
|
||||
|
||||
@@ -30,6 +31,7 @@ namespace BlackCore
|
||||
{
|
||||
namespace Crypto
|
||||
{
|
||||
//! Hash of AFV short dto names
|
||||
extern QHash<QByteArray, QByteArray> gShortDtoNames;
|
||||
|
||||
//! Crypto serializer
|
||||
|
||||
Reference in New Issue
Block a user