From 186f5c21bdceef19c1702e9179c17a4b247e7c82 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Thu, 9 Dec 2021 09:31:15 -0700 Subject: [PATCH] clean up --- reflector/CodecStream.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/reflector/CodecStream.cpp b/reflector/CodecStream.cpp index 0cb0011..ea96a17 100644 --- a/reflector/CodecStream.cpp +++ b/reflector/CodecStream.cpp @@ -65,7 +65,7 @@ CCodecStream::~CCodecStream() double ave = (m_fPingCount > 0) ? m_fPingSum / m_fPingCount * 1000.0 : 0.0; auto prec = std::cout.precision(); std::cout.precision(1); - std::cout << "Transcoder Stats (ms): " << min << "/" << ave << "/" << max << std::endl; + std::cout << std::fixed << "Transcoder Stats (ms): " << min << "/" << ave << "/" << max << std::endl; std::cout.precision(prec); } if (m_uiTimeoutPackets) @@ -110,9 +110,6 @@ void CCodecStream::Task(void) // any packet from transcoder if (m_TCReader->Receive(&pack, 5)) { -#ifdef DEBUG - std::cout << "Got a packet from the Transcoder for module '" << pack.module << "'" << std::endl; -#endif // tickle m_TimeoutTimer.start();