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

Unified Diff: webrtc/modules/video_coding/video_receiver.cc

Issue 2996823002: Reland of quest keyframes more frequently on stream start/decoding error. (Closed)
Patch Set: Fix Created 3 years, 4 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/modules/video_coding/video_receiver.cc
diff --git a/webrtc/modules/video_coding/video_receiver.cc b/webrtc/modules/video_coding/video_receiver.cc
index 3d3e155dc3e1a6417cc5a255f5406603435a76a7..de6764f9b54e1cd23522f6d5837bf0242420dbad 100644
--- a/webrtc/modules/video_coding/video_receiver.cc
+++ b/webrtc/modules/video_coding/video_receiver.cc
@@ -320,24 +320,7 @@ int32_t VideoReceiver::Decode(const VCMEncodedFrame& frame) {
if (decoder == nullptr) {
return VCM_NO_CODEC_REGISTERED;
}
- // Decode a frame
- int32_t ret = decoder->Decode(frame, clock_->TimeInMilliseconds());
-
- // Check for failed decoding, run frame type request callback if needed.
tkchin_webrtc 2017/08/17 17:12:38 Removing the check for failed decoding causes an i
philipel 2017/08/18 08:38:19 This piece of logic was moved to the VideoRecevive
- bool request_key_frame = false;
- if (ret < 0) {
- request_key_frame = true;
- }
-
- if (!frame.Complete() || frame.MissingFrame()) {
- request_key_frame = true;
- ret = VCM_OK;
- }
- if (request_key_frame) {
- rtc::CritScope cs(&process_crit_);
- _scheduleKeyRequest = true;
- }
- return ret;
+ return decoder->Decode(frame, clock_->TimeInMilliseconds());
}
// Register possible receive codecs, can be called multiple times

Powered by Google App Engine
This is Rietveld 408576698