From 037be4af218c2bb5521dce65d01fb8ebd150f113 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 8 Jan 2021 19:21:54 +0100 Subject: [PATCH] Fix compat missing include The header libavformat/version.h was included, but not libavcodec/version.h. As a consequence, the LIBAVCODEC_VERSION_INT definition depended on the caller includes. --- app/src/compat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/compat.h b/app/src/compat.h index de667bbf..21f19214 100644 --- a/app/src/compat.h +++ b/app/src/compat.h @@ -1,6 +1,7 @@ #ifndef COMPAT_H #define COMPAT_H +#include #include #include