From e740b34c062951f553348163b676eaab885c0b02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Tue, 5 Jul 2022 13:54:41 +0200 Subject: [PATCH] Delete VideoFrame::transport_frame_id() (an alias for timestamp()) Bug: webrtc:10198 Change-Id: Iaf40bf2c0d4d2f1d6dd19b9c6ff81f28e2812490 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/267823 Reviewed-by: Magnus Jedvert Commit-Queue: Niels Moller Cr-Commit-Position: refs/heads/main@{#37541} --- api/video/video_frame.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/api/video/video_frame.h b/api/video/video_frame.h index 0299123a7a..086aad820f 100644 --- a/api/video/video_frame.h +++ b/api/video/video_frame.h @@ -172,10 +172,6 @@ class RTC_EXPORT VideoFrame { // Get frame timestamp (90kHz). uint32_t timestamp() const { return timestamp_rtp_; } - [[deprecated("Use timestamp()")]] uint32_t transport_frame_id() const { - return timestamp(); - } - // Set capture ntp time in milliseconds. void set_ntp_time_ms(int64_t ntp_time_ms) { ntp_time_ms_ = ntp_time_ms; }