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 <magjed@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#37541}
This commit is contained in:
Niels Möller 2022-07-05 13:54:41 +02:00 committed by WebRTC LUCI CQ
parent ae65b0e0d9
commit e740b34c06

View File

@ -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; }