From b68627ed2b441f92648409d14a540b2ecac993de Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Fri, 5 Jun 2015 17:04:37 +0200 Subject: filter_kernels: distinguish between regular/EWA robidoux This is because it turns out the regular robidoux is pretty useful for tscale etc. --- video/out/filter_kernels.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/video/out/filter_kernels.c b/video/out/filter_kernels.c index c759cbb257..ef69903df7 100644 --- a/video/out/filter_kernels.c +++ b/video/out/filter_kernels.c @@ -366,8 +366,10 @@ const struct filter_kernel mp_filter_kernels[] = { {{"bcspline", 2, cubic_bc, .params = {0.5, 0.5} }}, {{"catmull_rom", 2, cubic_bc, .params = {0.0, 0.5} }}, {{"mitchell", 2, cubic_bc, .params = {1.0/3.0, 1.0/3.0} }}, - {{"robidoux", 2, cubic_bc, .params = {0.3782, 0.3109}}, .polar = true}, - {{"robidouxsharp", 2, cubic_bc, .params = {0.2620, 0.3690}}, .polar = true}, + {{"robidoux", 2, cubic_bc, .params = {0.3782, 0.3109} }}, + {{"robidouxsharp", 2, cubic_bc, .params = {0.2620, 0.3690} }}, + {{"ewa_robidoux", 2, cubic_bc, .params = {0.3782, 0.3109}}, .polar = true}, + {{"ewa_robidouxsharp", 2, cubic_bc, .params = {0.2620, 0.3690}}, .polar = true}, // Miscalleaneous filters {{"box", 1, box, .resizable = true}}, {{"nearest", 0.5, box}}, -- cgit v1.2.3