vlc | branch: master | Steve Lhomme <rob...@ycbcr.xyz> | Fri Jul 6 09:55:35 2018 +0200| [f80b98dd18b9d4c692efddb5ee7f200af99184d4] | committer: Steve Lhomme
nfs: transform the "network-caching" to ticks for the PTS delay That's what all other modules do, it was likely missing the * 1000. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f80b98dd18b9d4c692efddb5ee7f200af99184d4 --- modules/access/nfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/access/nfs.c b/modules/access/nfs.c index 574d10dd4f..d94dd6fc7f 100644 --- a/modules/access/nfs.c +++ b/modules/access/nfs.c @@ -293,8 +293,8 @@ FileControl(stream_t *p_access, int i_query, va_list args) } case STREAM_GET_PTS_DELAY: - *va_arg(args, int64_t *) = var_InheritInteger(p_access, - "network-caching"); + *va_arg(args, int64_t *) = VLC_TICK_FROM_MS( + var_InheritInteger(p_access, "network-caching") ); break; case STREAM_SET_PAUSE_STATE: _______________________________________________ vlc-commits mailing list vlc-commits@videolan.org https://mailman.videolan.org/listinfo/vlc-commits