summaryrefslogtreecommitdiffstats
path: root/libmpdemux/asf_mmst_streaming.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix bugs/crash introduced by translation patchreimar2005-11-061-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16931 b3059339-0415-0410-9bf9-f77b7e298cf2
* Changed MSGTR_MPDEMUX_MMST_MallocFailed to MSGTR_MemAllocFailed (msg defined ↵ptt2005-11-051-1/+1
| | | | | | two times inhelp_mp-en.h) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16907 b3059339-0415-0410-9bf9-f77b7e298cf2
* libmpdemux translatables to help_mp part 1 / mp_msg calls / try 2reynaldo2005-10-311-29/+30
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16883 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix longstanding typo - "patentend"wanderer2005-08-311-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16331 b3059339-0415-0410-9bf9-f77b7e298cf2
* some debugging codealex2005-06-031-0/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15629 b3059339-0415-0410-9bf9-f77b7e298cf2
* printf converted to mp_msg; made static many unnecessarily global symbolsnicodvb2005-06-031-39/+37
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15627 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use define instead of hardcodec value for max streams numberrtognimp2005-04-161-2/+3
| | | | | | | Pathc by Dominik 'Rathann' Mierzejewski git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15182 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix potential buffer overflow for urls with more than 20 streamsrtognimp2005-04-151-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15174 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make string_utf16 code behave almost the same with or without iconvrtognimp2005-04-131-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15151 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove all setlocale calls, they break the behaviour of sscanf andreimar2005-01-201-3/+1
| | | | | | | | strcasecmp, especially with tr_TR locale - and do not seem to be good for anything. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14543 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix a problem pointed out by iDEFENSE and several similar ones.reimar2004-12-151-1/+25
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14164 b3059339-0415-0410-9bf9-f77b7e298cf2
* typo noticed by Shixin Zeng <shixinzeng at sjtu dot edu dot cn>diego2004-10-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13601 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use port number embedded in url for mms streamsrtognimp2004-08-071-1/+3
| | | | | | | Patch by Bertrand Baudet git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12969 b3059339-0415-0410-9bf9-f77b7e298cf2
* WMP doesn't encode urls with mmst protocolrtognimp2004-07-021-1/+15
| | | | | | | Patch by Ilia ( chest4l at mail dot ru ) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12752 b3059339-0415-0410-9bf9-f77b7e298cf2
* disable iconv in case setlocale is disabled - compile fixalex2004-06-261-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12676 b3059339-0415-0410-9bf9-f77b7e298cf2
* user nl_langinfo if langinfo support present for proper chinese support, ↵alex2004-06-261-1/+8
| | | | | | feature requested by Shixin Zheng <shixinzheng@sjtu.edu.cn> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12675 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix hang on broken mmst streamsrtognimp2004-06-071-1/+2
| | | | | | | Patch by adland git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12546 b3059339-0415-0410-9bf9-f77b7e298cf2
* make gcc eating this under hurdalex2004-04-051-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12122 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix hanging at end of mms:// streams.rtognimp2004-03-281-1/+2
| | | | | | | Patch by adland git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12078 b3059339-0415-0410-9bf9-f77b7e298cf2
* Warning fixes (approved by A'rpi).rathann2003-11-081-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11413 b3059339-0415-0410-9bf9-f77b7e298cf2
* fallback to non-iconv dummy utf16 conversion if iconv failedalex2003-11-061-35/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11404 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove uncommon langinfo code and replace it by more common setlocal. patch ↵alex2003-11-061-2/+1
| | | | | | by Steven M. Schultz <sms@2BSD.COM> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11403 b3059339-0415-0410-9bf9-f77b7e298cf2
* Current mplayer (mine is mplayer-1.0-pre1cvs20031001) cannot play mmsattila2003-11-011-0/+44
| | | | | | | | | | | | | | | | | | | stream with multibyte characters in the url. There is a bug in string_utf16() of libmpdemux/asf_mmst_streaming.c: the url encoding code is written for single-byte character only. It just fill a zero byte between every two adjacent bytes of the url string. This is wrong when the url string contains multi-byte characters. My patch is in the attachment, and has been tested working. It uses iconv() to convert the url's encoding to utf-16 correctly. So can this patch be accepted and commit into CVS? patch by Wang WenRui <wangwr@mail.ustc.edu.cn> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11351 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10lalex2003-10-221-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11227 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixing tons of 10ls. Patch by rgselk <rgselknospam@yahoo.com>alex2003-10-221-10/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11226 b3059339-0415-0410-9bf9-f77b7e298cf2
* ftp support. The change on connect2Server is needed bcs we need 2albeu2003-08-151-1/+1
| | | | | | | different level of verbosity for control and data connections. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10626 b3059339-0415-0410-9bf9-f77b7e298cf2
* Networking support under MinGW.diego2003-06-111-1/+7
| | | | | | | Patch by flo/yepyep <flodt8@yahoo.de>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10282 b3059339-0415-0410-9bf9-f77b7e298cf2
* Using recv/send instead read/write for proper MinGW support (it's a 4.2BSD ↵alex2003-05-291-5/+5
| | | | | | standard). Patch by FloDt <flodt8@yahoo.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10207 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l found by yepyepalex2003-05-251-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10184 b3059339-0415-0410-9bf9-f77b7e298cf2
* debug printfarpi2002-10-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7978 b3059339-0415-0410-9bf9-f77b7e298cf2
* GCC warning fixesbertrand2002-10-291-11/+15
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7954 b3059339-0415-0410-9bf9-f77b7e298cf2
* - fixed several 10l bugsarpi2002-10-231-198/+106
| | | | | | | | - using get_media_packet impl. from mmsclient 0.0.3 - buffering code simplified/fixed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7881 b3059339-0415-0410-9bf9-f77b7e298cf2
* tons of warning fixes, also some 10l bugfixes, including Dominik's PVA bugarpi2002-09-221-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7473 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed an unknown command. Looks like it's a new command from WMS9.bertrand2002-09-071-3/+10
| | | | | | | Changed all the exit by return -1 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7310 b3059339-0415-0410-9bf9-f77b7e298cf2
* Checked if the connection succeeded before writing in the socket.bertrand2002-09-031-0/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7251 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added support for asf mmst protocol.bertrand2002-05-141-0/+628
Implementation taken from the xine-mms plugin made by majormms Modified to work with mplayer by Abhijeet Phatak <abhijeetphatak@yahoo.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6093 b3059339-0415-0410-9bf9-f77b7e298cf2