summaryrefslogtreecommitdiffstats
path: root/sbc/sbc.c
diff options
context:
space:
mode:
authorBrad Midgley <bmidgley@xmission.com>2007-03-24 14:01:31 +0000
committerBrad Midgley <bmidgley@xmission.com>2007-03-24 14:01:31 +0000
commita745805cb3961ccf88f0119f28dc919ed9c571e5 (patch)
tree79225c684eebc3cc80f8644ed205dd2b520525e5 /sbc/sbc.c
parent0c96c8790268b67d973339ca4547c8021474bf1c (diff)
whitespace fixes
Diffstat (limited to 'sbc/sbc.c')
-rw-r--r--sbc/sbc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbc/sbc.c b/sbc/sbc.c
index 1f16d70a..ce6252df 100644
--- a/sbc/sbc.c
+++ b/sbc/sbc.c
@@ -594,7 +594,7 @@ static inline void sbc_synthesize_four(struct sbc_decoder_state *state,
for(i = 0; i < 8; i++) {
/* Shifting */
state->offset[ch][i]--;
- if(state->offset[ch][i] < 0) {
+ if (state->offset[ch][i] < 0) {
state->offset[ch][i] = 79;
for(j = 0; j < 9; j++) {
state->V[ch][j+80] = state->V[ch][j];
@@ -634,7 +634,7 @@ static inline void sbc_synthesize_eight(struct sbc_decoder_state *state,
for(i = 0; i < 16; i++) {
/* Shifting */
state->offset[ch][i]--;
- if(state->offset[ch][i] < 0) {
+ if (state->offset[ch][i] < 0) {
state->offset[ch][i] = 159;
for(j = 0; j < 9; j++) {
state->V[ch][j+160] = state->V[ch][j];