From a4a8cf4763adb233b21d6adff9421f65091d4029 Mon Sep 17 00:00:00 2001 From: Chzrz89 <308380384+Chzrz89@users.noreply.github.com> Date: Wed, 26 Aug 2026 02:44:55 +0200 Subject: [PATCH] AudioLocation.h: add missing include The struct uses int64_t but relied on transitive includes for it. GCC 16 no longer provides int64_t transitively, causing the struct definition to fail parsing ('int64_t' does not name a type) and cascading 'has no member frame' errors in Clip.cpp. Explicitly include so the header is self-contained. --- src/AudioLocation.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AudioLocation.h b/src/AudioLocation.h index 415f5b10f..e1194572b 100644 --- a/src/AudioLocation.h +++ b/src/AudioLocation.h @@ -13,6 +13,7 @@ #ifndef OPENSHOT_AUDIOLOCATION_H #define OPENSHOT_AUDIOLOCATION_H +#include namespace openshot {