summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/libalac/alac.c4
-rw-r--r--apps/codecs/libmusepack/synth_filter.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libalac/alac.c b/apps/codecs/libalac/alac.c
index d747cae..112ad20 100644
--- a/apps/codecs/libalac/alac.c
+++ b/apps/codecs/libalac/alac.c
@@ -449,7 +449,7 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
predictor_coef_table[predictor_num]++;
val=-val;
} else {
- predictor_coef_table[predictor_num]--;;
+ predictor_coef_table[predictor_num]--;
}
error_val -= ((val >> predictor_quantitization) * (4 - predictor_num));
}
@@ -522,7 +522,7 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
predictor_coef_table[predictor_num]++;
val=-val;
} else {
- predictor_coef_table[predictor_num]--;;
+ predictor_coef_table[predictor_num]--;
}
error_val -= ((val >> predictor_quantitization) * (8 - predictor_num));
}
diff --git a/apps/codecs/libmusepack/synth_filter.c b/apps/codecs/libmusepack/synth_filter.c
index fb956fb..d8196eb 100644
--- a/apps/codecs/libmusepack/synth_filter.c
+++ b/apps/codecs/libmusepack/synth_filter.c
@@ -234,7 +234,7 @@ mpc_calculate_new_V ( const MPC_SAMPLE_FORMAT * Sample, MPC_SAMPLE_FORMAT * V )
B[ 4] = A[ 4] + A[11];
B[ 5] = A[ 5] + A[10];
B[ 6] = A[ 6] + A[ 9];
- B[ 7] = A[ 7] + A[ 8];;
+ B[ 7] = A[ 7] + A[ 8];
B[ 8] = MPC_MULTIPLY_V((A[ 0] - A[15]), INVCOS02);
B[ 9] = MPC_MULTIPLY_V((A[ 1] - A[14]), INVCOS06);
B[10] = MPC_MULTIPLY_V((A[ 2] - A[13]), INVCOS10);