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/modules/audio_processing/audio_buffer.h" |
| 13 |
| 14 namespace webrtc { |
| 15 |
| 16 namespace { |
| 17 |
| 18 const size_t kNumFrames = 480u; |
| 19 const size_t kStereo = 2u; |
| 20 const size_t kMono = 1u; |
| 21 |
| 22 void ExpectNumChannels(const AudioBuffer& ab, size_t num_channels) { |
| 23 EXPECT_EQ(ab.data()->num_channels(), num_channels); |
| 24 EXPECT_EQ(ab.data_f()->num_channels(), num_channels); |
| 25 EXPECT_EQ(ab.split_data()->num_channels(), num_channels); |
| 26 EXPECT_EQ(ab.split_data_f()->num_channels(), num_channels); |
| 27 EXPECT_EQ(ab.num_channels(), num_channels); |
| 28 } |
| 29 |
| 30 } // namespace |
| 31 |
| 32 TEST(AudioBufferTest, SetNumChannelsSetsChannelBuffersNumChannels) { |
| 33 AudioBuffer ab(kNumFrames, kStereo, kNumFrames, kStereo, kNumFrames); |
| 34 ExpectNumChannels(ab, kStereo); |
| 35 ab.set_num_channels(kMono); |
| 36 ExpectNumChannels(ab, kMono); |
| 37 ab.InitForNewData(); |
| 38 ExpectNumChannels(ab, kStereo); |
| 39 } |
| 40 |
| 41 #if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID) |
| 42 TEST(AudioBufferTest, SetNumChannelsDeathTest) { |
| 43 AudioBuffer ab(kNumFrames, kMono, kNumFrames, kMono, kNumFrames); |
| 44 EXPECT_DEATH(ab.set_num_channels(kStereo), "num_channels"); |
| 45 } |
| 46 #endif |
| 47 |
| 48 } // namespace webrtc |
OLD | NEW |