NOOP. remove trailing whitespace

This commit is contained in:
Robin Gareus 2013-12-30 14:21:09 +01:00
parent ee5186a461
commit a3ba6163b3
4 changed files with 7 additions and 7 deletions

View file

@ -28,11 +28,11 @@ public:
Iec1ppmdsp (void);
~Iec1ppmdsp (void);
void process (float const *p, int n);
void process (float const *p, int n);
float read (void);
void reset ();
static void init (float fsamp);
static void init (float fsamp);
private:

View file

@ -28,11 +28,11 @@ public:
Iec2ppmdsp (void);
~Iec2ppmdsp (void);
void process (float const *p, int n);
void process (float const *p, int n);
float read (void);
void reset ();
static void init (float fsamp);
static void init (float fsamp);
private:

View file

@ -28,11 +28,11 @@ public:
Vumeterdsp (void);
~Vumeterdsp (void);
void process (float const *p, int n);
void process (float const *p, int n);
float read (void);
void reset ();
static void init (float fsamp);
static void init (float fsamp);
private:

View file

@ -86,6 +86,6 @@ void Vumeterdsp::reset ()
void Vumeterdsp::init (float fsamp)
{
_w = 11.1f / fsamp;
_w = 11.1f / fsamp;
_g = 1.5f * 1.571f;
}