diff options
author | Ashish Singh <ashk43712@gmail.com> | 2017-07-15 22:12:33 +0530 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2017-07-16 08:21:32 -0400 |
commit | 615479d51c6a76275c114888b5600b929309f4c4 (patch) | |
tree | 9e662599aa917950a457bc64c80135611a1487dd /libavfilter/allfilters.c | |
parent | 4de4308d2aa3bfaa286ab566caf087d523cf9a85 (diff) | |
download | ffmpeg-615479d51c6a76275c114888b5600b929309f4c4.tar.gz |
avfilter: add LIBVMAF filter
This one changes the previous vmaf patch to libvmaf to keep it separate from the
native implementation of vmaf inside ffmpeg later.
Signed-off-by: Ashish Singh <ashk43712@gmail.com>
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 0a990cafc9..b1c2d11024 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -228,6 +228,7 @@ static void register_all(void) REGISTER_FILTER(INTERLEAVE, interleave, vf); REGISTER_FILTER(KERNDEINT, kerndeint, vf); REGISTER_FILTER(LENSCORRECTION, lenscorrection, vf); + REGISTER_FILTER(LIBVMAF, libvmaf, vf); REGISTER_FILTER(LIMITER, limiter, vf); REGISTER_FILTER(LOOP, loop, vf); REGISTER_FILTER(LUMAKEY, lumakey, vf); |