chromium/third_party/webrtc/modules/audio_processing/vad/vad_circular_buffer.cc

/*
 *  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 "modules/audio_processing/vad/vad_circular_buffer.h"

#include <stdlib.h>

namespace webrtc {

VadCircularBuffer::VadCircularBuffer(int buffer_size)
    :{}

VadCircularBuffer::~VadCircularBuffer() {}

void VadCircularBuffer::Reset() {}

VadCircularBuffer* VadCircularBuffer::Create(int buffer_size) {}

double VadCircularBuffer::Oldest() const {}

double VadCircularBuffer::Mean() {}

void VadCircularBuffer::Insert(double value) {}
int VadCircularBuffer::BufferLevel() {}

int VadCircularBuffer::Get(int index, double* value) const {}

int VadCircularBuffer::Set(int index, double value) {}

int VadCircularBuffer::ConvertToLinearIndex(int* index) const {}

int VadCircularBuffer::RemoveTransient(int width_threshold,
                                       double val_threshold) {}

}  // namespace webrtc