summaryrefslogtreecommitdiff
path: root/libavfilter/vf_eq.c
Commit message (Collapse)AuthorAge
* avfilter: do not leak AVFrame on failed buffer allocationPaul B Mahol2017-06-24
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: do not use AVFrame accessorMuhammad Faiz2017-04-23
| | | | | Reviewed-by: wm4 <nfxjfg@googlemail.com> Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
* lavfi: split frame_count between input and output.Nicolas George2016-11-13
| | | | | | | | | | | | 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.
* Timeline function for the eq filterIlya872016-06-13
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avutil: Rename FF_CEIL_COMPAT to AV_CEIL_COMPATDerek Buitenhuis2016-01-27
| | | | | | | | | | 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>
* avfilter/vf_eq: Support contrast from -1000 to 1000Michael Niedermayer2015-07-16
| | | | | | Fixes "-vf eq=0.05,eq=20" Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavfi/eq: rework expression evaluationarwa arif2015-03-20
| | | | | | | | | | | 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>
* lavfi/eq: factorize code in process_command()Stefano Sabatini2015-03-20
|
* avfilter: handle error in query_formats() of a bunch of random video filtersClément Bœsch2015-03-16
|
* lavfi/eq: clarify error message in case of expression parsing errorStefano Sabatini2015-03-15
|
* avfilter/vf_eq: Add process_command to eq.Arwa Arif2015-02-20
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/vf_eq: mark src as constMichael Niedermayer2015-01-27
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/vf_eq: Fix clipping codeMichael Niedermayer2015-01-26
| | | | | Found-by: Christophe Gisquet <christophe.gisquet@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/vf_eq: fix leak of input framePaul B Mahol2015-01-26
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: Port mp=eq/eq2 to lavfiArwa Arif2015-01-26
Code adapted from James Darnley's port Some fixes from Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>