diff --git a/api/video/encoded_frame.cc b/api/video/encoded_frame.cc index d36758d3b1..26a794ec02 100644 --- a/api/video/encoded_frame.cc +++ b/api/video/encoded_frame.cc @@ -13,10 +13,6 @@ namespace webrtc { namespace video_coding { -bool EncodedFrame::GetBitstream(uint8_t* destination) const { - return false; -} - bool EncodedFrame::delayed_by_retransmission() const { return 0; } diff --git a/api/video/encoded_frame.h b/api/video/encoded_frame.h index c5a00428ed..afef0391d0 100644 --- a/api/video/encoded_frame.h +++ b/api/video/encoded_frame.h @@ -59,10 +59,6 @@ class EncodedFrame : public webrtc::VCMEncodedFrame { EncodedFrame() = default; virtual ~EncodedFrame() {} - // TODO(nisse): Deprecated and unused. Delete method and default - // implementation as soon as downstream overrides are deleted. - virtual bool GetBitstream(uint8_t* destination) const; - // When this frame was received. virtual int64_t ReceivedTime() const = 0;