[vlc-commits] es_out: i_audio_delay and i_spu_delay are mtime_t

Steve Lhomme git at videolan.org
Sat May 5 18:10:22 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Sat May  5 09:53:29 2018 +0200| [36ebc3fcdcb916f42e20e3c5f2c7ebd3699818a1] | committer: Rémi Denis-Courmont

es_out: i_audio_delay and i_spu_delay are mtime_t

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=36ebc3fcdcb916f42e20e3c5f2c7ebd3699818a1
---

 src/input/es_out.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/input/es_out.c b/src/input/es_out.c
index 840abad431..96ec63ebf0 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -148,8 +148,8 @@ typedef struct
     int         i_group_id;
 
     /* delay */
-    int64_t i_audio_delay;
-    int64_t i_spu_delay;
+    mtime_t i_audio_delay;
+    mtime_t i_spu_delay;
 
     /* Clock configuration */
     mtime_t     i_pts_delay;
@@ -454,7 +454,7 @@ static bool EsOutDecodersIsEmpty( es_out_t *out )
     return true;
 }
 
-static void EsOutSetDelay( es_out_t *out, int i_cat, int64_t i_delay )
+static void EsOutSetDelay( es_out_t *out, int i_cat, mtime_t i_delay )
 {
     es_out_sys_t *p_sys = out->p_sys;
 



More information about the vlc-commits mailing list