fix braces

This commit is contained in:
Isaac Connor 2017-04-18 14:17:48 -04:00
parent b71d021ae1
commit d53639c2bf
1 changed files with 5 additions and 4 deletions

View File

@ -312,9 +312,10 @@ bool RtpSource::handlePacket( const unsigned char *packet, size_t packetLen )
extraHeader = 2; extraHeader = 2;
break; break;
} }
default: { default:
Debug(3, "Unhandled nalType %d", nalType ); {
} Debug(3, "Unhandled nalType %d", nalType );
}
} }
// Append NAL frame start code // Append NAL frame start code
@ -332,7 +333,7 @@ bool RtpSource::handlePacket( const unsigned char *packet, size_t packetLen )
{ {
if ( mFrameGood ) 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 ); mFrameProcessed.setValueImmediate( false );
mFrameReady.updateValueSignal( true ); mFrameReady.updateValueSignal( true );