]> git.sesse.net Git - vlc/commitdiff
Remove obsolete variable b_first_frame.
authorSteinar H. Gunderson <steinar+vlc@gunderson.no>
Sat, 2 Oct 2010 19:33:42 +0000 (21:33 +0200)
committerSteinar H. Gunderson <steinar+vlc@gunderson.no>
Sat, 2 Oct 2010 19:33:42 +0000 (21:33 +0200)
modules/access/decklink.cpp

index a8f3a71dc12b3bb6627135c629385e5fa10af9bf..be2b41f6e6934a910015cba7d11c719cf30950b0 100644 (file)
@@ -132,7 +132,6 @@ struct demux_sys_t
 
     es_out_id_t *p_video_es;
     es_out_id_t *p_audio_es;
-    bool b_first_frame;
     int i_last_pts;
 
     uint32_t i_dominance_flags;
@@ -296,7 +295,6 @@ static int Open( vlc_object_t *p_this )
 
     vlc_mutex_init( &p_sys->frame_lock );
     vlc_cond_init( &p_sys->has_frame );
-    p_sys->b_first_frame = true;
 
     IDeckLinkIterator *decklink_iterator = CreateDeckLinkIteratorInstance();
     if( !decklink_iterator )