2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-01-24 17:16:59 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_UTILITY_H_
|
|
|
|
|
#define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_UTILITY_H_
|
|
|
|
|
|
|
|
|
|
#include <cstddef> // size_t, ptrdiff_t
|
|
|
|
|
|
|
|
|
|
#include "typedefs.h"
|
2011-12-16 14:31:37 +00:00
|
|
|
#include "rtp_header_extension.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
#include "rtp_rtcp_config.h"
|
|
|
|
|
#include "rtp_rtcp_defines.h"
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
enum RtpVideoCodecTypes
|
|
|
|
|
{
|
|
|
|
|
kRtpNoVideo = 0,
|
|
|
|
|
kRtpFecVideo = 10,
|
|
|
|
|
kRtpVp8Video = 11
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const WebRtc_UWord8 kRtpMarkerBitMask = 0x80;
|
|
|
|
|
|
|
|
|
|
namespace ModuleRTPUtility
|
|
|
|
|
{
|
2011-12-01 15:42:31 +00:00
|
|
|
// January 1970, in NTP seconds.
|
|
|
|
|
const uint32_t NTP_JAN_1970 = 2208988800UL;
|
|
|
|
|
|
|
|
|
|
// Magic NTP fractional unit.
|
|
|
|
|
const double NTP_FRAC = 4.294967296E+9;
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
struct AudioPayload
|
|
|
|
|
{
|
|
|
|
|
WebRtc_UWord32 frequency;
|
|
|
|
|
WebRtc_UWord8 channels;
|
|
|
|
|
WebRtc_UWord8 bitsPerSample;
|
|
|
|
|
WebRtc_UWord32 rate;
|
2012-02-08 10:22:21 +00:00
|
|
|
bool trueStereoCodec;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
|
|
|
|
struct VideoPayload
|
|
|
|
|
{
|
|
|
|
|
RtpVideoCodecTypes videoCodecType;
|
2011-11-02 23:14:58 +00:00
|
|
|
WebRtc_UWord32 maxRate;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
|
|
|
|
union PayloadUnion
|
|
|
|
|
{
|
|
|
|
|
AudioPayload Audio;
|
|
|
|
|
VideoPayload Video;
|
|
|
|
|
};
|
|
|
|
|
struct Payload
|
|
|
|
|
{
|
2012-01-24 17:16:59 +00:00
|
|
|
char name[RTP_PAYLOAD_NAME_SIZE];
|
|
|
|
|
bool audio;
|
2011-07-07 08:21:25 +00:00
|
|
|
PayloadUnion typeSpecific;
|
|
|
|
|
};
|
|
|
|
|
|
2011-12-01 15:42:31 +00:00
|
|
|
// Return a clock that reads the time as reported by the operating
|
|
|
|
|
// system. The returned instances are guaranteed to read the same
|
|
|
|
|
// times; in particular, they return relative times relative to
|
|
|
|
|
// the same base.
|
|
|
|
|
RtpRtcpClock* GetSystemClock();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-12-01 15:42:31 +00:00
|
|
|
// Return the current RTP timestamp from the NTP timestamp
|
|
|
|
|
// returned by the specified clock.
|
|
|
|
|
WebRtc_UWord32 GetCurrentRTP(RtpRtcpClock* clock, WebRtc_UWord32 freq);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-12-01 15:42:31 +00:00
|
|
|
// Return the current RTP absolute timestamp.
|
|
|
|
|
WebRtc_UWord32 ConvertNTPTimeToRTP(WebRtc_UWord32 NTPsec,
|
|
|
|
|
WebRtc_UWord32 NTPfrac,
|
|
|
|
|
WebRtc_UWord32 freq);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-12-01 15:42:31 +00:00
|
|
|
// Return the time in milliseconds corresponding to the specified
|
|
|
|
|
// NTP timestamp.
|
|
|
|
|
WebRtc_UWord32 ConvertNTPTimeToMS(WebRtc_UWord32 NTPsec,
|
|
|
|
|
WebRtc_UWord32 NTPfrac);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-12-01 15:42:31 +00:00
|
|
|
WebRtc_UWord32 pow2(WebRtc_UWord8 exp);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-12-16 17:21:09 +00:00
|
|
|
// Returns true if |newTimestamp| is older than |existingTimestamp|.
|
|
|
|
|
// |wrapped| will be set to true if there has been a wraparound between the
|
|
|
|
|
// two timestamps.
|
|
|
|
|
bool OldTimestamp(uint32_t newTimestamp,
|
|
|
|
|
uint32_t existingTimestamp,
|
|
|
|
|
bool* wrapped);
|
|
|
|
|
|
2012-01-24 17:16:59 +00:00
|
|
|
bool StringCompare(const char* str1,
|
|
|
|
|
const char* str2,
|
2011-12-16 17:21:09 +00:00
|
|
|
const WebRtc_UWord32 length);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
void AssignUWord32ToBuffer(WebRtc_UWord8* dataBuffer, WebRtc_UWord32 value);
|
|
|
|
|
void AssignUWord24ToBuffer(WebRtc_UWord8* dataBuffer, WebRtc_UWord32 value);
|
|
|
|
|
void AssignUWord16ToBuffer(WebRtc_UWord8* dataBuffer, WebRtc_UWord16 value);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Converts a network-ordered two-byte input buffer to a host-ordered value.
|
|
|
|
|
* \param[in] dataBuffer Network-ordered two-byte buffer to convert.
|
|
|
|
|
* \return Host-ordered value.
|
|
|
|
|
*/
|
|
|
|
|
WebRtc_UWord16 BufferToUWord16(const WebRtc_UWord8* dataBuffer);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Converts a network-ordered three-byte input buffer to a host-ordered value.
|
|
|
|
|
* \param[in] dataBuffer Network-ordered three-byte buffer to convert.
|
|
|
|
|
* \return Host-ordered value.
|
|
|
|
|
*/
|
|
|
|
|
WebRtc_UWord32 BufferToUWord24(const WebRtc_UWord8* dataBuffer);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Converts a network-ordered four-byte input buffer to a host-ordered value.
|
|
|
|
|
* \param[in] dataBuffer Network-ordered four-byte buffer to convert.
|
|
|
|
|
* \return Host-ordered value.
|
|
|
|
|
*/
|
|
|
|
|
WebRtc_UWord32 BufferToUWord32(const WebRtc_UWord8* dataBuffer);
|
|
|
|
|
|
|
|
|
|
class RTPHeaderParser
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
RTPHeaderParser(const WebRtc_UWord8* rtpData,
|
|
|
|
|
const WebRtc_UWord32 rtpDataLength);
|
|
|
|
|
~RTPHeaderParser();
|
|
|
|
|
|
2011-12-16 14:31:37 +00:00
|
|
|
bool RTCP() const;
|
|
|
|
|
bool Parse(WebRtcRTPHeader& parsedPacket,
|
|
|
|
|
RtpHeaderExtensionMap* ptrExtensionMap = NULL) const;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
private:
|
2011-12-16 14:31:37 +00:00
|
|
|
void ParseOneByteExtensionHeader(
|
|
|
|
|
WebRtcRTPHeader& parsedPacket,
|
|
|
|
|
const RtpHeaderExtensionMap* ptrExtensionMap,
|
|
|
|
|
const WebRtc_UWord8* ptrRTPDataExtensionEnd,
|
|
|
|
|
const WebRtc_UWord8* ptr) const;
|
|
|
|
|
|
|
|
|
|
WebRtc_UWord8 ParsePaddingBytes(
|
|
|
|
|
const WebRtc_UWord8* ptrRTPDataExtensionEnd,
|
|
|
|
|
const WebRtc_UWord8* ptr) const;
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
const WebRtc_UWord8* const _ptrRTPDataBegin;
|
|
|
|
|
const WebRtc_UWord8* const _ptrRTPDataEnd;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum FrameTypes
|
|
|
|
|
{
|
|
|
|
|
kIFrame, // key frame
|
|
|
|
|
kPFrame // Delta frame
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct RTPPayloadVP8
|
|
|
|
|
{
|
|
|
|
|
bool nonReferenceFrame;
|
2011-08-29 15:37:12 +00:00
|
|
|
bool beginningOfPartition;
|
|
|
|
|
int partitionID;
|
2011-07-07 08:21:25 +00:00
|
|
|
bool hasPictureID;
|
2011-08-29 15:37:12 +00:00
|
|
|
bool hasTl0PicIdx;
|
|
|
|
|
bool hasTID;
|
2011-11-24 12:52:40 +00:00
|
|
|
bool hasKeyIdx;
|
2011-08-29 15:37:12 +00:00
|
|
|
int pictureID;
|
|
|
|
|
int tl0PicIdx;
|
|
|
|
|
int tID;
|
2011-12-13 14:11:06 +00:00
|
|
|
bool layerSync;
|
2011-11-24 12:52:40 +00:00
|
|
|
int keyIdx;
|
2011-11-02 23:14:58 +00:00
|
|
|
int frameWidth;
|
|
|
|
|
int frameHeight;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-11-02 23:14:58 +00:00
|
|
|
const WebRtc_UWord8* data;
|
2011-07-07 08:21:25 +00:00
|
|
|
WebRtc_UWord16 dataLength;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
union RTPPayloadUnion
|
|
|
|
|
{
|
|
|
|
|
RTPPayloadVP8 VP8;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct RTPPayload
|
|
|
|
|
{
|
|
|
|
|
void SetType(RtpVideoCodecTypes videoType);
|
|
|
|
|
|
|
|
|
|
RtpVideoCodecTypes type;
|
|
|
|
|
FrameTypes frameType;
|
|
|
|
|
RTPPayloadUnion info;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// RTP payload parser
|
|
|
|
|
class RTPPayloadParser
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
RTPPayloadParser(const RtpVideoCodecTypes payloadType,
|
|
|
|
|
const WebRtc_UWord8* payloadData,
|
2011-08-29 15:37:12 +00:00
|
|
|
const WebRtc_UWord16 payloadDataLength, // Length w/o padding.
|
|
|
|
|
const WebRtc_Word32 id);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
~RTPPayloadParser();
|
|
|
|
|
|
|
|
|
|
bool Parse(RTPPayload& parsedPacket) const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool ParseGeneric(RTPPayload& parsedPacket) const;
|
|
|
|
|
|
|
|
|
|
bool ParseVP8(RTPPayload& parsedPacket) const;
|
|
|
|
|
|
2011-08-29 15:37:12 +00:00
|
|
|
int ParseVP8Extension(RTPPayloadVP8 *vp8,
|
|
|
|
|
const WebRtc_UWord8 *dataPtr,
|
|
|
|
|
int dataLength) const;
|
|
|
|
|
|
|
|
|
|
int ParseVP8PictureID(RTPPayloadVP8 *vp8,
|
|
|
|
|
const WebRtc_UWord8 **dataPtr,
|
|
|
|
|
int *dataLength,
|
|
|
|
|
int *parsedBytes) const;
|
|
|
|
|
|
|
|
|
|
int ParseVP8Tl0PicIdx(RTPPayloadVP8 *vp8,
|
|
|
|
|
const WebRtc_UWord8 **dataPtr,
|
|
|
|
|
int *dataLength,
|
|
|
|
|
int *parsedBytes) const;
|
|
|
|
|
|
2011-11-24 12:52:40 +00:00
|
|
|
int ParseVP8TIDAndKeyIdx(RTPPayloadVP8 *vp8,
|
|
|
|
|
const WebRtc_UWord8 **dataPtr,
|
|
|
|
|
int *dataLength,
|
|
|
|
|
int *parsedBytes) const;
|
2011-08-29 15:37:12 +00:00
|
|
|
|
2011-11-02 23:14:58 +00:00
|
|
|
int ParseVP8FrameSize(RTPPayload& parsedPacket,
|
|
|
|
|
const WebRtc_UWord8 *dataPtr,
|
|
|
|
|
int dataLength) const;
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
private:
|
2011-08-29 15:37:12 +00:00
|
|
|
WebRtc_Word32 _id;
|
2011-07-07 08:21:25 +00:00
|
|
|
const WebRtc_UWord8* _dataPtr;
|
|
|
|
|
const WebRtc_UWord16 _dataLength;
|
|
|
|
|
const RtpVideoCodecTypes _videoType;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
|
|
|
|
#endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_UTILITY_H_
|