GNOME Bugzilla – Bug 128178
Patch for gcc 2.95.3
Last modified: 2004-12-22 21:47:04 UTC
I had to make a small patch to get gst-plugins to compile with gcc-2.95.3: --- gst-plugins-0.6.4/gst/level/filter.func 2003-10-05 16:46:21.000000000 +0 000 +++ gst-plugins-0.6.4-mod/gst/level/filter.func 2003-11-29 08:33:30.000000000 +0 000 @@ -9,10 +9,11 @@ double squaresum = 0.0; /* square sum of the integer samples */ register double square = 0.0; /* Square */ register double PSS = 0.0; /* Peak Square Sample */ + gdouble normalizer; *CS = 0.0; /* Cumulative Square for this block */ - gdouble normalizer = (double) (1 << resolution); + normalizer = (double) (1 << resolution); /* * process data here
Created attachment 21924 [details] [review] here's the patch as an attachment
Already applied to 0.6 cvs.