]> git.sesse.net Git - vlc/blobdiff - include/vlc_symbols.h
Some more meta changes (mostly cleanup and check the i_mandatory flags)
[vlc] / include / vlc_symbols.h
index a228d85d1c44f4ae83f5fb2d241e5319893d109b..42306c59dfd4049a44863e08e5389e09a66bba55 100644 (file)
@@ -544,6 +544,8 @@ struct module_symbols_t
     int (*input_ItemAddInfo_inner) (input_item_t *p_i, const char *psz_cat, const char *psz_name, const char *psz_format, ...);
     void (*input_ItemAddOptionNoDup_inner) (input_item_t *, const char *);
     int (*__input_MetaFetch_inner) (vlc_object_t *, input_item_t *);
+    int (*input_DownloadAndCacheArt_inner) (vlc_object_t *p_parent, input_item_t *p_item);
+    uint32_t (*input_GetMetaEngineFlags_inner) (vlc_meta_t *p_meta);
 };
 # if defined (__PLUGIN__)
 #  define aout_FiltersCreatePipeline (p_symbols)->aout_FiltersCreatePipeline_inner
@@ -1018,6 +1020,8 @@ struct module_symbols_t
 #  define input_ItemAddInfo (p_symbols)->input_ItemAddInfo_inner
 #  define input_ItemAddOptionNoDup (p_symbols)->input_ItemAddOptionNoDup_inner
 #  define __input_MetaFetch (p_symbols)->__input_MetaFetch_inner
+#  define input_DownloadAndCacheArt (p_symbols)->input_DownloadAndCacheArt_inner
+#  define input_GetMetaEngineFlags (p_symbols)->input_GetMetaEngineFlags_inner
 # elif defined (HAVE_DYNAMIC_PLUGINS) && !defined (__BUILTIN__)
 /******************************************************************
  * STORE_SYMBOLS: store VLC APIs into p_symbols for plugin access.
@@ -1495,6 +1499,8 @@ struct module_symbols_t
     ((p_symbols)->input_ItemAddInfo_inner) = input_ItemAddInfo; \
     ((p_symbols)->input_ItemAddOptionNoDup_inner) = input_ItemAddOptionNoDup; \
     ((p_symbols)->__input_MetaFetch_inner) = __input_MetaFetch; \
+    ((p_symbols)->input_DownloadAndCacheArt_inner) = input_DownloadAndCacheArt; \
+    ((p_symbols)->input_GetMetaEngineFlags_inner) = input_GetMetaEngineFlags; \
     (p_symbols)->net_ConvertIPv4_deprecated = NULL; \
     (p_symbols)->vlc_input_item_GetInfo_deprecated = NULL; \
     (p_symbols)->vlc_input_item_AddInfo_deprecated = NULL; \