include stdint.h in adpcm_data.h
authorJustin Ruggles <justin.ruggles@gmail.com>
Tue, 13 Sep 2011 14:59:47 +0000 (10:59 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Tue, 13 Sep 2011 14:59:47 +0000 (10:59 -0400)
fixes make checkheaders

libavcodec/adpcm_data.h

index baca426..a46cb5b 100644 (file)
@@ -26,6 +26,8 @@
 #ifndef AVCODEC_ADPCM_DATA_H
 #define AVCODEC_ADPCM_DATA_H
 
+#include <stdint.h>
+
 extern const int8_t  ff_adpcm_index_table[16];
 extern const int16_t ff_adpcm_step_table[89];
 extern const int16_t ff_adpcm_AdaptationTable[];