summaryrefslogtreecommitdiffstats
path: root/libhb/common.c
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2017-05-27 08:46:11 -0400
committerBradley Sepos <[email protected]>2017-05-30 14:00:27 -0400
commit2b0cbe69a83848fb0b8012ed858fa3ab402889e3 (patch)
treebee9bd4d4c227f66fca893c047eca6ed5cfd401a /libhb/common.c
parentfcbc09c44a7ae5c43319df08bf449e097fe083b2 (diff)
libhb: Add LapSharp sharpening filter.
Diffstat (limited to 'libhb/common.c')
-rw-r--r--libhb/common.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/common.c b/libhb/common.c
index c8a2f22f7..71a8d0e26 100644
--- a/libhb/common.c
+++ b/libhb/common.c
@@ -3959,6 +3959,10 @@ hb_filter_object_t * hb_filter_get( int filter_id )
filter = &hb_filter_crop_scale;
break;
+ case HB_FILTER_LAPSHARP:
+ filter = &hb_filter_lapsharp;
+ break;
+
case HB_FILTER_UNSHARP:
filter = &hb_filter_unsharp;
break;