From 636631d9db82f5e86330ab42dacc8a106684b349 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 1 Aug 2021 08:36:09 +0200 Subject: Remove unnecessary libavutil/(avutil|common|internal).h inclusions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some of these were made possible by moving several common macros to libavutil/macros.h. While just at it, also improve the other headers a bit. Reviewed-by: Martin Storsjö Signed-off-by: Andreas Rheinhardt --- libavutil/aes.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'libavutil/aes.c') diff --git a/libavutil/aes.c b/libavutil/aes.c index 397ea77389..029d738f87 100644 --- a/libavutil/aes.c +++ b/libavutil/aes.c @@ -20,11 +20,15 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "common.h" +#include + +#include "config.h" #include "aes.h" #include "aes_internal.h" +#include "error.h" #include "intreadwrite.h" -#include "timer.h" +#include "macros.h" +#include "mem.h" const int av_aes_size= sizeof(AVAES); -- cgit v1.2.3