mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Fixed missing bandwidth information for video/text since rework
This commit is contained in:
parent
101adaeab8
commit
fba1e7ccb1
1 changed files with 2 additions and 2 deletions
|
|
@ -4467,9 +4467,9 @@ static void report_bandwidth_for_stream(LinphoneCall *call, MediaStream *ms, Lin
|
|||
LinphoneCallStats *stats = NULL;
|
||||
if (type == LinphoneStreamTypeAudio) {
|
||||
stats = call->audio_stats;
|
||||
} else if (type == LinphoneStreamTypeAudio) {
|
||||
} else if (type == LinphoneStreamTypeVideo) {
|
||||
stats = call->video_stats;
|
||||
} else if (type == LinphoneStreamTypeAudio) {
|
||||
} else if (type == LinphoneStreamTypeText) {
|
||||
stats = call->text_stats;
|
||||
} else {
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue