| Index: webrtc/common_audio/channel_buffer_unittest.cc
|
| diff --git a/webrtc/common_audio/channel_buffer_unittest.cc b/webrtc/common_audio/channel_buffer_unittest.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6b111035ed3d9b8ccffba0ee940c969cc69a778f
|
| --- /dev/null
|
| +++ b/webrtc/common_audio/channel_buffer_unittest.cc
|
| @@ -0,0 +1,58 @@
|
| +/*
|
| + * Copyright (c) 2016 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 "testing/gtest/include/gtest/gtest.h"
|
| +#include "webrtc/common_audio/channel_buffer.h"
|
| +
|
| +namespace webrtc {
|
| +
|
| +namespace {
|
| +
|
| +void ExpectNumChannels(const IFChannelBuffer& ifchb, size_t num_channels) {
|
| + EXPECT_EQ(ifchb.ibuf_const()->num_channels(), num_channels);
|
| + EXPECT_EQ(ifchb.fbuf_const()->num_channels(), num_channels);
|
| + EXPECT_EQ(ifchb.num_channels(), num_channels);
|
| +}
|
| +
|
| +} // namespace
|
| +
|
| +TEST(ChannelBufferTest, SetNumChannelsSetsNumChannels) {
|
| + const size_t kNumFrames = 480u;
|
| + const size_t kStereo = 2u;
|
| + const size_t kMono = 1u;
|
| + ChannelBuffer<float> chb(kNumFrames, kStereo);
|
| + EXPECT_EQ(chb.num_channels(), kStereo);
|
| + chb.set_num_channels(kMono);
|
| + EXPECT_EQ(chb.num_channels(), kMono);
|
| +}
|
| +
|
| +TEST(IFChannelBufferTest, SetNumChannelsSetsChannelBuffersNumChannels) {
|
| + const size_t kNumFrames = 480u;
|
| + const size_t kStereo = 2u;
|
| + const size_t kMono = 1u;
|
| + IFChannelBuffer ifchb(kNumFrames, kStereo);
|
| + ExpectNumChannels(ifchb, kStereo);
|
| + ifchb.set_num_channels(kMono);
|
| + ExpectNumChannels(ifchb, kMono);
|
| +}
|
| +
|
| +TEST(IFChannelBufferTest, SettingNumChannelsOfOneChannelBufferSetsTheOther) {
|
| + const size_t kNumFrames = 480u;
|
| + const size_t kStereo = 2u;
|
| + const size_t kMono = 1u;
|
| + IFChannelBuffer ifchb(kNumFrames, kStereo);
|
| + ExpectNumChannels(ifchb, kStereo);
|
| + ifchb.ibuf()->set_num_channels(kMono);
|
| + ExpectNumChannels(ifchb, kMono);
|
| + ifchb.fbuf()->set_num_channels(kStereo);
|
| + ExpectNumChannels(ifchb, kStereo);
|
| +}
|
| +
|
| +} // namespace webrtc
|
|
|