diff options
author | Diego Biurrun | 2013-11-23 21:32:55 +0100 |
---|---|---|
committer | Diego Biurrun | 2013-11-23 21:55:52 +0100 |
commit | 8f8bc92365a943e96cc08b5369408c20f35193c7 (patch) | |
tree | effd31c47a524ac732f657d037b9f0d6c25901b2 /libavformat/wavdec.c | |
parent | 0eeeb9647e9c92c9edfd0b18c7cb5da7ac666f85 (diff) |
Add missing #includes for *INT64_MAX and *INT64_C
Diffstat (limited to 'libavformat/wavdec.c')
-rw-r--r-- | libavformat/wavdec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c index a3471fdf96..f65a66a006 100644 --- a/libavformat/wavdec.c +++ b/libavformat/wavdec.c @@ -23,6 +23,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <stdint.h> + #include "libavutil/avassert.h" #include "libavutil/dict.h" #include "libavutil/log.h" |