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

Unified Diff: webrtc/call/call.h

Issue 2826263004: Move responsibility for RTP header extensions on video receive. (Closed)
Patch Set: Created 3 years, 8 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/call.h
diff --git a/webrtc/call/call.h b/webrtc/call/call.h
index ec73bf7714926b2a6b04210f3c66a881f9acbedf..8a57eb43aa92912f49d2f39de2d4f9777a8538d8 100644
--- a/webrtc/call/call.h
+++ b/webrtc/call/call.h
@@ -100,6 +100,11 @@ class Call {
static Call* Create(const Call::Config& config);
+ // TODO(nisse): Should move to RtpTransportController.
+ // Rtp header extensions can be renegotiated mid-call.
+ virtual void SetVideoReceiveRtpHeaderExtensions(
+ const std::vector<RtpExtension>& extensions) = 0;
pthatcher1 2017/04/29 00:25:18 It makes sense for this to be per-RtpTransport, bu
+
virtual AudioSendStream* CreateAudioSendStream(
const AudioSendStream::Config& config) = 0;
virtual void DestroyAudioSendStream(AudioSendStream* send_stream) = 0;

Powered by Google App Engine
This is Rietveld 408576698