Skip to content

Commit ce2d6e9

Browse files
committed
Remove unused inline functions
1 parent f7f0fd6 commit ce2d6e9

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

shared-module/audiomixer/Mixer.c

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -165,16 +165,6 @@ static inline uint32_t copy16msb(uint32_t val) {
165165
return val | (val >> 16);
166166
}
167167

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-
178168
#define ALMOST_ONE (MICROPY_FLOAT_CONST(32767.) / 32768)
179169

180170
static void mix_down_one_voice(audiomixer_mixer_obj_t *self,

0 commit comments

Comments
 (0)