summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-09-09 10:30:58 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:16:45 +0200
commit691aa62ed689d4da093cb03ec6c6e0531c22f554 (patch)
tree639f642ade97df3f259f3ab7fb1da4e2d9c981c7 /stream
parent7a3fe6ccdbe745a92a8595a80f302665b8fdf649 (diff)
downloadmpv-691aa62ed689d4da093cb03ec6c6e0531c22f554.tar.bz2
mpv-691aa62ed689d4da093cb03ec6c6e0531c22f554.tar.xz
stream/http.c: Move mime_type_table extern declaration to network.h
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32108 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/http.c1
-rw-r--r--stream/network.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/stream/http.c b/stream/http.c
index 5523622f8f..0c8bb33f56 100644
--- a/stream/http.c
+++ b/stream/http.c
@@ -42,7 +42,6 @@
#include "network.h"
-extern const mime_struct_t mime_type_table[];
extern int stream_cache_size;
extern int network_bandwidth;
diff --git a/stream/network.h b/stream/network.h
index 897f697304..1c395acc49 100644
--- a/stream/network.h
+++ b/stream/network.h
@@ -59,6 +59,8 @@ typedef struct {
int demuxer_type;
} mime_struct_t;
+extern const mime_struct_t mime_type_table[];
+
streaming_ctrl_t *streaming_ctrl_new(void);
int streaming_bufferize( streaming_ctrl_t *streaming_ctrl, char *buffer, int size);