OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #include "testing/gtest/include/gtest/gtest.h" |
| 12 #include "webrtc/common_audio/channel_buffer.h" |
| 13 |
| 14 namespace webrtc { |
| 15 |
| 16 namespace { |
| 17 |
| 18 void ExpectNumChannels(const IFChannelBuffer& ifchb, size_t num_channels) { |
| 19 EXPECT_EQ(ifchb.ibuf_const()->num_channels(), num_channels); |
| 20 EXPECT_EQ(ifchb.fbuf_const()->num_channels(), num_channels); |
| 21 EXPECT_EQ(ifchb.num_channels(), num_channels); |
| 22 } |
| 23 |
| 24 } // namespace |
| 25 |
| 26 TEST(ChannelBufferTest, SetNumChannelsSetsNumChannels) { |
| 27 const size_t kNumFrames = 480u; |
| 28 const size_t kStereo = 2u; |
| 29 const size_t kMono = 1u; |
| 30 ChannelBuffer<float> chb(kNumFrames, kStereo); |
| 31 EXPECT_EQ(chb.num_channels(), kStereo); |
| 32 chb.set_num_channels(kMono); |
| 33 EXPECT_EQ(chb.num_channels(), kMono); |
| 34 } |
| 35 |
| 36 TEST(IFChannelBufferTest, SetNumChannelsSetsChannelBuffersNumChannels) { |
| 37 const size_t kNumFrames = 480u; |
| 38 const size_t kStereo = 2u; |
| 39 const size_t kMono = 1u; |
| 40 IFChannelBuffer ifchb(kNumFrames, kStereo); |
| 41 ExpectNumChannels(ifchb, kStereo); |
| 42 ifchb.set_num_channels(kMono); |
| 43 ExpectNumChannels(ifchb, kMono); |
| 44 } |
| 45 |
| 46 TEST(IFChannelBufferTest, SettingNumChannelsOfOneChannelBufferSetsTheOther) { |
| 47 const size_t kNumFrames = 480u; |
| 48 const size_t kStereo = 2u; |
| 49 const size_t kMono = 1u; |
| 50 IFChannelBuffer ifchb(kNumFrames, kStereo); |
| 51 ExpectNumChannels(ifchb, kStereo); |
| 52 ifchb.ibuf()->set_num_channels(kMono); |
| 53 ExpectNumChannels(ifchb, kMono); |
| 54 ifchb.fbuf()->set_num_channels(kStereo); |
| 55 ExpectNumChannels(ifchb, kStereo); |
| 56 } |
| 57 |
| 58 } // namespace webrtc |
OLD | NEW |