]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/tableprint: Don't include mem_internal.h
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Wed, 6 Jan 2021 21:40:28 +0000 (22:40 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Fri, 22 Jan 2021 18:09:57 +0000 (19:09 +0100)
tableprint.h does not declare anything as aligned; it just prints
DECLARE_ALIGNED. So it can be removed; in fact, it needs to be removed,
because mem_internal.h includes config.h which leads to warnings when
building with hardcoded tables enabled because of redefinitions of
CONFIG_HARDCODED_TABLES.

(Furthermore, config.h is only valid for the target, not the host,
so HAVE_LOCAL_ALIGNED might even be wrong here.)

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/tableprint.h

index e57eeb6ca6134f9dd9cecf3f733bdab4e2df1a41..6f61c7124bd92dcb855ba25182bb4a8df0f86b5b 100644 (file)
@@ -27,7 +27,6 @@
 #include <stdio.h>
 
 #include "libavutil/common.h"
-#include "libavutil/mem_internal.h"
 
 #define WRITE_1D_FUNC_ARGV(type, linebrk, fmtstr, ...)\
 void write_##type##_array(const type *data, int len)\