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

Unified Diff: webrtc/video/video_receive_stream.cc

Issue 2390823009: Add path for recovered packets from internal::Call to RtpStreamReceiver. (Closed)
Patch Set: holmer@ feedback 1. Created 4 years, 2 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 | « webrtc/video/video_receive_stream.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/video_receive_stream.cc
diff --git a/webrtc/video/video_receive_stream.cc b/webrtc/video/video_receive_stream.cc
index 2b4a3c2b7b0f131a662255a33af24f69dfc4c0aa..a9dee57926618779fe75a04e40193b197a4cb10b 100644
--- a/webrtc/video/video_receive_stream.cc
+++ b/webrtc/video/video_receive_stream.cc
@@ -272,6 +272,11 @@ bool VideoReceiveStream::DeliverRtp(const uint8_t* packet,
return rtp_stream_receiver_.DeliverRtp(packet, length, packet_time);
}
+bool VideoReceiveStream::OnRecoveredPacket(const uint8_t* packet,
+ size_t length) {
+ return rtp_stream_receiver_.OnRecoveredPacket(packet, length);
+}
+
void VideoReceiveStream::Start() {
if (decode_thread_.IsRunning())
return;
« no previous file with comments | « webrtc/video/video_receive_stream.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698