2013-07-10 00:45:36 +00:00
|
|
|
/*
|
2016-02-07 20:46:45 -08:00
|
|
|
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
2013-07-10 00:45:36 +00:00
|
|
|
*
|
2016-02-07 20:46:45 -08: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.
|
2013-07-10 00:45:36 +00:00
|
|
|
*/
|
|
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "media/base/stream_params.h"
|
2013-07-10 00:45:36 +00:00
|
|
|
|
2018-11-28 16:47:49 +01:00
|
|
|
#include <stdint.h>
|
2018-12-11 15:30:11 -08:00
|
|
|
#include <algorithm>
|
2013-12-05 00:24:06 +00:00
|
|
|
#include <list>
|
2013-07-10 00:45:36 +00:00
|
|
|
|
2018-11-28 16:47:49 +01:00
|
|
|
#include "api/array_view.h"
|
2018-05-03 11:45:33 +02:00
|
|
|
#include "rtc_base/strings/string_builder.h"
|
2018-02-26 17:20:29 -08:00
|
|
|
|
2015-01-22 23:00:41 +00:00
|
|
|
namespace cricket {
|
2014-12-16 21:09:08 +00:00
|
|
|
namespace {
|
|
|
|
|
// NOTE: There is no check here for duplicate streams, so check before
|
|
|
|
|
// adding.
|
2015-01-22 23:00:41 +00:00
|
|
|
void AddStream(std::vector<StreamParams>* streams, const StreamParams& stream) {
|
2014-12-16 21:09:08 +00:00
|
|
|
streams->push_back(stream);
|
|
|
|
|
}
|
2018-12-11 15:30:11 -08:00
|
|
|
|
|
|
|
|
std::string SsrcsToString(const std::vector<uint32_t>& ssrcs) {
|
|
|
|
|
char buf[1024];
|
|
|
|
|
rtc::SimpleStringBuilder sb(buf);
|
|
|
|
|
sb << "ssrcs:[";
|
|
|
|
|
for (std::vector<uint32_t>::const_iterator it = ssrcs.begin();
|
|
|
|
|
it != ssrcs.end(); ++it) {
|
|
|
|
|
if (it != ssrcs.begin()) {
|
|
|
|
|
sb << ",";
|
|
|
|
|
}
|
|
|
|
|
sb << *it;
|
|
|
|
|
}
|
|
|
|
|
sb << "]";
|
|
|
|
|
return sb.str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string RidsToString(const std::vector<RidDescription>& rids) {
|
|
|
|
|
char buf[1024];
|
|
|
|
|
rtc::SimpleStringBuilder sb(buf);
|
|
|
|
|
sb << "rids:[";
|
|
|
|
|
const char* delimiter = "";
|
|
|
|
|
for (const RidDescription& rid : rids) {
|
|
|
|
|
sb << delimiter << rid.rid;
|
|
|
|
|
delimiter = ",";
|
|
|
|
|
}
|
|
|
|
|
sb << "]";
|
|
|
|
|
return sb.str();
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-16 21:09:08 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
const char kFecSsrcGroupSemantics[] = "FEC";
|
2016-11-22 00:59:48 -08:00
|
|
|
const char kFecFrSsrcGroupSemantics[] = "FEC-FR";
|
2013-07-10 00:45:36 +00:00
|
|
|
const char kFidSsrcGroupSemantics[] = "FID";
|
2013-10-30 05:18:12 +00:00
|
|
|
const char kSimSsrcGroupSemantics[] = "SIM";
|
2013-07-10 00:45:36 +00:00
|
|
|
|
2015-01-22 23:00:41 +00:00
|
|
|
bool GetStream(const StreamParamsVec& streams,
|
|
|
|
|
const StreamSelector& selector,
|
|
|
|
|
StreamParams* stream_out) {
|
|
|
|
|
const StreamParams* found = GetStream(streams, selector);
|
|
|
|
|
if (found && stream_out)
|
|
|
|
|
*stream_out = *found;
|
|
|
|
|
return found != nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-09 14:24:52 +02:00
|
|
|
MediaStreams::MediaStreams() = default;
|
|
|
|
|
MediaStreams::~MediaStreams() = default;
|
|
|
|
|
|
2014-12-16 21:09:08 +00:00
|
|
|
bool MediaStreams::GetAudioStream(const StreamSelector& selector,
|
|
|
|
|
StreamParams* stream) {
|
|
|
|
|
return GetStream(audio_, selector, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MediaStreams::GetVideoStream(const StreamSelector& selector,
|
|
|
|
|
StreamParams* stream) {
|
|
|
|
|
return GetStream(video_, selector, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MediaStreams::GetDataStream(const StreamSelector& selector,
|
|
|
|
|
StreamParams* stream) {
|
|
|
|
|
return GetStream(data_, selector, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MediaStreams::CopyFrom(const MediaStreams& streams) {
|
|
|
|
|
audio_ = streams.audio_;
|
|
|
|
|
video_ = streams.video_;
|
|
|
|
|
data_ = streams.data_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MediaStreams::AddAudioStream(const StreamParams& stream) {
|
|
|
|
|
AddStream(&audio_, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MediaStreams::AddVideoStream(const StreamParams& stream) {
|
|
|
|
|
AddStream(&video_, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MediaStreams::AddDataStream(const StreamParams& stream) {
|
|
|
|
|
AddStream(&data_, stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MediaStreams::RemoveAudioStream(const StreamSelector& selector) {
|
|
|
|
|
return RemoveStream(&audio_, selector);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MediaStreams::RemoveVideoStream(const StreamSelector& selector) {
|
|
|
|
|
return RemoveStream(&video_, selector);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MediaStreams::RemoveDataStream(const StreamSelector& selector) {
|
|
|
|
|
return RemoveStream(&data_, selector);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-09 14:24:52 +02:00
|
|
|
SsrcGroup::SsrcGroup(const std::string& usage,
|
|
|
|
|
const std::vector<uint32_t>& ssrcs)
|
|
|
|
|
: semantics(usage), ssrcs(ssrcs) {}
|
|
|
|
|
SsrcGroup::SsrcGroup(const SsrcGroup&) = default;
|
|
|
|
|
SsrcGroup::SsrcGroup(SsrcGroup&&) = default;
|
|
|
|
|
SsrcGroup::~SsrcGroup() = default;
|
|
|
|
|
|
|
|
|
|
SsrcGroup& SsrcGroup::operator=(const SsrcGroup&) = default;
|
|
|
|
|
SsrcGroup& SsrcGroup::operator=(SsrcGroup&&) = default;
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
bool SsrcGroup::has_semantics(const std::string& semantics_in) const {
|
|
|
|
|
return (semantics == semantics_in && ssrcs.size() > 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string SsrcGroup::ToString() const {
|
2018-05-03 11:45:33 +02:00
|
|
|
char buf[1024];
|
|
|
|
|
rtc::SimpleStringBuilder sb(buf);
|
|
|
|
|
sb << "{";
|
|
|
|
|
sb << "semantics:" << semantics << ";";
|
|
|
|
|
sb << SsrcsToString(ssrcs);
|
|
|
|
|
sb << "}";
|
|
|
|
|
return sb.str();
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
|
|
|
|
|
2018-04-09 14:24:52 +02:00
|
|
|
StreamParams::StreamParams() = default;
|
|
|
|
|
StreamParams::StreamParams(const StreamParams&) = default;
|
|
|
|
|
StreamParams::StreamParams(StreamParams&&) = default;
|
|
|
|
|
StreamParams::~StreamParams() = default;
|
|
|
|
|
StreamParams& StreamParams::operator=(const StreamParams&) = default;
|
|
|
|
|
StreamParams& StreamParams::operator=(StreamParams&&) = default;
|
|
|
|
|
|
2018-12-11 15:30:11 -08:00
|
|
|
bool StreamParams::operator==(const StreamParams& other) const {
|
|
|
|
|
return (groupid == other.groupid && id == other.id && ssrcs == other.ssrcs &&
|
|
|
|
|
ssrc_groups == other.ssrc_groups && cname == other.cname &&
|
|
|
|
|
stream_ids_ == other.stream_ids_ &&
|
|
|
|
|
// RIDs are not required to be in the same order for equality.
|
|
|
|
|
rids_.size() == other.rids_.size() &&
|
|
|
|
|
std::is_permutation(rids_.begin(), rids_.end(), other.rids_.begin()));
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
std::string StreamParams::ToString() const {
|
2018-05-03 11:45:33 +02:00
|
|
|
char buf[2 * 1024];
|
|
|
|
|
rtc::SimpleStringBuilder sb(buf);
|
|
|
|
|
sb << "{";
|
2013-07-10 00:45:36 +00:00
|
|
|
if (!groupid.empty()) {
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << "groupid:" << groupid << ";";
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
|
|
|
|
if (!id.empty()) {
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << "id:" << id << ";";
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << SsrcsToString(ssrcs) << ";";
|
|
|
|
|
sb << "ssrc_groups:";
|
2013-07-10 00:45:36 +00:00
|
|
|
for (std::vector<SsrcGroup>::const_iterator it = ssrc_groups.begin();
|
|
|
|
|
it != ssrc_groups.end(); ++it) {
|
|
|
|
|
if (it != ssrc_groups.begin()) {
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << ",";
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << it->ToString();
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << ";";
|
2013-07-10 00:45:36 +00:00
|
|
|
if (!cname.empty()) {
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << "cname:" << cname << ";";
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << "stream_ids:";
|
2018-04-02 16:31:36 -07:00
|
|
|
for (std::vector<std::string>::const_iterator it = stream_ids_.begin();
|
|
|
|
|
it != stream_ids_.end(); ++it) {
|
|
|
|
|
if (it != stream_ids_.begin()) {
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << ",";
|
2018-04-02 16:31:36 -07:00
|
|
|
}
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << *it;
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << ";";
|
2018-12-11 15:30:11 -08:00
|
|
|
if (!rids_.empty()) {
|
|
|
|
|
sb << RidsToString(rids_) << ";";
|
|
|
|
|
}
|
2018-05-03 11:45:33 +02:00
|
|
|
sb << "}";
|
|
|
|
|
return sb.str();
|
2013-07-10 00:45:36 +00:00
|
|
|
}
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
void StreamParams::GetPrimarySsrcs(std::vector<uint32_t>* ssrcs) const {
|
2014-07-17 08:51:46 +00:00
|
|
|
const SsrcGroup* sim_group = get_ssrc_group(kSimSsrcGroupSemantics);
|
|
|
|
|
if (sim_group == NULL) {
|
|
|
|
|
ssrcs->push_back(first_ssrc());
|
|
|
|
|
} else {
|
|
|
|
|
for (size_t i = 0; i < sim_group->ssrcs.size(); ++i) {
|
|
|
|
|
ssrcs->push_back(sim_group->ssrcs[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
void StreamParams::GetFidSsrcs(const std::vector<uint32_t>& primary_ssrcs,
|
|
|
|
|
std::vector<uint32_t>* fid_ssrcs) const {
|
2014-07-17 08:51:46 +00:00
|
|
|
for (size_t i = 0; i < primary_ssrcs.size(); ++i) {
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
uint32_t fid_ssrc;
|
2014-07-17 08:51:46 +00:00
|
|
|
if (GetFidSsrc(primary_ssrcs[i], &fid_ssrc)) {
|
|
|
|
|
fid_ssrcs->push_back(fid_ssrc);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-07-10 00:45:36 +00:00
|
|
|
|
|
|
|
|
bool StreamParams::AddSecondarySsrc(const std::string& semantics,
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
uint32_t primary_ssrc,
|
|
|
|
|
uint32_t secondary_ssrc) {
|
2013-07-10 00:45:36 +00:00
|
|
|
if (!has_ssrc(primary_ssrc)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ssrcs.push_back(secondary_ssrc);
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
std::vector<uint32_t> ssrc_vector;
|
2013-07-10 00:45:36 +00:00
|
|
|
ssrc_vector.push_back(primary_ssrc);
|
|
|
|
|
ssrc_vector.push_back(secondary_ssrc);
|
|
|
|
|
SsrcGroup ssrc_group = SsrcGroup(semantics, ssrc_vector);
|
|
|
|
|
ssrc_groups.push_back(ssrc_group);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool StreamParams::GetSecondarySsrc(const std::string& semantics,
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
uint32_t primary_ssrc,
|
|
|
|
|
uint32_t* secondary_ssrc) const {
|
2013-07-10 00:45:36 +00:00
|
|
|
for (std::vector<SsrcGroup>::const_iterator it = ssrc_groups.begin();
|
|
|
|
|
it != ssrc_groups.end(); ++it) {
|
|
|
|
|
if (it->has_semantics(semantics) && it->ssrcs.size() >= 2 &&
|
|
|
|
|
it->ssrcs[0] == primary_ssrc) {
|
|
|
|
|
*secondary_ssrc = it->ssrcs[1];
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-02 11:34:10 -08:00
|
|
|
std::vector<std::string> StreamParams::stream_ids() const {
|
2018-04-02 16:31:36 -07:00
|
|
|
return stream_ids_;
|
2018-02-26 17:20:29 -08:00
|
|
|
}
|
|
|
|
|
|
2018-03-02 11:34:10 -08:00
|
|
|
void StreamParams::set_stream_ids(const std::vector<std::string>& stream_ids) {
|
2018-04-02 16:31:36 -07:00
|
|
|
stream_ids_ = stream_ids;
|
2018-02-26 17:20:29 -08:00
|
|
|
}
|
|
|
|
|
|
2018-03-02 11:34:10 -08:00
|
|
|
std::string StreamParams::first_stream_id() const {
|
2018-04-02 16:31:36 -07:00
|
|
|
return stream_ids_.empty() ? "" : stream_ids_[0];
|
2018-02-28 11:38:47 -08:00
|
|
|
}
|
|
|
|
|
|
2013-12-05 00:24:06 +00:00
|
|
|
bool IsOneSsrcStream(const StreamParams& sp) {
|
|
|
|
|
if (sp.ssrcs.size() == 1 && sp.ssrc_groups.empty()) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-11-22 00:59:48 -08:00
|
|
|
const SsrcGroup* fid_group = sp.get_ssrc_group(kFidSsrcGroupSemantics);
|
|
|
|
|
const SsrcGroup* fecfr_group = sp.get_ssrc_group(kFecFrSsrcGroupSemantics);
|
2013-12-05 00:24:06 +00:00
|
|
|
if (sp.ssrcs.size() == 2) {
|
2016-11-22 00:59:48 -08:00
|
|
|
if (fid_group != nullptr && sp.ssrcs == fid_group->ssrcs) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (fecfr_group != nullptr && sp.ssrcs == fecfr_group->ssrcs) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (sp.ssrcs.size() == 3) {
|
|
|
|
|
if (fid_group == nullptr || fecfr_group == nullptr) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (sp.ssrcs[0] != fid_group->ssrcs[0] ||
|
|
|
|
|
sp.ssrcs[0] != fecfr_group->ssrcs[0]) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
// We do not check for FlexFEC over RTX,
|
|
|
|
|
// as this combination is not supported.
|
|
|
|
|
if (sp.ssrcs[1] == fid_group->ssrcs[1] &&
|
|
|
|
|
sp.ssrcs[2] == fecfr_group->ssrcs[1]) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (sp.ssrcs[1] == fecfr_group->ssrcs[1] &&
|
|
|
|
|
sp.ssrcs[2] == fid_group->ssrcs[1]) {
|
|
|
|
|
return true;
|
2013-12-05 00:24:06 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-11 15:30:11 -08:00
|
|
|
namespace {
|
|
|
|
|
void RemoveFirst(std::list<uint32_t>* ssrcs, uint32_t value) {
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
std::list<uint32_t>::iterator it =
|
2013-12-05 00:24:06 +00:00
|
|
|
std::find(ssrcs->begin(), ssrcs->end(), value);
|
|
|
|
|
if (it != ssrcs->end()) {
|
|
|
|
|
ssrcs->erase(it);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-11 15:30:11 -08:00
|
|
|
} // namespace
|
2013-12-05 00:24:06 +00:00
|
|
|
|
|
|
|
|
bool IsSimulcastStream(const StreamParams& sp) {
|
2018-12-11 15:30:11 -08:00
|
|
|
// Check for spec-compliant Simulcast using rids.
|
|
|
|
|
if (sp.rids().size() > 1) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-05 00:24:06 +00:00
|
|
|
const SsrcGroup* const sg = sp.get_ssrc_group(kSimSsrcGroupSemantics);
|
|
|
|
|
if (sg == NULL || sg->ssrcs.size() < 2) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
// Start with all StreamParams SSRCs. Remove simulcast SSRCs (from sg) and
|
|
|
|
|
// RTX SSRCs. If we still have SSRCs left, we don't know what they're for.
|
|
|
|
|
// Also we remove first-found SSRCs only. So duplicates should lead to errors.
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
std::list<uint32_t> sp_ssrcs(sp.ssrcs.begin(), sp.ssrcs.end());
|
2013-12-05 00:24:06 +00:00
|
|
|
for (size_t i = 0; i < sg->ssrcs.size(); ++i) {
|
|
|
|
|
RemoveFirst(&sp_ssrcs, sg->ssrcs[i]);
|
|
|
|
|
}
|
|
|
|
|
for (size_t i = 0; i < sp.ssrc_groups.size(); ++i) {
|
|
|
|
|
const SsrcGroup& group = sp.ssrc_groups[i];
|
|
|
|
|
if (group.semantics.compare(kFidSsrcGroupSemantics) != 0 ||
|
|
|
|
|
group.ssrcs.size() != 2) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
RemoveFirst(&sp_ssrcs, group.ssrcs[1]);
|
|
|
|
|
}
|
|
|
|
|
// If there's SSRCs left that we don't know how to handle, we bail out.
|
|
|
|
|
return sp_ssrcs.size() == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-10 00:45:36 +00:00
|
|
|
} // namespace cricket
|