From 5d2303ede30834619c2a42f746bc1e4a1336054e Mon Sep 17 00:00:00 2001 From: Paul-Louis Ageneau Date: Thu, 30 May 2024 13:29:33 +0200 Subject: [PATCH] Enhance application-only SDP generation --- src/description.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/description.cpp b/src/description.cpp index df3e91f61..77d0d8033 100644 --- a/src/description.cpp +++ b/src/description.cpp @@ -310,7 +310,6 @@ string Description::generateSdp(string_view eol) const { // Session-level attributes sdp << "a=msid-semantic:WMS *" << eol; - if (!mIceOptions.empty()) sdp << "a=ice-options:" << utils::implode(mIceOptions, ',') << eol; if (mFingerprint) @@ -372,28 +371,29 @@ string Description::generateApplicationSdp(string_view eol) const { const uint16_t port = cand && cand->isResolved() ? *cand->port() : 9; // Port 9 is the discard protocol + // Session-level attributes + sdp << "a=msid-semantic:WMS *" << eol; + if (!mIceOptions.empty()) + sdp << "a=ice-options:" << utils::implode(mIceOptions, ',') << eol; + + for (const auto &attr : mAttributes) + sdp << "a=" << attr << eol; + // Application auto app = mApplication ? mApplication : std::make_shared(); sdp << app->generateSdp(eol, addr, port); - // Session-level attributes - sdp << "a=msid-semantic:WMS *" << eol; + // Media-level attributes sdp << "a=setup:" << mRole << eol; - if (mIceUfrag) sdp << "a=ice-ufrag:" << *mIceUfrag << eol; if (mIcePwd) sdp << "a=ice-pwd:" << *mIcePwd << eol; - if (!mIceOptions.empty()) - sdp << "a=ice-options:" << utils::implode(mIceOptions, ',') << eol; if (mFingerprint) sdp << "a=fingerprint:" << CertificateFingerprint::AlgorithmIdentifier(mFingerprint->algorithm) << " " << mFingerprint->value << eol; - for (const auto &attr : mAttributes) - sdp << "a=" << attr << eol; - // Candidates for (const auto &candidate : mCandidates) sdp << string(candidate) << eol;