Files
pkgsrc-ng/multimedia/xine-lib/patches/patch-src-post-planar-denoise3d.c
2016-01-21 23:40:00 +01:00

25 lines
976 B
C

$NetBSD: patch-src-post-planar-denoise3d.c,v 1.2 2014/05/18 15:38:18 wiz Exp $
https://bugs.xine-project.org/show_bug.cgi?id=524
--- src/post/planar/denoise3d.c.orig 2011-08-30 13:13:44.000000000 +0000
+++ src/post/planar/denoise3d.c
@@ -58,11 +58,14 @@ typedef struct denoise3d_parameters_s {
* description of params struct
*/
START_PARAM_DESCR( denoise3d_parameters_t )
-PARAM_ITEM( POST_PARAM_TYPE_DOUBLE, luma, NULL, 0, 10, 0,
+PARAM_ITEM( denoise3d_parameters_t,
+ POST_PARAM_TYPE_DOUBLE, luma, NULL, 0, 10, 0,
"spatial luma strength" )
-PARAM_ITEM( POST_PARAM_TYPE_DOUBLE, chroma, NULL, 0, 10, 0,
+PARAM_ITEM( denoise3d_parameters_t,
+ POST_PARAM_TYPE_DOUBLE, chroma, NULL, 0, 10, 0,
"spatial chroma strength" )
-PARAM_ITEM( POST_PARAM_TYPE_DOUBLE, time, NULL, 0, 10, 0,
+PARAM_ITEM( denoise3d_parameters_t,
+ POST_PARAM_TYPE_DOUBLE, time, NULL, 0, 10, 0,
"temporal strength" )
END_PARAM_DESCR( param_descr )