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

Unified Diff: webrtc/test/call_test.h

Issue 2783853002: Reland of Don't hardcode MediaType::ANY in FakeNetworkPipe. (Closed)
Patch Set: Configure proper media type in RampUp tests. Add crude payload type demuxer to CallTest. Created 3 years, 9 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/test/call_test.h
diff --git a/webrtc/test/call_test.h b/webrtc/test/call_test.h
index 78fbbfbe4372d98a8a3ad0172472723dda8a0786..b4f665821ee2ffa420a6465835a4dc310e8b3961 100644
--- a/webrtc/test/call_test.h
+++ b/webrtc/test/call_test.h
@@ -59,6 +59,23 @@ class CallTest : public ::testing::Test {
static const int kNackRtpHistoryMs;
protected:
+ // Needed for tests sending both audio and video on the same
+ // FakeNetworkPipe. We then need to set correct MediaType based on
+ // packet payload type, before passing the packet on to Call.
+ class PayloadDemuxer : public PacketReceiver {
stefan-webrtc 2017/03/29 12:27:25 It seems like PacketReceiver is the wrong type for
nisse-webrtc 2017/03/29 12:37:55 We can't, since this object is intended to be pass
stefan-webrtc 2017/03/30 06:47:11 Ah, ok. I guess we could if we changed the FakeNet
nisse-webrtc 2017/03/30 06:56:45 For now, I think it makes sense for most tests to
+ public:
+ PayloadDemuxer() = default;
+
+ void SetReceiver(PacketReceiver* receiver);
+ DeliveryStatus DeliverPacket(MediaType media_type,
+ const uint8_t* packet,
+ size_t length,
+ const PacketTime& packet_time) override;
+
+ private:
+ PacketReceiver* receiver_ = nullptr;
+ };
+
// RunBaseTest overwrites the audio_state and the voice_engine of the send and
// receive Call configs to simplify test code and avoid having old VoiceEngine
// APIs in the tests.
@@ -124,6 +141,9 @@ class CallTest : public ::testing::Test {
rtc::scoped_refptr<AudioDecoderFactory> decoder_factory_;
test::FakeVideoRenderer fake_renderer_;
+ PayloadDemuxer receive_demuxer_;
+ PayloadDemuxer send_demuxer_;
+
private:
// TODO(holmer): Remove once VoiceEngine is fully refactored to the new API.
// These methods are used to set up legacy voice engines and channels which is
@@ -172,6 +192,7 @@ class BaseTest : public RtpRtcpObserver {
virtual Call::Config GetReceiverCallConfig();
virtual void OnCallsCreated(Call* sender_call, Call* receiver_call);
+ // The default implementation creates MediaType::VIDEO transports.
virtual test::PacketTransport* CreateSendTransport(Call* sender_call);
virtual test::PacketTransport* CreateReceiveTransport();

Powered by Google App Engine
This is Rietveld 408576698