summaryrefslogtreecommitdiffstats
path: root/mpg123_artsplugin/mpg123/layer1.c
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 23:52:44 +0900
commit0c9e076a4ab62782b73ac09fb45fd9da0df19aec (patch)
tree93c54de885a10fdfb44b39fee0972aa9b394e8d9 /mpg123_artsplugin/mpg123/layer1.c
parente51ec3eaa1902878a55ad0ca8ed50f6c5662d352 (diff)
downloadtdemultimedia-0c9e076a4ab62782b73ac09fb45fd9da0df19aec.tar.gz
tdemultimedia-0c9e076a4ab62782b73ac09fb45fd9da0df19aec.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 6db8697910438fd063598f66a73b68d2dcd70a36)
Diffstat (limited to 'mpg123_artsplugin/mpg123/layer1.c')
-rw-r--r--mpg123_artsplugin/mpg123/layer1.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mpg123_artsplugin/mpg123/layer1.c b/mpg123_artsplugin/mpg123/layer1.c
index a33335ab..f5df2bb3 100644
--- a/mpg123_artsplugin/mpg123/layer1.c
+++ b/mpg123_artsplugin/mpg123/layer1.c
@@ -58,13 +58,13 @@ void I_step_two(real fraction[2][SBLIMIT],unsigned int balloc[2*SBLIMIT],
int i,n;
int smpb[2*SBLIMIT]; /* values: 0-65535 */
int *sample;
- register unsigned int *ba;
- register unsigned int *sca = (unsigned int *) scale_index;
+ unsigned int *ba;
+ unsigned int *sca = (unsigned int *) scale_index;
if(fr->stereo) {
int jsbound = fr->jsbound;
- register real *f0 = fraction[0];
- register real *f1 = fraction[1];
+ real *f0 = fraction[0];
+ real *f1 = fraction[1];
ba = balloc;
for (sample=smpb,i=0;i<jsbound;i++) {
if ((n = *ba++))
@@ -100,7 +100,7 @@ void I_step_two(real fraction[2][SBLIMIT],unsigned int balloc[2*SBLIMIT],
fraction[0][i] = fraction[1][i] = 0.0;
}
else {
- register real *f0 = fraction[0];
+ real *f0 = fraction[0];
ba = balloc;
for (sample=smpb,i=0;i<SBLIMIT;i++)
if ((n = *ba++))