diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-20 19:11:49 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-20 19:19:23 +0100 |
commit | 1746dc382ddbf3f8a3f039815644f7eb9076110e (patch) | |
tree | 415720481a822921310720abe25c2b1d8520c471 | |
parent | 98cab39798612dcaea4f9b6d1e7974bc60d84e13 (diff) | |
download | ffmpeg-1746dc382ddbf3f8a3f039815644f7eb9076110e.tar.gz |
hqxdsp.h: #include "stddef.h"
It is required by ptrdiff_t, fixes make checkheaders.
-rw-r--r-- | libavcodec/hqxdsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/hqxdsp.h b/libavcodec/hqxdsp.h index a4755d156a..163c1f8ab2 100644 --- a/libavcodec/hqxdsp.h +++ b/libavcodec/hqxdsp.h @@ -26,6 +26,7 @@ #ifndef AVCODEC_HQXDSP_H #define AVCODEC_HQXDSP_H +#include <stddef.h> #include <stdint.h> typedef struct HQXDSPContext { |