mirror of
https://github.com/mpv-player/mpv
synced 2024-12-20 13:52:10 +00:00
strncasecmp is not necessary and e.g. strncasecmp(prot, "mms", 3) will
also match e.g. mmshttp! Thanks to Ian Remmler for noticing. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16113 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
58eab3c054
commit
bc7eccf0f1
@ -51,7 +51,7 @@ static int asf_streaming_start( stream_t *stream, int *demuxer_type) {
|
|||||||
int port = stream->streaming_ctrl->url->port;
|
int port = stream->streaming_ctrl->url->port;
|
||||||
|
|
||||||
// Is protocol mms or mmsu?
|
// Is protocol mms or mmsu?
|
||||||
if (!strncasecmp(proto, "mmsu", 4) || !strncasecmp(proto, "mms", 3))
|
if (!strcasecmp(proto, "mmsu") || !strcasecmp(proto, "mms"))
|
||||||
{
|
{
|
||||||
mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/UDP...\n");
|
mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/UDP...\n");
|
||||||
//fd = asf_mmsu_streaming_start( stream );
|
//fd = asf_mmsu_streaming_start( stream );
|
||||||
@ -61,7 +61,7 @@ static int asf_streaming_start( stream_t *stream, int *demuxer_type) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Is protocol mms or mmst?
|
//Is protocol mms or mmst?
|
||||||
if (!strncasecmp(proto, "mmst", 4) || !strncasecmp(proto, "mms", 3))
|
if (!strcasecmp(proto, "mmst") || !strcasecmp(proto, "mms"))
|
||||||
{
|
{
|
||||||
mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/TCP...\n");
|
mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/TCP...\n");
|
||||||
fd = asf_mmst_streaming_start( stream );
|
fd = asf_mmst_streaming_start( stream );
|
||||||
@ -72,8 +72,8 @@ static int asf_streaming_start( stream_t *stream, int *demuxer_type) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Is protocol http, http_proxy, or mms?
|
//Is protocol http, http_proxy, or mms?
|
||||||
if (!strncasecmp(proto, "http_proxy", 10) || !strncasecmp(proto, "http", 4) ||
|
if (!strcasecmp(proto, "http_proxy") || !strcasecmp(proto, "http") ||
|
||||||
!strncasecmp(proto, "mms", 3) || !strncasecmp(proto, "mmshttp", 7))
|
!strcasecmp(proto, "mms") || !strcasecmp(proto, "mmshttp"))
|
||||||
{
|
{
|
||||||
mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/HTTP...\n");
|
mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/HTTP...\n");
|
||||||
fd = asf_http_streaming_start( stream, demuxer_type );
|
fd = asf_http_streaming_start( stream, demuxer_type );
|
||||||
|
Loading…
Reference in New Issue
Block a user