diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-09-08 15:34:13 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-09-08 15:34:13 +0000 |
commit | a9b98c01349fb1389e0608ec8b04ef1b2d08925d (patch) | |
tree | 5dca51c97a157ae4b19bccb8e2ed4c26a95f2d30 | |
parent | 15cae5e605caa7f2033516b979a10440d5d6d5de (diff) | |
download | ffmpeg-a9b98c01349fb1389e0608ec8b04ef1b2d08925d.tar.gz |
Add missing stdint.h #include; necessary to pass 'make checkheaders'.
Originally committed as revision 25078 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/a64colors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/a64colors.h b/libavcodec/a64colors.h index 1a83fb12e2..a9cdb6fa76 100644 --- a/libavcodec/a64colors.h +++ b/libavcodec/a64colors.h @@ -27,6 +27,8 @@ #ifndef AVCODEC_A64COLORS_H #define AVCODEC_A64COLORS_H +#include <stdint.h> + /* c64 palette in RGB */ static const uint8_t a64_palette[16][3] = { {0x00, 0x00, 0x00}, |