[vlc-commits] [Git][videolan/vlc][master] access_out: rist: don't include sys/time.h on Windows
Steve Lhomme (@robUx4)
gitlab at videolan.org
Thu Oct 16 17:20:54 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
7ca38dfc by Steve Lhomme at 2025-10-16T16:36:56+00:00
access_out: rist: don't include sys/time.h on Windows
It's not needed and doesn't exist in the Windows SDK.
- - - - -
1 changed file:
- modules/access_output/rist.c
Changes:
=====================================
modules/access_output/rist.c
=====================================
@@ -31,7 +31,9 @@
#include <vlc_sout.h>
#include <vlc_block.h>
#include <vlc_rand.h>
+#ifndef _WIN32
#include <sys/time.h>
+#endif
#define RIST_CFG_PREFIX "sout-rist-"
#include "../access/rist.h"
@@ -322,4 +324,3 @@ vlc_module_begin()
set_callbacks( Open, Close )
vlc_module_end ()
-
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7ca38dfc0b00fd30879af20c341999a4542907b3
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/7ca38dfc0b00fd30879af20c341999a4542907b3
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list