blob: 5c231598b6fca1c47024e86c6815404bfc715dc7 [file] [log] [blame]
Alejandro Luebsa181c9a2016-06-30 15:33:37 -07001/*
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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "modules/audio_processing/audio_buffer.h"
Jonas Olssona4d87372019-07-05 19:08:33 +020012
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "test/gtest.h"
Alejandro Luebsa181c9a2016-06-30 15:33:37 -070014
15namespace webrtc {
16
17namespace {
18
19const size_t kNumFrames = 480u;
20const size_t kStereo = 2u;
21const size_t kMono = 1u;
22
23void ExpectNumChannels(const AudioBuffer& ab, size_t num_channels) {
24 EXPECT_EQ(ab.data()->num_channels(), num_channels);
25 EXPECT_EQ(ab.data_f()->num_channels(), num_channels);
26 EXPECT_EQ(ab.split_data()->num_channels(), num_channels);
27 EXPECT_EQ(ab.split_data_f()->num_channels(), num_channels);
28 EXPECT_EQ(ab.num_channels(), num_channels);
29}
30
31} // namespace
32
33TEST(AudioBufferTest, SetNumChannelsSetsChannelBuffersNumChannels) {
34 AudioBuffer ab(kNumFrames, kStereo, kNumFrames, kStereo, kNumFrames);
35 ExpectNumChannels(ab, kStereo);
36 ab.set_num_channels(kMono);
37 ExpectNumChannels(ab, kMono);
38 ab.InitForNewData();
39 ExpectNumChannels(ab, kStereo);
40}
41
42#if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID)
43TEST(AudioBufferTest, SetNumChannelsDeathTest) {
44 AudioBuffer ab(kNumFrames, kMono, kNumFrames, kMono, kNumFrames);
45 EXPECT_DEATH(ab.set_num_channels(kStereo), "num_channels");
46}
47#endif
48
49} // namespace webrtc