[vlc-devel] Re: CVS Commit (sigmunau)

Sigmund Augdal sigmunau at stud.ntnu.no
Sat Feb 22 15:29:34 CET 2003


>  Fixed seme seeking issues with http access module, 
The code previously used for seeking was

    p_input->pf_seek( p_input, p_pos->i_size + i_size2 );
    input_AccessReinit( p_input );

which worked fine with the file input but did not work with http. Changing
it to

    input_AccessReinit( p_input );
    p_input->pf_seek( p_input, p_pos->i_size + i_size2 );

works for both http and file. What is the right way to do this? If it is the
last way, why do other demuxers, like the avi demux still use the first?

Sigmund
-- 
This is the vlc-devel mailing-list, see http://www.videolan.org/vlc/
To unsubscribe, please read http://developers.videolan.org/lists.html
If you are in trouble, please contact <postmaster at videolan.org>



More information about the vlc-devel mailing list