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

Unified Diff: webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc

Issue 2717983003: Move fake_audio_device to its own target. (Closed)
Patch Set: Fix more rtp.. Created 3 years, 10 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/rtp_rtcp/test/testAPI/test_api_audio.cc
diff --git a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc
index 2801c65b907bbf0cedb2426f2741dcb9bb9f72a0..5e5d8eea49c04b89f9a13fd96bd62df7597d27f7 100644
--- a/webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc
+++ b/webrtc/modules/rtp_rtcp/test/testAPI/test_api_audio.cc
@@ -70,11 +70,11 @@ class VerifyingAudioReceiver : public NullRtpData {
class RTPCallback : public NullRtpFeedback {
public:
- int32_t OnInitializeDecoder(const int8_t payloadType,
+ int32_t OnInitializeDecoder(int8_t payloadType,
const char payloadName[RTP_PAYLOAD_NAME_SIZE],
- const int frequency,
- const size_t channels,
- const uint32_t rate) override {
+ int frequency,
+ size_t channels,
+ uint32_t rate) override {
EXPECT_EQ(0u, rate) << "The rate should be zero";
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698