Browse Source

lavu: add missing stddef.h includes for size_t.

tags/n4.4
Anton Khirnov 5 years ago
parent
commit
800feae5d6
6 changed files with 8 additions and 0 deletions
  1. +2
    -0
      libavutil/hash.c
  2. +1
    -0
      libavutil/hash.h
  3. +2
    -0
      libavutil/murmur3.c
  4. +1
    -0
      libavutil/murmur3.h
  5. +1
    -0
      libavutil/ripemd.c
  6. +1
    -0
      libavutil/ripemd.h

+ 2
- 0
libavutil/hash.c View File

@@ -17,6 +17,8 @@
* License along with FFmpeg; if not, write to the Free Software * License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */

#include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include "hash.h" #include "hash.h"




+ 1
- 0
libavutil/hash.h View File

@@ -27,6 +27,7 @@
#ifndef AVUTIL_HASH_H #ifndef AVUTIL_HASH_H
#define AVUTIL_HASH_H #define AVUTIL_HASH_H


#include <stddef.h>
#include <stdint.h> #include <stdint.h>


#include "version.h" #include "version.h"


+ 2
- 0
libavutil/murmur3.c View File

@@ -17,6 +17,8 @@
* License along with FFmpeg; if not, write to the Free Software * License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */

#include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include "mem.h" #include "mem.h"
#include "intreadwrite.h" #include "intreadwrite.h"


+ 1
- 0
libavutil/murmur3.h View File

@@ -27,6 +27,7 @@
#ifndef AVUTIL_MURMUR3_H #ifndef AVUTIL_MURMUR3_H
#define AVUTIL_MURMUR3_H #define AVUTIL_MURMUR3_H


#include <stddef.h>
#include <stdint.h> #include <stdint.h>


#include "version.h" #include "version.h"


+ 1
- 0
libavutil/ripemd.c View File

@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */


#include <stddef.h>
#include <string.h> #include <string.h>


#include "attributes.h" #include "attributes.h"


+ 1
- 0
libavutil/ripemd.h View File

@@ -28,6 +28,7 @@
#ifndef AVUTIL_RIPEMD_H #ifndef AVUTIL_RIPEMD_H
#define AVUTIL_RIPEMD_H #define AVUTIL_RIPEMD_H


#include <stddef.h>
#include <stdint.h> #include <stdint.h>


#include "attributes.h" #include "attributes.h"


Loading…
Cancel
Save