[vlc-devel] [PATCH] taglib: Use VlcIoStream when available
Hugo Beauzée-Luyssen
hugo at beauzee.fr
Wed Sep 5 18:24:06 CEST 2018
This allows the desktop app to preparse non-local files
---
modules/meta_engine/taglib.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/meta_engine/taglib.cpp b/modules/meta_engine/taglib.cpp
index b8465008e0..06cbcd7d4f 100644
--- a/modules/meta_engine/taglib.cpp
+++ b/modules/meta_engine/taglib.cpp
@@ -835,7 +835,7 @@ static int ReadMeta( vlc_object_t* p_this)
if( unlikely(psz_uri == NULL) )
return VLC_ENOMEM;
-#if VLC_WINSTORE_APP && TAGLIB_VERSION >= TAGLIB_VERSION_1_11
+#if TAGLIB_VERSION >= TAGLIB_VERSION_1_11
stream_t *p_stream = vlc_access_NewMRL( p_this, psz_uri );
free( psz_uri );
if( p_stream == NULL )
--
2.18.0
More information about the vlc-devel
mailing list