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

Unified Diff: webrtc/call/rampup_tests.h

Issue 2705603002: Fixes a bug where a video stream can get stuck in the suspended state. (Closed)
Patch Set: all tests passing. 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/call/rampup_tests.h
diff --git a/webrtc/call/rampup_tests.h b/webrtc/call/rampup_tests.h
index 5cf4c4fab506932d30b16dc1117c441d4e09fb9d..0e058b27c4b6af488f2e6140bfea8edeb57798a8 100644
--- a/webrtc/call/rampup_tests.h
+++ b/webrtc/call/rampup_tests.h
@@ -33,6 +33,7 @@ class RampUpTester : public test::EndToEndTest {
public:
RampUpTester(size_t num_video_streams,
size_t num_audio_streams,
+ size_t num_flexfec_streams,
unsigned int start_bitrate_bps,
int64_t min_run_time_ms,
const std::string& extension_type,
@@ -43,6 +44,7 @@ class RampUpTester : public test::EndToEndTest {
size_t GetNumVideoStreams() const override;
size_t GetNumAudioStreams() const override;
+ size_t GetNumFlexfecStreams() const override;
void PerformTest() override;
@@ -66,6 +68,7 @@ class RampUpTester : public test::EndToEndTest {
FakeNetworkPipe::Config forward_transport_config_;
const size_t num_video_streams_;
const size_t num_audio_streams_;
+ const size_t num_flexfec_streams_;
const bool rtx_;
const bool red_;
Call* sender_call_;
@@ -88,6 +91,8 @@ class RampUpTester : public test::EndToEndTest {
void ModifyAudioConfigs(
AudioSendStream::Config* send_config,
std::vector<AudioReceiveStream::Config>* receive_configs) override;
+ void ModifyFlexfecConfigs(
+ std::vector<FlexfecReceiveStream::Config>* receive_configs) override;
void OnCallsCreated(Call* sender_call, Call* receiver_call) override;
static bool BitrateStatsPollingThread(void* obj);
@@ -111,6 +116,7 @@ class RampUpDownUpTester : public RampUpTester {
public:
RampUpDownUpTester(size_t num_video_streams,
size_t num_audio_streams,
+ size_t num_flexfec_streams,
unsigned int start_bitrate_bps,
const std::string& extension_type,
bool rtx,
@@ -121,7 +127,7 @@ class RampUpDownUpTester : public RampUpTester {
bool PollStats() override;
private:
- enum TestStates { kFirstRampup, kLowRate, kSecondRampup };
+ enum TestStates { kFirstRampup, kWaitForFec, kLowRate, kSecondRampup };
Call::Config GetReceiverCallConfig() override;

Powered by Google App Engine
This is Rietveld 408576698