aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_nlmeans.c
Commit message (Expand)AuthorAgeFilesLines
* avfilter/vf_nlmeans: Move ff_nlmeans_init into a headerAndreas Rheinhardt2022-05-061-107/+1
* avfilter/vf_nlmeans: add x86 SIMDPaul B Mahol2021-11-111-3/+6
* avfilter/vf_nlmeans: split wa structPaul B Mahol2021-10-291-18/+25
* avfilter/vf_nlmeans: refactor line processing in preparation for x86 SIMD ass...Paul B Mahol2021-10-291-46/+63
* avfilter/vf_nlmeans: avoid if () to help paralellizationPaul B Mahol2021-10-291-7/+6
* avfilter/vf_nlmeans: no need to print filter options at info levelPaul B Mahol2021-10-291-1/+1
* avfilter/vf_nlmeans: make access to pointer to lut fasterPaul B Mahol2021-10-291-1/+2
* avfilter/vf_nlmeans: reduce scope of some variablesPaul B Mahol2021-10-291-21/+12
* avfilter: Reindentation after query_formats changesAndreas Rheinhardt2021-10-051-10/+10
* avfilter/vf_nlmeans: Use formats list instead of query functionAndreas Rheinhardt2021-10-051-6/+1
* avfilter: Replace query_formats callback with union of list and callbackAndreas Rheinhardt2021-10-051-1/+1
* Replace all occurences of av_mallocz_array() by av_calloc()Andreas Rheinhardt2021-09-201-1/+1
* avfilter/avfilter: Add numbers of (in|out)pads directly to AVFilterAndreas Rheinhardt2021-08-201-4/+2
* avfilter/internal: Factor out executing a filter's execute_funcAndreas Rheinhardt2021-08-151-2/+2
* avfilter/formats: Factor common function combinations outAndreas Rheinhardt2021-08-131-4/+1
* avfilter: Constify all AVFiltersAndreas Rheinhardt2021-04-271-1/+1
* avfilter/vf_nlmeans: round values toward nearest integerPaul B Mahol2019-10-211-1/+1
* lavfi/nlmeans: use a dynamic size for the weight LUTClément Bœsch2019-02-011-10/+6
* lavfi/nlmeans: simplify log() callClément Bœsch2019-02-011-1/+1
* lavfi/nlmeans: improve the performanceJun Zhao2019-02-011-8/+9
* lavfi/nlmeans: use AV_CEIL_RSHIFT instead of deprecated FF_CEIL_RSHIFTClément Bœsch2018-05-081-2/+2
* lavfi/nlmeans: inline integral patch value functionClément Bœsch2018-05-081-39/+41
* lavfi/nlmeans: use unsigned for the integral patch valueClément Bœsch2018-05-081-8/+8
* lavfi/nlmeans: reorder memory accesses in get_integral_patch_valueClément Bœsch2018-05-081-3/+3
* lavfi/nlmeans: move final weighted averaging out of nlmeans_planeClément Bœsch2018-05-081-11/+22
* lavfi/nlmeans: switch from double to floatClément Bœsch2018-05-081-7/+7
* lavfi/nlmeans: make compute_safe_ssd_integral_image_c fasterClément Bœsch2018-05-081-10/+17
* lavfi/nlmeans: add AArch64 SIMD for compute_safe_ssd_integral_imageClément Bœsch2018-05-081-7/+19
* lavfi/nlmeans: use ptrdiff_t for linesizesClément Bœsch2018-05-081-13/+13
* lavfi/nlmeans: add SIMD-friendly assumptions for compute_safe_ssd_integral_imageClément Bœsch2018-05-081-7/+18
* lavfi/nlmeans: random code shuffling to help compilerClément Bœsch2018-05-081-4/+4
* avfilter: don't anonymously typedef structsPaul B Mahol2017-05-131-1/+1
* lavfi: add nlmeans filterClément Bœsch2016-09-241-0/+551