Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: webrtc/common_audio/resampler/push_sinc_resampler_unittest.cc

Issue 2358993004: Enable the -Wundef warning for clang (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <cmath> 11 #include <cmath>
12 #include <cstring> 12 #include <cstring>
13 #include <memory> 13 #include <memory>
14 14
15 #include "testing/gmock/include/gmock/gmock.h" 15 #include "webrtc/test/gmock.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "webrtc/test/gtest.h"
17 #include "webrtc/base/timeutils.h" 17 #include "webrtc/base/timeutils.h"
18 #include "webrtc/common_audio/include/audio_util.h" 18 #include "webrtc/common_audio/include/audio_util.h"
19 #include "webrtc/common_audio/resampler/push_sinc_resampler.h" 19 #include "webrtc/common_audio/resampler/push_sinc_resampler.h"
20 #include "webrtc/common_audio/resampler/sinusoidal_linear_chirp_source.h" 20 #include "webrtc/common_audio/resampler/sinusoidal_linear_chirp_source.h"
21 #include "webrtc/typedefs.h" 21 #include "webrtc/typedefs.h"
22 22
23 namespace webrtc { 23 namespace webrtc {
24 namespace { 24 namespace {
25 25
26 // Almost all conversions have an RMS error of around -14 dbFS. 26 // Almost all conversions have an RMS error of around -14 dbFS.
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 // To 32 kHz 328 // To 32 kHz
329 ::testing::make_tuple(8000, 32000, kResamplingRMSError, -70.30), 329 ::testing::make_tuple(8000, 32000, kResamplingRMSError, -70.30),
330 ::testing::make_tuple(16000, 32000, kResamplingRMSError, -75.51), 330 ::testing::make_tuple(16000, 32000, kResamplingRMSError, -75.51),
331 ::testing::make_tuple(32000, 32000, kResamplingRMSError, -75.51), 331 ::testing::make_tuple(32000, 32000, kResamplingRMSError, -75.51),
332 ::testing::make_tuple(44100, 32000, -16.44, -51.10), 332 ::testing::make_tuple(44100, 32000, -16.44, -51.10),
333 ::testing::make_tuple(48000, 32000, -16.90, -44.03), 333 ::testing::make_tuple(48000, 32000, -16.90, -44.03),
334 ::testing::make_tuple(96000, 32000, -19.61, -18.04), 334 ::testing::make_tuple(96000, 32000, -19.61, -18.04),
335 ::testing::make_tuple(192000, 32000, -21.02, -10.94))); 335 ::testing::make_tuple(192000, 32000, -21.02, -10.94)));
336 336
337 } // namespace webrtc 337 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/common_audio/resampler/push_resampler_unittest.cc ('k') | webrtc/common_audio/resampler/resampler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698