From d09dacc197f99f2ea0b7b9285a5d63d2fd71e1c7 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Mon, 22 Aug 2022 15:55:46 +0200 Subject: [PATCH] avformat/os_support: Include stdint.h for int64_t Fixes checkheaders for Windows targets. Signed-off-by: Andreas Rheinhardt --- libavformat/os_support.h | 1 + 1 file changed, 1 insertion(+) 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 +# include # ifdef lseek # undef lseek # endif