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:
committed by
Commit Bot
parent
af3fdc069d
commit
9d281028c7
@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user