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

Unified Diff: webrtc/modules/audio_coding/neteq/mock/mock_expand.h

Issue 1290113002: NetEq: Implement logging of Delayed Packet Outage Events (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rename InputAudioFile::Move to InputAudioFile::Seek Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/neteq/mock/mock_expand.h
diff --git a/webrtc/modules/audio_coding/neteq/mock/mock_expand.h b/webrtc/modules/audio_coding/neteq/mock/mock_expand.h
index 45e3239f612d4fa8ccdaf045d533c2e402878b6d..f5ca077531e3b43c25e3f5b95226811d80aad050 100644
--- a/webrtc/modules/audio_coding/neteq/mock/mock_expand.h
+++ b/webrtc/modules/audio_coding/neteq/mock/mock_expand.h
@@ -22,10 +22,15 @@ class MockExpand : public Expand {
MockExpand(BackgroundNoise* background_noise,
SyncBuffer* sync_buffer,
RandomVector* random_vector,
+ StatisticsCalculator* statistics,
int fs,
size_t num_channels)
- : Expand(background_noise, sync_buffer, random_vector, fs, num_channels) {
- }
+ : Expand(background_noise,
+ sync_buffer,
+ random_vector,
+ statistics,
+ fs,
+ num_channels) {}
virtual ~MockExpand() { Die(); }
MOCK_METHOD0(Die, void());
MOCK_METHOD0(Reset,
@@ -46,10 +51,11 @@ namespace webrtc {
class MockExpandFactory : public ExpandFactory {
public:
- MOCK_CONST_METHOD5(Create,
+ MOCK_CONST_METHOD6(Create,
Expand*(BackgroundNoise* background_noise,
SyncBuffer* sync_buffer,
RandomVector* random_vector,
+ StatisticsCalculator* statistics,
int fs,
size_t num_channels));
};
« no previous file with comments | « webrtc/modules/audio_coding/neteq/merge_unittest.cc ('k') | webrtc/modules/audio_coding/neteq/neteq_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698