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

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

Issue 2405173006: Remove deprected functions from EncodedImageCallback and RtpRtcp (Closed)
Patch Set: android,ios 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
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 8b615244d3d6fdc29ff05d1c7b7a35f273f126c4..475f686d23d143503edf5fb0d24c27b8d65e6e3c 100644
--- a/webrtc/modules/video_coding/video_receiver.cc
+++ b/webrtc/modules/video_coding/video_receiver.cc
@@ -270,8 +270,8 @@ int32_t VideoReceiver::Decode(uint16_t maxWaitTimeMs) {
if (qp_parser_.GetQp(*frame, &qp)) {
encoded_image.qp_ = qp;
}
- pre_decode_image_callback_->Encoded(encoded_image, frame->CodecSpecific(),
- nullptr);
+ pre_decode_image_callback_->OnEncodedImage(encoded_image,
+ frame->CodecSpecific(), nullptr);
}
rtc::CritScope cs(&receive_crit_);

Powered by Google App Engine
This is Rietveld 408576698