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-10-11lavfi: convert input/ouput list compound literals to named objectsMans Rullgard
A number of compilers, for example those from TI and IBM, choke on these initialisers. The current style is also quite ugly. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-09af_resample: unref out_buf when avresample_convert returns 0Janne Grunau
Fixes CID732273.
2012-10-08af_resample: avoid conversion of identical sample formats for 1 channelJustin Ruggles
When there is only 1 channel, the planar and interleaved formats of the same data type should be treated as identical.
2012-10-05lavr: change the type of the data buffers to uint8_t**.Anton Khirnov
This is more consistent with what the rest of Libav does. This breaks API.
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-09lavfi: add error handling to filter_samples().Anton Khirnov
2012-07-09af_resample: fix request_frame() behavior.Anton Khirnov
Make sure that an output frame has really been produced before returning 0.
2012-07-08lavr: Use AV_SAMPLE_FMT_NONE to auto-select the internal sample formatJustin Ruggles
Also make this the default value.
2012-06-26lavfi: remove disabled FF_API_SAMPLERATE64 cruftAnton Khirnov
2012-06-15af_resample: fix format modifier in debug string for FF_API_SAMPLERATE64Janne Grunau
2012-06-05lavfi: remove request/poll and drawing functions from public API on next bumpAnton Khirnov
They are only useful inside filters and we don't allow user filters for now.
2012-06-05lavfi: make formats API private on next bump.Anton Khirnov
It is only useful inside filters and we don't allow user filters for now.
2012-05-22af_resample: remove an extra space in the log outputJustin Ruggles
2012-05-14lavfi: add channel layout/sample rate negotiation.Anton Khirnov
2012-05-12lavfi: add lavr-based audio resampling filter.Anton Khirnov