summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-22 16:41:09 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-24 03:43:52 +0200
commit0bb0c2679943098c5d39ce235c804c2694ad6bc6 (patch)
tree7f9788b392ca9e3d6c72519fa64dea86e3f5abeb /libavutil
parentd09dacc197f99f2ea0b7b9285a5d63d2fd71e1c7 (diff)
avutil/mem_internal: Fix headers
Including avassert.h is unnecessary since commit 786be70e28fe739b8e49893fa13ae4652a68d1ea. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/mem_internal.h3
-rw-r--r--libavutil/tx.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/mem_internal.h b/libavutil/mem_internal.h
index ed846aac52..955e31a698 100644
--- a/libavutil/mem_internal.h
+++ b/libavutil/mem_internal.h
@@ -25,7 +25,8 @@
#include <stdint.h>
-#include "avassert.h"
+#include "attributes.h"
+#include "macros.h"
#include "mem.h"
#include "version.h"
diff --git a/libavutil/tx.c b/libavutil/tx.c
index e6fcf9f451..c90ca509f5 100644
--- a/libavutil/tx.c
+++ b/libavutil/tx.c
@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include "avassert.h"
#include "cpu.h"
#include "qsort.h"
#include "bprint.h"