summaryrefslogtreecommitdiffstats
path: root/asf.h
diff options
context:
space:
mode:
authorbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-04 17:54:04 +0000
committerbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-04 17:54:04 +0000
commitfb21ccfb73079e6fb9dd671b8ed5b3d0d6789b93 (patch)
tree0111bdc2fa3e21eaba738468c53ba2911ccc82b7 /asf.h
parentfc3822a39693169d44c264dee5a42760c8e1138a (diff)
downloadmpv-fb21ccfb73079e6fb9dd671b8ed5b3d0d6789b93.tar.bz2
mpv-fb21ccfb73079e6fb9dd671b8ed5b3d0d6789b93.tar.xz
Modified functions prototype.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1001 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'asf.h')
-rw-r--r--asf.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/asf.h b/asf.h
index 5fb6ce9d81..6c0458241c 100644
--- a/asf.h
+++ b/asf.h
@@ -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 @@ typedef enum {
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