summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm_data.h
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-09-13 10:59:47 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2011-09-13 10:59:47 -0400
commit3ed78609438af404d6738cc3bb3eefae93a7c2d4 (patch)
treeff13ca2bfb8785bab0f9f3a85c1a628024faadd3 /libavcodec/adpcm_data.h
parenta05ea77c9f6082915fdeb8b4801258f1fa68c332 (diff)
include stdint.h in adpcm_data.h
fixes make checkheaders
Diffstat (limited to 'libavcodec/adpcm_data.h')
-rw-r--r--libavcodec/adpcm_data.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/adpcm_data.h b/libavcodec/adpcm_data.h
index baca426537..a46cb5bdec 100644
--- a/libavcodec/adpcm_data.h
+++ b/libavcodec/adpcm_data.h
@@ -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[];