From e99eb1dc6b16e0fe2fcf824f2b77114d14cbfb98 Mon Sep 17 00:00:00 2001 From: Steinar Gunderson Date: Fri, 24 Sep 2010 20:57:13 +0200 Subject: [PATCH] More coding style fixes. --- modules/access/sdi.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/access/sdi.cpp b/modules/access/sdi.cpp index c6080646ab..6ecdd0adcb 100644 --- a/modules/access/sdi.cpp +++ b/modules/access/sdi.cpp @@ -86,9 +86,9 @@ HRESULT DeckLinkCaptureDelegate::VideoInputFrameArrived(IDeckLinkVideoInputFrame { demux_sys_t *p_sys = p_demux_->p_sys; - if(videoFrame) + if( videoFrame ) { - if(videoFrame->GetFlags() & bmdFrameHasNoInputSource) + if( videoFrame->GetFlags() & bmdFrameHasNoInputSource ) { msg_Warn( p_demux_, "No input signal detected" ); return S_OK; @@ -169,7 +169,7 @@ static int Open( vlc_object_t *p_this ) return VLC_EGENERIC; } - if( p_sys->p_card->QueryInterface(IID_IDeckLinkInput, (void**)&p_sys->p_input) != S_OK ) + if( p_sys->p_card->QueryInterface( IID_IDeckLinkInput, (void**)&p_sys->p_input) != S_OK ) { msg_Err( p_demux, "Card has no inputs" ); return VLC_EGENERIC; @@ -178,7 +178,7 @@ static int Open( vlc_object_t *p_this ) p_sys->p_delegate = new DeckLinkCaptureDelegate( p_demux ); p_sys->p_input->SetCallback( p_sys->p_delegate ); - result = p_sys->p_input->EnableVideoInput(bmdModePAL, bmdFormat8BitYUV, 0); + result = p_sys->p_input->EnableVideoInput( bmdModePAL, bmdFormat8BitYUV, 0 ); if( result != S_OK ) { msg_Err( p_demux, "Failed to enable video input" ); -- 2.39.2