Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
66b50d66
Commit
66b50d66
authored
Nov 01, 2017
by
Simon Morlat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add estimated bandwidth statistics
parent
7219a87b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
en.ts
assets/languages/en.ts
+4
-0
fr.ts
assets/languages/fr.ts
+4
-0
CallModel.cpp
src/components/call/CallModel.cpp
+1
-0
No files found.
assets/languages/en.ts
View file @
66b50d66
...
...
@@ -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
>
...
...
assets/languages/fr.ts
View file @
66b50d66
...
...
@@ -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
>
...
...
src/components/call/CallModel.cpp
View file @
66b50d66
...
...
@@ -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
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment