summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/splay/synth_Std.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mpeglib/lib/splay/synth_Std.cpp')
-rw-r--r--mpeglib/lib/splay/synth_Std.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/mpeglib/lib/splay/synth_Std.cpp b/mpeglib/lib/splay/synth_Std.cpp
index 6ea1d027..121e1afb 100644
--- a/mpeglib/lib/splay/synth_Std.cpp
+++ b/mpeglib/lib/splay/synth_Std.cpp
@@ -39,8 +39,8 @@ inline void Synthesis::computebuffer_Std(REAL *fraction,
inline void Synthesis::generatesingle_Std(void) {
int i;
- register REAL r, *vp;
- register const REAL *dp;
+ REAL r, *vp;
+ const REAL *dp;
i=32;
dp=filter;
@@ -120,8 +120,8 @@ inline void Synthesis::generate_old(void)
{
int i;
REAL r1,r2;
- register REAL *vp1,*vp2;
- register const REAL *dp;
+ REAL *vp1,*vp2;
+ const REAL *dp;
dp=filter;
vp1=calcbuffer[LS][currentcalcbuffer]+calcbufferoffset;
@@ -195,14 +195,14 @@ inline void Synthesis::generate_Std(void)
int i;
REAL r1,r2;
- register REAL *vp1;
- register const REAL *dp;
+ REAL *vp1;
+ const REAL *dp;
dp=filter;
vp1=calcbuffer[LS][currentcalcbuffer]+calcbufferoffset;
// we calculate cp2 from vp1 because they are both
// in the same array. code was:
- // register REAL* vp2
+ // REAL* vp2
//vp2=calcbuffer[RS][currentcalcbuffer]+calcbufferoffset;
i=32;