aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppRtcpPacket.h
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2015-08-26 11:10:42 +0200
committerJeremy Lainé <jeremy.laine@m4x.org>2015-08-26 11:10:42 +0200
commitb817f5f29ab27ad3920c06e8808225cf4c17e022 (patch)
treedd5850d63582fb3c0fafbac85f456c789af1757b /src/base/QXmppRtcpPacket.h
parent4b6e41029da81b5bb096ff66e4c1225355057d88 (diff)
downloadqxmpp-b817f5f29ab27ad3920c06e8808225cf4c17e022.tar.gz
RTCP: start decoding receiver reports
Diffstat (limited to 'src/base/QXmppRtcpPacket.h')
-rw-r--r--src/base/QXmppRtcpPacket.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/base/QXmppRtcpPacket.h b/src/base/QXmppRtcpPacket.h
index 9e682369..7e516579 100644
--- a/src/base/QXmppRtcpPacket.h
+++ b/src/base/QXmppRtcpPacket.h
@@ -59,9 +59,6 @@ public:
bool read(QDataStream &stream);
void write(QDataStream &stream) const;
- quint8 type() const;
- void setType(quint8 type);
-
QList<QXmppRtcpReceiverReport> receiverReports() const;
void setReceiverReports(const QList<QXmppRtcpReceiverReport> &reports);
@@ -71,6 +68,12 @@ public:
QList<QXmppRtcpSourceDescription> sourceDescriptions() const;
void setSourceDescriptions(const QList<QXmppRtcpSourceDescription> &descriptions);
+ quint32 ssrc() const;
+ void setSsrc(quint32 ssrc);
+
+ quint8 type() const;
+ void setType(quint8 type);
+
private:
QSharedDataPointer<QXmppRtcpPacketPrivate> d;
};
@@ -103,9 +106,6 @@ public:
quint32 rtpStamp() const;
void setRtpStamp(quint32 rtpStamp);
- quint32 ssrc() const;
- void setSsrc(quint32 ssrc);
-
quint32 octetCount() const;
void setOctetCount(quint32 count);