summaryrefslogtreecommitdiffstats
path: root/asf.h
diff options
context:
space:
mode:
authorbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-29 17:04:52 +0000
committerbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-29 17:04:52 +0000
commit529e11ebc65ac26a6c1b633aa3aa6a22b75e2f62 (patch)
tree3d867c43fcef2bb9f8bc184c07c8a5dc56aab194 /asf.h
parentdb73e496b0fc1a91c984e5bcb62cf2dfb34d45e7 (diff)
downloadmpv-529e11ebc65ac26a6c1b633aa3aa6a22b75e2f62.tar.bz2
mpv-529e11ebc65ac26a6c1b633aa3aa6a22b75e2f62.tar.xz
Added some functions prototypes.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@905 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'asf.h')
-rw-r--r--asf.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/asf.h b/asf.h
index 007d1ab5d7..5fb6ce9d81 100644
--- a/asf.h
+++ b/asf.h
@@ -3,6 +3,8 @@
#include <inttypes.h>
+#include "url.h"
+
#ifndef MIN
#define MIN(a,b) ((a<b)?a:b)
#endif
@@ -111,4 +113,8 @@ typedef enum {
ASF_Redirector_e
} ASF_StreamType_e;
+
+int asf_http_streaming_type(char *content_type, char *features);
+int asf_http_streaming_start( URL_t **url_ref );
+
#endif