Skip to content

Commit ebe6bbf

Browse files
author
Emilie Gillet
committed
Plaits: more constness when appliable
1 parent 2ca45f8 commit ebe6bbf

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

plaits/dsp/engine/chord_engine.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void ChordEngine::ComputeRegistration(
8383

8484
#define WAVE(bank, row, column) &wav_integrated_waves[(bank * 64 + row * 8 + column) * 132]
8585

86-
const int16_t* wavetable[] = {
86+
const int16_t* const wavetable[] = {
8787
WAVE(2, 6, 1),
8888
WAVE(2, 6, 6),
8989
WAVE(2, 6, 4),

plaits/dsp/oscillator/wavetable_oscillator.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ class WavetableOscillator {
112112
float frequency,
113113
float amplitude,
114114
float waveform,
115-
const int16_t** wavetable,
115+
const int16_t* const* wavetable,
116116
float* out,
117117
size_t size) {
118118
CONSTRAIN(frequency, 0.0000001f, kMaxFrequency)

plaits/resources.cc

+6-6
Original file line numberDiff line numberDiff line change
@@ -3114,7 +3114,7 @@ const uint8_t syx_bank_2[] = {
31143114
};
31153115

31163116

3117-
const uint8_t* fm_patches_table[] = {
3117+
const uint8_t* const fm_patches_table[] = {
31183118
syx_bank_0,
31193119
syx_bank_1,
31203120
syx_bank_2,
@@ -3671,7 +3671,7 @@ const float lut_4x_downsampler_fir[] = {
36713671
};
36723672

36733673

3674-
const float* lookup_table_table[] = {
3674+
const float* const lookup_table_table[] = {
36753675
lut_sine,
36763676
lut_fm_frequency_quantizer,
36773677
lut_fold,
@@ -4018,7 +4018,7 @@ const int16_t lut_ws_double_bump[] = {
40184018
};
40194019

40204020

4021-
const int16_t* lookup_table_i16_table[] = {
4021+
const int16_t* const lookup_table_i16_table[] = {
40224022
lut_ws_inverse_tan,
40234023
lut_ws_inverse_sin,
40244024
lut_ws_linear,
@@ -4029,7 +4029,7 @@ const int16_t* lookup_table_i16_table[] = {
40294029

40304030

40314031

4032-
const int32_t* lookup_table_i32_table[] = {
4032+
const int32_t* const lookup_table_i32_table[] = {
40334033
};
40344034

40354035
const int8_t lut_lpc_excitation_pulse[] = {
@@ -4196,7 +4196,7 @@ const int8_t lut_lpc_excitation_pulse[] = {
41964196
};
41974197

41984198

4199-
const int8_t* lookup_table_i8_table[] = {
4199+
const int8_t* const lookup_table_i8_table[] = {
42004200
lut_lpc_excitation_pulse,
42014201
};
42024202

@@ -10540,7 +10540,7 @@ const int16_t wav_integrated_waves[] = {
1054010540
};
1054110541

1054210542

10543-
const int16_t* wavetables_table[] = {
10543+
const int16_t* const wavetables_table[] = {
1054410544
wav_integrated_waves,
1054510545
};
1054610546

plaits/resources.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ namespace plaits {
4242

4343
typedef uint8_t ResourceId;
4444

45-
extern const uint8_t* fm_patches_table[];
45+
extern const uint8_t* const fm_patches_table[];
4646

47-
extern const float* lookup_table_table[];
47+
extern const float* const lookup_table_table[];
4848

49-
extern const int16_t* lookup_table_i16_table[];
49+
extern const int16_t* const lookup_table_i16_table[];
5050

51-
extern const int32_t* lookup_table_i32_table[];
51+
extern const int32_t* const lookup_table_i32_table[];
5252

53-
extern const int8_t* lookup_table_i8_table[];
53+
extern const int8_t* const lookup_table_i8_table[];
5454

55-
extern const int16_t* wavetables_table[];
55+
extern const int16_t* const wavetables_table[];
5656

5757
extern const uint8_t syx_bank_0[];
5858
extern const uint8_t syx_bank_1[];

0 commit comments

Comments
 (0)