Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-22 16:55:46 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-24 04:43:52 +0300
commitd09dacc197f99f2ea0b7b9285a5d63d2fd71e1c7 (patch)
tree77bd41752512065a72e6e417cf6b85eb7140595b /libavformat/os_support.h
parent85655bd9dab7d3fb2d644a0ab1fa20f570d4f57e (diff)
avformat/os_support: Include stdint.h for int64_t
Fixes checkheaders for Windows targets. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/os_support.h')
-rw-r--r--libavformat/os_support.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/os_support.h b/libavformat/os_support.h
index b419efa408..f2ff38e23b 100644
--- a/libavformat/os_support.h
+++ b/libavformat/os_support.h
@@ -42,6 +42,7 @@
#ifdef _WIN32
# include <fcntl.h>
+# include <stdint.h>
# ifdef lseek
# undef lseek
# endif