Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-07-30avformat: Drop pointless "format" from container long namesDiego Biurrun
2012-07-28Add missing libavutil/time.h includes.Anton Khirnov
2012-06-20Remove unnecessary inclusions of [sys/]time.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-03-19cosmetics: Align some AVInput/OutputFormat declarationsMartin Storsjö
Also add missing trailing commas. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-16rtp: Factorize the check for distinguishing RTCP packets from RTPMartin Storsjö
The binary doesn't change after this patch. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-28cosmetics: Remove extra newlines at EOFAlex Converse
2011-10-17rtsp: Merge the AVOption listsMartin Storsjö
This eases adding options that are common for both. The AV_OPT_FLAG_EN/DECODING_PARAM still indicates whether they belong to the muxer or demuxer. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-07-17lavf: use designated initialisers for all (de)muxers.Anton Khirnov
It's more readable and less prone to breakage.
2011-06-10rtspenc: Add RTP muxer optionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-06-10rtspenc: Add an AVClass for setting muxer specific optionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-08lavf: rename avf_sdp_create to av_sdp_create.Anton Khirnov
The new name is more consistent with the rest of the API.
2011-04-04avio: make url_get_file_handle() internal.Anton Khirnov
2011-04-04avio: make url_write() internal.Anton Khirnov
2011-04-04avio: make url_open_dyn_packet_buf internal.Anton Khirnov
It doesn't look fit to be a part of the public API. Adding a temporary hack to ffserver to be able to use it, should be cleaned up when somebody is up for it.
2011-04-04avio: avio_ prefix for url_close_dyn_bufAnton Khirnov
2011-03-23rtsp: Don't use a locale dependent format stringMartin Storsjö
In this particular case, we aren't ever printing anything else than 0.000 anyway. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-03rtsp: Don't store RTSPStream in AVStream->priv_dataMartin Storsjö
For mpegts in RTP, there isn't a direct mapping between RTSPStreams and AVStreams, and the RTSPStream isn't ever stored in AVStream->priv_data, which was earlier leaked. The fix for this leak, in ea7f080749d68a431226ce196014da38761a0d82, lead to double frees for other, normal RTP streams. This patch avoids storing RTSPStreams in AVStream->priv_data, thus avoiding the double free. The RTSPStreams are always available via RTSPState->rtsp_streams anyway. Tested with MS-RTSP, RealRTSP, DSS and mpegts/RTP. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-01-28rtspenc: include os_support.h for system without HAVE_POLL_HDave Yeo
fix compile on OS/2 Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-28os: replace select with pollLuca Barbato
Select has limitations on the fd values it could accept and silently breaks when it is reached.
2011-01-27Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
2011-01-02rtsp: Add a method parameter to ff_rtsp_read_replyMartin Storsjö
Originally committed as revision 26189 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-29rtsp: Move rtsp_setup_output_streams into rtspenc.cMartin Storsjö
Originally committed as revision 25600 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-25rtp: Replace hardcoded RTCP packet types with definesJosh Allmann
Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 24912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-19Include lavu headers using quotes instead of angle bracketsMartin Storsjö
Originally committed as revision 24315 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-08Make the RTSP muxer use rtsp_hd_out, for consistencyMartin Storsjö
Originally committed as revision 23535 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-05Remove unused local variablesMartin Storsjö
Originally committed as revision 23496 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-05RTSP: Add a second URLContext for outgoing messagesJosh Allmann
Done in preparation for RTSP over HTTP. Patch by Josh Allmann, joshua dot allmann at gmail Originally committed as revision 23494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-04rtspenc: Write the interleaving header in the same buffer as the packet dataMartin Storsjö
Originally committed as revision 23465 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-21Change the default codecs for the rtsp muxer to mpeg4 and aacMartin Storsjö
These codecs in RTP are supported by many players. Originally committed as revision 23209 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-21Take ff_write_chained in use in the mov rtp hinter and in the rtsp muxerMartin Storsjö
Originally committed as revision 23208 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-26Add separate method/url parameters to the rtsp_send_cmd functionsMartin Storsjö
Originally committed as revision 22675 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-22Add support for TCP as lower transport in the RTSP muxerMartin Storsjö
Originally committed as revision 22634 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15ReindentMartin Storsjö
Originally committed as revision 22549 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15Don't let ff_rtsp_read_reply skip interleaved RTP/TCP packets in ↵Martin Storsjö
rtsp_write_packet. Skip interleaved packets manually and recheck if there's more to be read. Originally committed as revision 22548 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Use rt->control_uri consequently instead of s->filename in all RTSP commandsMartin Storsjö
Originally committed as revision 22403 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Use ff_url_join for assembling URLs, instead of snprintfMartin Storsjö
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
2010-02-26RTSP muxer: Use a local copy of the AVPacket for sending to the chained muxerMartin Storsjö
This way, we avoid overwriting stream_index in the user's AVPacket with a nonsense value. Originally committed as revision 22081 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Prefix non-static RTSP functions with ff_.Ronald S. Bultje
Originally committed as revision 21974 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-23Add an RTSP muxerMartin Storsjö
Originally committed as revision 21971 to svn://svn.ffmpeg.org/ffmpeg/trunk