diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-23 20:09:44 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-24 18:51:40 +0100 |
commit | 3d035d5a6a9116a334fc82dcb37704da2d074958 (patch) | |
tree | 2baf3c6a168fc695677ef368b0380fa311397d1a /libavcodec/alpha | |
parent | 04cccb5fc1097ac6d560e266b732a863e0e0c134 (diff) | |
download | ffmpeg-3d035d5a6a9116a334fc82dcb37704da2d074958.tar.gz |
dsputil_alpha.h: Add missing stddef.h header to fix standalone compilation
Diffstat (limited to 'libavcodec/alpha')
-rw-r--r-- | libavcodec/alpha/dsputil_alpha.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/alpha/dsputil_alpha.h b/libavcodec/alpha/dsputil_alpha.h index 6eee97fe63..fcea47c665 100644 --- a/libavcodec/alpha/dsputil_alpha.h +++ b/libavcodec/alpha/dsputil_alpha.h @@ -19,6 +19,7 @@ #ifndef AVCODEC_ALPHA_DSPUTIL_ALPHA_H #define AVCODEC_ALPHA_DSPUTIL_ALPHA_H +#include <stddef.h> #include <stdint.h> void ff_simple_idct_axp(int16_t *block); |