mirror of https://github.com/probonopd/MiniDexed
parent
fcafaea364
commit
1942cc95ad
@ -1 +1 @@ |
|||||||
Subproject commit 70293ae5998643c706244b090504dde8b4097851 |
Subproject commit e414a8718300815aefc3fe0acd8df5c12ad0b58a |
@ -0,0 +1,21 @@ |
|||||||
|
|
||||||
|
#ifndef _common_h |
||||||
|
#define _common_h |
||||||
|
|
||||||
|
inline long maplong(long x, long in_min, long in_max, long out_min, long out_max) { |
||||||
|
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min; |
||||||
|
} |
||||||
|
|
||||||
|
inline float32_t mapfloat(float32_t val, float32_t in_min, float32_t in_max, float32_t out_min, float32_t out_max) |
||||||
|
{ |
||||||
|
return (val - in_min) * (out_max - out_min) / (in_max - in_min) + out_min; |
||||||
|
} |
||||||
|
|
||||||
|
#define constrain(amt, low, high) ({ \ |
||||||
|
__typeof__(amt) _amt = (amt); \
|
||||||
|
__typeof__(low) _low = (low); \
|
||||||
|
__typeof__(high) _high = (high); \
|
||||||
|
(_amt < _low) ? _low : ((_amt > _high) ? _high : _amt); \
|
||||||
|
}) |
||||||
|
|
||||||
|
#endif |
@ -0,0 +1,87 @@ |
|||||||
|
// Taken from https://github.com/manicken/Audio/tree/templateMixer
|
||||||
|
// Adapted for MiniDexed by Holger Wirtz <dcoredump@googlemail.com>
|
||||||
|
|
||||||
|
/* Audio Library for Teensy 3.X
|
||||||
|
* Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com |
||||||
|
* |
||||||
|
* Development of this audio library was funded by PJRC.COM, LLC by sales of |
||||||
|
* Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop |
||||||
|
* open source software by purchasing Teensy or other PJRC products. |
||||||
|
* |
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||||
|
* of this software and associated documentation files (the "Software"), to deal |
||||||
|
* in the Software without restriction, including without limitation the rights |
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||||
|
* copies of the Software, and to permit persons to whom the Software is |
||||||
|
* furnished to do so, subject to the following conditions: |
||||||
|
* |
||||||
|
* The above copyright notice, development funding notice, and this permission |
||||||
|
* notice shall be included in all copies or substantial portions of the Software. |
||||||
|
* |
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||||
|
* THE SOFTWARE. |
||||||
|
*/ |
||||||
|
|
||||||
|
#include <cstdlib> |
||||||
|
#include <stdint.h> |
||||||
|
#include <assert.h> |
||||||
|
#include "arm_math.h" |
||||||
|
#include "mixer.h" |
||||||
|
|
||||||
|
template <int NN> void AudioMixer<NN>::gain(uint8_t channel, float32_t gain) |
||||||
|
{ |
||||||
|
if (channel >= NN) return; |
||||||
|
|
||||||
|
if (gain > MAX_GAIN) |
||||||
|
gain = MAX_GAIN; |
||||||
|
else if (gain < MIN_GAIN) |
||||||
|
gain = MIN_GAIN; |
||||||
|
multiplier[channel] = gain; |
||||||
|
} |
||||||
|
|
||||||
|
template <int NN> void AudioMixer<NN>::gain(float32_t gain) |
||||||
|
{ |
||||||
|
for (uint8_t i = 0; i < NN; i++) |
||||||
|
{ |
||||||
|
if (gain > MAX_GAIN) |
||||||
|
gain = MAX_GAIN; |
||||||
|
else if (gain < MIN_GAIN) |
||||||
|
gain = MIN_GAIN; |
||||||
|
multiplier[i] = gain; |
||||||
|
}
|
||||||
|
} |
||||||
|
|
||||||
|
template <int NN> void AudioMixer<NN>::doAddMix(uint8_t channel, float32_t* in, float32_t* out, uint16_t len) |
||||||
|
{ |
||||||
|
float32_t* tmp=malloc(sizeof(float32_t)*len); |
||||||
|
|
||||||
|
assert(tmp!=NULL); |
||||||
|
|
||||||
|
arm_scale_f32(in,multiplier[channel],tmp,len); |
||||||
|
arm_add_f32(out, tmp, out, len); |
||||||
|
|
||||||
|
free(tmp); |
||||||
|
} |
||||||
|
|
||||||
|
template <int NN> void AudioStereoMixer<NN>::doAddMix(uint8_t channel, float32_t* in[], float32_t* out[], uint16_t len) |
||||||
|
{ |
||||||
|
float32_t* tmp=malloc(sizeof(float32_t)*len); |
||||||
|
|
||||||
|
assert(tmp!=NULL); |
||||||
|
|
||||||
|
// panorama
|
||||||
|
for(uint16_t i=0;i<len;i++) |
||||||
|
{ |
||||||
|
// left
|
||||||
|
arm_scale_f32(in+(i*2),multiplier[channel],tmp+(i*2),len); |
||||||
|
arm_add_f32(out(i*2), tmp(i*2), out(i*2), len*2); |
||||||
|
// right
|
||||||
|
} |
||||||
|
|
||||||
|
free(tmp); |
||||||
|
} |
@ -0,0 +1,79 @@ |
|||||||
|
// Taken from https://github.com/manicken/Audio/tree/templateMixer
|
||||||
|
// Adapted for MiniDexed by Holger Wirtz <dcoredump@googlemail.com>
|
||||||
|
|
||||||
|
/* Audio Library for Teensy 3.X
|
||||||
|
* Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com |
||||||
|
* |
||||||
|
* Development of this audio library was funded by PJRC.COM, LLC by sales of |
||||||
|
* Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop |
||||||
|
* open source software by purchasing Teensy or other PJRC products. |
||||||
|
* |
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
||||||
|
* of this software and associated documentation files (the "Software"), to deal |
||||||
|
* in the Software without restriction, including without limitation the rights |
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||||
|
* copies of the Software, and to permit persons to whom the Software is |
||||||
|
* furnished to do so, subject to the following conditions: |
||||||
|
* |
||||||
|
* The above copyright notice, development funding notice, and this permission |
||||||
|
* notice shall be included in all copies or substantial portions of the Software. |
||||||
|
* |
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||||
|
* THE SOFTWARE. |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef template_mixer_h_ |
||||||
|
#define template_mixer_h_ |
||||||
|
|
||||||
|
#include "arm_math.h" |
||||||
|
#include <stdint.h> |
||||||
|
|
||||||
|
#define UNITYGAIN 1.0f |
||||||
|
#define MAX_GAIN 1.0f |
||||||
|
#define MIN_GAIN 0.0f |
||||||
|
|
||||||
|
template <int NN> class AudioMixer |
||||||
|
{ |
||||||
|
public: |
||||||
|
AudioMixer(void) |
||||||
|
{ |
||||||
|
for (uint8_t i=0; i<NN; i++) |
||||||
|
multiplier[i] = UNITYGAIN; |
||||||
|
}
|
||||||
|
void doAddMix(uint8_t channel, float32_t* in, float32_t* out, uint16_t len); |
||||||
|
/**
|
||||||
|
* this sets the individual gains |
||||||
|
* @param channel |
||||||
|
* @param gain |
||||||
|
*/ |
||||||
|
void gain(uint8_t channel, float32_t gain); |
||||||
|
/**
|
||||||
|
* set all channels to specified gain |
||||||
|
* @param gain |
||||||
|
*/ |
||||||
|
void gain(float32_t gain); |
||||||
|
|
||||||
|
protected: |
||||||
|
float32_t multiplier[NN]; |
||||||
|
}; |
||||||
|
|
||||||
|
template <int NN> class AudioStereoMixer : public AudioMixer<NN> |
||||||
|
{ |
||||||
|
public: |
||||||
|
AudioStereoMixer(void) |
||||||
|
{ |
||||||
|
AudioMixer<NN>(); |
||||||
|
for (uint8_t i=0; i<NN; i++) |
||||||
|
panorama[i] = 0.0; |
||||||
|
} |
||||||
|
void doAddMix(uint8_t channel, float32_t* in[], float32_t* out[], uint16_t len); |
||||||
|
protected: |
||||||
|
float32_t panorama[NN]; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif |
Loading…
Reference in new issue