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-01-27lavf: remove AVFormatParameters from AVFormatContext.read_header signatureAnton Khirnov
2012-01-11wtv: fix memleaks during normal operationJanne Grunau
2011-12-11lavu: replace int/float punning functionsMans Rullgard
The existing functions defined in intfloat_readwrite.[ch] are both slow and incorrect (infinities are not handled). This introduces a new header with fast, inline conversion functions using direct union punning assuming an IEEE-754 system, an assumption already made throughout the code. The one use of Intel/Motorola extended 80-bit format is replaced by simpler code sufficient under the present constraints (positive normal values). The old functions are marked deprecated and retained for compatibility. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-11-30lavf: make av_set_pts_info private.Anton Khirnov
It's supposed to be called only from (de)muxers.
2011-11-06Remove leftover includes of strings.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-10-29mpegts: Add support for Sections in PMTAlex Converse
2011-10-29mpegts: Add support for multiple mp4 descriptorsAlex Converse
2011-10-19lavf: replace av_new_stream->avformat_new_stream part II.Anton Khirnov
Manual replacements are done in this commit. In many cases, the id is some constant made up number (e.g. 0 for video and 1 for audio), which is then not used in the demuxer for anything. Those ids are removed.
2011-10-19lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov
Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
2011-07-03doxygen: Fix parameter names to match the function prototypes.Diego Biurrun
2011-06-08Remove all uses of now deprecated metadata functions.Anton Khirnov
2011-04-14handle malloc failures in ff_get_wav_headerMax Horn
ff_get_wav_header is reading data from a WAVE file and then uses it (without validation) to malloc a buffer. It then proceeded to read data into the buffer, without verifying that the allocation succeeded. To address this, change ff_get_wav_header to return an error if allocation failed, and adapted all calling code to handle that error. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-04-06Reemove remaining uses of deprecated AVERROR_NOTSUPP.Anton Khirnov
2011-03-21lavf: replace some more avio_seek(SEEK_CUR) with avio_skipAnton Khirnov
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-03-17lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes senseAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-15avio: deprecate url_ferrorAnton Khirnov
AVIOContext.error should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-08avio: deprecate url_feofAnton Khirnov
AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-04avio: add avio_tell macro as a replacement for url_ftellAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-01lavf: replace all uses of url_fskip with avio_seekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-03-01avio: avio_ prefix for url_fseekAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: avio_ prefixes for get_* functionsAnton Khirnov
In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-21avio: rename av_alloc_put_byte -> avio_alloc_context for consistencyAnton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-20avio: rename ByteIOContext to AVIOContext.Anton Khirnov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-14wtv: ignore empty data_guid chunksPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-11wtv: mark streams intended for hearing or visual impaired personsPeter Ross
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-02-06reindent after last commitPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-06wtv: do not use flag in stream_guid chunk to determine if stream is valid, ↵Peter Ross
as this method is unreliable This fixes roundup issue 2556. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-04add ff_index_search_timestamp and ff_add_index_entryPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-02-04wtv: filesystem implementationPeter Ross
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
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-14wtv: ignore VIDEOINFOHEADER2 picture aspect ratio information, as it is ↵Peter Ross
unreliable Originally committed as revision 26327 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09fix indentationPeter Ross
Originally committed as revision 26278 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09wtv: only process timestamp_guid chunks for streams that we know aboutPeter Ross
Originally committed as revision 26277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09wtv: do not repopulate codec information after we have seen data chunksPeter Ross
Originally committed as revision 26276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09wtv: stop processing chunks if length is smaller than chunk headerPeter Ross
Originally committed as revision 26275 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-09wtv: fix typoPeter Ross
Originally committed as revision 26274 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-04wtv: obtain codec information from stream2_guid chunks, if presentPeter Ross
Originally committed as revision 26208 to svn://svn.ffmpeg.org/ffmpeg/trunk
2011-01-02wtv: display warning if scrambled stream is detectedPeter Ross
Originally committed as revision 26197 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-29wtv: parse MPEG2 descriptor eventsPeter Ross
Originally committed as revision 26126 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-29wtv: only warn about unknown subtype, if it actually unknownPeter Ross
Originally committed as revision 26123 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-29wtv: use correct names for subtitle and language guidsPeter Ross
Originally committed as revision 26122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-26Windows Televison (WTV) demuxerPeter Ross
Originally committed as revision 26094 to svn://svn.ffmpeg.org/ffmpeg/trunk