diff --git a/modules/rtp_rtcp/source/rtp_format.h b/modules/rtp_rtcp/source/rtp_format.h index 1d9c1429a8..2acf319bba 100644 --- a/modules/rtp_rtcp/source/rtp_format.h +++ b/modules/rtp_rtcp/source/rtp_format.h @@ -71,12 +71,6 @@ class RtpDepacketizer { RTPVideoHeader& video_header() { return video; } const RTPVideoHeader& video_header() const { return video; } - // TODO(bugs.webrtc.org/10397): These are temporary accessors, to enable - // move of the frame_type member to inside RTPVideoHeader, without breaking - // downstream code. - VideoFrameType FrameType() const { return video_header().frame_type; } - void SetFrameType(VideoFrameType type) { video_header().frame_type = type; } - RTPVideoHeader video; const uint8_t* payload;