Home
last modified time | relevance | path

Searched refs:LocalAndRemoteSdp (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/test/pc/e2e/sdp/
Dsdp_changer.h49 struct LocalAndRemoteSdp { struct
50 LocalAndRemoteSdp(std::unique_ptr<SessionDescriptionInterface> local_sdp, in LocalAndRemoteSdp() function
77 LocalAndRemoteSdp PatchOffer( argument
80 LocalAndRemoteSdp PatchAnswer(
126 LocalAndRemoteSdp PatchVp8Offer(
128 LocalAndRemoteSdp PatchVp9Offer(
130 LocalAndRemoteSdp PatchVp8Answer(
132 LocalAndRemoteSdp PatchVp9Answer(
Dsdp_changer.cc167 LocalAndRemoteSdp SignalingInterceptor::PatchOffer( in PatchOffer()
198 return LocalAndRemoteSdp(std::move(offer), std::move(offer_for_remote)); in PatchOffer()
201 LocalAndRemoteSdp SignalingInterceptor::PatchVp8Offer( in PatchVp8Offer()
206 return LocalAndRemoteSdp(std::move(offer), std::move(offer_for_remote)); in PatchVp8Offer()
304 return LocalAndRemoteSdp(std::move(offer), std::move(patched_offer)); in PatchVp8Offer()
307 LocalAndRemoteSdp SignalingInterceptor::PatchVp9Offer( in PatchVp9Offer()
361 return LocalAndRemoteSdp(std::move(offer), std::move(offer_for_remote)); in PatchVp9Offer()
364 LocalAndRemoteSdp SignalingInterceptor::PatchAnswer( in PatchAnswer()
391 return LocalAndRemoteSdp(std::move(answer), std::move(answer_for_remote)); in PatchAnswer()
394 LocalAndRemoteSdp SignalingInterceptor::PatchVp8Answer( in PatchVp8Answer()
[all …]
/external/webrtc/test/pc/e2e/
Dpeer_connection_quality_test.cc657 LocalAndRemoteSdp patch_result = signaling_interceptor->PatchOffer( in ExchangeOfferAnswer()