Browse Source

meta_reader: taglib: don't read audio properties

As we only use metadata, we don't need taglib
to fetch audioproperties
pull/42/head
Francois Cartegnie 10 years ago
parent
commit
524f5c0944
  1. 4
      modules/meta_engine/taglib.cpp

4
modules/meta_engine/taglib.cpp

@ -1037,10 +1037,10 @@ static int WriteMeta( vlc_object_t *p_this )
wchar_t *wpath = ToWide( p_export->psz_file );
if( wpath == NULL )
return VLC_EGENERIC;
f = FileRef( wpath );
f = FileRef( wpath, false );
free( wpath );
#else
f = FileRef( p_export->psz_file );
f = FileRef( p_export->psz_file, false );
#endif
if( f.isNull() || !f.tag() || f.file()->readOnly() )

Loading…
Cancel
Save