/* * Copyright (c) 2019 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef TEST_PC_E2E_SDP_SDP_CHANGER_H_ #define TEST_PC_E2E_SDP_SDP_CHANGER_H_ #include #include #include #include "absl/strings/string_view.h" #include "absl/types/optional.h" #include "api/array_view.h" #include "api/jsep.h" #include "api/rtp_parameters.h" #include "api/test/peerconnection_quality_test_fixture.h" #include "media/base/rid_description.h" #include "pc/session_description.h" #include "pc/simulcast_description.h" namespace webrtc { namespace webrtc_pc_e2e { // Creates list of capabilities, which can be set on RtpTransceiverInterface via // RtpTransceiverInterface::SetCodecPreferences(...) to negotiate use of codecs // from list of |supported_codecs| which will match |video_codecs|. If flags // |ulpfec| or |flexfec| set to true corresponding FEC codec will be added. // FEC and RTX codecs will be added after required codecs. // // All codecs will be added only if they exists in the list of // |supported_codecs|. If multiple codecs from this list will match // |video_codecs|, then all of them will be added to the output // vector and they will be added in the same order, as they were in // |supported_codecs|. std::vector FilterVideoCodecCapabilities( rtc::ArrayView video_codecs, bool use_rtx, bool use_ulpfec, bool use_flexfec, rtc::ArrayView supported_codecs); struct LocalAndRemoteSdp { LocalAndRemoteSdp(std::unique_ptr local_sdp, std::unique_ptr remote_sdp) : local_sdp(std::move(local_sdp)), remote_sdp(std::move(remote_sdp)) {} // Sdp, that should be as local description on the peer, that created it. std::unique_ptr local_sdp; // Sdp, that should be set as remote description on the peer opposite to the // one, who created it. std::unique_ptr remote_sdp; }; struct PatchingParams { PatchingParams( std::vector video_codecs, bool use_conference_mode, std::map stream_label_to_simulcast_streams_count) : video_codecs(std::move(video_codecs)), use_conference_mode(use_conference_mode), stream_label_to_simulcast_streams_count( stream_label_to_simulcast_streams_count) {} std::vector video_codecs; bool use_conference_mode; std::map stream_label_to_simulcast_streams_count; }; class SignalingInterceptor { public: explicit SignalingInterceptor(PatchingParams params) : params_(params) {} LocalAndRemoteSdp PatchOffer( std::unique_ptr offer); LocalAndRemoteSdp PatchAnswer( std::unique_ptr offer); std::vector> PatchOffererIceCandidates( rtc::ArrayView candidates); std::vector> PatchAnswererIceCandidates( rtc::ArrayView candidates); private: // Contains information about simulcast section, that is required to perform // modified offer/answer and ice candidates exchange. struct SimulcastSectionInfo { SimulcastSectionInfo(const std::string& mid, cricket::MediaProtocolType media_protocol_type, const std::vector& rids_desc); const std::string mid; const cricket::MediaProtocolType media_protocol_type; std::vector rids; cricket::SimulcastDescription simulcast_description; webrtc::RtpExtension mid_extension; webrtc::RtpExtension rid_extension; webrtc::RtpExtension rrid_extension; cricket::TransportDescription transport_description; }; struct SignalingContext { SignalingContext() = default; // SignalingContext is not copyable and movable. SignalingContext(SignalingContext&) = delete; SignalingContext& operator=(SignalingContext&) = delete; SignalingContext(SignalingContext&&) = delete; SignalingContext& operator=(SignalingContext&&) = delete; void AddSimulcastInfo(const SimulcastSectionInfo& info); bool HasSimulcast() const { return !simulcast_infos.empty(); } std::vector simulcast_infos; std::map simulcast_infos_by_mid; std::map simulcast_infos_by_rid; std::vector mids_order; }; LocalAndRemoteSdp PatchVp8Offer( std::unique_ptr offer); LocalAndRemoteSdp PatchVp9Offer( std::unique_ptr offer); LocalAndRemoteSdp PatchVp8Answer( std::unique_ptr offer); LocalAndRemoteSdp PatchVp9Answer( std::unique_ptr offer); void FillSimulcastContext(SessionDescriptionInterface* offer); std::unique_ptr RestoreMediaSectionsOrder( std::unique_ptr source); PatchingParams params_; SignalingContext context_; }; } // namespace webrtc_pc_e2e } // namespace webrtc #endif // TEST_PC_E2E_SDP_SDP_CHANGER_H_