mirror of https://github.com/mpv-player/mpv
Added some functions prototypes.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@905 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
db73e496b0
commit
529e11ebc6
6
asf.h
6
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
|
||||
|
|
Loading…
Reference in New Issue