diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-31 18:41:52 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-31 19:13:00 +0100 |
commit | b010178e84c950cf9b1a8b9c94ecaca79bd41895 (patch) | |
tree | 5bb056a2ffec2f9792de5a29e84fc5841e23cd47 /libavcodec/adpcm.h | |
parent | dd6d3b0e025cb2a16022665dbb8ab1be18dc05e8 (diff) | |
download | ffmpeg-b010178e84c950cf9b1a8b9c94ecaca79bd41895.tar.gz |
adpcm: Add missing stdint.h #include to fix standalone header compilation.
Diffstat (limited to 'libavcodec/adpcm.h')
-rw-r--r-- | libavcodec/adpcm.h | 2 |
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 { |