summaryrefslogtreecommitdiff
path: root/libavformat/rtmpproto.c
Commit message (Collapse)AuthorAge
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_url_split() publicMåns Rullgård2010-06-27
| | | | | | | ff_url_split() is retained as an alias, as it was used by ffserver, to avoid breaking ABI compatibility with it. Originally committed as revision 23822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTMP: Return from rtmp_read as soon as some data is availableMartin Storsjö2010-06-18
| | | | | | | | Earlier, the function only returned when the enough data to fill the requested buffer was available. This lead to high latency when receiving low-bandwidth streams. Originally committed as revision 23642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare the url_write buffer parameter as constMartin Storsjö2010-06-01
| | | | Originally committed as revision 23401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 24l trocadero: RTMP reader forgot to shift high byte of timestamp to itstrueice@gmail.com2010-05-25
| | | | | | | | proper position Patch by trueice (his gmail account is obvious) Originally committed as revision 23305 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move ff_url_split() and ff_url_join() declarations to internal.hAurelien Jacobs2010-03-14
| | | | | | those functions are not part of the public API Originally committed as revision 22534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ReindentMartin Storsjö2010-03-08
| | | | Originally committed as revision 22322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename url_split to ff_url_splitMartin Storsjö2010-03-08
| | | | | | Since this function isn't in the public API, it should have an ff_ prefix. Originally committed as revision 22321 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ff_url_join for assembling URLs, instead of snprintfMartin Storsjö2010-03-05
| | | | | | | | | This ensures proper escaping of numerical IPv6 addresses. The RTSP (de)muxer needs its own network initialization, since it isn't a protocol and url_open hasn't been called yet. Originally committed as revision 22226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make RTMP client send bytes read reportKostya Shishkov2010-02-18
| | | | Originally committed as revision 21882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* another 10l: forgot to change parent condition as wellKostya Shishkov2010-01-30
| | | | Originally committed as revision 21535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l trocadero: now return value of ff_rtmp_packet_read() has different meaningKostya Shishkov2010-01-30
| | | | Originally committed as revision 21534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct timestamps inside FLV data received by RTMP.Sergiy2010-01-12
| | | | | | Patch by Sergiy (gmail(piratfm)) Originally committed as revision 21161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use old-style RTMP handshake for old servers.Art Clarke2010-01-12
| | | | | | | This fixes issue streaming from Red5 server. Patch by Art Clarke (aclarke@`echo xyzzy|sed s/y/u/|sed s/y/le/|tr z g`.com) Originally committed as revision 21160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reply to RTMP ping with the same value as received by client.Martin Storsjö2009-12-16
| | | | | | Patch by Martin Storsjö ($name at $name dot \163\164) Originally committed as revision 20881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dump RTMP packet contents in debug modeKostya Shishkov2009-12-11
| | | | Originally committed as revision 20799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 5l trocadero: don't forget to free packet in gen_connect()Martin Storsjö2009-12-11
| | | | | | Patch by Martin Storsjö ($name at $name dot `abbreviation for "street"`) Originally committed as revision 20798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not try to interact with RTMP server after "stop" command was received.Martin Storsjö2009-12-11
| | | | | | Patch by Martin Storsjö ($name at $name dot `Sao Tome and Principe domain`) Originally committed as revision 20797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: insert space between codeword and left parenthesisKostya Shishkov2009-12-06
| | | | Originally committed as revision 20746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not send invokes to RTMP server if we are not connected to it.Sergiy2009-12-06
| | | | | | Patch by Sergiy (server.connect("gmail.com").selectAddress("piratfm")) Originally committed as revision 20745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitKostya Shishkov2009-12-04
| | | | Originally committed as revision 20732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement RTMP output (publishing FLV stream to RTMP server).Sergiy2009-12-04
| | | | | | Patch by Sergiy (piratfm at `do-no-evil-mail`.com) Originally committed as revision 20731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicating variableKostya Shishkov2009-12-03
| | | | Originally committed as revision 20718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Send connect() and createStream() in RTMP system channel, not video channel.Sergiy2009-12-03
| | | | | | Patch by Sergiy (com gmail . piratfm @ mail =) Originally committed as revision 20716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move "app" string into RTMP protocol context.Sergiy2009-12-03
| | | | | | Patch by Sergiy (com.gmail@piratfm) Originally committed as revision 20715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move is_input flag into RTMP protocol context.Sergiy2009-12-02
| | | | | | | Patch by Sergiy (gmail(piratfm)) Thread "[PATCH] rtmp-output" Originally committed as revision 20702 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Full-header RTMP packets contain real timestamp, others contain timestampKostya Shishkov2009-12-01
| | | | | | | | difference, so make all read packets store absolute timestamp. As a consequence, we don't need to track audio/video timestamps separately any longer in protocol handler. Originally committed as revision 20685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print error when RTMP protocol can't open connectionKostya Shishkov2009-11-22
| | | | Originally committed as revision 20574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass only useful FLV metadata from RTMP streamKostya Shishkov2009-11-22
| | | | Originally committed as revision 20573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split overly long line in doxy.Stefano Sabatini2009-11-12
| | | | Originally committed as revision 20529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Last parameter in RTMP "play" call was optional and some servers seem not toKostya Shishkov2009-10-18
| | | | | | understand it, so drop it. Originally committed as revision 20268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not include "mp4:" prefix from RTMP URL into "app" path or second timeLars Täuber2009-09-17
| | | | | | | | | into playpath. Patch by Lars Täuber (<$name> . <$lastname with umlaut replaced with diphtong> @ <gmx> . <net>) Originally committed as revision 19894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTMP protocol support (as a client)Kostya Shishkov2009-07-31
Originally committed as revision 19556 to svn://svn.ffmpeg.org/ffmpeg/trunk