summaryrefslogtreecommitdiffstats
path: root/libmpdemux/realrtsp
Commit message (Collapse)AuthorAgeFilesLines
* Patch by Stefan Huehner / stefan % huehner ! org \rathann2006-02-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | patch replaces '()' for the correct '(void)' in function declarations/prototypes which have no parameters. The '()' syntax tell thats there is a variable list of arguments, so that the compiler cannot check this. The extra CFLAG '-Wstrict-declarations' shows those cases. Comments about a similar patch applied to ffmpeg: That in C++ these mean the same, but in ANSI C the semantics are different; function() is an (obsolete) K&R C style forward declaration, it basically means that the function can have any number and any types of parameters, effectively completely preventing the compiler from doing any sort of type checking. -- Erik Slagter Defining functions with unspecified arguments is allowed but bad. With arguments unspecified the compiler can't report an error/warning if the function is called with incorrect arguments. -- Måns Rullgård git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17567 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix CSeq answer for keepalive OPTIONS requests during playbackrtognimp2006-02-081-2/+2
| | | | | | | | | The CSeq was mispelled as Cseq, so MPlayer alwys answered with CSeq=1 Fixed with help from xiojason on #mplayer git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17563 b3059339-0415-0410-9bf9-f77b7e298cf2
* OS X compilation fix: Include inttypes.h so that uint32_t is not undefined.diego2006-01-081-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17352 b3059339-0415-0410-9bf9-f77b7e298cf2
* This patch makes real rtsp tell the server to deliver data at specifiedrtognimp2006-01-064-4/+15
| | | | | | | | | | | | | bandwidth, if bandwidth cmdline option is given. Also, if that's given, it uses it for sdp stream selection. If not given, the behavior is the same as before. It's used to implement something like turboplay in realplayer. Patch by Tomas Janousek >>> tomi (At) nomi (.) cz <<< git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17333 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixrathann2005-12-051-0/+1
| | | | | | | | | pnm.c:228: warning: implicit declaration of function 'usec_sleep' realrtsp/rtsp.c:184: warning: implicit declaration of function 'usec_sleep' ad_acm.c:149: warning: implicit declaration of function 'usec_sleep' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17093 b3059339-0415-0410-9bf9-f77b7e298cf2
* Ignore OPTIONS rtsp command during playback. Fixesrtognimp2005-11-221-1/+2
| | | | | | | | | rtsp://mms.sonix.de/universal/rock/apocalyptica_lifeburns_300.rm?start=0 (playback stopped after 82 sec) Patch by adland git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17033 b3059339-0415-0410-9bf9-f77b7e298cf2
* replace sleep with usec_sleep, required for recent mingw versions, patch by ↵faust32005-09-031-1/+1
| | | | | | Robert Swain <robert.swain at gmail.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16373 b3059339-0415-0410-9bf9-f77b7e298cf2
* Revert fix v1.3, it breaks streams with cook audio (ex.rtognimp2005-07-061-3/+3
| | | | | | | | | rtsp://mm4.rai.it/raitre/blob/ultimo/blob.rm) Applied a different fix for the first buf[k] (ensure buf size is k+4) The second buf[k] is safe, buf is at least 32 when the code is called git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15933 b3059339-0415-0410-9bf9-f77b7e298cf2
* Do some sanity checks before writing stream informationrtognimp2005-07-061-1/+6
| | | | | | | | Patch by Sergio Gelato >Sergio dot Gelato at astro dot su dot se< and some additions by me git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15931 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix illegal memory accessesreimar2005-06-222-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15798 b3059339-0415-0410-9bf9-f77b7e298cf2
* printf converted to mp_msg; made static many unnecessarily global symbolsnicodvb2005-06-031-27/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15627 b3059339-0415-0410-9bf9-f77b7e298cf2
* ported all network streams to the new APInicodvb2005-05-291-0/+97
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15586 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix potential buffer overflow if server answers with too many linesrtognimp2005-04-151-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15173 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix security vulnerability reported by iDEFENSEreimar2004-12-151-1/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14160 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix streaming if not mlti_data (for some non-multirate streams)rtognimp2004-12-111-2/+4
| | | | | | | Also closes bug #151 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14145 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation when LOG is definedrtognimp2004-10-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13678 b3059339-0415-0410-9bf9-f77b7e298cf2
* EOF detection (fix hanging at end of stream)rtognimp2004-10-182-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13677 b3059339-0415-0410-9bf9-f77b7e298cf2
* chunk size fix from Ross Finlayson, ported from xinediego2004-09-081-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13290 b3059339-0415-0410-9bf9-f77b7e298cf2
* allow empty assignments, necessary for some weird servers...reimar2004-08-301-0/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13204 b3059339-0415-0410-9bf9-f77b7e298cf2
* small fixesrathann2004-08-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13188 b3059339-0415-0410-9bf9-f77b7e298cf2
* no redefinition, clashes with OpenBSDalex2004-07-181-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12846 b3059339-0415-0410-9bf9-f77b7e298cf2
* cseq starts from 1 according to the standard, patch by Yoshinori Satoalex2004-06-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12679 b3059339-0415-0410-9bf9-f77b7e298cf2
* More bounds checking fixes (thnaks to Miguel Freitas)rtognimp2004-04-252-26/+49
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12272 b3059339-0415-0410-9bf9-f77b7e298cf2
* Some sanity and bound checkingrtognimp2004-04-246-25/+71
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12267 b3059339-0415-0410-9bf9-f77b7e298cf2
* Try Real rtsp, then live.com on every rtsp stream (remove extensionrtognimp2004-04-141-1/+1
| | | | | | | based selection) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12207 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l let path behave like before the start/stop patchrtognimp2003-12-191-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11664 b3059339-0415-0410-9bf9-f77b7e298cf2
* keyframe detection support by rgselk <rgselknospam@yahoo.com>alex2003-12-081-3/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11596 b3059339-0415-0410-9bf9-f77b7e298cf2
* Real rtsp Range parameter (Start and End) support.rtognimp2003-11-233-2/+67
| | | | | | | Patch by rgselk <rgselknospam(at)yahoo(dot)com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11507 b3059339-0415-0410-9bf9-f77b7e298cf2
* many small typo and grammar fixesgabucino2003-10-041-2/+2
| | | | | | | Based on Bernard Leak's mail <bernard 4t brenda-arkle.demon.co.uk> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11001 b3059339-0415-0410-9bf9-f77b7e298cf2
* Networking support under MinGW.diego2003-06-113-2/+26
| | | | | | | Patch by flo/yepyep <flodt8@yahoo.de>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10282 b3059339-0415-0410-9bf9-f77b7e298cf2
* Warning fixes, patch by Dominik Mierzejewskirtognimp2003-06-011-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10233 b3059339-0415-0410-9bf9-f77b7e298cf2
* Using recv/send instead read/write for proper MinGW support (it's a 4.2BSD ↵alex2003-05-292-4/+4
| | | | | | standard). Patch by FloDt <flodt8@yahoo.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10207 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix redirection in real rtsp connections.rtognimp2003-05-282-6/+12
| | | | | | | Patch by yepyep (sdpplin.c part not committed) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10200 b3059339-0415-0410-9bf9-f77b7e298cf2
* Accept Helix as a valid Real serverrtognimp2003-05-271-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10199 b3059339-0415-0410-9bf9-f77b7e298cf2
* Bigendian fix, with help from Viktor Rosenfeldrtognimp2003-05-171-86/+96
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10116 b3059339-0415-0410-9bf9-f77b7e298cf2
* Removed unneded Cygwin #ifdefs. Tested by Diego Biurrunrtognimp2003-04-204-24/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9947 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation for *BSD, Mac OS X and maybe others (info by Steven M. ↵rtognimp2003-04-192-0/+2
| | | | | | Schultz and Dan Christiansen) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9940 b3059339-0415-0410-9bf9-f77b7e298cf2
* Real rstp:// streaming support, ported from xinertognimp2003-04-1714-0/+4313
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9923 b3059339-0415-0410-9bf9-f77b7e298cf2