diff --git a/api/video/video_frame.h b/api/video/video_frame.h index 656c2ee27e..d50c2d3aa6 100644 --- a/api/video/video_frame.h +++ b/api/video/video_frame.h @@ -193,13 +193,9 @@ class RTC_EXPORT VideoFrame { void set_rtp_timestamp(uint32_t rtp_timestamp) { timestamp_rtp_ = rtp_timestamp; } - // TODO(https://bugs.webrtc.org/13756): Deprecate and use set_rtp_timestamp. - void set_timestamp(uint32_t timestamp) { timestamp_rtp_ = timestamp; } // Get frame timestamp (90kHz). uint32_t rtp_timestamp() const { return timestamp_rtp_; } - // TODO(https://bugs.webrtc.org/13756): Deprecate and use rtp_timestamp. - uint32_t timestamp() const { return timestamp_rtp_; } // Set capture ntp time in milliseconds. void set_ntp_time_ms(int64_t ntp_time_ms) { ntp_time_ms_ = ntp_time_ms; } @@ -231,14 +227,6 @@ class RTC_EXPORT VideoFrame { render_parameters_ = render_parameters; } - // Deprecated in favor of render_parameters, will be removed once Chromium is - // updated. max_composition_delay_in_frames() is used in an experiment of a - // low-latency renderer algorithm see crbug.com/1138888. - [[deprecated("Use render_parameters() instead.")]] absl::optional - max_composition_delay_in_frames() const { - return render_parameters_.max_composition_delay_in_frames; - } - // Get render time in milliseconds. int64_t render_time_ms() const;