aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-03 22:47:41 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-04 05:17:33 +0100
commit4f3d8cb5549e1b54f87edda446177848896fa50c (patch)
tree82c3303c49e363e5fad8e96622b7520e52c7dea1
parenta44c42dc31333968650382a640480cedc3c9ae3c (diff)
downloadffmpeg-4f3d8cb5549e1b54f87edda446177848896fa50c.tar.gz
avcodec/cabac_functions, x86/cabac: Include stddef.h
Fixes checkheaders after 8c01eb0a315fec8f09ba6210ce8b0296de6cc784. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r--libavcodec/cabac_functions.h1
-rw-r--r--libavcodec/x86/cabac.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/cabac_functions.h b/libavcodec/cabac_functions.h
index bb2b4210b7..46af921822 100644
--- a/libavcodec/cabac_functions.h
+++ b/libavcodec/cabac_functions.h
@@ -27,6 +27,7 @@
#ifndef AVCODEC_CABAC_FUNCTIONS_H
#define AVCODEC_CABAC_FUNCTIONS_H
+#include <stddef.h>
#include <stdint.h>
#include "cabac.h"
diff --git a/libavcodec/x86/cabac.h b/libavcodec/x86/cabac.h
index cfd3b759c9..53d74c541e 100644
--- a/libavcodec/x86/cabac.h
+++ b/libavcodec/x86/cabac.h
@@ -21,6 +21,8 @@
#ifndef AVCODEC_X86_CABAC_H
#define AVCODEC_X86_CABAC_H
+#include <stddef.h>
+
#include "libavcodec/cabac.h"
#include "libavutil/attributes.h"
#include "libavutil/macros.h"