Fix more -Wunused-private-field violations.
Review URL: https://webrtc-codereview.appspot.com/668010

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2484 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
tommi@webrtc.org 2012-07-03 08:19:12 +00:00
parent e85c77bd7c
commit fb933bdb26
4 changed files with 7 additions and 4 deletions

View File

@ -44,8 +44,11 @@ OverUseDetector::OverUseDetector(const OverUseDetectorOptions& options)
prev_offset_(0.0),
time_over_using_(-1),
over_use_counter_(0),
hypothesis_(kBwNormal),
plots_() {
hypothesis_(kBwNormal)
#ifdef WEBRTC_BWE_MATLAB
, plots_()
#endif
{
memcpy(E_, options_.initial_e, sizeof(E_));
memcpy(process_noise_, options_.initial_process_noise,
sizeof(process_noise_));

View File

@ -90,7 +90,9 @@ class OverUseDetector {
double time_over_using_;
uint16_t over_use_counter_;
BandwidthUsage hypothesis_;
#ifdef WEBRTC_BWE_MATLAB
DebugPlots plots_;
#endif
};
} // namespace webrtc

View File

@ -30,7 +30,6 @@ RTPReceiverVideo::RTPReceiverVideo(const WebRtc_Word32 id,
RemoteBitrateEstimator* remote_bitrate,
ModuleRtpRtcpImpl* owner)
: _id(id),
_rtpRtcp(owner),
_criticalSectionReceiverVideo(
CriticalSectionWrapper::CreateCriticalSection()),
_currentFecFrameDecoded(false),

View File

@ -98,7 +98,6 @@ class RTPReceiverVideo {
private:
WebRtc_Word32 _id;
ModuleRtpRtcpImpl* _rtpRtcp;
CriticalSectionWrapper* _criticalSectionReceiverVideo;