chromium/third_party/webrtc/common_audio/channel_buffer.cc

/*
 *  Copyright (c) 2014 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 "common_audio/channel_buffer.h"

#include <cstdint>

#include "common_audio/include/audio_util.h"
#include "rtc_base/checks.h"

namespace webrtc {

IFChannelBuffer::IFChannelBuffer(size_t num_frames,
                                 size_t num_channels,
                                 size_t num_bands)
    :{}

IFChannelBuffer::~IFChannelBuffer() = default;

ChannelBuffer<int16_t>* IFChannelBuffer::ibuf() {}

ChannelBuffer<float>* IFChannelBuffer::fbuf() {}

const ChannelBuffer<int16_t>* IFChannelBuffer::ibuf_const() const {}

const ChannelBuffer<float>* IFChannelBuffer::fbuf_const() const {}

void IFChannelBuffer::RefreshF() const {}

void IFChannelBuffer::RefreshI() const {}

}  // namespace webrtc