summaryrefslogtreecommitdiff
path: root/qrtplib/rtcpbyepacket.h
diff options
context:
space:
mode:
authorf4exb <f4exb06@gmail.com>2018-02-28 13:31:44 +0100
committerf4exb <f4exb06@gmail.com>2018-02-28 13:31:44 +0100
commitf678c049f9f2dd8ca1424af71e214fa256927771 (patch)
tree510e6ab00dc8b8f38e7b52873b5df7bb0da117aa /qrtplib/rtcpbyepacket.h
parent9bcabb708d6c71ff2cb776122336833ce3f70425 (diff)
qrtplib: replaced size_t by std::size_t
Diffstat (limited to 'qrtplib/rtcpbyepacket.h')
-rw-r--r--qrtplib/rtcpbyepacket.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/qrtplib/rtcpbyepacket.h b/qrtplib/rtcpbyepacket.h
index 6619af851..993d40df4 100644
--- a/qrtplib/rtcpbyepacket.h
+++ b/qrtplib/rtcpbyepacket.h
@@ -57,7 +57,7 @@ public:
* is referenced inside the class (no copy of the data is made) one must make sure that the memory it
* points to is valid as long as the class instance exists.
*/
- RTCPBYEPacket(uint8_t *data, size_t datalen);
+ RTCPBYEPacket(uint8_t *data, std::size_t datalen);
~RTCPBYEPacket()
{
}
@@ -74,14 +74,14 @@ public:
bool HasReasonForLeaving() const;
/** Returns the length of the string which describes why the source(s) left. */
- size_t GetReasonLength() const;
+ std::size_t GetReasonLength() const;
/** Returns the actual reason for leaving data. */
uint8_t *GetReasonData();
private:
RTPEndian m_endian;
- size_t reasonoffset;
+ std::size_t reasonoffset;
};
inline int RTCPBYEPacket::GetSSRCCount() const
@@ -110,14 +110,14 @@ inline bool RTCPBYEPacket::HasReasonForLeaving() const
return true;
}
-inline size_t RTCPBYEPacket::GetReasonLength() const
+inline std::size_t RTCPBYEPacket::GetReasonLength() const
{
if (!knownformat)
return 0;
if (reasonoffset == 0)
return 0;
uint8_t *reasonlen = (data + reasonoffset);
- return (size_t)(*reasonlen);
+ return (std::size_t)(*reasonlen);
}
inline uint8_t *RTCPBYEPacket::GetReasonData()