summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-01-31 18:41:52 +0100
committerDiego Biurrun <diego@biurrun.de>2012-01-31 19:13:00 +0100
commitb010178e84c950cf9b1a8b9c94ecaca79bd41895 (patch)
tree5bb056a2ffec2f9792de5a29e84fc5841e23cd47 /libavcodec/adpcm.h
parentdd6d3b0e025cb2a16022665dbb8ab1be18dc05e8 (diff)
adpcm: Add missing stdint.h #include to fix standalone header compilation.
Diffstat (limited to 'libavcodec/adpcm.h')
-rw-r--r--libavcodec/adpcm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/adpcm.h b/libavcodec/adpcm.h
index 3a054c0e84..16facb6d0f 100644
--- a/libavcodec/adpcm.h
+++ b/libavcodec/adpcm.h
@@ -26,6 +26,8 @@
#ifndef AVCODEC_ADPCM_H
#define AVCODEC_ADPCM_H
+#include <stdint.h>
+
#define BLKSIZE 1024
typedef struct ADPCMChannelStatus {