]> git.sesse.net Git - vlc/commitdiff
Remove some debugging messages.
authorSteinar Gunderson <sgunderson@bigfoot.com>
Fri, 24 Sep 2010 00:09:15 +0000 (02:09 +0200)
committerSteinar Gunderson <sgunderson@bigfoot.com>
Fri, 24 Sep 2010 00:09:15 +0000 (02:09 +0200)
modules/access/sdi.cpp

index c48c5b825d58a7a47d4e334bae80606acc172c41..f5b5af624d801cabe33da3984830e99e077d76bf 100644 (file)
@@ -94,8 +94,6 @@ HRESULT DeckLinkCaptureDelegate::VideoInputFrameArrived(IDeckLinkVideoInputFrame
             return S_OK;
         }
 
-        msg_Dbg( p_demux_, "Received a frame" );
-
         block_t *p_frame;
         p_frame = block_New( p_demux_, 720 * 576 * 3 );
         if( !p_frame )
@@ -259,7 +257,6 @@ static int Demux( demux_t *p_demux )
 
     vlc_mutex_unlock( &p_sys->frame_lock );
 
-    msg_Dbg( p_demux, "Sending frame" ); 
     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
     es_out_Send( p_demux->out, p_sys->p_es, p_block );