# HG changeset patch # User bertrand # Date 1021415610 0 # Node ID 0f4dbbe57c089a89adf9bb3ccf98e70227193465 # Parent 839bc172ea4aca3c8f6bb9e400767a4a56d941bc Enable mmst support. MMST will be tried if the HTTP support failed. diff -r 839bc172ea4a -r 0f4dbbe57c08 libmpdemux/asf_streaming.c --- a/libmpdemux/asf_streaming.c Tue May 14 22:32:37 2002 +0000 +++ b/libmpdemux/asf_streaming.c Tue May 14 22:33:30 2002 +0000 @@ -43,6 +43,12 @@ // internet connection, the TCP connection will not get // through // * Then we can try HTTP. +// +// Note: MMS/HTTP support is now a "well known" support protocol, +// it has been tested for while, not like MMST support. +// WMP sequence is MMSU then MMST and then HTTP. +// In MPlayer case since HTTP support is more reliable, +// we are doing HTTP first then we try MMST if HTTP fail. int asf_streaming_start( stream_t *stream ) { char proto_s[10]; @@ -50,6 +56,15 @@ strncpy( proto_s, stream->streaming_ctrl->url->protocol, 10 ); + if( !strncasecmp( proto_s, "http", 4) || + !strncasecmp( proto_s, "mms", 3) || + !strncasecmp( proto_s, "http_proxy", 10) + ) { + mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/HTTP...\n"); + fd = asf_http_streaming_start( stream ); + if( fd!=-1 ) return fd; + mp_msg(MSGT_NETWORK,MSGL_V," ===> ASF/HTTP failed\n"); + } if( !strncasecmp( proto_s, "mms", 3) && strncasecmp( proto_s, "mmst", 4) ) { mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/UDP...\n"); //fd = asf_mmsu_streaming_start( stream ); @@ -58,19 +73,10 @@ } if( !strncasecmp( proto_s, "mms", 3) ) { mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/TCP...\n"); - //fd = asf_mmst_streaming_start( stream ); + fd = asf_mmst_streaming_start( stream ); if( fd!=-1 ) return fd; mp_msg(MSGT_NETWORK,MSGL_V," ===> ASF/TCP failed\n"); } - if( !strncasecmp( proto_s, "http", 4) || - !strncasecmp( proto_s, "mms", 3) || - !strncasecmp( proto_s, "http_proxy", 10) - ) { - mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/HTTP...\n"); - fd = asf_http_streaming_start( stream ); - if( fd!=-1 ) return fd; - mp_msg(MSGT_NETWORK,MSGL_V," ===> ASF/HTTP failed\n"); - } mp_msg(MSGT_NETWORK,MSGL_ERR,"Unknown protocol: %s\n", proto_s ); return -1;