Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Oliver <protogonoi@gmail.com>2014-01-20 16:13:51 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-01-23 17:33:56 +0400
commit306e1ac012d00f1ac9a8c9547a5c72b052de2dd4 (patch)
tree4a390e39fd2e75adb21803700e13cae65ff077d3 /libavformat/tls.c
parente6d1c66d742d766a80a26ed2a9524a0fffbcf958 (diff)
avformat/tls: Fix windows build with openSSL enabled.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/tls.c')
-rw-r--r--libavformat/tls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/tls.c b/libavformat/tls.c
index 5da82db796..7fd18cfce0 100644
--- a/libavformat/tls.c
+++ b/libavformat/tls.c
@@ -24,6 +24,9 @@
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
+#include "network.h"
+#include "os_support.h"
+#include "internal.h"
#if CONFIG_GNUTLS
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
@@ -50,9 +53,6 @@
SSL_CTX_free(c->ctx); \
} while (0)
#endif
-#include "network.h"
-#include "os_support.h"
-#include "internal.h"
#if HAVE_POLL_H
#include <poll.h>
#endif