X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Fsdi.cpp;h=4e8988e075db7204abdcab105c8f61b45e5dce8a;hb=4f08ee39886abb5e42a5ff811ad150ea5ffa0eb9;hp=c97084d5bc6cec193628c322d214c1c124a02289;hpb=1d543482fe7bd816c58e4808e334461c1d3be6b8;p=vlc diff --git a/modules/access/sdi.cpp b/modules/access/sdi.cpp index c97084d5bc..4e8988e075 100644 --- a/modules/access/sdi.cpp +++ b/modules/access/sdi.cpp @@ -270,7 +270,7 @@ static int Open( vlc_object_t *p_this ) vlc_mutex_init( &p_sys->frame_lock ); vlc_cond_init( &p_sys->has_frame ); - p_sys->p_video_frame = NULL; + p_sys->b_first_frame = true; IDeckLinkIterator *decklink_iterator = CreateDeckLinkIteratorInstance(); if( !decklink_iterator ) @@ -597,8 +597,6 @@ static int Open( vlc_object_t *p_this ) (char*)&audio_fmt.i_codec, audio_fmt.audio.i_rate, audio_fmt.audio.i_bitspersample, audio_fmt.audio.i_channels); p_sys->p_audio_es = es_out_Add( p_demux->out, &audio_fmt ); - p_sys->b_first_frame = true; - /* Update default_pts to a suitable value for access */ var_Create( p_demux, "sdi-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );