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

Unified Diff: webrtc/api/mediastreamprovider.h

Issue 1999853002: Forward the SignalFirstPacketReceived to RtpReceiver. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add media type to BaseChannel. Created 4 years, 7 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
« no previous file with comments | « no previous file | webrtc/api/peerconnection_unittest.cc » ('j') | webrtc/api/peerconnection_unittest.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/mediastreamprovider.h
diff --git a/webrtc/api/mediastreamprovider.h b/webrtc/api/mediastreamprovider.h
index b23e17bd4bb959a1bfd57a4f5f02c649945de471..ac1181c5ebdaabc8f95c1fd9aca55d9616e12c52 100644
--- a/webrtc/api/mediastreamprovider.h
+++ b/webrtc/api/mediastreamprovider.h
@@ -72,6 +72,9 @@ class AudioProviderInterface {
uint32_t ssrc,
const RtpParameters& parameters) = 0;
+ // Called when the first audio packet is received.
+ sigslot::signal0<> SignalFirstAudioPacketReceived;
+
protected:
virtual ~AudioProviderInterface() {}
};
@@ -102,6 +105,9 @@ class VideoProviderInterface {
uint32_t ssrc,
const RtpParameters& parameters) = 0;
+ // Called when the first video packet is received.
+ sigslot::signal0<> SignalFirstVideoPacketReceived;
+
protected:
virtual ~VideoProviderInterface() {}
};
« no previous file with comments | « no previous file | webrtc/api/peerconnection_unittest.cc » ('j') | webrtc/api/peerconnection_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698