Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: webrtc/modules/rtp_rtcp/source/rtcp_packet.cc

Issue 1439553003: [rtp_rtcp] rtcp::Sdes cleaned and got Parse function (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/rtp_rtcp/source/rtcp_packet.cc
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet.cc b/webrtc/modules/rtp_rtcp/source/rtcp_packet.cc
index 792caa7b8b701f96886ab3c529ed94c1150510ca..8e466b7ea8dae9dc6170645fd47328c6a5991da1 100644
--- a/webrtc/modules/rtp_rtcp/source/rtcp_packet.cc
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet.cc
@@ -191,48 +191,6 @@ void CreateIj(const std::vector<uint32_t>& ij_items,
AssignUWord32(buffer, pos, item);
}
-// Source Description (SDES) (RFC 3550).
-//
-// 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
-// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-// header |V=2|P| SC | PT=SDES=202 | length |
-// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
-// chunk | SSRC/CSRC_1 |
-// 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-// | SDES items |
-// | ... |
-// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
-// chunk | SSRC/CSRC_2 |
-// 2 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-// | SDES items |
-// | ... |
-// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
-//
-// Canonical End-Point Identifier SDES Item (CNAME)
-//
-// 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
-// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-// | CNAME=1 | length | user and domain name ...
-// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
-
-void CreateSdes(const std::vector<Sdes::Chunk>& chunks,
- uint8_t* buffer,
- size_t* pos) {
- const uint8_t kSdesItemType = 1;
- for (std::vector<Sdes::Chunk>::const_iterator it = chunks.begin();
- it != chunks.end(); ++it) {
- AssignUWord32(buffer, pos, (*it).ssrc);
- AssignUWord8(buffer, pos, kSdesItemType);
- AssignUWord8(buffer, pos, (*it).name.length());
- memcpy(buffer + *pos, (*it).name.data(), (*it).name.length());
- *pos += (*it).name.length();
- memset(buffer + *pos, 0, (*it).null_octets);
- *pos += (*it).null_octets;
- }
-}
-
// Bye packet (BYE) (RFC 3550).
//
// 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
@@ -833,49 +791,6 @@ bool Ij::WithJitterItem(uint32_t jitter) {
return true;
}
-bool Sdes::Create(uint8_t* packet,
- size_t* index,
- size_t max_length,
- RtcpPacket::PacketReadyCallback* callback) const {
- assert(!chunks_.empty());
- while (*index + BlockLength() > max_length) {
- if (!OnBufferFull(packet, index, callback))
- return false;
- }
- CreateHeader(chunks_.size(), PT_SDES, HeaderLength(), packet, index);
- CreateSdes(chunks_, packet, index);
- return true;
-}
-
-bool Sdes::WithCName(uint32_t ssrc, const std::string& cname) {
- assert(cname.length() <= 0xff);
- if (chunks_.size() >= kMaxNumberOfChunks) {
- LOG(LS_WARNING) << "Max SDES chunks reached.";
- return false;
- }
- // In each chunk, the list of items must be terminated by one or more null
- // octets. The next chunk must start on a 32-bit boundary.
- // CNAME (1 byte) | length (1 byte) | name | padding.
- int null_octets = 4 - ((2 + cname.length()) % 4);
- Chunk chunk;
- chunk.ssrc = ssrc;
- chunk.name = cname;
- chunk.null_octets = null_octets;
- chunks_.push_back(chunk);
- return true;
-}
-
-size_t Sdes::BlockLength() const {
- // Header (4 bytes).
- // Chunk:
- // SSRC/CSRC (4 bytes) | CNAME (1 byte) | length (1 byte) | name | padding.
- size_t length = kHeaderLength;
- for (const Chunk& chunk : chunks_)
- length += 6 + chunk.name.length() + chunk.null_octets;
- assert(length % 4 == 0);
- return length;
-}
-
bool Bye::Create(uint8_t* packet,
size_t* index,
size_t max_length,

Powered by Google App Engine
This is Rietveld 408576698