From 524417f3f7d0e3b1da4866db74221cd769bdd4bb Mon Sep 17 00:00:00 2001 From: Artem Titov Date: Fri, 17 Jan 2020 12:18:20 +0100 Subject: [PATCH] Move method to right place in the PC API MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:10138 Change-Id: I46f353cea0dee986b211c475acbb3b39fe2df16f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/166460 Reviewed-by: Patrik Höglund Commit-Queue: Artem Titov Cr-Commit-Position: refs/heads/master@{#30299} --- api/test/peerconnection_quality_test_fixture.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/test/peerconnection_quality_test_fixture.h b/api/test/peerconnection_quality_test_fixture.h index de34a9e3e9..87d3288394 100644 --- a/api/test/peerconnection_quality_test_fixture.h +++ b/api/test/peerconnection_quality_test_fixture.h @@ -255,7 +255,7 @@ class PeerConnectionE2EQualityTestFixture { public: virtual ~PeerConfigurer() = default; - // The parameters of the following 8 methods will be passed to the + // The parameters of the following 9 methods will be passed to the // PeerConnectionFactoryInterface implementation that will be created for // this peer. virtual PeerConfigurer* SetTaskQueueFactory( @@ -276,6 +276,9 @@ class PeerConnectionE2EQualityTestFixture { std::unique_ptr video_encoder_factory) = 0; virtual PeerConfigurer* SetVideoDecoderFactory( std::unique_ptr video_decoder_factory) = 0; + // Set a custom NetEqFactory to be used in the call. + virtual PeerConfigurer* SetNetEqFactory( + std::unique_ptr neteq_factory) = 0; // The parameters of the following 4 methods will be passed to the // PeerConnectionInterface implementation that will be created for this @@ -301,9 +304,6 @@ class PeerConnectionE2EQualityTestFixture { // Set the audio stream for the call from this peer. If this method won't // be invoked, this peer will send no audio. virtual PeerConfigurer* SetAudioConfig(AudioConfig config) = 0; - // Set a custom NetEqFactory to be used in the call. - virtual PeerConfigurer* SetNetEqFactory( - std::unique_ptr neteq_factory) = 0; // If is set, an RTCEventLog will be saved in that location and it will be // available for further analysis. virtual PeerConfigurer* SetRtcEventLogPath(std::string path) = 0;