Make rtcp sender use max transfer unit.

Remove packet overhead from rtp sender as unused.

R=philipel, åsapersson

Review URL: https://codereview.webrtc.org/1827953002

Cr-Commit-Position: refs/heads/master@{#12165}
This commit is contained in:
danilchap
2016-03-30 11:11:51 -07:00
committed by Commit bot
parent 367bbbf76d
commit 41befcee7d
5 changed files with 30 additions and 26 deletions

View File

@ -132,6 +132,8 @@ class RTCPSender {
void SetTMMBRStatus(bool enable);
void SetMaxPayloadLength(size_t max_payload_length);
int32_t SetTMMBN(const TMMBRSet* boundingSet);
int32_t SetApplicationSpecificData(uint8_t subType,
@ -240,6 +242,7 @@ class RTCPSender {
TMMBRHelp tmmbr_help_ GUARDED_BY(critical_section_rtcp_sender_);
uint32_t tmmbr_send_ GUARDED_BY(critical_section_rtcp_sender_);
uint32_t packet_oh_send_ GUARDED_BY(critical_section_rtcp_sender_);
size_t max_payload_length_;
// APP
uint8_t app_sub_type_ GUARDED_BY(critical_section_rtcp_sender_);