Browse code

include stdint.h in adpcm_data.h

fixes make checkheaders

Justin Ruggles authored on 2011/09/13 23:59:47
Showing 1 changed files
... ...
@@ -26,6 +26,8 @@
26 26
 #ifndef AVCODEC_ADPCM_DATA_H
27 27
 #define AVCODEC_ADPCM_DATA_H
28 28
 
29
+#include <stdint.h>
30
+
29 31
 extern const int8_t  ff_adpcm_index_table[16];
30 32
 extern const int16_t ff_adpcm_step_table[89];
31 33
 extern const int16_t ff_adpcm_AdaptationTable[];