diff options
author | mallinath@chromium.org <mallinath@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-12 17:59:44 +0000 |
---|---|---|
committer | mallinath@chromium.org <mallinath@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-12 17:59:44 +0000 |
commit | ecdb463c565f27ea68b7e9dd71f6ddbdb65ced7a (patch) | |
tree | cb01b5971d7ed5527002f5b1dffd0b5f146723cd /content/browser/renderer_host/p2p/socket_host.h | |
parent | a96f4c5795e7cf0d2778a3d77316614de6fcba69 (diff) | |
download | chromium_src-ecdb463c565f27ea68b7e9dd71f6ddbdb65ced7a.zip chromium_src-ecdb463c565f27ea68b7e9dd71f6ddbdb65ced7a.tar.gz chromium_src-ecdb463c565f27ea68b7e9dd71f6ddbdb65ced7a.tar.bz2 |
This CL adds methods to manipulate RTP header extension, particularly
AbsoulteSendTime extension. If there is matching extension ID present
in RTP packet, we will update with the current time.
R=solenberg@chromium.org, juberti@chromium.org, sergeyu@chromium.org
BUG=
Review URL: https://codereview.chromium.org/159353002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256580 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/renderer_host/p2p/socket_host.h')
-rw-r--r-- | content/browser/renderer_host/p2p/socket_host.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/content/browser/renderer_host/p2p/socket_host.h b/content/browser/renderer_host/p2p/socket_host.h index d4ff1da..a4c82f3 100644 --- a/content/browser/renderer_host/p2p/socket_host.h +++ b/content/browser/renderer_host/p2p/socket_host.h @@ -25,6 +25,28 @@ struct PacketOptions; namespace content { class P2PMessageThrottler; +namespace packet_processing_helpers { + +// This method can handle only RTP packet, otherwise this method must not be +// called. It will try to do, 1. update absolute send time extension header +// if present with current time and 2. update HMAC in RTP packet. +// If abs_send_time is 0, ApplyPacketOption will get current time from system. +CONTENT_EXPORT bool ApplyPacketOptions(char* data, int length, + const talk_base::PacketOptions& options, + uint32 abs_send_time); + +// Helper method which finds RTP ofset and length if the packet is encapsulated +// in a TURN Channel Message or TURN Send Indication message. +CONTENT_EXPORT bool GetRtpPacketStartPositionAndLength(char* data, int length, + int* rtp_start_pos, + int* rtp_packet_length); +// Helper method which updates absoulute send time extension if present. +CONTENT_EXPORT bool UpdateRtpAbsSendTimeExtn(char* rtp, int length, + int extension_id, + uint32 abs_send_time); + +} // packet_processing_helpers + // Base class for P2P sockets. class CONTENT_EXPORT P2PSocketHost { public: |