diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-23 21:32:55 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-23 21:55:52 +0100 |
commit | 8f8bc92365a943e96cc08b5369408c20f35193c7 (patch) | |
tree | effd31c47a524ac732f657d037b9f0d6c25901b2 /libavformat/mxfdec.c | |
parent | 0eeeb9647e9c92c9edfd0b18c7cb5da7ac666f85 (diff) | |
download | ffmpeg-8f8bc92365a943e96cc08b5369408c20f35193c7.tar.gz |
Add missing #includes for *INT64_MAX and *INT64_C
Diffstat (limited to 'libavformat/mxfdec.c')
-rw-r--r-- | libavformat/mxfdec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index a947c6794d..91aded6163 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -43,6 +43,8 @@ * Only tracks with associated descriptors will be decoded. "Highly Desirable" SMPTE 377M D.1 */ +#include <stdint.h> + #include "libavutil/aes.h" #include "libavutil/mathematics.h" #include "libavcodec/bytestream.h" |