diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-21 16:04:10 +0100 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-04-21 16:04:17 +0100 |
commit | 32c044cbc64034a9688e3711efe5251998d767b1 (patch) | |
tree | 4defbcc23e8e1e2f698187519cc5b493023a1cda /libavformat | |
parent | 53107052b2a12a8ab037c77e1064c085fd0826f2 (diff) | |
parent | 439929859ae0eb9542d3bb8a0c856bd5a1d1ec48 (diff) | |
download | ffmpeg-streaming-32c044cbc64034a9688e3711efe5251998d767b1.zip ffmpeg-streaming-32c044cbc64034a9688e3711efe5251998d767b1.tar.gz |
Merge commit '439929859ae0eb9542d3bb8a0c856bd5a1d1ec48'
* commit '439929859ae0eb9542d3bb8a0c856bd5a1d1ec48':
testprogs: Clean up #includes
Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtmpdh.c | 10 | ||||
-rw-r--r-- | libavformat/rtmpdh.h | 3 |
2 files changed, 11 insertions, 2 deletions
diff --git a/libavformat/rtmpdh.c b/libavformat/rtmpdh.c index 42ad72c..c52af9a 100644 --- a/libavformat/rtmpdh.c +++ b/libavformat/rtmpdh.c @@ -26,10 +26,18 @@ * RTMP Diffie-Hellmann utilities */ +#include <stdint.h> +#include <string.h> + #include "config.h" -#include "rtmpdh.h" + +#include "libavutil/attributes.h" +#include "libavutil/error.h" +#include "libavutil/mem.h" #include "libavutil/random_seed.h" +#include "rtmpdh.h" + #define P1024 \ "FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD1" \ "29024E088A67CC74020BBEA63B139B22514A08798E3404DD" \ diff --git a/libavformat/rtmpdh.h b/libavformat/rtmpdh.h index 95b2620..2b250f5 100644 --- a/libavformat/rtmpdh.h +++ b/libavformat/rtmpdh.h @@ -22,7 +22,8 @@ #ifndef AVFORMAT_RTMPDH_H #define AVFORMAT_RTMPDH_H -#include "avformat.h" +#include <stdint.h> + #include "config.h" #if CONFIG_GMP || CONFIG_GCRYPT |