Skip to content

Commit

Permalink
A2DPStream error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Aug 29, 2024
1 parent f02f54a commit 73c6d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AudioLibs/A2DPStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class A2DPStream : public AudioStream, public VolumeSupport {
// blocking write: if buffer is full we wait
size_t free = a2dp_buffer.availableForWrite();
while(len > free){
LOGD("Waiting for buffer to be available: %d < %d", (int) len, (int) free);
LOGD("Waiting for buffer: writing %d > available %d", (int) len, (int) free);
delay(5);
free = a2dp_buffer.availableForWrite();
}
Expand Down

0 comments on commit 73c6d84

Please sign in to comment.