Remove deprecated method

Bug: None
Change-Id: Ia390e05e3bb462e0e79bf3ff7fae6cba891e73ca
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/154262
Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org>
Commit-Queue: Johannes Kron <kron@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29285}
This commit is contained in:
Johannes Kron
2019-09-24 11:01:51 +02:00
committed by Commit Bot
parent af3fdc069d
commit 9d281028c7

View File

@ -51,21 +51,10 @@ enum VCMVideoProtection {
// rendered.
class VCMReceiveCallback {
public:
// TODO(kron): Remove once downstream projects are updated.
virtual int32_t FrameToRender(VideoFrame& videoFrame, // NOLINT
absl::optional<uint8_t> qp,
VideoContentType content_type) {
// Cannot be pure virtual since this should be removed from derived
// classes.
return FrameToRender(videoFrame, qp, 0, content_type);
}
virtual int32_t FrameToRender(VideoFrame& videoFrame, // NOLINT
absl::optional<uint8_t> qp,
int32_t decode_time_ms,
VideoContentType content_type) {
return FrameToRender(videoFrame, qp, content_type);
}
VideoContentType content_type) = 0;
virtual void OnDroppedFrames(uint32_t frames_dropped);