summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
Commit message (Collapse)AuthorAge
* Document rtsp.h, see "[PATCH] document rtsp.h" thread.Ronald S. Bultje2009-02-26
| | | | Originally committed as revision 17614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename RTSPHeader to RTSPMessageHeader to reflect more clearly what theRonald S. Bultje2009-02-21
| | | | | | | structure is meant to represent. See "[PATCH] rtsp.[ch]: RTSPHeader -> RTSPServerResponse" and "[PATCH] document rtsp.h" threads on ML. Originally committed as revision 17504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename RTSP_*_LAST to RTSP_*_NB in line with PIX_FMT_* in lavc. See "[PATCH]Ronald S. Bultje2009-02-16
| | | | | | document rtsp.h" mailinglist thread. Originally committed as revision 17381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't install rtsp.h. It is intended to be private, it depends on rtp codeRonald S. Bultje2009-02-16
| | | | | | | | | which isn't installed anyway (so it doesn't work). In the process, also remove public/private API comments from rtsp headers because they are unnecessary. Originally committed as revision 17379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split rtp.h in rtp.h, rtpdec.h, and rtpenc.hLuca Abeni2009-02-06
| | | | Originally committed as revision 17016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename "tx_ctx" and "cur_tx" variables to "transport_priv" andRonald S. Bultje2009-02-05
| | | | | | | "cur_transport_priv", as discussed in the "[PATCH] rtsp.h: rename tx variables" thread. Originally committed as revision 17012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete an enum and a function typedef that aren't used anywhere, andRonald S. Bultje2009-02-05
| | | | | | | move move a struct/typedef in rtsp.h that is only used in ffserver.c into ffserver.c. See "[PATCH] rtsp.h: move/remove unused thingies" thread on ML. Originally committed as revision 17005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move enum RTSPTransport up a bit, so that all fields that are assigned a valueRonald S. Bultje2009-02-04
| | | | | | | | of this type can be properly attributed as such (in this case, transport in the RTSPTransportField struct). See "[PATCH] RTSP-MS 10/15: ASF header parsing" thread on mailinglist. Originally committed as revision 16989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo ("Standard-compliant" -> "Standards-compliant"), as noticed byRonald S. Bultje2009-01-07
| | | | | | Diego. Originally committed as revision 16475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix doxy comments missing one '*'.Ronald S. Bultje2009-01-07
| | | | Originally committed as revision 16473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the "server" RTSP field to detect whether the server that we're talkingRonald S. Bultje2009-01-07
| | | | | | | | to is a Microsoft Windows Media Server (the field will be "WMServer/version"). See "[PATCH] RTSP-MS 3/15: Add Windows Media Server type" thread on mailinglist. Originally committed as revision 16472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export RTSPState and RTSPStream from rtsp.c into rtsp.h. This allows futureRonald S. Bultje2009-01-07
| | | | | | | | access to these structures in functions that will be located in rtp_asf.c. See "[PATCH] RTSP-MS 2/15: export RTSPState and RTSPStream" mailinglist thread. Originally committed as revision 16471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a RTSPTransport field, which allows proper separation of serverRonald S. Bultje2008-09-30
| | | | | | | | types and their non-standard extensions, and the data they serve. Practically, this patch allows Real servers to serve normal non-RDT (standard RTP) data. See discussion on ML in "Realmedia patch" thread. Originally committed as revision 15484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename RTSPProtocol to RTSPLowerTransport, so that its name properly tells usRonald S. Bultje2008-09-30
| | | | | | | | that it only describes the lower-level transport (TCP vs. UDP) and not the actual data layout (e.g. RDT vs. RTP). See discussion in "Realmedia patch" thread on ML. Originally committed as revision 15481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read RealChallenge1 field from the server.Ronald S. Bultje2008-08-31
| | | | Originally committed as revision 15124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert back to old version (r15103).Ronald S. Bultje2008-08-31
| | | | Originally committed as revision 15122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RTSP/Realmedia-compatible OPTIONS command. See "Realmedia patch"Ronald S. Bultje2008-08-31
| | | | | | | | | | thread on mailinglist for discussion. This patch also implements a RTSPServerType enum, which allows the RTSP to keep track of what kind of a stream we're handling: standard-compliant RTP or a proprietary derivative. This will be used in subsequent patches to implement more Realmedia-specific extensions required to receive and parse data coming from a Realmedia server. Originally committed as revision 15104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow cycling between different protocols (TCP, UDP or multicast) so that ifRonald S. Bultje2008-03-19
| | | | | | | | | one doesn't work, we can try the next one (i.e. trial-error protocol auto- probing). Discussed and approved in "[PATCH] RTSP alternate protocol 2-3/3". Originally committed as revision 12504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop RTSP default protocol.Ronald S. Bultje2008-01-02
| | | | | | patch by Ronald S. Bultje, rsbultje gmail com Originally committed as revision 11377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-17
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtp and rtsp demuxer declarations are not part of public APIAurelien Jacobs2007-09-10
| | | | Originally committed as revision 10474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* include all prerequisites in header filesMåns Rullgård2007-06-16
| | | | Originally committed as revision 9344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused rtsp_callbackAlex Beregszaszi2007-04-26
| | | | Originally committed as revision 8832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make rtsp_set_callback() comments available to DoxygenPanagiotis Issaris2007-03-05
| | | | Originally committed as revision 8257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move unaltered rtsp.c comments to the header file.Panagiotis Issaris2007-03-05
| | | | Originally committed as revision 8256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Doxygenize comments in rtsp.hPanagiotis Issaris2007-03-05
| | | | Originally committed as revision 8255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert macro+enum into a simple enum: Currently the enum was filled using aPanagiotis Issaris2007-03-05
| | | | | | | | | macro that also contained a description for every field, but, that description was not being used anywhere. This changes it, to make the description available as a Doxygen comment. Furthermore, it is now easily parsable by Doxygen, while before it messed up the documentation. Originally committed as revision 8254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give AVInput/OutputFormat structs consistent namesMåns Rullgård2006-07-09
| | | | Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTP/RTSP and MPEG4-AAC audioRomain Degez2005-05-26
| | | | | | | | | | - preliminary support for mpeg4-aac rtp payload (no interleaving support) - use udp transport as default (makes more sense with rtp, doesn't it ?) - some code factorization, so adding support for new rtp payload will be easier (I hope ;-) patch by (Romain DEGEZ: romain degez, smartjog com) Originally committed as revision 4306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initial seek support - more generic play/pause supportFabrice Bellard2003-11-10
| | | | Originally committed as revision 2495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* suppressed RTSP abort hack - added PLAY/PAUSEFabrice Bellard2003-07-17
| | | | Originally committed as revision 2060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-11
| | | | Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renamed libav to libavformatFabrice Bellard2002-11-25
Originally committed as revision 1276 to svn://svn.ffmpeg.org/ffmpeg/trunk