Skip to content
Snippets Groups Projects
Commit 524f5c09 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

meta_reader: taglib: don't read audio properties

As we only use metadata, we don't need taglib
to fetch audioproperties
parent 5182ca26
No related branches found
No related tags found
No related merge requests found
......@@ -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() )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment