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
2011-06-16lavf: add avformat_write_header() as a replacement for av_write_header().Anton Khirnov
It supports more convenient setting of AVOptions.
2011-06-10rtpenc_chain: Pass the rtpflags options through to the chained muxerMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-04avio: make url_fdopen internal.Anton Khirnov
The unbuffered URLContext API will be made private, so there's no point in this function being public.
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-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-23avio: rename url_fopen/fclose -> avio_open/close.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-04rtpenc_chain: Don't copy the time_base back to the callerMartin Storsjö
If required, the caller can do this itself. ff_write_chained rescales timestamps as necessary, and all current callers of rtpenc_chain use ff_write_chained, making this timebase copy unnecessary. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-04Use avformat_free_context for cleaning up muxersMartin Storsjö
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-04libavformat: Use avcodec_copy_context for chained muxersMartin Storsjö
This avoids having the chained AVStream->codec point to the same AVCodecContext owned by the outer AVStream. The downside is that changes to the AVCodecContext made after calling av_write_header cannot be detected automatically within the chained muxer. This avoids having to manually unlink the chained AVStream->codec by setting it to null before freeing the chained muxer via generic freeing functions. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-03Free AVStream->info in chained muxersMartin Storsjö
This fixes memory leaks in the RTSP muxer and RTP hinting in the mov muxer present since SVN rev 25418. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2010-10-08rtsp: Factorize out code for opening a chained RTP muxerMartin Storsjö
The new object file is added to the SDP demuxer in the makefile, since it is needed in both the RTSP muxer and demuxer and in the SDP demuxer, due to the current code coupling. Originally committed as revision 25410 to svn://svn.ffmpeg.org/ffmpeg/trunk