Index: webrtc/test/call_test.cc |
diff --git a/webrtc/test/call_test.cc b/webrtc/test/call_test.cc |
index fc3fc689f25cfb164a131e4319b37667ef856ae2..b99c80c4c97da0856fa62cb8823cb255c640cf8d 100644 |
--- a/webrtc/test/call_test.cc |
+++ b/webrtc/test/call_test.cc |
@@ -447,6 +447,10 @@ const std::map<uint8_t, MediaType> CallTest::payload_type_map_ = { |
{CallTest::kFlexfecPayloadType, MediaType::VIDEO}, |
{CallTest::kAudioSendPayloadType, MediaType::AUDIO}}; |
+const int CallTest::kPayloadTypeH264 = 122; |
philipel
2017/07/10 17:00:50
Codec payload types are dynamically negotiated, ri
ilnik
2017/07/10 17:06:19
Not in the Call test. I think. I am certain, that
sprang_webrtc
2017/07/10 17:29:39
Exactly, these are the constants used in tests, fo
|
+const int CallTest::kPayloadTypeVP8 = 123; |
+const int CallTest::kPayloadTypeVP9 = 124; |
tommi
2017/07/11 08:34:47
out of curiosity - should these be enum values? al
ilnik
2017/07/11 08:43:43
Actually, type really should be uint8_t. As for en
tommi
2017/07/11 10:14:45
Assuming they're all mutually exclusive, it would
ilnik
2017/07/11 10:20:59
In fact, most of them are not mutually exclusive:
tommi
2017/07/11 11:41:36
Oh I was thinking mutually exclusive values. Not u
ilnik
2017/07/11 12:20:30
Makes sense. I am making a tracking bug for that r
|
+ |
BaseTest::BaseTest() : event_log_(RtcEventLog::CreateNull()) {} |
BaseTest::BaseTest(unsigned int timeout_ms) |