OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 #ifndef WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H_ | 11 #ifndef WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H |
12 #define WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H_ | 12 #define WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H |
13 | 13 |
14 #include <stddef.h> // size_t | 14 #include <stddef.h> // size_t |
15 | 15 |
16 #include "webrtc/test/gtest.h" | 16 #include "webrtc/test/gtest.h" |
17 #include "webrtc/typedefs.h" | 17 #include "webrtc/typedefs.h" |
18 | 18 |
19 namespace webrtc { | 19 namespace { |
20 namespace test { | |
21 | 20 |
22 // Modes we support | 21 // Modes we support |
23 const int kModes[] = { 0, 1, 2, 3 }; | 22 const int kModes[] = { 0, 1, 2, 3 }; |
24 const size_t kModesSize = sizeof(kModes) / sizeof(*kModes); | 23 const size_t kModesSize = sizeof(kModes) / sizeof(*kModes); |
25 | 24 |
26 // Rates we support. | 25 // Rates we support. |
27 const int kRates[] = { 8000, 12000, 16000, 24000, 32000, 48000 }; | 26 const int kRates[] = { 8000, 12000, 16000, 24000, 32000, 48000 }; |
28 const size_t kRatesSize = sizeof(kRates) / sizeof(*kRates); | 27 const size_t kRatesSize = sizeof(kRates) / sizeof(*kRates); |
29 | 28 |
30 // Frame lengths we support. | 29 // Frame lengths we support. |
31 const size_t kMaxFrameLength = 1440; | 30 const size_t kMaxFrameLength = 1440; |
32 const size_t kFrameLengths[] = { 80, 120, 160, 240, 320, 480, 640, 960, | 31 const size_t kFrameLengths[] = { 80, 120, 160, 240, 320, 480, 640, 960, |
33 kMaxFrameLength }; | 32 kMaxFrameLength }; |
34 const size_t kFrameLengthsSize = sizeof(kFrameLengths) / sizeof(*kFrameLengths); | 33 const size_t kFrameLengthsSize = sizeof(kFrameLengths) / sizeof(*kFrameLengths); |
35 | 34 |
36 } // namespace test | 35 } // namespace |
37 } // namespace webrtc | |
38 | 36 |
39 class VadTest : public ::testing::Test { | 37 class VadTest : public ::testing::Test { |
40 protected: | 38 protected: |
41 VadTest(); | 39 VadTest(); |
42 virtual void SetUp(); | 40 virtual void SetUp(); |
43 virtual void TearDown(); | 41 virtual void TearDown(); |
44 | 42 |
45 // Returns true if the rate and frame length combination is valid. | 43 // Returns true if the rate and frame length combination is valid. |
46 bool ValidRatesAndFrameLengths(int rate, size_t frame_length); | 44 bool ValidRatesAndFrameLengths(int rate, size_t frame_length); |
47 }; | 45 }; |
48 | 46 |
49 #endif // WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H_ | 47 #endif // WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H |
OLD | NEW |