Index: webrtc/modules/rtp_rtcp/source/rtcp_packet.h |
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet.h |
index 2956bc7beabe5c4fbb14fdb345ea77c5bd456544..4b6795cd0da6b4dc056aced615ec904ca54f3909 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtcp_packet.h |
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet.h |
@@ -319,51 +319,6 @@ class ReceiverReport : public RtcpPacket { |
RTC_DISALLOW_COPY_AND_ASSIGN(ReceiverReport); |
}; |
-// Transmission Time Offsets in RTP Streams (RFC 5450). |
-// |
-// 0 1 2 3 |
-// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 |
-// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
-// hdr |V=2|P| RC | PT=IJ=195 | length | |
-// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
-// | inter-arrival jitter | |
-// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
-// . . |
-// . . |
-// . . |
-// | inter-arrival jitter | |
-// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
-// |
-// If present, this RTCP packet must be placed after a receiver report |
-// (inside a compound RTCP packet), and MUST have the same value for RC |
-// (reception report count) as the receiver report. |
- |
-class Ij : public RtcpPacket { |
- public: |
- Ij() : RtcpPacket() {} |
- |
- virtual ~Ij() {} |
- |
- bool WithJitterItem(uint32_t jitter); |
- |
- protected: |
- bool Create(uint8_t* packet, |
- size_t* index, |
- size_t max_length, |
- RtcpPacket::PacketReadyCallback* callback) const override; |
- |
- private: |
- static const int kMaxNumberOfIjItems = 0x1f; |
- |
- size_t BlockLength() const { |
- return kHeaderLength + 4 * ij_items_.size(); |
- } |
- |
- std::vector<uint32_t> ij_items_; |
- |
- RTC_DISALLOW_COPY_AND_ASSIGN(Ij); |
-}; |
- |
// Source Description (SDES) (RFC 3550). |
// |
// 0 1 2 3 |