summaryrefslogtreecommitdiffstats
path: root/libhb/common.c
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2017-05-23 19:22:37 -0400
committerBradley Sepos <[email protected]>2017-05-30 14:00:27 -0400
commitfcbc09c44a7ae5c43319df08bf449e097fe083b2 (patch)
tree76ef3c0cf9f169d468be84dcfc050352e9047bf7 /libhb/common.c
parent1af79e413bd7e8d6e75604690942d6dddeb4ec97 (diff)
libhb: Add Unsharp sharpening filter.
Closes #525.
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 11928e519..c8a2f22f7 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_UNSHARP:
+ filter = &hb_filter_unsharp;
+ break;
+
case HB_FILTER_AVFILTER:
filter = &hb_filter_avfilter;
break;