From 56d13bc7e84db160dfbea1cbf94fd1722f5e8b32 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 6 Oct 2023 18:32:09 -0500 Subject: [PATCH] Fix missing newline in SDP response --- src/rtsp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rtsp.cpp b/src/rtsp.cpp index 6e06c1fd..5a12253d 100644 --- a/src/rtsp.cpp +++ b/src/rtsp.cpp @@ -494,7 +494,7 @@ namespace rtsp_stream { std::stringstream ss; // Tell the client about our supported features - ss << "a=x-ss-general.featureFlags: " << (uint32_t) platf::get_capabilities(); + ss << "a=x-ss-general.featureFlags: " << (uint32_t) platf::get_capabilities() << std::endl; if (video::active_hevc_mode != 1) { ss << "sprop-parameter-sets=AAAAAU"sv << std::endl;