[vlc-commits] [Git][videolan/vlc][master] 3 commits: sout: hls: include unistd.h
Steve Lhomme (@robUx4)
gitlab at videolan.org
Fri Oct 20 13:30:50 UTC 2023
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
c6f5ad96 by KO Myung-Hun at 2023-10-20T12:54:03+00:00
sout: hls: include unistd.h
close() is declared in unistd.h.
- - - - -
a18cf71f by KO Myung-Hun at 2023-10-20T12:54:03+00:00
drawable_os2: include vlc_threads.h
vlc_mutex_* requires vlc_threads.h.
- - - - -
1dede427 by KO Myung-Hun at 2023-10-20T12:54:03+00:00
kva: include vlc_actions.h
KEY_* requires vlc_actions.h.
- - - - -
3 changed files:
- modules/stream_out/hls/storage.c
- modules/video_output/drawable_os2.c
- modules/video_output/kva.c
Changes:
=====================================
modules/stream_out/hls/storage.c
=====================================
@@ -24,6 +24,8 @@
#include <assert.h>
#include <fcntl.h>
+#include <unistd.h> /* close() */
+
#include <vlc_common.h>
#include <vlc_block.h>
=====================================
modules/video_output/drawable_os2.c
=====================================
@@ -30,6 +30,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_window.h>
+#include <vlc_threads.h>
#define HWND_TEXT N_("Window handle (HWND)")
#define HWND_LONGTEXT N_( \
=====================================
modules/video_output/kva.c
=====================================
@@ -30,6 +30,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_vout_display.h>
+#include <vlc_actions.h>
#include <ctype.h>
#include <float.h>
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/5b7f2d0ea5de74cdf3fa9c6e8a93b64321948f54...1dede42762272b39987ece1cec32dac40b126e1a
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/5b7f2d0ea5de74cdf3fa9c6e8a93b64321948f54...1dede42762272b39987ece1cec32dac40b126e1a
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