summaryrefslogtreecommitdiffstats
path: root/mpg123_artsplugin/mpg123/dct64.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpg123_artsplugin/mpg123/dct64.c')
-rw-r--r--mpg123_artsplugin/mpg123/dct64.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mpg123_artsplugin/mpg123/dct64.c b/mpg123_artsplugin/mpg123/dct64.c
index 59c19676..c3447a7f 100644
--- a/mpg123_artsplugin/mpg123/dct64.c
+++ b/mpg123_artsplugin/mpg123/dct64.c
@@ -18,8 +18,8 @@ void dct64(real *out0,real *out1,real *samples)
real bufs[64];
{
- register int i,j;
- register real *b1,*b2,*bs,*costab;
+ int i,j;
+ real *b1,*b2,*bs,*costab;
b1 = samples;
bs = bufs;
@@ -102,8 +102,8 @@ void dct64(real *out0,real *out1,real *samples)
{
- register real *b1;
- register int i;
+ real *b1;
+ int i;
for(b1=bufs,i=8;i;i--,b1+=4)
b1[2] += b1[3];