pkgsrc/multimedia/xine-lib/patches/patch-src-post-audio-volnorm.c
joerg bc5d800815 Address computations are not ICE, even if GCC accepts them as such. Fix
that and use the same emms constraint as found in other places.
2011-09-04 14:34:52 +00:00

14 lines
573 B
C

$NetBSD: patch-src-post-audio-volnorm.c,v 1.1 2011/09/04 14:34:52 joerg Exp $
--- src/post/audio/volnorm.c.orig 2011-08-30 13:13:33.000000000 +0000
+++ src/post/audio/volnorm.c
@@ -90,7 +90,8 @@ typedef struct volnorm_parameters_s {
* description of params struct
*/
START_PARAM_DESCR( volnorm_parameters_t )
-PARAM_ITEM( POST_PARAM_TYPE_INT, method, NULL, 0, 2, 0, "Normalization method" )
+PARAM_ITEM( volnorm_parameters_t,
+ POST_PARAM_TYPE_INT, method, NULL, 0, 2, 0, "Normalization method" )
END_PARAM_DESCR( param_descr )
struct post_plugin_volnorm_s {