diff options
author | James Almer <jamrial@gmail.com> | 2014-05-10 13:21:28 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-10 18:23:30 +0200 |
commit | 8e078000010bb5201a521489d32e138765c38fe7 (patch) | |
tree | 8bb92e34b7639300d4f9928cd8c8589c3777e941 | |
parent | c6bf660bef8f3a9430d46a0b5b45ccc2846b6194 (diff) | |
download | ffmpeg-8e078000010bb5201a521489d32e138765c38fe7.tar.gz |
hevcdsp: include stddef.h for ptrdiff_t definition
Including stdint.h was enough for systems like Mingw, but apparently not for Linux.
This should fix make checkheaders failures on every platform
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/hevcdsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/x86/hevcdsp.h b/libavcodec/x86/hevcdsp.h index 0a52a95519..c5a64c708a 100644 --- a/libavcodec/x86/hevcdsp.h +++ b/libavcodec/x86/hevcdsp.h @@ -25,6 +25,7 @@ #ifndef AVCODEC_X86_HEVCDSP_H #define AVCODEC_X86_HEVCDSP_H +#include <stddef.h> #include <stdint.h> #define PEL_LINK(dst, idx1, idx2, idx3, name, D, opt) \ |