aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2024-08-21 15:12:46 -0300
committerJames Almer <jamrial@gmail.com>2024-08-21 15:12:46 -0300
commit9d15fe77e33b757c75a4186fa049857462737713 (patch)
treeac01b8ea7eba4344567224de681ed52b0e05d592
parenta754ee08440998830c4a61cf32b2570e29e9ce75 (diff)
downloadffmpeg-9d15fe77e33b757c75a4186fa049857462737713.tar.gz
avcodec/container_fifo: add missing stddef.h include
Fixes make checkheaders Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r--libavcodec/container_fifo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/container_fifo.h b/libavcodec/container_fifo.h
index 75a8f9e86b..dd8b1d380f 100644
--- a/libavcodec/container_fifo.h
+++ b/libavcodec/container_fifo.h
@@ -19,6 +19,8 @@
#ifndef AVCODEC_CONTAINER_FIFO_H
#define AVCODEC_CONTAINER_FIFO_H
+#include <stddef.h>
+
/**
* ContainerFifo is a FIFO for "containers" - dynamically allocated reusable
* structs (e.g. AVFrame or AVPacket). ContainerFifo uses an internal pool of