Changed the some functions prototypes for the network streaming.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3042 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
bertrand 2001-11-20 22:17:16 +00:00
parent 04178fa6f9
commit e70d05ec5a
1 changed files with 4 additions and 3 deletions

View File

@ -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