Commit 86d3a929 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

access: clearing info.i_update is the owner's job, not the plugin's

parent 522dbd1b
...@@ -699,7 +699,6 @@ static int DemuxOpen( vlc_object_t *p_this ) ...@@ -699,7 +699,6 @@ static int DemuxOpen( vlc_object_t *p_this )
p_demux->pf_demux = Demux; p_demux->pf_demux = Demux;
p_demux->pf_control = DemuxControl; p_demux->pf_control = DemuxControl;
p_demux->info.i_update = 0;
p_demux->info.i_title = 0; p_demux->info.i_title = 0;
p_demux->info.i_seekpoint = 0; p_demux->info.i_seekpoint = 0;
...@@ -813,7 +812,6 @@ static int AccessOpen( vlc_object_t *p_this ) ...@@ -813,7 +812,6 @@ static int AccessOpen( vlc_object_t *p_this )
p_access->pf_block = ReadCompressed; p_access->pf_block = ReadCompressed;
p_access->pf_control = AccessControl; p_access->pf_control = AccessControl;
p_access->pf_seek = NULL; p_access->pf_seek = NULL;
p_access->info.i_update = 0;
p_access->info.i_pos = 0; p_access->info.i_pos = 0;
p_access->info.b_eof = false; p_access->info.b_eof = false;
p_access->info.i_title = 0; p_access->info.i_title = 0;
......
...@@ -159,7 +159,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -159,7 +159,6 @@ static int Open( vlc_object_t *p_this )
p_access->pf_block = BlockRead; p_access->pf_block = BlockRead;
p_access->pf_seek = Seek; p_access->pf_seek = Seek;
p_access->pf_control = Control; p_access->pf_control = Control;
p_access->info.i_update = 0;
p_access->info.i_pos = 0; p_access->info.i_pos = 0;
p_access->info.b_eof = false; p_access->info.b_eof = false;
p_access->info.i_title = 0; p_access->info.i_title = 0;
......
...@@ -194,7 +194,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -194,7 +194,6 @@ static int Open( vlc_object_t *p_this )
p_access->pf_control = Control; p_access->pf_control = Control;
p_access->pf_seek = Seek; p_access->pf_seek = Seek;
p_access->info.i_update = 0;
p_access->info.b_eof = false; p_access->info.b_eof = false;
p_access->info.i_title = i_title; p_access->info.i_title = i_title;
......
...@@ -852,7 +852,6 @@ VCDOpen ( vlc_object_t *p_this ) ...@@ -852,7 +852,6 @@ VCDOpen ( vlc_object_t *p_this )
p_access->pf_control = VCDControl; p_access->pf_control = VCDControl;
p_access->pf_seek = VCDSeek; p_access->pf_seek = VCDSeek;
p_access->info.i_update = 0;
p_access->info.i_pos = 0; p_access->info.i_pos = 0;
p_access->info.b_eof = false; p_access->info.b_eof = false;
p_access->info.i_title = 0; p_access->info.i_title = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment