From 93822dacb903009ae21574771c8d25b09b18b8ed Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Fri, 21 May 2021 18:19:39 +0200 Subject: [PATCH] lavc/dolby_e_parser: #include avcodec.h explicitly This file uses definitions from it, but relies on an indirect include through get_bits.h --- libavcodec/dolby_e_parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/dolby_e_parser.c b/libavcodec/dolby_e_parser.c index 8e187523f3..ab8f1b6ef1 100644 --- a/libavcodec/dolby_e_parser.c +++ b/libavcodec/dolby_e_parser.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "avcodec.h" #include "dolby_e.h" #include "get_bits.h" #include "put_bits.h"