diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-12-08 19:47:58 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-12-14 13:33:30 -0300 |
commit | 2d7aadf3d95c96848433955b537ced415fb6ae20 (patch) | |
tree | 966da8b5a12e2cff617ec2435dd497187c4ec514 | |
parent | 457e9339196450586113f5418a821fe85f859038 (diff) | |
download | ffmpeg-2d7aadf3d95c96848433955b537ced415fb6ae20.tar.gz |
Add missing #includes for standalone spherical-information-related headers
(cherry picked from commit f912fd767e55bbb5a1554bd99bacab007659609c)
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavformat/isom.h | 3 | ||||
-rw-r--r-- | libavutil/spherical.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/isom.h b/libavformat/isom.h index 0fd9eb082b..12cefc9ade 100644 --- a/libavformat/isom.h +++ b/libavformat/isom.h @@ -24,6 +24,9 @@ #ifndef AVFORMAT_ISOM_H #define AVFORMAT_ISOM_H +#include <stddef.h> +#include <stdint.h> + #include "libavutil/spherical.h" #include "libavutil/stereo3d.h" diff --git a/libavutil/spherical.h b/libavutil/spherical.h index 0a669da83a..eeda625231 100644 --- a/libavutil/spherical.h +++ b/libavutil/spherical.h @@ -26,6 +26,9 @@ #ifndef AVUTIL_SPHERICAL_H #define AVUTIL_SPHERICAL_H +#include <stddef.h> +#include <stdint.h> + /** * @addtogroup lavu_video * @{ |