File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/AudioTools/AudioCodecs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class DecoderALAC : public AudioDecoder {
88
88
89
89
// / we expect the write is called for a complete frame!
90
90
size_t write (const uint8_t * encodedFrame, size_t encodedLen) override {
91
- LOGI (" DecoderALAC::write: %d" , (int )encodedLen);
91
+ LOGD (" DecoderALAC::write: %d" , (int )encodedLen);
92
92
// Safety check
93
93
if (!is_init) {
94
94
LOGE (" Decoder not initialized" );
@@ -256,7 +256,7 @@ class EncoderALAC : public AudioEncoder {
256
256
// / Encode the audio samples into ALAC format
257
257
size_t write (const uint8_t * data, size_t len) override {
258
258
if (!is_started) return 0 ;
259
- LOGI (" EncoderALAC::write: %d" , (int )len);
259
+ LOGD (" EncoderALAC::write: %d" , (int )len);
260
260
for (int j = 0 ; j < len; j++) {
261
261
in_buffer.write (data[j]);
262
262
if (in_buffer.isFull ()) {
You can’t perform that action at this time.
0 commit comments