[FFmpeg-devel] [PATCH] avfilter: add ANSNR filter

2017-04-03 Thread Betty Wu
tools used in vmaf. Signed-off-by: Betty Wu --- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_ansnr.c | 425 +++ 3 files changed, 427 insertions(+) create mode 100644 libavfilter/vf_ansnr.c diff --git a/l

[FFmpeg-devel] [PATCH] avfilter: add ANSNR filter

2017-03-30 Thread Betty Wu
tools used in vmaf. Signed-off-by: Betty Wu --- libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_ansnr.c | 727 +++ 3 files changed, 729 insertions(+) create mode 100644 libavfilter/vf_ansnr.c diff --git a/l

[FFmpeg-devel] [PATCH] avfilter: add ANSNR filter

2017-03-30 Thread Betty Wu
A new filter ANSNR is added. Makefile is changed. Run like 'ffmpeg -i input1 -i input2 -lavfi ansnr -f null -'. The implementation is for further constructing vmaf filter since ANSNR is one of individual tools used in vmaf. Signed-off-by: Betty Wu --- libavfilter/Makefi