1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Add missing stdint.h #include to fix 'make checkheaders'.

Originally committed as revision 19484 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-07-22 15:11:00 +00:00
parent 6c2a778d38
commit b06da1725a

View File

@ -21,6 +21,8 @@
#ifndef AVCODEC_CGA_DATA_H #ifndef AVCODEC_CGA_DATA_H
#define AVCODEC_CGA_DATA_H #define AVCODEC_CGA_DATA_H
#include <stdint.h>
extern const uint8_t ff_cga_font[2048]; extern const uint8_t ff_cga_font[2048];
extern const uint32_t ff_cga_palette[16]; extern const uint32_t ff_cga_palette[16];