blob: 9641b1fb191549ba086f1e88efbb68b793d85a53 [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
Per Åhgrend47941e2019-08-22 11:51:13 +020019const size_t kSampleRateHz = 48000u;
Alejandro Luebsa181c9a2016-06-30 15:33:37 -070020const size_t kStereo = 2u;
21const size_t kMono = 1u;
22
23void ExpectNumChannels(const AudioBuffer& ab, size_t num_channels) {
Alejandro Luebsa181c9a2016-06-30 15:33:37 -070024 EXPECT_EQ(ab.num_channels(), num_channels);
25}
26
27} // namespace
28
29TEST(AudioBufferTest, SetNumChannelsSetsChannelBuffersNumChannels) {
Per Åhgrend47941e2019-08-22 11:51:13 +020030 AudioBuffer ab(kSampleRateHz, kStereo, kSampleRateHz, kStereo, kSampleRateHz,
31 kStereo);
Alejandro Luebsa181c9a2016-06-30 15:33:37 -070032 ExpectNumChannels(ab, kStereo);
Per Åhgrend47941e2019-08-22 11:51:13 +020033 ab.set_num_channels(1);
Alejandro Luebsa181c9a2016-06-30 15:33:37 -070034 ExpectNumChannels(ab, kMono);
Per Åhgrend47941e2019-08-22 11:51:13 +020035 ab.RestoreNumChannels();
Alejandro Luebsa181c9a2016-06-30 15:33:37 -070036 ExpectNumChannels(ab, kStereo);
37}
38
39#if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID)
40TEST(AudioBufferTest, SetNumChannelsDeathTest) {
Per Åhgrend47941e2019-08-22 11:51:13 +020041 AudioBuffer ab(kSampleRateHz, kMono, kSampleRateHz, kMono, kSampleRateHz,
42 kMono);
Alejandro Luebsa181c9a2016-06-30 15:33:37 -070043 EXPECT_DEATH(ab.set_num_channels(kStereo), "num_channels");
44}
45#endif
46
47} // namespace webrtc