2015-08-24 02:03:23 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/audio_coding/codecs/isac/locked_bandwidth_info.h"
|
2015-08-24 02:03:23 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2016-03-30 04:10:11 -07:00
|
|
|
LockedIsacBandwidthInfo::LockedIsacBandwidthInfo() : ref_count_(0) {
|
2015-08-24 02:03:23 -07:00
|
|
|
bwinfo_.in_use = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LockedIsacBandwidthInfo::~LockedIsacBandwidthInfo() = default;
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|