X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_access.h;h=567928b7f510b0632d276fbfa17c59582a6c71ce;hb=12ade3e3bc975d5426ba4af155b7372c31093b31;hp=554f2f8b494815542bd6c7adeb2e403383a1dffc;hpb=c20f0e81f033223e2ec2066b5c9a9c10a2b97e6e;p=vlc diff --git a/include/vlc_access.h b/include/vlc_access.h index 554f2f8b49..567928b7f5 100644 --- a/include/vlc_access.h +++ b/include/vlc_access.h @@ -80,7 +80,7 @@ struct access_t /* Access name (empty if non forced) */ char *psz_access; - char *psz_path; /**< Location (URL with the scheme stripped) */ + 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 @@ -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; \