comparison libmpdemux/asf_streaming.c @ 12654:433c0d389f6f

correct spelling
author alex
date Fri, 25 Jun 2004 17:02:51 +0000
parents 48ae29c2298c
children ed7d73d336ad
comparison
equal deleted inserted replaced
12653:b40f21d9a43c 12654:433c0d389f6f
445 if( http_hdr->body_size>sizeof(ASF_obj_header_t) ) { 445 if( http_hdr->body_size>sizeof(ASF_obj_header_t) ) {
446 if( asf_header_check( http_hdr )==0 ) { 446 if( asf_header_check( http_hdr )==0 ) {
447 mp_msg(MSGT_NETWORK,MSGL_V,"=====> ASF Plain text\n"); 447 mp_msg(MSGT_NETWORK,MSGL_V,"=====> ASF Plain text\n");
448 return ASF_PlainText_e; 448 return ASF_PlainText_e;
449 } else if( (!strcasecmp(content_type, "text/html")) ) { 449 } else if( (!strcasecmp(content_type, "text/html")) ) {
450 mp_msg(MSGT_NETWORK,MSGL_V,"=====> HTML, mplayer is not a browser...yet!\n"); 450 mp_msg(MSGT_NETWORK,MSGL_V,"=====> HTML, MPlayer is not a browser...yet!\n");
451 return ASF_Unknown_e; 451 return ASF_Unknown_e;
452 } else { 452 } else {
453 mp_msg(MSGT_NETWORK,MSGL_V,"=====> ASF Redirector\n"); 453 mp_msg(MSGT_NETWORK,MSGL_V,"=====> ASF Redirector\n");
454 return ASF_Redirector_e; 454 return ASF_Redirector_e;
455 } 455 }