summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
Diffstat (limited to 'stream')
-rw-r--r--stream/cache2.c3
-rw-r--r--stream/network.c2
-rw-r--r--stream/tcp.c1
3 files changed, 2 insertions, 4 deletions
diff --git a/stream/cache2.c b/stream/cache2.c
index 6ad33d8664..0e6f2eef9b 100644
--- a/stream/cache2.c
+++ b/stream/cache2.c
@@ -28,12 +28,11 @@ static DWORD WINAPI ThreadProc(void* s);
#include "help_mp.h"
#include "stream.h"
+#include "input/input.h"
int stream_fill_buffer(stream_t *s);
int stream_seek_long(stream_t *s,off_t pos);
-extern int mp_input_check_interrupt(int time);
-
typedef struct {
// constats:
unsigned char *buffer; // base pointer of the alllocated buffer memory
diff --git a/stream/network.c b/stream/network.c
index 506474b6cd..8ac983ebe1 100644
--- a/stream/network.c
+++ b/stream/network.c
@@ -40,8 +40,6 @@
extern int stream_cache_size;
-extern int mp_input_check_interrupt(int time);
-
/* Variables for the command line option -user, -passwd, -bandwidth,
-user-agent and -nocookies */
diff --git a/stream/tcp.c b/stream/tcp.c
index a9b868c4d0..ad7e1d9398 100644
--- a/stream/tcp.c
+++ b/stream/tcp.c
@@ -19,6 +19,7 @@
#include "mp_msg.h"
#include "help_mp.h"
+#include "input/input.h"
#ifndef HAVE_WINSOCK2
#include <netdb.h>