mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-04 08:55:43 +08:00
[doxygen] Fix broken groupings
This commit is contained in:
@@ -36,7 +36,8 @@ namespace BlackCore
|
||||
//! Success
|
||||
void success(const QString &callsign);
|
||||
|
||||
//! Delay plus/minus @{
|
||||
//! Delay plus/minus
|
||||
//! @{
|
||||
void increaseDelayMs(const QString &callsign);
|
||||
void decreaseDelayMs(const QString &callsign);
|
||||
//! @}
|
||||
|
||||
@@ -62,7 +62,8 @@ namespace BlackCore
|
||||
//! Clean
|
||||
void clear();
|
||||
|
||||
//! Add samples @{
|
||||
//! Add samples
|
||||
//! @{
|
||||
void addOpusSamples(const IAudioDto &audioDto, float distanceRatio);
|
||||
void addSilentSamples(const IAudioDto &audioDto);
|
||||
//! @}
|
||||
|
||||
@@ -96,7 +96,8 @@ namespace BlackCore
|
||||
this->stop();
|
||||
}
|
||||
|
||||
//! Number of encoded bytes @{
|
||||
//! Number of encoded bytes
|
||||
//! @{
|
||||
int opusBytesEncoded() const { return m_opusBytesEncoded; }
|
||||
void setOpusBytesEncoded(int opusBytesEncoded) { m_opusBytesEncoded = opusBytesEncoded; }
|
||||
//! @}
|
||||
@@ -113,7 +114,8 @@ namespace BlackCore
|
||||
// bool setVolume(double volume);
|
||||
|
||||
/* disabled as not needed
|
||||
//! The device's volume 0..1 @{
|
||||
//! The device's volume 0..1
|
||||
//! @{
|
||||
double getDeviceInputVolume() const;
|
||||
bool setDeviceInputVolume(double volume);
|
||||
//! @}
|
||||
|
||||
@@ -90,7 +90,8 @@ namespace BlackCore
|
||||
const BlackMisc::Audio::CAudioDeviceInfo &device() const { return m_device; }
|
||||
|
||||
/* disabled as not used
|
||||
//! The device's volume 0..1 @{
|
||||
//! The device's volume 0..1
|
||||
//! @{
|
||||
double getDeviceOutputVolume() const;
|
||||
bool setDeviceOutputVolume(double volume);
|
||||
//! @}
|
||||
|
||||
@@ -60,7 +60,8 @@ namespace BlackCore
|
||||
//! Volume
|
||||
double volume() const { return 1.0; }
|
||||
|
||||
//! Mute @{
|
||||
//! Mute
|
||||
//! @{
|
||||
bool getMute() const { return m_mute; }
|
||||
void setMute(bool value);
|
||||
//! @}
|
||||
@@ -68,7 +69,8 @@ namespace BlackCore
|
||||
//! \copydoc BlackSound::SampleProvider::ISampleProvider::readSamples
|
||||
virtual int readSamples(QVector<float> &samples, qint64 count) override;
|
||||
|
||||
//! Add samples @{
|
||||
//! Add samples
|
||||
//! @{
|
||||
void addOpusSamples(const IAudioDto &audioDto, uint frequency, float distanceRatio);
|
||||
void addSilentSamples(const IAudioDto &audioDto, uint frequency, float distanceRatio);
|
||||
//! @}
|
||||
|
||||
Reference in New Issue
Block a user