- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / webrtc / modules / audio_coding / neteq4 / time_stretch_unittest.cc
1 /*
2  *  Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3  *
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
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11 // Unit tests for Accelerate and PreemptiveExpand classes.
12
13 #include "webrtc/modules/audio_coding/neteq4/accelerate.h"
14 #include "webrtc/modules/audio_coding/neteq4/preemptive_expand.h"
15
16 #include "gtest/gtest.h"
17 #include "webrtc/modules/audio_coding/neteq4/background_noise.h"
18
19 namespace webrtc {
20
21 TEST(TimeStretch, CreateAndDestroy) {
22   int sample_rate = 8000;
23   size_t num_channels = 1;
24   BackgroundNoise bgn(num_channels);
25   Accelerate accelerate(sample_rate, num_channels, bgn);
26   PreemptiveExpand preemptive_expand(sample_rate, num_channels, bgn);
27 }
28
29 // TODO(hlundin): Write more tests.
30
31 }  // namespace webrtc