X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_access.h;h=567928b7f510b0632d276fbfa17c59582a6c71ce;hb=12ade3e3bc975d5426ba4af155b7372c31093b31;hp=cc7a9c6b8dffcbdb72d19b48c1e60fb361164fe9;hpb=2e847d8484163b50d8fe98350f3dc96ac8a1a43f;p=vlc diff --git a/include/vlc_access.h b/include/vlc_access.h index cc7a9c6b8d..567928b7f5 100644 --- a/include/vlc_access.h +++ b/include/vlc_access.h @@ -80,8 +80,8 @@ struct access_t /* Access name (empty if non forced) */ char *psz_access; - /* Access path/url/filename/.... */ - char *psz_path; + char *psz_location; /**< Location (URL with the scheme stripped) */ + char *psz_filepath; /**< Local file path (if applicable) */ /* Access can fill this entry to force a demuxer * XXX: fill it once you know for sure you will succeed @@ -151,7 +151,7 @@ static inline void access_InitFields( access_t *p_a ) * This function will return the parent input of this access. * It is retained. It can return NULL. */ -VLC_EXPORT( input_thread_t *, access_GetParentInput, ( access_t *p_access ) ); +VLC_EXPORT( input_thread_t *, access_GetParentInput, ( access_t *p_access ) LIBVLC_USED ); #define ACCESS_SET_CALLBACKS( read, block, control, seek ) \ p_access->pf_read = read; \