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

Unified Diff: webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_audio_network_adaptor.h

Issue 2362703002: Adding audio network adaptor to AudioEncoderOpus. (Closed)
Patch Set: adding a missing deps 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_audio_network_adaptor.h
diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_audio_network_adaptor.h b/webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_audio_network_adaptor.h
new file mode 100644
index 0000000000000000000000000000000000000000..7d5b4e568d5cde60cd371643e8fc12c1f01eadf5
--- /dev/null
+++ b/webrtc/modules/audio_coding/audio_network_adaptor/mock/mock_audio_network_adaptor.h
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#ifndef WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_MOCK_MOCK_AUDIO_NETWORK_ADAPTOR_H_
+#define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_MOCK_MOCK_AUDIO_NETWORK_ADAPTOR_H_
+
+#include "webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h"
+#include "webrtc/test/gmock.h"
+
+namespace webrtc {
+
+class MockAudioNetworkAdaptor : public AudioNetworkAdaptor {
+ public:
+ virtual ~MockAudioNetworkAdaptor() { Die(); }
+ MOCK_METHOD0(Die, void());
+
+ MOCK_METHOD1(SetUplinkBandwidth, void(int uplink_bandwidth_bps));
+
+ MOCK_METHOD1(SetUplinkPacketLossFraction,
+ void(float uplink_packet_loss_fraction));
+
+ MOCK_METHOD1(SetRtt, void(int rtt_ms));
+
+ MOCK_METHOD1(SetTargetAudioBitrate, void(int target_audio_bitrate_bps));
+
+ MOCK_METHOD2(SetReceiverFrameLengthRange,
+ void(int min_frame_length_ms, int max_frame_length_ms));
+
+ MOCK_METHOD0(GetEncoderRuntimeConfig, EncoderRuntimeConfig());
+
+ MOCK_METHOD1(StartDebugDump, void(FILE* file_handle));
+
+ MOCK_METHOD0(StopDebugDump, void());
+};
+
+} // namespace webrtc
+
+#endif // WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_MOCK_MOCK_AUDIO_NETWORK_ADAPTOR_H_

Powered by Google App Engine
This is Rietveld 408576698