parent
5a0a155f74
commit
94cdd270e9
@ -0,0 +1,69 @@ |
|||||||
|
/*
|
||||||
|
Copyright (c) 2019, Holger Wirtz |
||||||
|
|
||||||
|
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 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 <Arduino.h> |
||||||
|
#include <Audio.h> |
||||||
|
#include "mono2stereo.h" |
||||||
|
|
||||||
|
/*************************************************************************/ |
||||||
|
// A u d i o E f f e c t M o n o 2 S t e r e o
|
||||||
|
// Written by Holger Wirtz
|
||||||
|
// 20191122 - inital version
|
||||||
|
|
||||||
|
void Mono2Stereo::update(void) |
||||||
|
{ |
||||||
|
audio_block_t *in; |
||||||
|
audio_block_t *out[2]; |
||||||
|
|
||||||
|
in = receiveReadOnly(0); |
||||||
|
out[0] = allocate(); |
||||||
|
out[1] = allocate(); |
||||||
|
|
||||||
|
if (in && out[0] && out[1]) |
||||||
|
{ |
||||||
|
int16_t *ip = in->data; |
||||||
|
int16_t *op[2] = { out[0]->data, out[1]->data }; |
||||||
|
float f_l = _pseudo_log * sinf(_pan * PI / 2); // _Pan [L0.0 ... M0.5 ... 1.0R]
|
||||||
|
float f_r = _pseudo_log * cosf(_pan * PI / 2); |
||||||
|
|
||||||
|
for (uint16_t i = 0; i < AUDIO_BLOCK_SAMPLES; i++) |
||||||
|
{ |
||||||
|
*op[0] = int16_t(f_l * (*ip)); |
||||||
|
*op[1] = int16_t(f_r * (*ip++)); |
||||||
|
op[0]++; |
||||||
|
op[1]++; |
||||||
|
} |
||||||
|
|
||||||
|
if (in) |
||||||
|
{ |
||||||
|
release(in); |
||||||
|
} |
||||||
|
for (uint8_t i = 0; i < 2; i++) |
||||||
|
{ |
||||||
|
if (out[i]) |
||||||
|
{ |
||||||
|
transmit(out[i], i); |
||||||
|
release(out[i]); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,52 @@ |
|||||||
|
/*
|
||||||
|
Copyright (c) 2019, Holger Wirtz |
||||||
|
|
||||||
|
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 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 mono2stereo_h_ |
||||||
|
#define mono2stereo_h_ |
||||||
|
|
||||||
|
#include "Arduino.h" |
||||||
|
#include "AudioStream.h" |
||||||
|
|
||||||
|
/*************************************************************************/ |
||||||
|
// A u d i o E f f e c t M o n o 2 S t e r e o
|
||||||
|
// Written by Holger Wirtz
|
||||||
|
// 20191122 - inital version
|
||||||
|
|
||||||
|
class Mono2Stereo : public AudioStream |
||||||
|
{ |
||||||
|
public: |
||||||
|
Mono2Stereo(void): |
||||||
|
AudioStream(1, inputQueueArray) |
||||||
|
{ |
||||||
|
_pan = 0.5; |
||||||
|
} |
||||||
|
|
||||||
|
virtual void update(void); |
||||||
|
|
||||||
|
private: |
||||||
|
audio_block_t *inputQueueArray[4]; |
||||||
|
audio_block_t *out[2]; |
||||||
|
const float _pseudo_log = 1048575 / (float)(1 << 20); |
||||||
|
float _pan; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif |
Loading…
Reference in new issue