blob: 1599b5d6c0b6c6d041a5166b9ceebd704683dd72 [file] [log] [blame]
/*
* libjingle
* Copyright 2011, Google Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "talk/session/phone/rtputils.h"
namespace cricket {
bool GetRtpPayloadType(const void* data, size_t len, int* value) {
if (!data || len < kMinRtpPacketLen || !value) return false;
*value = *(static_cast<const uint8*>(data) + 1) & 0x7F;
return true;
}
bool GetRtpSeqNum(const void* data, size_t len, int* value) {
if (!data || len < kMinRtpPacketLen || !value) return false;
*value = static_cast<int>(
talk_base::GetBE16(static_cast<const uint8*>(data) + 2));
return true;
}
bool GetRtpTimestamp(const void* data, size_t len, uint32* value) {
if (!data || len < kMinRtpPacketLen || !value) return false;
*value = talk_base::GetBE32(static_cast<const uint8*>(data) + 4);
return true;
}
bool GetRtpSsrc(const void* data, size_t len, uint32* value) {
if (!data || len < kMinRtpPacketLen || !value) return false;
*value = talk_base::GetBE32(static_cast<const uint8*>(data) + 8);
return true;
}
bool GetRtpHeaderLen(const void* data, size_t len, size_t* value) {
if (!data || len < kMinRtpPacketLen || !value) return false;
const uint8* header = static_cast<const uint8*>(data);
// Get base header size + length of CSRCs (not counting extension yet).
size_t header_size = kMinRtpPacketLen + (header[0] & 0xF) * sizeof(uint32);
if (len < header_size) return false;
// If there's an extension, read and add in the extension size.
if (header[0] & 0x10) {
if (len < header_size + sizeof(uint32)) return false;
header_size += ((talk_base::GetBE16(header + header_size + 2) + 1) *
sizeof(uint32));
if (len < header_size) return false;
}
*value = header_size;
return true;
}
bool GetRtcpType(const void* data, size_t len, int* value) {
if (!data || len < kMinRtcpPacketLen || !value) return false;
*value = static_cast<int>(*(static_cast<const uint8*>(data) + 1));
return true;
}
// This should be called only for SR or RR RTCP packets.
bool GetRtcpSsrc(const void* data, size_t len, uint32* value) {
// Packet should be at least of 8 bytes, to get SSRC from a RTCP packet.
if (!data || len < kMinRtcpPacketLen + 4 || !value) return false;
int pl_type;
if (!GetRtcpType(data, len, &pl_type)) return false;
if (pl_type == kRtcpTypeSR || pl_type == kRtcpTypeRR) {
*value = talk_base::GetBE32(static_cast<const uint8*>(data) + 4);
return true;
}
return false;
}
} // namespace cricket