summaryrefslogtreecommitdiff
path: root/pjsip/src/pjsua2/call.cpp
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2014-09-09 04:10:59 +0000
committerLiong Sauw Ming <ming@teluu.com>2014-09-09 04:10:59 +0000
commit6e4021b4bb8ff06b0821519da73e59163d49c7dd (patch)
tree2b50d890a715563fe9ffe57481e0357018656614 /pjsip/src/pjsua2/call.cpp
parent78dde9dab5ca35529bca5766ec9a9df17d957a24 (diff)
Fixed #1784: Remove the usage of nested structs/unions in PJSUA2 (unsupported by SWIG C++)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4918 74dad513-b988-da41-8d7b-12977e46ad98
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);
}