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
2022-04-29avfilter/vf_colormap: Avoid allocation of small arrayAndreas Rheinhardt
The number of elements is always two or three. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2022-04-29avfilter/vf_colormap: Remove unnecessary headersAndreas Rheinhardt
In particular remove config_components.h in order to avoid unnecessary rebuilds. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2022-04-29avfilter/vf_colormap: Fix declaration-after-statementAndreas Rheinhardt
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2022-04-29avfilter/vf_colormap: Properly uninit FFFrameSync, fix leakAndreas Rheinhardt
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2022-04-26avfilter/vf_colormap: avoid reallocating memory to build mapPaul B Mahol
2022-04-26avfilter/vf_colormap: change default nb_patchesPaul B Mahol
2022-04-23avfilter: add colormap video filterPaul B Mahol