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

Unified Diff: webrtc/video/video_receive_stream.cc

Issue 1964473002: Potential fix for rtx/red issue where red is removed only from the remote description. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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
Index: webrtc/video/video_receive_stream.cc
diff --git a/webrtc/video/video_receive_stream.cc b/webrtc/video/video_receive_stream.cc
index 6d29336c0032cfaf625c50074c43683e4443e454..19fcc6434572bf85590e022af3d30cdec7413fcb 100644
--- a/webrtc/video/video_receive_stream.cc
+++ b/webrtc/video/video_receive_stream.cc
@@ -176,7 +176,7 @@ VideoReceiveStream::VideoReceiveStream(
&rtp_stream_receiver_),
vie_sync_(&video_receiver_),
rtp_rtcp_(vie_channel_.rtp_rtcp()) {
- LOG(LS_INFO) << "VideoReceiveStream: " << config_.ToString();
+ LOG(LS_WARNING) << "VideoReceiveStream: " << config_.ToString();
RTC_DCHECK(process_thread_);
RTC_DCHECK(congestion_controller_);
@@ -443,5 +443,9 @@ void VideoReceiveStream::RequestKeyFrame() {
rtp_rtcp_->RequestKeyFrame();
}
+void VideoReceiveStream::DisableFec() {
+ rtp_stream_receiver_.DisableFec();
+}
+
} // namespace internal
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698