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 d747caeea7..112ad20bad 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,
449 predictor_coef_table[predictor_num]++; 449 predictor_coef_table[predictor_num]++;
450 val=-val; 450 val=-val;
451 } else { 451 } else {
452 predictor_coef_table[predictor_num]--;; 452 predictor_coef_table[predictor_num]--;
453 } 453 }
454 error_val -= ((val >> predictor_quantitization) * (4 - predictor_num)); 454 error_val -= ((val >> predictor_quantitization) * (4 - predictor_num));
455 } 455 }
@@ -522,7 +522,7 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
522 predictor_coef_table[predictor_num]++; 522 predictor_coef_table[predictor_num]++;
523 val=-val; 523 val=-val;
524 } else { 524 } else {
525 predictor_coef_table[predictor_num]--;; 525 predictor_coef_table[predictor_num]--;
526 } 526 }
527 error_val -= ((val >> predictor_quantitization) * (8 - predictor_num)); 527 error_val -= ((val >> predictor_quantitization) * (8 - predictor_num));
528 } 528 }
diff --git a/apps/codecs/libmusepack/synth_filter.c b/apps/codecs/libmusepack/synth_filter.c
index fb956fbff4..d8196eb40f 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 )
234 B[ 4] = A[ 4] + A[11]; 234 B[ 4] = A[ 4] + A[11];
235 B[ 5] = A[ 5] + A[10]; 235 B[ 5] = A[ 5] + A[10];
236 B[ 6] = A[ 6] + A[ 9]; 236 B[ 6] = A[ 6] + A[ 9];
237 B[ 7] = A[ 7] + A[ 8];; 237 B[ 7] = A[ 7] + A[ 8];
238 B[ 8] = MPC_MULTIPLY_V((A[ 0] - A[15]), INVCOS02); 238 B[ 8] = MPC_MULTIPLY_V((A[ 0] - A[15]), INVCOS02);
239 B[ 9] = MPC_MULTIPLY_V((A[ 1] - A[14]), INVCOS06); 239 B[ 9] = MPC_MULTIPLY_V((A[ 1] - A[14]), INVCOS06);
240 B[10] = MPC_MULTIPLY_V((A[ 2] - A[13]), INVCOS10); 240 B[10] = MPC_MULTIPLY_V((A[ 2] - A[13]), INVCOS10);