mirror of https://github.com/mpv-player/mpv
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:
parent
04178fa6f9
commit
e70d05ec5a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue