vlc | branch: master | Thomas Guillem <[email protected]> | Tue Apr 11 15:13:51 2017 +0200| [ec04ae38fc8be83166b6ed673c2b717cd83b7357] | committer: Thomas Guillem
mft: add missing static > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ec04ae38fc8be83166b6ed673c2b717cd83b7357 --- modules/codec/mft.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/codec/mft.c b/modules/codec/mft.c index fbd85d4bdc..84cbb65829 100644 --- a/modules/codec/mft.c +++ b/modules/codec/mft.c @@ -1107,7 +1107,7 @@ static int LoadMFTLibrary(MFHandle *mf) return VLC_SUCCESS; } -int Open(vlc_object_t *p_this) +static int Open(vlc_object_t *p_this) { decoder_t *p_dec = (decoder_t *)p_this; decoder_sys_t *p_sys; @@ -1148,7 +1148,7 @@ error: return VLC_EGENERIC; } -void Close(vlc_object_t *p_this) +static void Close(vlc_object_t *p_this) { decoder_t *p_dec = (decoder_t *)p_this; decoder_sys_t *p_sys = p_dec->p_sys; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
