diff --git a/hls/ngx_rtmp_hls_module.c b/hls/ngx_rtmp_hls_module.c index fa8a18f..b623293 100644 --- a/hls/ngx_rtmp_hls_module.c +++ b/hls/ngx_rtmp_hls_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include #include #include diff --git a/hls/ngx_rtmp_mpegts.c b/hls/ngx_rtmp_mpegts.c index 6ff0994..af2f4e8 100644 --- a/hls/ngx_rtmp_mpegts.c +++ b/hls/ngx_rtmp_mpegts.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_mpegts.h" diff --git a/hls/ngx_rtmp_mpegts.h b/hls/ngx_rtmp_mpegts.h index 011ba62..98ee143 100644 --- a/hls/ngx_rtmp_mpegts.h +++ b/hls/ngx_rtmp_mpegts.h @@ -7,6 +7,7 @@ #define _NGX_RTMP_MPEGTS_H_INCLUDED_ +#include #include diff --git a/ngx_rtmp_amf.c b/ngx_rtmp_amf.c index 41b2465..fd40dc1 100644 --- a/ngx_rtmp_amf.c +++ b/ngx_rtmp_amf.c @@ -2,6 +2,9 @@ * Copyright (c) 2012 Roman Arutyunyan */ + +#include +#include #include "ngx_rtmp_amf.h" #include "ngx_rtmp.h" #include diff --git a/ngx_rtmp_auto_push_module.c b/ngx_rtmp_auto_push_module.c index 82d67f5..e89050e 100644 --- a/ngx_rtmp_auto_push_module.c +++ b/ngx_rtmp_auto_push_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_cmd_module.h" #include "ngx_rtmp_relay_module.h" diff --git a/ngx_rtmp_bandwidth.c b/ngx_rtmp_bandwidth.c index a494b15..16affdd 100644 --- a/ngx_rtmp_bandwidth.c +++ b/ngx_rtmp_bandwidth.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_bandwidth.h" diff --git a/ngx_rtmp_bandwidth.h b/ngx_rtmp_bandwidth.h index d09c110..5e5785c 100644 --- a/ngx_rtmp_bandwidth.h +++ b/ngx_rtmp_bandwidth.h @@ -7,6 +7,7 @@ #define _NGX_RTMP_BANDWIDTH_H_INCLUDED_ +#include #include diff --git a/ngx_rtmp_cmd_module.c b/ngx_rtmp_cmd_module.c index 46c30e0..fb14e8d 100644 --- a/ngx_rtmp_cmd_module.c +++ b/ngx_rtmp_cmd_module.c @@ -2,6 +2,9 @@ * Copyright (c) 2012 Roman Arutyunyan */ + +#include +#include #include "ngx_rtmp_cmd_module.h" #include "ngx_rtmp_streams.h" diff --git a/ngx_rtmp_codec_module.c b/ngx_rtmp_codec_module.c index 66b1c75..b0ef591 100644 --- a/ngx_rtmp_codec_module.c +++ b/ngx_rtmp_codec_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_codec_module.h" #include "ngx_rtmp_live_module.h" #include "ngx_rtmp_cmd_module.h" diff --git a/ngx_rtmp_codec_module.h b/ngx_rtmp_codec_module.h index e21f6fb..cdf73ef 100644 --- a/ngx_rtmp_codec_module.h +++ b/ngx_rtmp_codec_module.h @@ -7,6 +7,8 @@ #define _NGX_RTMP_CODEC_H_INCLUDED_ +#include +#include #include "ngx_rtmp.h" diff --git a/ngx_rtmp_control_module.c b/ngx_rtmp_control_module.c index 97bf3e9..759be3a 100644 --- a/ngx_rtmp_control_module.c +++ b/ngx_rtmp_control_module.c @@ -3,9 +3,9 @@ */ -#include +#include +#include #include - #include "ngx_rtmp.h" #include "ngx_rtmp_live_module.h" #include "ngx_rtmp_record_module.h" diff --git a/ngx_rtmp_enotify_module.c b/ngx_rtmp_enotify_module.c index f6b14fa..ccfd93c 100644 --- a/ngx_rtmp_enotify_module.c +++ b/ngx_rtmp_enotify_module.c @@ -6,7 +6,6 @@ #include #include #include "ngx_rtmp.h" - #include "ngx_rtmp_eval.h" #include "ngx_rtmp_cmd_module.h" #include "ngx_rtmp_record_module.h" diff --git a/ngx_rtmp_eval.c b/ngx_rtmp_eval.c index b57f875..92646f1 100644 --- a/ngx_rtmp_eval.c +++ b/ngx_rtmp_eval.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_eval.h" diff --git a/ngx_rtmp_eval.h b/ngx_rtmp_eval.h index 3a7112c..a7ba7c2 100644 --- a/ngx_rtmp_eval.h +++ b/ngx_rtmp_eval.h @@ -6,6 +6,9 @@ #ifndef _NGX_RTMP_EVAL_H_INCLUDED_ #define _NGX_RTMP_EVAL_H_INCLUDED_ + +#include +#include #include "ngx_rtmp.h" diff --git a/ngx_rtmp_exec_module.c b/ngx_rtmp_exec_module.c index dc491c5..cf92843 100644 --- a/ngx_rtmp_exec_module.c +++ b/ngx_rtmp_exec_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_cmd_module.h" #include "ngx_rtmp_eval.h" #include diff --git a/ngx_rtmp_flv_module.c b/ngx_rtmp_flv_module.c index 0bd7bb4..a46b616 100644 --- a/ngx_rtmp_flv_module.c +++ b/ngx_rtmp_flv_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_play_module.h" #include "ngx_rtmp_codec_module.h" #include "ngx_rtmp_streams.h" diff --git a/ngx_rtmp_handler.c b/ngx_rtmp_handler.c index 20caf21..500d095 100644 --- a/ngx_rtmp_handler.c +++ b/ngx_rtmp_handler.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp.h" #include "ngx_rtmp_amf.h" diff --git a/ngx_rtmp_handshake.c b/ngx_rtmp_handshake.c index 4eda031..28c7226 100644 --- a/ngx_rtmp_handshake.c +++ b/ngx_rtmp_handshake.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp.h" #include diff --git a/ngx_rtmp_init.c b/ngx_rtmp_init.c index 37838d3..7bf6ec6 100644 --- a/ngx_rtmp_init.c +++ b/ngx_rtmp_init.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp.h" diff --git a/ngx_rtmp_limit_module.c b/ngx_rtmp_limit_module.c index 4044624..7bdbba9 100644 --- a/ngx_rtmp_limit_module.c +++ b/ngx_rtmp_limit_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp.h" diff --git a/ngx_rtmp_live_module.c b/ngx_rtmp_live_module.c index 964108c..8217644 100644 --- a/ngx_rtmp_live_module.c +++ b/ngx_rtmp_live_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_live_module.h" #include "ngx_rtmp_cmd_module.h" #include "ngx_rtmp_codec_module.h" diff --git a/ngx_rtmp_live_module.h b/ngx_rtmp_live_module.h index ec60716..7dae4c7 100644 --- a/ngx_rtmp_live_module.h +++ b/ngx_rtmp_live_module.h @@ -7,6 +7,8 @@ #define _NGX_RTMP_LIVE_H_INCLUDED_ +#include +#include #include "ngx_rtmp.h" #include "ngx_rtmp_cmd_module.h" #include "ngx_rtmp_bandwidth.h" diff --git a/ngx_rtmp_log_module.c b/ngx_rtmp_log_module.c index 7bef250..0faf793 100644 --- a/ngx_rtmp_log_module.c +++ b/ngx_rtmp_log_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_cmd_module.h" diff --git a/ngx_rtmp_mp4_module.c b/ngx_rtmp_mp4_module.c index 32c64c5..543f014 100644 --- a/ngx_rtmp_mp4_module.c +++ b/ngx_rtmp_mp4_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_play_module.h" #include "ngx_rtmp_codec_module.h" #include "ngx_rtmp_streams.h" diff --git a/ngx_rtmp_notify_module.c b/ngx_rtmp_notify_module.c index cef2f2c..bfb6d18 100644 --- a/ngx_rtmp_notify_module.c +++ b/ngx_rtmp_notify_module.c @@ -6,7 +6,6 @@ #include #include #include "ngx_rtmp.h" - #include "ngx_rtmp_cmd_module.h" #include "ngx_rtmp_netcall_module.h" #include "ngx_rtmp_record_module.h" diff --git a/ngx_rtmp_play_module.c b/ngx_rtmp_play_module.c index 272e594..75c11f7 100644 --- a/ngx_rtmp_play_module.c +++ b/ngx_rtmp_play_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_play_module.h" #include "ngx_rtmp_cmd_module.h" #include "ngx_rtmp_netcall_module.h" diff --git a/ngx_rtmp_play_module.h b/ngx_rtmp_play_module.h index 8fdc332..a8534d2 100644 --- a/ngx_rtmp_play_module.h +++ b/ngx_rtmp_play_module.h @@ -7,6 +7,8 @@ #define _NGX_RTMP_PLAY_H_INCLUDED_ +#include +#include #include "ngx_rtmp.h" #include "ngx_rtmp_cmd_module.h" diff --git a/ngx_rtmp_receive.c b/ngx_rtmp_receive.c index eb8a569..6c1c2e7 100644 --- a/ngx_rtmp_receive.c +++ b/ngx_rtmp_receive.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp.h" #include "ngx_rtmp_amf.h" #include "ngx_rtmp_cmd_module.h" diff --git a/ngx_rtmp_record_module.h b/ngx_rtmp_record_module.h index 7ae4b62..5b9a58c 100644 --- a/ngx_rtmp_record_module.h +++ b/ngx_rtmp_record_module.h @@ -7,6 +7,8 @@ #define _NGX_RTMP_RECORD_H_INCLUDED_ +#include +#include #include "ngx_rtmp.h" diff --git a/ngx_rtmp_relay_module.c b/ngx_rtmp_relay_module.c index b4014cc..4944b04 100644 --- a/ngx_rtmp_relay_module.c +++ b/ngx_rtmp_relay_module.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp_relay_module.h" #include "ngx_rtmp_cmd_module.h" diff --git a/ngx_rtmp_relay_module.h b/ngx_rtmp_relay_module.h index 67dbb04..ded79b5 100644 --- a/ngx_rtmp_relay_module.h +++ b/ngx_rtmp_relay_module.h @@ -7,6 +7,8 @@ #define _NGX_RTMP_RELAY_H_INCLUDED_ +#include +#include #include "ngx_rtmp.h" diff --git a/ngx_rtmp_send.c b/ngx_rtmp_send.c index 69253ea..772a2a4 100644 --- a/ngx_rtmp_send.c +++ b/ngx_rtmp_send.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp.h" #include "ngx_rtmp_amf.h" #include "ngx_rtmp_streams.h" diff --git a/ngx_rtmp_shared.c b/ngx_rtmp_shared.c index 6bab35d..527571b 100644 --- a/ngx_rtmp_shared.c +++ b/ngx_rtmp_shared.c @@ -3,6 +3,8 @@ */ +#include +#include #include "ngx_rtmp.h" diff --git a/ngx_rtmp_stat_module.c b/ngx_rtmp_stat_module.c index 5e11d3d..6026ab8 100644 --- a/ngx_rtmp_stat_module.c +++ b/ngx_rtmp_stat_module.c @@ -3,9 +3,9 @@ */ -#include +#include +#include #include - #include "ngx_rtmp.h" #include "ngx_rtmp_live_module.h" #include "ngx_rtmp_play_module.h"