| 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_PI. | 5 // MSVC++ requires this to be set before any other includes to get M_PI. |
| 6 #define _USE_MATH_DEFINES | 6 #define _USE_MATH_DEFINES |
| 7 | 7 |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/cpu.h" | 13 #include "base/cpu.h" |
| 14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
| 16 #include "base/strings/stringize_macros.h" | 16 #include "base/strings/stringize_macros.h" |
| 17 #include "base/time.h" | 17 #include "base/time.h" |
| 18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
| 19 #include "media/base/sinc_resampler.h" | 19 #include "media/base/sinc_resampler.h" |
| 20 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 22 | 22 |
| 23 using testing::_; | 23 using testing::_; |
| 24 | 24 |
| 25 namespace media { | 25 namespace media { |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 std::tr1::make_tuple(11025, 192000, kResamplingRMSError, -62.61), | 435 std::tr1::make_tuple(11025, 192000, kResamplingRMSError, -62.61), |
| 436 std::tr1::make_tuple(16000, 192000, kResamplingRMSError, -63.14), | 436 std::tr1::make_tuple(16000, 192000, kResamplingRMSError, -63.14), |
| 437 std::tr1::make_tuple(22050, 192000, kResamplingRMSError, -62.42), | 437 std::tr1::make_tuple(22050, 192000, kResamplingRMSError, -62.42), |
| 438 std::tr1::make_tuple(32000, 192000, kResamplingRMSError, -63.38), | 438 std::tr1::make_tuple(32000, 192000, kResamplingRMSError, -63.38), |
| 439 std::tr1::make_tuple(44100, 192000, kResamplingRMSError, -62.63), | 439 std::tr1::make_tuple(44100, 192000, kResamplingRMSError, -62.63), |
| 440 std::tr1::make_tuple(48000, 192000, kResamplingRMSError, -73.44), | 440 std::tr1::make_tuple(48000, 192000, kResamplingRMSError, -73.44), |
| 441 std::tr1::make_tuple(96000, 192000, kResamplingRMSError, -73.52), | 441 std::tr1::make_tuple(96000, 192000, kResamplingRMSError, -73.52), |
| 442 std::tr1::make_tuple(192000, 192000, kResamplingRMSError, -73.52))); | 442 std::tr1::make_tuple(192000, 192000, kResamplingRMSError, -73.52))); |
| 443 | 443 |
| 444 } // namespace media | 444 } // namespace media |
| OLD | NEW |