]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/cabac_functions, x86/cabac: Include stddef.h
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Wed, 3 Feb 2021 21:47:41 +0000 (22:47 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Thu, 4 Feb 2021 04:17:33 +0000 (05:17 +0100)
Fixes checkheaders after 8c01eb0a315fec8f09ba6210ce8b0296de6cc784.

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

index bb2b4210b7ae0eee1f0617c238b0ea36ba401460..46af92182212c4eb5a690681690841fd00c1492b 100644 (file)
@@ -27,6 +27,7 @@
 #ifndef AVCODEC_CABAC_FUNCTIONS_H
 #define AVCODEC_CABAC_FUNCTIONS_H
 
+#include <stddef.h>
 #include <stdint.h>
 
 #include "cabac.h"
index cfd3b759c97114861715707542ee5da487ee0a5d..53d74c541e22395f9123d97c9b70f5b357d3288c 100644 (file)
@@ -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"