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
2015-10-14avfilter/all: propagate errors of functions from avfilter/formatsGanesh Ajjanagadde
Many of the functions from avfilter/formats can return errors, usually AVERROR(ENOMEM). This propagates the return values. All of these were found by using av_warn_unused_result, demonstrating its utility. Tested with FATE. I am least sure of the changes to avfilter/filtergraph, since I don't know what/how reduce_format is intended to behave and how it should react to errors. Fixes: CID 1325680, 1325679, 1325678. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Previous version Reviewed-by: Nicolas George <george@nsup.org> Previous version Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
2015-09-09avfilter/paletteuse: use AV_OPT_TYPE_BOOL for mean_err and debug_accuracy optionClément Bœsch
2015-08-18Replace av_dlog with ff_dlog.Ronald S. Bultje
ff_dlog checks compilability, and is non-public. av_dlog is deprecated and no longer exists if FF_API_DLOG=0.
2015-03-05avfilter/vf_paletteuse: indent fix after 7ccc5848Clément Bœsch
2015-03-05avfilter/vf_paletteuse: Use int where AVERROR can be returnedMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-26avfilter/paletteuse: use AV_QSORT()Clément Bœsch
See previous commit for a rationale.
2015-02-23avfilter/palette{gen,use}: add CopyrightClément Bœsch
2015-02-23avfilter/paletteuse: add diff_modeClément Bœsch
2015-02-23avfilter/paletteuse: fix error dithering accuracyClément Bœsch
2015-02-18avfilter/paletteuse: fix leak in case of errorClément Bœsch
Fixes CID1270819
2015-02-17avfilter/paletteuse: raise cache size from 64k to 512kClément Bœsch
(or 32k to 256k in 32-bit)
2015-02-14avfilter: add paletteuse filterClément Bœsch