Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING: ABM::available(ForWrite) return bytes #2765

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/ADCInput/src/ADCInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ int ADCInput::available() {
if (!_running) {
return 0;
} else {
return _arb->available();
return _arb->available() + _isHolding ? sizeof(int16_t) : 0;
}
}

Expand Down
4 changes: 2 additions & 2 deletions libraries/AudioBufferManager/src/AudioBufferManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,12 @@ int AudioBufferManager::available() {
return 0;
}

int avail = _wordsPerBuffer - _userOff; // Currently available in this buffer
int avail = (_wordsPerBuffer - _userOff) * sizeof(uint32_t); // Currently available in this buffer

// Each add'l buffer has wpb spaces...
auto x = p->next;
while (x) {
avail += _wordsPerBuffer;
avail += _wordsPerBuffer * sizeof(uint32_t);
x = x->next;
}
return avail;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void setup() {
}

void loop() {
while ((size_t)a2dp.availableForWrite() > sizeof(pcm)) {
while ((size_t)a2dp.availableForWrite() >= sizeof(pcm)) {
fillPCM();
a2dp.write((const uint8_t *)pcm, sizeof(pcm));
}
Expand Down
1 change: 0 additions & 1 deletion libraries/BluetoothAudio/src/A2DPSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ int A2DPSource::availableForWrite() {
} else {
avail = _pcmBufferSize - _pcmWriter + _pcmReader - 1;
}
avail /= sizeof(uint32_t); // availableForWrite always 32b sample pairs in this core...
return avail;
}

Expand Down
2 changes: 1 addition & 1 deletion libraries/BluetoothAudio/src/BluetoothAudioConsumerI2S.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void BluetoothAudioConsumerI2S::close() {
}

void BluetoothAudioConsumerI2S::fill() {
int num_samples = _i2s->availableForWrite() / 2;
int num_samples = _i2s->availableForWrite() / (2 * sizeof(int16_t));
int16_t buff[32 * 2];
while (num_samples > 63) {
_a2dpSink->playback_handler((int16_t *) buff, 32);
Expand Down
2 changes: 1 addition & 1 deletion libraries/BluetoothAudio/src/BluetoothAudioConsumerPWM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void BluetoothAudioConsumerPWM::close() {
}

void BluetoothAudioConsumerPWM::fill() {
int num_samples = _pwm->availableForWrite() / 2;
int num_samples = _pwm->availableForWrite() / (2 * sizeof(int16_t));
int16_t buff[32 * 2];
while (num_samples > 63) {
_a2dpSink->playback_handler((int16_t *) buff, 32);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void silenceOscillators() {

// PWM callback, generates sum of online oscillators
void fill() {
int num_samples = pwm.availableForWrite() / 2;
int num_samples = pwm.availableForWrite() / (2 * sizeof(int16_t));
int16_t buff[32 * 2];

while (num_samples > 63) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void silenceOscillators() {

// PWM callback, generates sum of online oscillators
void fill() {
int num_samples = pwm.availableForWrite() / 2;
int num_samples = pwm.availableForWrite() / (2 * sizeof(int16_t));
int16_t buff[32 * 2];

while (num_samples > 63) {
Expand Down
1 change: 0 additions & 1 deletion libraries/I2S/src/I2S.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ int I2S::available() {
return 0;
} else {
auto avail = _arb->available();
avail *= 4; // 4 samples per 32-bits
if (_bps < 24 && !_isOutput) {
avail += _isHolding / 8;
}
Expand Down
2 changes: 1 addition & 1 deletion libraries/PWMAudio/examples/PlayRaw/PlayRaw.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ PWMAudio pwm(1);
unsigned int count = 0;

void cb() {
while (pwm.availableForWrite()) {
while (pwm.availableForWrite() > (int)sizeof(int16_t)) {
pwm.write(*p++);
count += 2;
if (count >= sizeof(out_raw)) {
Expand Down
2 changes: 1 addition & 1 deletion libraries/PWMAudio/examples/PlayStereo/PlayStereo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ double sineTable[128]; // Precompute sine wave in 128 steps

unsigned int cnt = 0;
void cb() {
while (pwm.availableForWrite()) {
while (pwm.availableForWrite() >= 2 * (int)sizeof(int16_t)) {
double now = ((double)cnt) / (double)freq;
int fl = freqL << 7; // Prescale by 128 to avoid FP math later on
int fr = freqR << 7; // Prescale by 128 to avoid FP math later on
Expand Down
Loading