# HG changeset patch # User bertrand # Date 1006294636 0 # Node ID 6b31e121f36ae45ae3ad3e0f0eee1f27c160bce8 # Parent 9fad4017ec375d2c8ccaea62101d9235e3c9c098 Changed the some functions prototypes for the network streaming. diff -r 9fad4017ec37 -r 6b31e121f36a libmpdemux/asf.h --- 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 #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