| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2014 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 #include <stddef.h> |
| 6 |
| 5 #include <cmath> | 7 #include <cmath> |
| 6 #include <vector> | 8 #include <vector> |
| 7 | 9 |
| 8 #include "media/base/audio_bus.h" | 10 #include "media/base/audio_bus.h" |
| 9 #include "media/base/audio_shifter.h" | 11 #include "media/base/audio_shifter.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 11 | 13 |
| 12 namespace media { | 14 namespace media { |
| 13 | 15 |
| 14 const int kSampleRate = 48000; | 16 const int kSampleRate = 48000; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 , | 202 , |
| 201 AudioShifterTest, | 203 AudioShifterTest, |
| 202 ::testing::Combine(::testing::Range(0, 3), | 204 ::testing::Combine(::testing::Range(0, 3), |
| 203 ::testing::Range(0, 3), | 205 ::testing::Range(0, 3), |
| 204 ::testing::Range(0, 3), | 206 ::testing::Range(0, 3), |
| 205 ::testing::Bool())); | 207 ::testing::Bool())); |
| 206 | 208 |
| 207 #endif | 209 #endif |
| 208 | 210 |
| 209 } // namespace media | 211 } // namespace media |
| OLD | NEW |