# HG changeset patch # User mosu # Date 1067695832 0 # Node ID 786407b1bc783256dd705872d68dd3bab51f84e9 # Parent e740b4a7a194027f8ca5aebaf2053552a5d9a125 Accept video/x-ms-asf as the MIME type for ASF as well. Patch by Dominique Andre Gunia . diff -r e740b4a7a194 -r 786407b1bc78 libmpdemux/asf_streaming.c --- a/libmpdemux/asf_streaming.c Fri Oct 31 23:00:45 2003 +0000 +++ b/libmpdemux/asf_streaming.c Sat Nov 01 14:10:32 2003 +0000 @@ -421,7 +421,8 @@ if( content_type==NULL ) return ASF_Unknown_e; if( !strcasecmp(content_type, "application/octet-stream") || !strcasecmp(content_type, "application/vnd.ms.wms-hdr.asfv1") || // New in Corona, first request - !strcasecmp(content_type, "application/x-mms-framed") ) { // New in Corana, second request + !strcasecmp(content_type, "application/x-mms-framed") || // New in Corana, second request + !strcasecmp(content_type, "video/x-ms-asf")) { if( strstr(features, "broadcast") ) { mp_msg(MSGT_NETWORK,MSGL_V,"=====> ASF Live stream\n");