changeset 3041:6b31e121f36a

Changed the some functions prototypes for the network streaming.
author bertrand
date Tue, 20 Nov 2001 22:17:16 +0000
parents 9fad4017ec37
children 6b6fa2be9b97
files libmpdemux/asf.h
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/asf.h	Tue Nov 20 22:15:32 2001 +0000
+++ b/libmpdemux/asf.h	Tue Nov 20 22:17:16 2001 +0000
@@ -5,6 +5,7 @@
 #include <inttypes.h>
 #include "bswap.h"
 #ifdef	STREAMING
+#include "stream.h"
 #include "network.h"
 #endif
 
@@ -191,9 +192,9 @@
 
 
 #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