summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhao, Halley <halley.zhao@intel.com>2013-12-12 08:38:12 +0800
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2014-01-15 11:42:15 +0100
commitdb5465c2d6627766184c767adfc4f69e815366c9 (patch)
tree826e651e2a72e628e422479b478dcde0149caf03
parente66179dffbe4bc95adfba6ed7631c0357bb233ad (diff)
downloadgst-vaapi-db5465c2d6627766184c767adfc4f69e815366c9.tar.gz
vaapipostproc: fix support for "sharpen" filter.
Fix copy/paste error when submitting the "sharpen" value to the GstVaapiFilter instance. https://bugzilla.gnome.org/show_bug.cgi?id=720375 Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
-rw-r--r--gst/vaapi/gstvaapipostproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/vaapi/gstvaapipostproc.c b/gst/vaapi/gstvaapipostproc.c
index d84ca3c1..ace0e614 100644
--- a/gst/vaapi/gstvaapipostproc.c
+++ b/gst/vaapi/gstvaapipostproc.c
@@ -444,7 +444,7 @@ gst_vaapipostproc_process_vpp(GstBaseTransform *trans, GstBuffer *inbuf,
return GST_FLOW_NOT_SUPPORTED;
if ((postproc->flags & GST_VAAPI_POSTPROC_FLAG_SHARPEN) &&
- !gst_vaapi_filter_set_denoising_level(postproc->filter,
+ !gst_vaapi_filter_set_sharpening_level(postproc->filter,
postproc->sharpen_level))
return GST_FLOW_NOT_SUPPORTED;