summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsua2/call.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip/src/pjsua2/call.cpp')
-rw-r--r--pjsip/src/pjsua2/call.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjsip/src/pjsua2/call.cpp b/pjsip/src/pjsua2/call.cpp
index 1e4e72f3..afc4d3d9 100644
--- a/pjsip/src/pjsua2/call.cpp
+++ b/pjsip/src/pjsua2/call.cpp
@@ -56,8 +56,8 @@ void RtcpStreamStat::fromPj(const pjmedia_rtcp_stream_stat &prm)
this->reorder = prm.loss;
this->dup = prm.dup;
this->lossPeriodUsec.fromPj(prm.loss_period);
- this->lossType.burst = prm.loss_type.burst;
- this->lossType.random = prm.loss_type.random;
+ this->burst = prm.loss_type.burst;
+ this->random = prm.loss_type.random;
this->jitterUsec.fromPj(prm.jitter);
}