summaryrefslogtreecommitdiffstats
path: root/libmpdemux/asf.h
diff options
context:
space:
mode:
authorbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-20 22:17:16 +0000
committerbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-20 22:17:16 +0000
commite70d05ec5a684748a11fa9ececbb3ce1b512da8c (patch)
tree88440d8dd0c14b2fe7a7e792dbf82b20096d784f /libmpdemux/asf.h
parent04178fa6f9b10371acd8245602bd66ab698d7504 (diff)
downloadmpv-e70d05ec5a684748a11fa9ececbb3ce1b512da8c.tar.bz2
mpv-e70d05ec5a684748a11fa9ececbb3ce1b512da8c.tar.xz
Changed the some functions prototypes for the network streaming.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3042 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/asf.h')
-rw-r--r--libmpdemux/asf.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libmpdemux/asf.h b/libmpdemux/asf.h
index eabd9b54c8..c90c37a2c9 100644
--- a/libmpdemux/asf.h
+++ b/libmpdemux/asf.h
@@ -5,6 +5,7 @@
#include <inttypes.h>
#include "bswap.h"
#ifdef STREAMING
+#include "stream.h"
#include "network.h"
#endif
@@ -191,9 +192,9 @@ typedef enum {
#ifdef STREAMING
-int asf_http_streaming_type(char *content_type, char *features);
-int asf_http_streaming_start( streaming_ctrl_t *streaming_ctrl );
-int asf_http_streaming_read( streaming_ctrl_t *streaming_ctrl );
+//int asf_http_streaming_type(char *content_type, char *features);
+int asf_http_streaming_start( stream_t *stream );
+int asf_http_streaming_read( int fd, char *buffer, int size, streaming_ctrl_t *streaming_ctrl );
int asf_streaming(char *data, int length, int *drop_packet );
#endif