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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-02-04samplefmt: avoid integer overflow in av_samples_get_buffer_size()Justin Ruggles
CC:libav-stable@libav.org
2012-10-23lavu: remove disabled FF_API_GET_BITS_PER_SAMPLE_FMT cruftAnton Khirnov
2012-10-04samplefmt: make av_samples_alloc() initialize the data to silence.Anton Khirnov
Right now the buffer is zeroed, which does not represent silence for U8(P).
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-05-09samplefmt: add a function for filling a buffer with silence.Anton Khirnov
2012-05-09samplefmt: add a function for copying audio samples.Anton Khirnov
2012-05-08av_samples_fill_array: Mark unmodified function argument as const.Diego Biurrun
libavcodec/utils.c:274: warning: passing argument 3 of ‘av_samples_fill_arrays’ discards qualifiers from pointer target type ./libavutil/samplefmt.h:151: note: expected ‘uint8_t *’ but argument is of type ‘const uint8_t *’
2012-04-23avutil: change default buffer size alignment for sample buffer functionsJustin Ruggles
Aligning nb_samples will give both correct plane pointer alignment and enough padding for SIMD-optimized functions.
2012-04-09avutil: use align == 0 for default alignment in audio sample buffer functionsJustin Ruggles
2012-04-09avutil: allow NULL linesize in av_samples_fill_arrays() and av_samples_alloc()Justin Ruggles
2012-04-08avutil: add av_get_packed_sample_fmt() and av_get_planar_sample_fmt()Justin Ruggles
Based on a patch by Clément Bœsch <ubitux@gmail.com>
2011-11-24libavutil: add utility functions to simplify allocation of audio buffers.Justin Ruggles
Based on code by Stefano Sabatini.
2011-11-24libavutil: add planar sample formats and av_sample_fmt_is_planar()Justin Ruggles
2011-06-07samplefmt: add av_get_bytes_per_sample()Stefano Sabatini
Deprecate av_get_bits_per_sample_fmt(), which was a misnamed function. For the moment we don't have sample formats with a non-integer number of bytes, in that case we may need to create a new av_get_bits_per_sample() function. In the meanwhile we prefer to adopt this variant, since avoids divisions by 8 all over the place.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-15Merge libavcore into libavutilReinhard Tartler
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>