vlc | branch: master | Francois Cartegnie <[email protected]> | Tue Feb 16 13:26:54 2016 +0100| [524f5c09446b521d9d6decef4dfd08b0f92d3ed8] | committer: Francois Cartegnie
meta_reader: taglib: don't read audio properties As we only use metadata, we don't need taglib to fetch audioproperties > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=524f5c09446b521d9d6decef4dfd08b0f92d3ed8 --- modules/meta_engine/taglib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/meta_engine/taglib.cpp b/modules/meta_engine/taglib.cpp index f82ce8d2..e4fbb93 100644 --- a/modules/meta_engine/taglib.cpp +++ b/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() ) _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
