]> git.sesse.net Git - vlc/blobdiff - src/playlist/playlist_internal.h
playlist: Add an option to disable meta-fetch. (Need to be merged with art-fetch).
[vlc] / src / playlist / playlist_internal.h
index e82b677ee5eb31d54ff736fafc16c4e7657c5e78..f3a5cae0287dd6b68435941b7825fe00da6627e8 100644 (file)
@@ -22,6 +22,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifndef __LIBVLC_PLAYLIST_INTERNAL_H
+# define __LIBVLC_PLAYLIST_INTERNAL_H 1
+
 /**
  *  \file
  *  This file contain internal structures and function prototypes related
@@ -52,6 +55,7 @@ struct playlist_fetcher_t
     VLC_COMMON_MEMBERS
     vlc_mutex_t     lock;
     int             i_art_policy;
+    vlc_bool_t      b_fetch_meta;
     int             i_waiting;
     preparse_item_t *p_waiting;
 
@@ -130,3 +134,4 @@ int playlist_ItemDelete ( playlist_item_t * );
 #endif
 
 #define PLI_NAME( p ) p && p->p_input ? p->p_input->psz_name : "null"
+#endif /* !__LIBVLC_PLAYLIST_INTERNAL_H */