Commit b19b69f0 authored by Mickaël Turnel's avatar Mickaël Turnel
Browse files

Removed forgotten debug messages

parent ec93e611
1 merge request!1894Removed forgotten debug messages
Showing with 1 addition and 8 deletions
......@@ -205,14 +205,7 @@ int SalStreamConfiguration::equal(const SalStreamConfiguration & other) const {
result |= SAL_MEDIA_DESCRIPTION_CRYPTO_TYPE_CHANGED;
}
if (!isSamePayloadList(payloads, other.payloads)) {
auto printPayloads = [](const PayloadType *p) { ms_message("%s", p->mime_type); };
ms_message("TEST: not same playload list first one ->");
std::for_each(payloads.cbegin(), payloads.cend(), printPayloads);
ms_message("TEST: second one ->");
std::for_each(other.payloads.cbegin(), other.payloads.cend(), printPayloads);
result |= SAL_MEDIA_DESCRIPTION_CODEC_CHANGED;
}
if (!isSamePayloadList(payloads, other.payloads)) result |= SAL_MEDIA_DESCRIPTION_CODEC_CHANGED;
// Codec changed if either ptime is valid (i.e. greater than 0) and the other is not
if (((ptime>0) ^ (other.ptime>0))) result |= SAL_MEDIA_DESCRIPTION_PTIME_CHANGED;
// If both ptimes are valid, check that their valid is the same
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment