mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-13 07:02:31 -05:00
Cosmetic fix: remove duplicate semicolons
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20198 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
23e28f2b0c
commit
4f87abf90a
12 changed files with 14 additions and 14 deletions
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -452,7 +452,7 @@ static int peak_meter_max(void) {
|
|||
|
||||
/* for dBfs scale */
|
||||
int range_min = -global_settings.peak_meter_min;
|
||||
int max = -global_settings.peak_meter_max;;
|
||||
int max = -global_settings.peak_meter_max;
|
||||
|
||||
retval = set_int(str(LANG_PM_MAX), str(LANG_PM_DBFS), UNIT_DB,
|
||||
&max, NULL, 1, range_min, 0, NULL);
|
||||
|
|
|
|||
|
|
@ -2554,7 +2554,7 @@ unsigned long audio_num_recorded_bytes(void)
|
|||
if(num_bytes < 0)
|
||||
num_bytes += audiobuflen;
|
||||
|
||||
return num_bytes;;
|
||||
return num_bytes;
|
||||
}
|
||||
else
|
||||
return num_rec_bytes;
|
||||
|
|
|
|||
|
|
@ -899,7 +899,7 @@ setup_display (void)
|
|||
|
||||
if (board_height >= 7)
|
||||
{
|
||||
start_y = 3;;
|
||||
start_y = 3;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
|
|
@ -537,7 +537,7 @@ bool set_time_screen(const char* title, struct tm *tm)
|
|||
{
|
||||
if(i==3) /* second row */
|
||||
{
|
||||
j = weekday_width + separator_width;;
|
||||
j = weekday_width + separator_width;
|
||||
prev_line_height *= 2;
|
||||
}
|
||||
screens[s].getstringsize(ptr[i], &width, NULL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue