From d53639c2bfef4682a02ba2c9f0cba8a7cadbd076 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 18 Apr 2017 14:17:48 -0400 Subject: [PATCH] fix braces --- src/zm_rtp_source.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/zm_rtp_source.cpp b/src/zm_rtp_source.cpp index ed4275b1c..0cd838902 100644 --- a/src/zm_rtp_source.cpp +++ b/src/zm_rtp_source.cpp @@ -312,9 +312,10 @@ bool RtpSource::handlePacket( const unsigned char *packet, size_t packetLen ) extraHeader = 2; break; } - default: { - Debug(3, "Unhandled nalType %d", nalType ); - } + default: + { + Debug(3, "Unhandled nalType %d", nalType ); + } } // Append NAL frame start code @@ -332,7 +333,7 @@ bool RtpSource::handlePacket( const unsigned char *packet, size_t packetLen ) { if ( mFrameGood ) { - Debug( 2, "Got new frame %d, %d bytes", mFrameCount, mFrame.size() ); + Debug( 3, "Got new frame %d, %d bytes", mFrameCount, mFrame.size() ); mFrameProcessed.setValueImmediate( false ); mFrameReady.updateValueSignal( true );