fix braces
This commit is contained in:
parent
b71d021ae1
commit
d53639c2bf
|
@ -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 );
|
||||||
|
|
Loading…
Reference in New Issue