Fix issue where padding is sent before media with undefined timestamps if not abs-send-time is enabled.
This broke bandwidth estimation for calls without abs-send-time is enabled, but where RTX was. BUG= R=pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/16929004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6719 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -387,6 +387,7 @@ class RTPSender : public RTPSenderInterface, public Bitrate::Observer {
|
||||
uint32_t timestamp_ GUARDED_BY(send_critsect_);
|
||||
int64_t capture_time_ms_ GUARDED_BY(send_critsect_);
|
||||
int64_t last_timestamp_time_ms_ GUARDED_BY(send_critsect_);
|
||||
bool media_has_been_sent_ GUARDED_BY(send_critsect_);
|
||||
bool last_packet_marker_bit_ GUARDED_BY(send_critsect_);
|
||||
uint8_t num_csrcs_ GUARDED_BY(send_critsect_);
|
||||
uint32_t csrcs_[kRtpCsrcSize] GUARDED_BY(send_critsect_);
|
||||
|
||||
Reference in New Issue
Block a user