summaryrefslogtreecommitdiff
path: root/libavfilter/vf_ssim.c
Commit message (Expand)AuthorAgeFilesLines
* avutil/internal: Move avpriv-file API to a header of its ownAndreas Rheinhardt2022-09-031-2/+1
* all: Replace if (ARCH_FOO) checks by #if ARCH_FOOAndreas Rheinhardt2022-06-151-2/+3
* avfilter: use avpriv_fopen_utf8() instead of plain fopen()softworkz2022-05-241-1/+1
* avfilter: add AVFILTER_FLAG_METADATA_ONLYAnton Khirnov2021-12-041-1/+3
* avfilter/vf_psnr/ssim: fix typosPaul B Mahol2021-10-281-1/+1
* avfilter: Reindentation after query_formats changesAndreas Rheinhardt2021-10-051-11/+11
* avfilter/vf_ssim: 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
* avfilter/vf_ssim: Remove always-false format checkAndreas Rheinhardt2021-09-211-4/+0
* 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-1/+2
* avfilter/formats: Factor common function combinations outAndreas Rheinhardt2021-08-131-4/+1
* avfilter/vf_ssim: remove unnecessary checkLimin Wang2021-05-011-1/+1
* avfilter: Constify all AVFiltersAndreas Rheinhardt2021-04-271-1/+1
* avfilter/vf_ssim.c: fix build warning for [-Wmain]Guo, Yejun2021-02-251-8/+8
* avfilter/vf_ssim: add slice threadingPaul B Mahol2021-02-191-55/+142
* avfilter/vf_ssim: remove precision limits for metadata valuesPaul B Mahol2021-02-121-1/+1
* avfilter/vf_ssim: add timeline supportPaul B Mahol2021-02-121-1/+2
* avfilter/vf_ssim: improve precisionPaul B Mahol2020-02-041-10/+10
* avfilter/vf_ssim: fix logic failure when comparing time basesPaul B Mahol2020-02-011-1/+1
* avfilter/vf_psnr,vf_ssim: add warning if different timebases are encounteredPaul B Mahol2019-10-251-0/+8
* avfilter: add support for gray14 formatPaul B Mahol2018-09-091-1/+1
* lavfi: Rename local variables "main" as "master".Carl Eugen Hoyos2017-10-071-6/+6
* lavfi: rename framesync2 to framesync.Nicolas George2017-09-121-6/+6
* vf_ssim: convert to framesync2.Nicolas George2017-08-291-25/+27
* avfilter: add support for GRAY9 and GBRAP10Paul B Mahol2017-08-071-1/+1
* avfilter/vf_ssim: fix temp size calculationMuhammad Faiz2017-08-041-3/+5
* avfilter/vf_ssim: use unsigned so result can be properly storedPaul B Mahol2017-07-041-2/+2
* avfilter: do not use AVFrame accessorMuhammad Faiz2017-04-231-1/+1
* avfilter/vf_ssim: add >8 bit depth suppportPaul B Mahol2016-12-171-12/+119
* avutil: Rename FF_CEIL_COMPAT to AV_CEIL_COMPATDerek Buitenhuis2016-01-271-2/+2
* avfilter/vf_ssim: use log10 instead of log()/log(10)Ganesh Ajjanagadde2015-10-291-1/+1
* vf_psnr/ssim: don't crash if stats_file is NULL.Ronald S. Bultje2015-10-231-11/+13
* vf_ssim: print per-channel dB values.Ronald S. Bultje2015-10-221-1/+2
* avfilter/vf_ssim: Add support for writing stats to stdoutTobias Rapp2015-10-211-2/+4
* avfilter/vf_ssim: Fix "incompatible pointer type" warningsMichael Niedermayer2015-07-141-1/+1
* vf_ssim: x86 simd for ssim_4x4xN and ssim_endN.Ronald S. Bultje2015-07-141-9/+17
* vf_ssim: remove another obscure double loop.Ronald S. Bultje2015-07-131-10/+8
* ssim: refactor a weird double loop.Ronald S. Bultje2015-07-131-3/+2
* vf_ssim: fix s->coefs for yuv with non-4:2:0 subsampling.Ronald S. Bultje2015-07-121-44/+37
* avfilter/vf_ssim: Mark constant tables as constMichael Niedermayer2015-07-101-3/+3
* avfilter/vf_ssim: fix some cosmetics issuesPaul B Mahol2015-06-301-1/+1
* avfilter: add ssim filterPaul B Mahol2015-06-241-0/+399