[vlc-devel] [PATCH] taglib: Enable prefetch on the IOStream

Hugo Beauzée-Luyssen hugo at beauzee.fr
Mon Oct 28 14:19:27 CET 2019


On Mon, Oct 28, 2019, at 1:47 PM, Rémi Denis-Courmont wrote:
> Why not "prefetch,cache" ?
> 
> Le 28 octobre 2019 13:51:27 GMT+02:00, "Hugo Beauzée-Luyssen" 
> <hugo at beauzee.fr> a écrit : We can't do it through vlc_stream_NewURL as 
> it will include the
> > skiptags filter modules/meta_engine/taglib.cpp | 3 +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git a/modules/meta_engine/taglib.cpp b/modules/meta_engine/taglib.cpp
> > index c71a66ca58..82443f057c 100644
> > --- a/modules/meta_engine/taglib.cpp
> > +++ b/modules/meta_engine/taglib.cpp
> > @@ -842,6 +842,9 @@ static int ReadMeta( vlc_object_t* p_this)
> >      free( psz_uri );
> >      if( p_stream == NULL )
> >          return VLC_EGENERIC;
> > +    stream_t* p_filter = vlc_stream_FilterNew( p_stream, "prefetch" );
> > +    if( p_filter )
> > +        p_stream = p_filter;
> >  
> >      VlcIostream s( p_stream );
> >      f = FileRef( &s );
> 

Why not indeed, I'll send an updated version

-- 
  Hugo Beauzée-Luyssen
  hugo at beauzee.fr


More information about the vlc-devel mailing list