We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7f0fd6 commit ce2d6e9Copy full SHA for ce2d6e9
1 file changed
shared-module/audiomixer/Mixer.c
@@ -165,16 +165,6 @@ static inline uint32_t copy16msb(uint32_t val) {
165
return val | (val >> 16);
166
}
167
168
-static inline uint32_t copy8lsb(uint32_t val) {
169
- val &= 0x00ff;
170
- return val | (val << 8);
171
-}
172
-
173
-static inline uint32_t copy8msb(uint32_t val) {
174
- val &= 0xff00;
175
- return val | (val >> 8);
176
177
178
#define ALMOST_ONE (MICROPY_FLOAT_CONST(32767.) / 32768)
179
180
static void mix_down_one_voice(audiomixer_mixer_obj_t *self,
0 commit comments