summaryrefslogtreecommitdiff
path: root/libavfilter/vf_selectivecolor.c
Commit message (Collapse)AuthorAge
* avfilter: Constify all AVFiltersAndreas Rheinhardt2021-04-27
| | | | | | | This is possible now that the next-API is gone. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: James Almer <jamrial@gmail.com>
* Mark some pointers as constAndreas Rheinhardt2021-01-01
| | | | | Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
* remove CHAR_MIN/CHAR_MAX usagePaul B Mahol2020-03-17
| | | | It is not needed at all.
* lavfi/selectivecolor: fix neutral color filteringClément Bœsch2018-08-09
| | | | | | | | | | Neutrals are supposed to be anything not black (0,0,0) and not white (N,N,N). Previous neutral filtering code was too strict by excluding colors with any of its RGB component maxed instead of just the white color. Reported-by: Royi Avital <royiavital@yahoo.com>
* avfilter: don't anonymously typedef structsPaul B Mahol2017-05-13
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi/selectivecolor: add a link to algorithm explanationsClément Bœsch2017-01-07
|
* lavfi/selectivecolor: rename adjust_range to scaleClément Bœsch2016-12-31
| | | | | This variable corresponds to the final scale of the adjustement for a given color range.
* lavfi/selectivecolor: simplify crazy mid val computationsClément Bœsch2016-12-27
|
* avfilter: make use of ff_filter_get_nb_threadsPaul B Mahol2016-08-29
|
* lavfi/selectivecolor: add 16-bit supportClément Bœsch2016-07-24
|
* lavfi/selectivecolor: fix picking black as neutral when alpha is presentClément Bœsch2016-07-24
|
* avfilter/selectivecolor: fix correction_method option rangeClément Bœsch2015-10-17
|
* avfilter: add selectivecolor filterClément Bœsch2015-10-11