mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-25 15:58:16 +00:00
add estimated bandwidth statistics
This commit is contained in:
parent
7219a87bee
commit
66b50d6676
3 changed files with 9 additions and 0 deletions
|
|
@ -243,6 +243,10 @@
|
|||
<source>callStatsDownloadBandwidth</source>
|
||||
<translation>Download bandwidth</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>callStatsEstimatedDownloadBandwidth</source>
|
||||
<translation>Estimated download bandwidth</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>callStatsIceState</source>
|
||||
<translation>ICE state</translation>
|
||||
|
|
|
|||
|
|
@ -243,6 +243,10 @@
|
|||
<source>callStatsDownloadBandwidth</source>
|
||||
<translation>Bande passante de réception</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>callStatsEstimatedDownloadBandwidth</source>
|
||||
<translation>Bande passante de réception estimée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>callStatsIceState</source>
|
||||
<translation>État ICE</translation>
|
||||
|
|
|
|||
|
|
@ -653,6 +653,7 @@ void CallModel::updateStats (const shared_ptr<const linphone::CallStats> &callSt
|
|||
statsList << ::createStat(tr("callStatsJitterBuffer"), QStringLiteral("%1 ms").arg(callStats->getJitterBufferSizeMs()));
|
||||
break;
|
||||
case linphone::StreamTypeVideo: {
|
||||
statsList << ::createStat(tr("callStatsEstimatedDownloadBandwidth"), QStringLiteral("%1 kbits/s").arg(int(callStats->getEstimatedDownloadBandwidth())));
|
||||
const QString sentVideoDefinitionName = ::Utils::coreStringToAppString(params->getSentVideoDefinition()->getName());
|
||||
const QString sentVideoDefinition = QStringLiteral("%1x%2")
|
||||
.arg(params->getSentVideoDefinition()->getWidth())
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue