tenfourfox/media/webrtc/trunk/webrtc/video_engine/vie_ref_count.cc
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

47 lines
1.1 KiB
C++

/*
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "webrtc/video_engine/vie_ref_count.h"
#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
namespace webrtc {
ViERefCount::ViERefCount()
: count_(0),
crit_(CriticalSectionWrapper::CreateCriticalSection()) {
}
ViERefCount::~ViERefCount() {
}
ViERefCount& ViERefCount::operator++(int) { // NOLINT
CriticalSectionScoped lock(crit_.get());
count_++;
return *this;
}
ViERefCount& ViERefCount::operator--(int) { // NOLINT
CriticalSectionScoped lock(crit_.get());
count_--;
return *this;
}
void ViERefCount::Reset() {
CriticalSectionScoped lock(crit_.get());
count_ = 0;
}
int ViERefCount::GetCount() const {
return count_;
}
} // namespace webrtc