Module: libav Branch: master Commit: b010178e84c950cf9b1a8b9c94ecaca79bd41895
Author: Diego Biurrun <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Tue Jan 31 18:41:52 2012 +0100 adpcm: Add missing stdint.h #include to fix standalone header compilation. --- libavcodec/adpcm.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libavcodec/adpcm.h b/libavcodec/adpcm.h index 3a054c0..16facb6 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 { _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
