From ef45a6092f93802022b761ad140d10ddd6bab13b Mon Sep 17 00:00:00 2001 From: David Rowe Date: Thu, 14 Nov 2019 16:07:00 +1300 Subject: [PATCH] Polishing --- libraries/audio-client/src/AudioIOStats.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libraries/audio-client/src/AudioIOStats.h b/libraries/audio-client/src/AudioIOStats.h index d5a8cca27d..26ea301eaa 100644 --- a/libraries/audio-client/src/AudioIOStats.h +++ b/libraries/audio-client/src/AudioIOStats.h @@ -65,10 +65,10 @@ class AudioStreamStatsInterface : public QObject { * Read-only. * @property {number} lossCountWindow - The number of audio packets lost since the previous statistic. * Read-only. - * @property {number} lossRate - The total number of audio packets lost divided by the total number of audio packets + * @property {number} lossRate - The ratio of the total number of audio packets lost to the total number of audio packets * expected. * Read-only. - * @property {number} lossRateWindow - The number of audio packets lost divided by the total number of audio packets + * @property {number} lossRateWindow - The ratio of the number of audio packets lost to the number of audio packets * expected since the previous statistic. * Read-only. * @property {number} overflowCount - The number of times that the audio ring buffer has overflowed. @@ -88,9 +88,10 @@ class AudioStreamStatsInterface : public QObject { */ /**jsdoc - * Triggered when the total number of audio packets lost divided by the total number of audio packets expected changes. + * Triggered when the ratio of the total number of audio packets lost to the total number of audio packets expected changes. * @function AudioStats.AudioStreamStats.lossRateChanged - * @param {number} lossRate - The total number of audio packets lost divided by the total number of audio packets expected. + * @param {number} lossRate - The ratio of the total number of audio packets lost to the total number of audio packets + * expected. * @returns {Signal} */ AUDIO_PROPERTY(float, lossRate) @@ -104,10 +105,10 @@ class AudioStreamStatsInterface : public QObject { AUDIO_PROPERTY(float, lossCount) /**jsdoc - * Triggered when the number of audio packets lost divided by the total number of audio packets expected since the previous + * Triggered when the ratio of the number of audio packets lost to the number of audio packets expected since the previous * statistic changes. * @function AudioStats.AudioStreamStats.lossRateWindowChanged - * @param {number} lossRateWindow - The number of audio packets lost divided by the total number of audio packets expected + * @param {number} lossRateWindow - The ratio of the number of audio packets lost to the number of audio packets expected * since the previous statistic. * @returns {Signal} */