summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/splay/dct64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mpeglib/lib/splay/dct64.cpp')
-rw-r--r--mpeglib/lib/splay/dct64.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mpeglib/lib/splay/dct64.cpp b/mpeglib/lib/splay/dct64.cpp
index 14241651..889a2229 100644
--- a/mpeglib/lib/splay/dct64.cpp
+++ b/mpeglib/lib/splay/dct64.cpp
@@ -67,7 +67,7 @@ inline void dct64(REAL* out1,REAL* out2,REAL *fraction) {
// compute new values via a fast cosine transform:
{
// put to buffer 0..15
- register REAL* x=fraction;
+ REAL* x=fraction;
p0=x[ 0]+x[31];p1=x[ 1]+x[30];p2=x[ 2]+x[29];p3=x[ 3]+x[28];
p4=x[ 4]+x[27];p5=x[ 5]+x[26];p6=x[ 6]+x[25];p7=x[ 7]+x[24];
@@ -102,7 +102,7 @@ inline void dct64(REAL* out1,REAL* out2,REAL *fraction) {
pc=qc+qd;pd=hcos_4*(qc-qd);pe=qe+qf;pf=hcos_4*(qe-qf);
{
- register REAL tmp;
+ REAL tmp;
tmp=p6+p7;
OUT2(36)=-(p5+tmp);
@@ -128,7 +128,7 @@ inline void dct64(REAL* out1,REAL* out2,REAL *fraction) {
{
// put to buffer 16..31
- register REAL *x=fraction;
+ REAL *x=fraction;
p0=hcos_64[ 0]*(x[ 0]-x[31]);p1=hcos_64[ 1]*(x[ 1]-x[30]);
p2=hcos_64[ 2]*(x[ 2]-x[29]);p3=hcos_64[ 3]*(x[ 3]-x[28]);