Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // MSVC++ requires this to be set before any other includes to get M_SQRT1_2. | 5 // MSVC++ requires this to be set before any other includes to get M_SQRT1_2. |
| 6 #define _USE_MATH_DEFINES | 6 #define _USE_MATH_DEFINES |
| 7 | 7 |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 | 9 |
| 10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 11 #include "media/audio/audio_parameters.h" | 11 #include "media/audio/audio_parameters.h" |
| 12 #include "media/base/audio_bus.h" | 12 #include "media/base/audio_bus.h" |
| 13 #include "media/base/channel_mixer.h" | 13 #include "media/base/channel_mixer.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 15 |
| 16 namespace media { | 16 namespace media { |
| 17 | 17 |
| 18 // Number of frames to test with. | 18 // Number of frames to test with. |
| 19 enum { kFrames = 16 }; | 19 enum { kFrames = 16 }; |
| 20 | 20 |
| 21 // Test all possible layout conversions can be constructed and mixed. | 21 // Test all possible layout conversions can be constructed and mixed. |
| 22 TEST(ChannelMixerTest, ConstructAllPossibleLayouts) { | 22 TEST(ChannelMixerTest, ConstructAllPossibleLayouts) { |
| 23 for (ChannelLayout input_layout = CHANNEL_LAYOUT_MONO; | 23 for (ChannelLayout input_layout = CHANNEL_LAYOUT_MONO; |
| 24 input_layout <= CHANNEL_LAYOUT_MAX; | 24 input_layout <= CHANNEL_LAYOUT_MAX; |
| 25 input_layout = static_cast<ChannelLayout>(input_layout + 1)) { | 25 input_layout = static_cast<ChannelLayout>(input_layout + 1)) { |
| 26 for (ChannelLayout output_layout = CHANNEL_LAYOUT_MONO; | 26 for (ChannelLayout output_layout = CHANNEL_LAYOUT_MONO; |
| 27 // TODO(wtc): why do we only test up to CHANNEL_LAYOUT_STEREO_DOWNMIX? | |
|
DaleCurtis
2014/10/23 16:49:05
Hmm, I don't remember, may be a bug. What happens
wtc
2014/10/23 18:39:45
If I change it to MAX, this CHECK will fail:
//
DaleCurtis
2014/10/23 19:23:50
Haha, whoops. Thanks for fixing :)
| |
| 27 output_layout < CHANNEL_LAYOUT_STEREO_DOWNMIX; | 28 output_layout < CHANNEL_LAYOUT_STEREO_DOWNMIX; |
| 28 output_layout = static_cast<ChannelLayout>(output_layout + 1)) { | 29 output_layout = static_cast<ChannelLayout>(output_layout + 1)) { |
| 29 // DISCRETE can't be tested here based on the current approach. | 30 // DISCRETE can't be tested here based on the current approach. |
| 30 // CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC is not mixable. | 31 // CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC is not mixable. |
| 31 if (input_layout == CHANNEL_LAYOUT_DISCRETE || | 32 if (input_layout == CHANNEL_LAYOUT_DISCRETE || |
| 32 input_layout == CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC || | 33 input_layout == CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC || |
| 33 output_layout == CHANNEL_LAYOUT_DISCRETE || | 34 output_layout == CHANNEL_LAYOUT_DISCRETE || |
| 34 output_layout == CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC) { | 35 output_layout == CHANNEL_LAYOUT_STEREO_AND_KEYBOARD_MIC) { |
| 35 continue; | 36 continue; |
| 36 } | 37 } |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 179 kStereoToMonoValues, arraysize(kStereoToMonoValues)), | 180 kStereoToMonoValues, arraysize(kStereoToMonoValues)), |
| 180 ChannelMixerTestData(CHANNEL_LAYOUT_DISCRETE, 2, | 181 ChannelMixerTestData(CHANNEL_LAYOUT_DISCRETE, 2, |
| 181 CHANNEL_LAYOUT_DISCRETE, 5, | 182 CHANNEL_LAYOUT_DISCRETE, 5, |
| 182 kStereoToMonoValues, arraysize(kStereoToMonoValues)), | 183 kStereoToMonoValues, arraysize(kStereoToMonoValues)), |
| 183 ChannelMixerTestData(CHANNEL_LAYOUT_DISCRETE, 5, | 184 ChannelMixerTestData(CHANNEL_LAYOUT_DISCRETE, 5, |
| 184 CHANNEL_LAYOUT_DISCRETE, 2, | 185 CHANNEL_LAYOUT_DISCRETE, 2, |
| 185 kFiveDiscreteValues, arraysize(kFiveDiscreteValues)) | 186 kFiveDiscreteValues, arraysize(kFiveDiscreteValues)) |
| 186 )); | 187 )); |
| 187 | 188 |
| 188 } // namespace media | 189 } // namespace media |
| OLD | NEW |