diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-24 05:21:19 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-24 05:21:19 +0100 |
commit | ccdfa3e2711c42b6f8b7902c4dd08f7ac89b4f59 (patch) | |
tree | 752fdf35a10a7d2df7168f59b9d1b49fd7d01a64 /ffmpeg.c | |
parent | f67ec7f3a2698f28c17aab4bb40c9a3d9f1289f7 (diff) | |
parent | 8f8bc92365a943e96cc08b5369408c20f35193c7 (diff) | |
download | ffmpeg-ccdfa3e2711c42b6f8b7902c4dd08f7ac89b4f59.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
Add missing #includes for *INT64_MAX and *INT64_C
Conflicts:
ffmpeg.c
ffmpeg_filter.c
ffplay.c
libavformat/assdec.c
libavformat/avidec.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -30,6 +30,8 @@ #include <stdlib.h> #include <errno.h> #include <limits.h> +#include <stdint.h> + #if HAVE_ISATTY #if HAVE_IO_H #include <io.h> @@ -38,6 +40,7 @@ #include <unistd.h> #endif #endif + #include "libavformat/avformat.h" #include "libavdevice/avdevice.h" #include "libswresample/swresample.h" |