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
2017-06-24avfilter: do not leak AVFrame on failed buffer allocationPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2017-04-23avfilter: do not use AVFrame accessorMuhammad Faiz
Reviewed-by: wm4 <nfxjfg@googlemail.com> Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-11-13lavfi: split frame_count between input and output.Nicolas George
AVFilterLink.frame_count is supposed to count the number of frames that were passed on the link, but with min_samples, that number is not always the same for the source and destination filters. With the addition of a FIFO on the link, the difference will become more significant. Split the variable in two: frame_count_in counts the number of frames that entered the link, frame_count_out counts the number of frames that were sent to the destination filter.
2016-06-13Timeline function for the eq filterIlya87
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-01-27avutil: Rename FF_CEIL_COMPAT to AV_CEIL_COMPATDerek Buitenhuis
Libav, for some reason, merged this as a public API function. This will aid in future merges. A define is left for backwards compat, just in case some person used it, since it is in a public header. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2015-07-16avfilter/vf_eq: Support contrast from -1000 to 1000Michael Niedermayer
Fixes "-vf eq=0.05,eq=20" Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-03-20lavfi/eq: rework expression evaluationarwa arif
In particular, add support for t, pos, n, r parameters, and add an eval mode option. Also, partially reword option documentation. With several major edit by Stefano Sabatini. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2015-03-20lavfi/eq: factorize code in process_command()Stefano Sabatini
2015-03-17avfilter: handle error in query_formats() of a bunch of random video filtersClément Bœsch
2015-03-15lavfi/eq: clarify error message in case of expression parsing errorStefano Sabatini
2015-02-20avfilter/vf_eq: Add process_command to eq.Arwa Arif
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-27avfilter/vf_eq: mark src as constMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-27avfilter/vf_eq: Fix clipping codeMichael Niedermayer
Found-by: Christophe Gisquet <christophe.gisquet@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-26avfilter/vf_eq: fix leak of input framePaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-01-26avfilter: Port mp=eq/eq2 to lavfiArwa Arif
Code adapted from James Darnley's port Some fixes from Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>