]> git.sesse.net Git - ffmpeg/commitdiff
lavu: add missing stddef.h includes for size_t.
authorAnton Khirnov <anton@khirnov.net>
Mon, 24 Feb 2020 12:18:57 +0000 (13:18 +0100)
committerAnton Khirnov <anton@khirnov.net>
Fri, 20 Nov 2020 14:20:24 +0000 (15:20 +0100)
libavutil/hash.c
libavutil/hash.h
libavutil/murmur3.c
libavutil/murmur3.h
libavutil/ripemd.c
libavutil/ripemd.h

index 75edb6db78865263d89aa4bf1418f31b910d650e..d626c31181923b888592644bbe4160685da4c826 100644 (file)
@@ -17,6 +17,8 @@
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
+
+#include <stddef.h>
 #include <stdint.h>
 #include "hash.h"
 
index 7693e6bf0dbca59d878755c786a38c11647e5848..af4719e4231713749daa19686bb4e24f20dc62e0 100644 (file)
@@ -27,6 +27,7 @@
 #ifndef AVUTIL_HASH_H
 #define AVUTIL_HASH_H
 
+#include <stddef.h>
 #include <stdint.h>
 
 #include "version.h"
index 79617525156927635eccc267b31ae69a2eb34039..3e85c3c94fe5a9d2bc97d8567cae0df00d315927 100644 (file)
@@ -17,6 +17,8 @@
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
+
+#include <stddef.h>
 #include <stdint.h>
 #include "mem.h"
 #include "intreadwrite.h"
index 1b09175c1ec21f0595f8aca8cf400f3a6c741d69..b3b3a07de29b706bfdbe32f4d2c00f4550b89f4b 100644 (file)
@@ -27,6 +27,7 @@
 #ifndef AVUTIL_MURMUR3_H
 #define AVUTIL_MURMUR3_H
 
+#include <stddef.h>
 #include <stdint.h>
 
 #include "version.h"
index 4f1c4ea899fbefd4d995c974d6f1307ffaa05b2a..89d69cc23da8ffbedf30add5905497e2cd7c586d 100644 (file)
@@ -19,6 +19,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <stddef.h>
 #include <string.h>
 
 #include "attributes.h"
index 0db6858ff33218c432b477f61596a4bda36655f6..921aa66684d53e58823547785aaa6ed061724f61 100644 (file)
@@ -28,6 +28,7 @@
 #ifndef AVUTIL_RIPEMD_H
 #define AVUTIL_RIPEMD_H
 
+#include <stddef.h>
 #include <stdint.h>
 
 #include "attributes.h"