| Index: webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h b/webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h
|
| index ad749ffb61ec4f422ae9b04acd2698bc9862a8dd..f9faf94ca2ffcc1eca14301611497baadaa4bd07 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h
|
| @@ -25,8 +25,12 @@ class RtpPacketToSend : public rtp::Packet {
|
| int64_t capture_time_ms() const { return capture_time_ms_; }
|
| void set_capture_time_ms(int64_t time) { capture_time_ms_ = time; }
|
|
|
| + int64_t send_time_ms() const { return send_time_ms_; }
|
| + void set_send_time_ms(int64_t time) { send_time_ms_ = time; }
|
| +
|
| private:
|
| int64_t capture_time_ms_ = 0;
|
| + int64_t send_time_ms_ = 0;
|
| };
|
|
|
| } // namespace webrtc
|
|
|