[vlc-commits] access_output: udp: i_to_send is not an mtime_t

Steve Lhomme git at videolan.org
Thu Jun 14 16:41:24 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Mon May  7 16:23:33 2018 +0200| [225f73c8f43cdfec150f8b22d0d4a053ab8497ad] | committer: Steve Lhomme

access_output: udp: i_to_send is not an mtime_t

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

 modules/access_output/udp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access_output/udp.c b/modules/access_output/udp.c
index 64684a6053..103f9cdcdc 100644
--- a/modules/access_output/udp.c
+++ b/modules/access_output/udp.c
@@ -390,7 +390,7 @@ static void* ThreadWrite( void *data )
     mtime_t i_date_last = -1;
     const unsigned i_group = var_GetInteger( p_access,
                                              SOUT_CFG_PREFIX "group" );
-    mtime_t i_to_send = i_group;
+    int i_to_send = i_group;
     unsigned i_dropped_packets = 0;
 
     for (;;)



More information about the vlc-commits mailing list