[vlc-commits] input: es_out: use vlc_tick_t
Zhao Zhili
git at videolan.org
Mon Jul 2 09:40:43 CEST 2018
vlc | branch: master | Zhao Zhili <quinkblack at foxmail.com> | Mon Jul 2 10:54:24 2018 +0800| [fba6da91947bb095b2be4606aa54d34f121cedac] | committer: Thomas Guillem
input: es_out: use vlc_tick_t
Signed-off-by: Thomas Guillem <thomas at gllm.fr>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fba6da91947bb095b2be4606aa54d34f121cedac
---
src/input/es_out.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/input/es_out.c b/src/input/es_out.c
index b6b1b20b98..4b8430d9c8 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -2068,7 +2068,7 @@ static int EsOutSend( es_out_t *out, es_out_id_t *es, block_t *p_block )
/* Mark preroll blocks */
if( p_sys->i_preroll_end >= 0 )
{
- int64_t i_date = p_block->i_pts;
+ vlc_tick_t i_date = p_block->i_pts;
if( p_block->i_pts == VLC_TS_INVALID )
i_date = p_block->i_dts;
More information about the vlc-commits
mailing list