mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 12:10:37 +00:00
gcc-2.95 fixage
Original commit message from CVS: gcc-2.95 fixage
This commit is contained in:
parent
23dab0691c
commit
da88f91368
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue