| 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/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 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 kStereoToMonoValues, arraysize(kStereoToMonoValues)), | 171 kStereoToMonoValues, arraysize(kStereoToMonoValues)), |
| 172 ChannelMixerTestData(CHANNEL_LAYOUT_DISCRETE, 2, | 172 ChannelMixerTestData(CHANNEL_LAYOUT_DISCRETE, 2, |
| 173 CHANNEL_LAYOUT_DISCRETE, 5, | 173 CHANNEL_LAYOUT_DISCRETE, 5, |
| 174 kStereoToMonoValues, arraysize(kStereoToMonoValues)), | 174 kStereoToMonoValues, arraysize(kStereoToMonoValues)), |
| 175 ChannelMixerTestData(CHANNEL_LAYOUT_DISCRETE, 5, | 175 ChannelMixerTestData(CHANNEL_LAYOUT_DISCRETE, 5, |
| 176 CHANNEL_LAYOUT_DISCRETE, 2, | 176 CHANNEL_LAYOUT_DISCRETE, 2, |
| 177 kFiveDiscreteValues, arraysize(kFiveDiscreteValues)) | 177 kFiveDiscreteValues, arraysize(kFiveDiscreteValues)) |
| 178 )); | 178 )); |
| 179 | 179 |
| 180 } // namespace media | 180 } // namespace media |
| OLD | NEW |