| Index: webrtc/modules/audio_coding/neteq/merge_unittest.cc
|
| diff --git a/webrtc/modules/audio_coding/neteq/merge_unittest.cc b/webrtc/modules/audio_coding/neteq/merge_unittest.cc
|
| index bdcbbb8a9bf3b4e3b6861bda07b3a4f55154f747..ddb0e16ddf794b271d8efd916f648bc6e0577975 100644
|
| --- a/webrtc/modules/audio_coding/neteq/merge_unittest.cc
|
| +++ b/webrtc/modules/audio_coding/neteq/merge_unittest.cc
|
| @@ -18,6 +18,7 @@
|
| #include "webrtc/modules/audio_coding/neteq/background_noise.h"
|
| #include "webrtc/modules/audio_coding/neteq/expand.h"
|
| #include "webrtc/modules/audio_coding/neteq/random_vector.h"
|
| +#include "webrtc/modules/audio_coding/neteq/statistics_calculator.h"
|
| #include "webrtc/modules/audio_coding/neteq/sync_buffer.h"
|
|
|
| namespace webrtc {
|
| @@ -28,7 +29,8 @@ TEST(Merge, CreateAndDestroy) {
|
| BackgroundNoise bgn(channels);
|
| SyncBuffer sync_buffer(1, 1000);
|
| RandomVector random_vector;
|
| - Expand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
|
| + StatisticsCalculator statistics;
|
| + Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels);
|
| Merge merge(fs, channels, &expand, &sync_buffer);
|
| }
|
|
|
|
|