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/rpl.c | |
parent | 0eeeb9647e9c92c9edfd0b18c7cb5da7ac666f85 (diff) | |
download | ffmpeg-8f8bc92365a943e96cc08b5369408c20f35193c7.tar.gz |
Add missing #includes for *INT64_MAX and *INT64_C
Diffstat (limited to 'libavformat/rpl.c')
-rw-r--r-- | libavformat/rpl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/rpl.c b/libavformat/rpl.c index 42b47f8457..0b22d8aa20 100644 --- a/libavformat/rpl.c +++ b/libavformat/rpl.c @@ -19,11 +19,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <stdint.h> +#include <stdlib.h> + #include "libavutil/avstring.h" #include "libavutil/dict.h" #include "avformat.h" #include "internal.h" -#include <stdlib.h> #define RPL_SIGNATURE "ARMovie\x0A" #define RPL_SIGNATURE_SIZE 8 |