Mercurial > mplayer.hg
changeset 1000:40b11384693b
Modified functions prototype.
author | bertrand |
---|---|
date | Mon, 04 Jun 2001 17:54:04 +0000 |
parents | 92833c9472e8 |
children | 876c3edc2fa9 |
files | asf.h |
diffstat | 1 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/asf.h Mon Jun 04 17:52:33 2001 +0000 +++ b/asf.h Mon Jun 04 17:54:04 2001 +0000 @@ -1,9 +1,9 @@ -#ifndef ASF_H -#define ASF_H +#ifndef __ASF_H +#define __ASF_H #include <inttypes.h> -#include "url.h" +#include "network.h" #ifndef MIN #define MIN(a,b) ((a<b)?a:b) @@ -115,6 +115,9 @@ int asf_http_streaming_type(char *content_type, char *features); -int asf_http_streaming_start( URL_t **url_ref ); +int asf_http_streaming_start( streaming_ctrl_t *streaming_ctrl ); +int asf_http_streaming_read( streaming_ctrl_t *streaming_ctrl ); + +int asf_streaming(char *data, int length, int *drop_packet ); #endif