summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-08 19:03:49 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-21 13:10:04 +0100
commit52e911369553e1d2e8c4978172a5a302b91c8202 (patch)
treef3394ebfe730de294bfad9a14f647a43377a92a6
parentdd2c871aa304ccbc5d2c8be319597d85505ddf89 (diff)
avcodec/aarch64/idct: Add missing stddef
Fixes checkheaders on aarch64. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/aarch64/idct.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/aarch64/idct.h b/libavcodec/aarch64/idct.h
index 5c49046148..97ee0a64af 100644
--- a/libavcodec/aarch64/idct.h
+++ b/libavcodec/aarch64/idct.h
@@ -19,6 +19,7 @@
#ifndef AVCODEC_AARCH64_IDCT_H
#define AVCODEC_AARCH64_IDCT_H
+#include <stddef.h>
#include <stdint.h>
void ff_simple_idct_neon(int16_t *data);